@charset "UTF-8";

img {
	height: auto;
	max-width: 100%;
}

/** -- header_image -- **/
.header_image {
	margin-bottom: 5vw;
	margin-top: 10vw;
	position: relative;
	height: 40vw;
}
.header_image img.bg {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.header_image.s_top img.bg {
	object-position: 0 75%;
}
.header_image .inner {
	background-color: rgba(255, 255, 255, .3);
	border-radius: 2vw;
	padding: 2vw;
	position: absolute;
	/*right: 55%;*/
	left: 55%;
	top: 50%;
	text-align: center;
	transform: translateY(-50%);
	width: 35vw;
}
.header_image .logo {
	margin-bottom: 2.5vw;
}
.header_image p span {
	font-size: 80%;
}
/* single */
.header_image.single .inner {
	background-color: rgba(255, 255, 255, .7);
	border-radius: 1.5vw;
	padding: 2vw;
	left: 50%;
	right: auto;
	transform: translate(-50%, -50%);
	width: 35vw;
}
.header_image.single p {
	font-size: 2vw;
}
@media screen and (min-width: 1000px) {
	.header_image {
		margin-bottom: 50px;
		margin-top: 100px;
		height: 400px;
	}
	.header_image .inner {
		border-radius: 20px;
		padding: 20px;
		width: 350px;
	}
	.header_image .logo {
		margin-bottom: 25px;
	}
	/* single */
	.header_image.single .inner {
		border-radius: 15px;
		padding: 20px;
		width: 350px;
	}
	.header_image.single p {
		font-size: 20px;
	}
}
@media screen and (min-width: 1400px) {
	.header_image {
		height: 500px;
	}
}
@media screen and (max-width: 780px) {
	.header_image {
		margin-bottom: 5vw;
		margin-top: 16vw;
		height: 46vw;
	}
	.header_image .inner {
		border-radius: 4vw;
		padding: 4vw;
		/*right: 42vw;*/
		left: 42vw;
		width: 55vw;
	}
	.header_image .logo {
		margin-bottom: 4vw;
	}
	/* single */
	.header_image.single .bg {
		height: 52vw;
	}
	.header_image.single .inner {
		border-radius: 3vw;
		padding: 4vw;
		width: 70vw;
	}
	.header_image.single p {
		font-size: 2vw;
	}
}

/** -- setobare  -- **/
.setobare {
	line-height: 1.8;
	margin: 5vw auto 10vw;
	width: 80vw;
	max-width: 700px;
}
.setobare p {
	line-height: 1.8;
}
@media screen and (min-width: 1000px) {
	.setobare {
		margin: 50px auto 100px;
		width: 80vw;
	}
}
@media screen and (max-width: 780px) {
	.setobare {
		margin: 10vw 6vw 20vw;
		width: auto;
	}
}

/** -- about -- **/
.setobare .about {
	border: solid 1px #39313e;
	border-radius: 1.5vw;
	margin-bottom: 8vw;
	padding: 3vw;
}
.setobare .about h2 {
	font-size: 2.4vw;
	font-weight: bold;
	margin-bottom: 2vw;
}
.setobare .about p {
	font-size: 1.6vw;
}
.setobare .about p span {
	color: #f88c00;
}
.setobare .about a {
	background-color: #77310f;
	border-radius: 1.2vw;
	color: #fff;
	display: table;
	margin-left: auto;
	margin-top: 5vw;
	padding: 1.4vw 4vw;
	transition: ease .5s;
}
.setobare .about a:hover {
	background-color: #ccc;
}
@media screen and (min-width: 1000px) {
	.setobare .about {
		border-radius: 15px;
		margin-bottom: 80px;
		padding: 30px;
	}
	.setobare .about h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.setobare .about p {
		font-size: 16px;
	}
	.setobare .about a {
		border-radius: 12px;
		margin-top: 50px;
		padding: 14px 40px;
	}
}
@media screen and (max-width: 780px) {
	.setobare .about {
		border-radius: 3vw;
		margin-bottom: 12vw;
		padding: 6vw 4vw;
	}
	.setobare .about h2 {
		font-size: 4.6vw;
		margin-bottom: 4vw;
	}
	.setobare .about p {
		font-size: 3.6vw;
	}
	.setobare .about a {
		border-radius: 4vw;
		margin-right: auto;
		margin-top: 8vw;
		padding: 3vw 10vw;
	}
}

/** -- sort -- **/
.setobare .sort {
	border: solid 1px #39313e;
	border-radius: 1vw;
	box-sizing: border-box;
	display: table;
	margin-bottom: 4vw;
	position: relative;
	height: 4vw;
	width: 12vw;
}
.setobare .sort a {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	padding: 1.4vw 1vw;
	position: relative;
	width: 100%;
}
.setobare .sort p {
	background-color: #fff;
	border-radius: 1vw;
	overflow: hidden;
}
.setobare .sort p a::after {
	content: '▼';
	display: block;
	font-size: 1.4vw;
	position: absolute;
	right: 1.5vw;
	top: 50%;
	transform: translateY(-50%);
}
.setobare .sort ul {
	background-color: #fff;
	border: solid 1px #39313e;
	border-top: none;
	display: none;
	overflow: hidden;
	position: absolute;
	left: -1px;
	top: 3.8vw;
	width: calc(100% + 2px);
	z-index: 1;
}
@media screen and (min-width: 1000px) {
	.setobare .sort {
		border-radius: 10px;
		margin-bottom: 40px;
		height: 40px;
		width: 120px;
	}
	.setobare .sort a {
		padding: 14px 10px;
	}
	.setobare .sort p {
		border-radius: 10px;
	}
	.setobare .sort p a::after {
		font-size: 14px;
		right: 15px;
	}
	.setobare .sort ul {
		top: 38px;
	}
}
@media screen and (max-width: 780px) {
	.setobare .sort {
		border-radius: 2vw;
		margin-bottom: 8vw;
		height: 8vw;
		width: 32vw;
	}
	.setobare .sort a {
		padding: 3vw 2vw;
	}
	.setobare .sort p {
		border-radius: 2vw;
	}
	.setobare .sort p a::after {
		font-size: 3.2vw;
		right: 2vw;
	}
	.setobare .sort ul {
		top: 7.6vw;
	}
}
/** -- pager -- **/
.setobare_pager {
	display: table;
	margin: 3vw auto;
}
@media screen and (min-width: 1000px) {
	.setobare_pager {
		margin: 30px auto;
	}
}
@media screen and (max-width: 780px) {
	.setobare_pager {
		margin: 5vw auto;
	}
	.page-numbers {
		font-size: 4.6vw;
		margin: 0 2vw;
		height: 8vw;
		width: 8vw;
	}
	.page-numbers.current {
		font-size: 4.6vw;
		height: 8vw;
		width: 8vw;
	}
}

/** -- story -- **/
.setobare .story .title {
	margin: 0 auto 6vw;
	text-align: center;
	width: 32vw;
}
.setobare .story .title h2 {
	border-bottom: solid 2px #39313e;
	font-size: 4vw;
	font-weight: bold;
	margin-bottom: 1vw;
	padding-bottom: 2vw;
}
.setobare .story .title p {
	font-size: 2vw;
	font-weight: bold;
}
.setobare .story select {
	border: solid 1px #39313e;
	border-radius: 1vw;
	margin-bottom: 4vw;
	padding: 1vw;
}
.setobare .list {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2vw;
}
.setobare .list article {
	border: solid 1px #39313e;
	border-radius: 1vw;
	box-sizing: border-box;
	margin: 0 2vw 4vw;
	padding: 3vw;
	position: relative;
	width: calc(100% / 2 - 4vw);
}
.setobare .list article a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	transition: ease .5s;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.setobare .list article a:hover {
	background-color: rgba(255, 255, 255, .4);
}
.setobare .list article .inner {
	border: solid 1px #8a8a8a;
	margin-bottom: 2vw;
	padding-top: 100%;
	position: relative;
	width: 100%;
}
.setobare .list article .inner img {
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.setobare .list article .ttl {
	background-color: rgba(255, 255, 255, .8);
	box-sizing: border-box;
	padding: 1vw 2vw;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.setobare .list article .ttl h3 {
	font-size: 1.8vw;
	font-weight: bold;
}
.setobare .list article .ttl p {
	border: solid 1px #39313e;
	display: table;
	font-size: 1.4vw;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 1vw;
	padding: 0 1vw;
}
.setobare .list article .link {
	border-bottom: solid 1px #666;
	display: table;
	font-size: 1.5vw;
	font-weight: bold;
	margin-bottom: 0;
	margin-left: auto;
	padding-bottom: .5vw;
	padding-left: 1vw;
}
@media screen and (min-width: 1000px) {
	.setobare .story .title {
		margin: 0 auto 60px;
		width: 320px;
	}
	.setobare .story .title h2 {
		font-size: 40px;
		margin-bottom: 10px;
		padding-bottom: 20px;
	}
	.setobare .story .title p {
		font-size: 20px;
	}
	.setobare .story select {
		border-radius: 10px;
		margin-bottom: 40px;
		padding: 10px;
	}
	.setobare .list {
		margin: 0 -20px;
	}
	.setobare .list article {
		border-radius: 10px;
		margin: 0 20px 40px;
		padding: 30px;
		width: calc(100% / 2 - 40px);
	}
	.setobare .list article .inner {
		margin-bottom: 20px;
	}
	.setobare .list article .ttl {
		padding: 10px 20px;
	}
	.setobare .list article .ttl h3 {
		font-size: 18px;
	}
	.setobare .list article .ttl p {
		font-size: 14px;
		margin-bottom: 10px;
		padding: 0 10px;
	}
	.setobare .list article .link {
		font-size: 15px;
		padding-bottom: 10px;
		padding-left: 10px;
	}
}
@media screen and (max-width: 780px) {
	.setobare .story .title {
		margin: 0 auto 8vw;
		width: 80vw;
	}
	.setobare .story .title h2 {
		font-size: 7vw;
		margin-bottom: 2vw;
		padding-bottom: 3vw;
	}
	.setobare .story .title p {
		font-size: 4vw;
	}
	.setobare .story select {
		border-radius: 2vw;
		margin-bottom: 6vw;
		padding: 2vw;
	}
	.setobare .list {
		margin: 0;
	}
	.setobare .list article {
		border-radius: 2vw;
		margin: 0 0 8vw;
		padding: 6vw;
		width: 100%;
	}
	.setobare .list article .inner {
		margin-bottom: 4vw;
	}
	.setobare .list article .ttl {
		padding: 3vw 4vw;
	}
	.setobare .list article .ttl h3 {
		font-size: 4.2vw;
	}
	.setobare .list article .ttl p {
		font-size: 3.2vw;
		margin-bottom: 2vw;
		padding: 0 2vw;
	}
	.setobare .list article .link {
		font-size: 3.6vw;
		padding-bottom: 1vw;
		padding-left: 4vw;
	}
}

/** single **/
/* page_link */
.setobare.single .page_link {
	display:flex;
	margin-bottom: 5vw;
}
.setobare.single .page_link a {
	background-color: #faf6f0;
	border-radius: 1.2vw;
	display: table;
	padding: 1.5vw 3vw;
}
/* article */
.setobare.single article h2 {
	border-bottom: solid 2px #39313e;
	font-size: 3.1vw;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 5vw;
	padding-bottom: 3vw;
}
.setobare.single article p {
	font-size: 1.8vw;
	margin-bottom: 5vw;
}
/* about */
.setobare.single .about {
	background-color: #faf6f0;
	border: none;
	padding: 4vw 3vw;
}
/* other_link */
.setobare .other_link {
	margin: 10vw 0;
}
.setobare .other_link h2 {
	border-bottom: solid 2px #39313e;
	display: table;
	font-size: 2.8vw;
	font-weight: bold;
	margin: 0 auto 5vw;
	padding: 0 2vw 1.5vw;
}
.setobare .other_link .list {
	margin: 0 -1.5vw;
}
.setobare .other_link .list article {
	margin: 0 1.5vw 4vw;
	padding: 2vw;
	width: calc(100% / 3 - 3vw);
}
.setobare .other_link .list article h3 {
	font-weight: bold;
	letter-spacing: .2vw;
}
/* related */
.setobare .related .list article .inner {
	border: none;
	margin-bottom: 1vw;
}
.setobare .related .list article h3 {
	font-size: 1.7vw;
	line-height: 1.6;
	text-align: center;
}
/* post_link */
.setobare .post_link .list article .ttl {
	padding: 1vw;
}
.setobare .post_link .list article h3 {
	font-size: 1.6vw;
}
.setobare .post_link .list article .ttl p {
	font-size: 1.2vw;
}
.setobare .post_link .list article .link {
	font-size: 1.4vw;
}
@media screen and (min-width: 1000px) {
	/* page_link */
	.setobare.single .page_link {
		margin-bottom: 50px;
	}
	.setobare.single .page_link a {
		border-radius: 12px;
		display: table;
		padding: 15px 30px;
	}
	/* article */
	.setobare.single article h2 {
		font-size: 31px;
		margin-bottom: 50px;
		padding-bottom: 30px;
	}
	.setobare.single article p {
		font-size: 18px;
		margin-bottom: 50px;
	}
	/* about */
	.setobare.single .about {
		padding: 40px 30px;
	}
	/* other_link */
	.setobare .other_link {
		margin: 100px 0;
	}
	.setobare .other_link h2 {
		font-size: 28px;
		margin: 0 auto 50px;
		padding: 0 20px 15px;
	}
	.setobare .other_link .list {
		margin: 0 -15px;
	}
	.setobare .other_link .list article {
		margin: 0 15px 40px;
		padding: 20px;
		width: calc(100% / 3 - 30px);
	}
	.setobare .other_link .list article h3 {
		letter-spacing: 2px;
	}
	/* related */
	.setobare .related .list article .inner {
		margin-bottom: 10px;
	}
	.setobare .related .list article h3 {
		font-size: 17px;
	}
	/* post_link */
	.setobare .post_link .list article .ttl {
		padding: 10px;
	}
	.setobare .post_link .list article h3 {
		font-size: 16px;
	}
	.setobare .post_link .list article .ttl p {
		font-size: 12px;
	}
	.setobare .post_link .list article .link {
		font-size: 14px;
	}
}
@media screen and (max-width: 780px) {
	/* page_link */
	.setobare.single .page_link {
		margin-bottom: 10vw;
	}
	.setobare.single .page_link a {
		border-radius: 2.4vw;
		padding: 3vw 5vw;
	}
	/* article */
	.setobare.single article h2 {
		font-size: 6vw;
		margin-bottom: 10vw;
		padding-bottom: 6vw;
	}
	.setobare.single article p {
		font-size: 3.6vw;
		margin-bottom: 6vw;
	}
	/* about */
	.setobare.single .about {
		padding: 8vw 6vw;
	}
	/* other_link */
	.setobare .other_link {
		margin: 15vw 0;
	}
	.setobare .other_link h2 {
		font-size: 5.6vw;
		margin: 0 auto 10vw;
		padding: 0 4vw 3vw;
	}
	.setobare .other_link .list {
		margin: 0;
	}
	.setobare .other_link .list article {
		margin: 0 0 6vw;
		padding: 4vw;
		width: 100%;
	}
	.setobare .other_link .list article h3 {
		letter-spacing: .4vw;
	}
	/* related */
	.setobare .related .list article {
		align-items: center;
		display: flex;
	}
	.setobare .related .list article .inner {
		margin-bottom: 0;
		padding-top: 30vw;
		width: 30vw
	}
	.setobare .related .list article h3 {
		font-size: 4.6vw;
		margin-left: 4vw;
		width: calc(100% - 30vw - 4vw);
	}
	/* post_link */
	.setobare .post_link .list article {
		padding: 6vw;
	}
	.setobare .post_link .list article .ttl {
		padding: 4vw;
	}
	.setobare .post_link .list article h3 {
		font-size: 4.2vw;
	}
	.setobare .post_link .list article .ttl p {
		font-size: 3vw;
	}
	.setobare .post_link .list article .link {
		font-size: 3.4vw;
	}
}

.np_link {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4rem;
}
.np_link a {
	background-color: #77310f;
	border-radius: .5rem;
	color: #fff;
	display: block;
	font-size: 1.8rem;
	padding: 1rem 3rem;
}
.np_link a:hover {
	background-color: #ccc;
}
@media screen and (max-width: 780px) {
	.np_link {
		margin-bottom: 4rem;
	}
	.np_link a {
		font-size: 1.5rem;
		padding: 1rem 2rem;
	}
}

/** -- footer_top -- **/
.footer_top {
	background-color: #e0d5c9;
	padding: 6vw 0;
}
.footer_top .inner {
	margin: 0 auto;
	width: 80vw;
	max-width: 700px;
}
.footer_top .inner ul {
	align-items: center;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.footer_top .inner li {
	margin: 0 3vw;
}
.footer_top .inner li a {
	font-size: 1.8vw;
	font-weight: bold;
}
.footer_top .inner li.logo {
	margin-left: 6vw;
	width: 24vw;
}
@media screen and (min-width: 1000px) {
	.footer_top {
		padding: 60px 0;
	}
	.footer_top .inner li {
		margin: 0 30px;
	}
	.footer_top .inner li a {
		font-size: 18px;
	}
	.footer_top .inner li.logo {
		margin-left: 60px;
		width: 240px;
	}
}
@media screen and (max-width: 780px) {
	.footer_top {
		padding: 10vw 0;
	}
	.footer_top .inner {
		margin: 0 6vw;
		width: auto;
	}
	.footer_top .inner ul {
		display: block;
	}
	.footer_top .inner li {
		margin: 0;
		text-align: center;
	}
	.footer_top .inner li + li {
		margin-top: 8vw;
	}
	.footer_top .inner li a {
		font-size: 4.2vw;
	}
	.footer_top .inner li.logo {
		margin-left: 0;
		width: auto;
	}
	.footer_top .inner li.logo img {
		width: 60vw;
	}
}