@charset "utf-8";
/*
theme Name: Papillon_mokumosieru_03
Author:mokumosieru
Description: PapillonのHP用テンプレート
version: 1.1.3
*/

/*---------------cssのリセット---------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	background: transparent;
}

body {
	line-height: 1;
}

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

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	background: transparent;
}

ins {
	text-decoration: none;
	color: #000;
	background-color: #ff9;
}

mark {
	font-weight: bold;
	font-style: italic;
	color: #000;
	background-color: #ff9;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	cursor: help;
	border-bottom: 1px dotted;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

hr {
	display: block;
	height: 1px;
	margin: 1em 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #ccc;
}





/*---------------フォントファミリー設定---------------*/
/*ロックンロール*/
@font-face {
	font-family: 'RocknRollOne-Regular';
	src: url('fonts/RocknRollOne-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/*クラフト明朝*/
@font-face {
	font-family: 'craftmincho';
	src: url('fonts/craftmincho.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/*DancingScript-Medium*/
@font-face {
	font-family: 'DancingScript-Medium';
	src: url('fonts/DancingScript-Medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/*MeowScript-Regular*/
@font-face {
	font-family: 'MeowScript-Regular';
	src: url('fonts/MeowScript-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/*---------------フォントファミリー設定ここまで---------------*/





/*---------------サイト全体の基礎CSS---------------*/
:root {
	color-scheme: only light;
}

html {
	font-size: 15px;
}

body {
	line-height: 1.4em;
	word-break: break-all;
	margin: 0;
	padding: 0;
	color: #3f2a0f;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #3f2a0f;
}

a {
	text-decoration: none;
	color: rgb(52, 71, 235);
}

/*imgを画面幅より大きい画像でも画面の最大幅に合わせて表示するように設定*/
img {
	max-width: 100%;
	height: auto;
}

/*スマートフォン用のレイアウトを調整*/
@media(max-width: 600px) {
	html {
		font-size: 12px;
	}
}

/*---------------サイト全体の基礎CSSここまで---------------*/




/*---------------全ページ共通部部分---------------*/

body {
	font-family: 'RocknRollOne-Regular', "sans-serif";
	background-image: url("images/bg_image.jpg");
	background-size: 300px 300px;
	transition: 0.3s ease;
}

.hp_wrapper {
	border-radius: 12px;
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.3);
	max-width: 1200px;
	margin: 20px auto;
}

@media(max-width :1240px) {
	.hp_wrapper {
		margin: 22px;
	}
}

@media(max-width :800px) {
	body {
		background-size: 200px 200px;
	}
}

@media(max-width :600px) {
	body {
		background-size: 150px 150px;
	}
}

/*---------------全ページ共通部分ここまで---------------*/




/*---------------トップ画像部分---------------*/
.hp-topimage {
	position: relative;
	background-color: rgb(243, 238, 217);
	max-width: 1200px;
	height: 300px;
	overflow: hidden;
	transition: 0.3s ease;
}

.hp-topimage_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 50px 0px 100px 30px rgba(0, 0, 0, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	background-blend-mode: multiply;
	background-position: 50% 50%;
	background-size: cover;
	animation-duration: 24s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.hp-topimage_bg.bg1 {
	background-image: url("images/top_image_01.jpg");
	animation-name: fade1;
}

.hp-topimage_bg.bg2 {
	background-image: url("images/top_image_02.jpg");
	animation-name: fade2;
}

.hp-topimage_bg.bg3 {
	background-image: url("images/top_image_03.jpg");
	animation-name: fade3;
}

@keyframes fade1 {
	0% {
		opacity: 1;
	}

	20.83% {
		opacity: 1;
	}

	33.33% {
		opacity: 0;
	}

	87.5% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fade2 {
	0% {
		opacity: 0;
	}

	20.83% {
		opacity: 0;
	}

	33.33% {
		opacity: 1;
	}

	54.16% {
		opacity: 1;
	}

	66.66% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fade3 {
	0% {
		opacity: 0;
	}

	54.16% {
		opacity: 0;
	}

	66.66% {
		opacity: 1;
	}

	87.5% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.hp-topimage_mokumoc {
	position: absolute;
	font-family: 'MeowScript-Regular', "sans-serif";
	color: #ffffff;
	font-size: 70px;
	font-weight: normal;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
	padding: 0;
	line-height: 1;
	bottom: 20px;
	right: 50px;
	transition: 0.3s ease;
}

/*レスポンシブ*/
@media(max-width :1240px) {}

@media(max-width :900px) {}

@media(max-width :800px) {

	.hp-topimage {
		height: 230px;
	}

	.hp-topimage_mokumoc {
		font-size: 60px;
		bottom: 15px;
	}

}

@media(max-width :600px) {

	.hp-topimage {
		box-shadow: 20px 0px 50px 20px rgba(0, 0, 0, 0.5) inset;
		height: 160px;
	}

	.hp-topimage_mokumoc {
		font-size: 50px;
		right: 30px;
		bottom: 10px;
	}

}

@media(max-width :450px) {

	.hp-topimage_mokumoc {
		font-size: 45px;
	}

}

/*---------------トップ画像部分ここまで---------------*/





/*---------------ヘッダーメニュー---------------*/
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	background: #ceb988;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding: 5px;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-left: 20px;
}

.site-icon {
	width: 25px;
	pointer-events: none;
}

.site-name {
	font-size: 20px;
	font-family: 'DancingScript-Medium', sans-serif;
}

.header-nav-wrap {
	background-color: transparent;
	text-align: right;
	padding-right: 20px;
}

.header-nav li {
	display: inline-block;
}

.header-nav li a {
	font-size: 18px;
	font-family: 'craftmincho', "sans-serif";
	letter-spacing: -0.05em;
	color: #3f2a0f;
	display: inline-block;
	margin: 10px;
	transition: 0.3s ease;
}

.header-nav li a:hover {
	transform: translateY(2px);
	opacity: .6;
}

@media(max-width :800px) {

	.header-nav li a {
		font-size: 16px;
		margin: 9px;
	}

}

@media(max-width :600px) {

	.header-left {
		margin-left: 10px;
	}

	.header-nav-wrap {
		padding-right: 10px;
	}

	.header-nav li a {
		font-size: 14px;
		margin: 8px 5px;
	}

}

@media(max-width :500px) {
	header {
		display: block;
	}

	.header-nav-wrap {
		text-align: center;
		padding: 0px;
	}

	.header-nav {
		display: block;
	}

	.header-left {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 5px 10px;
		margin-top: 7px;
		padding-bottom: 8px;
		border-bottom: 2px solid #846033;
		border-radius: 0px 0px 200px 400px / 15px 200px 15px 60px;
	}

}

/*---------------ヘッダーここまで---------------*/





/*---------------ヘッダーサブメニュー---------------*/
.header-nav .sub-menu {
	position: relative;
	display: none;
	z-index: 1105;
	width: 95%;
	margin-top: -1px;
	opacity: 0.8;
	background-color: #afa89d;
	border-radius: 0 0 5px 5px;
}

.header-nav .sub-menu li {
	display: block;
	float: none;
	padding: .3rem;
	border-bottom: 1px solid #514942;
}

.header-nav .sub-menu li:last-child {
	border-bottom: none;
}

.header-nav li:hover .sub-menu {
	display: block;
}

.header-nav .sub-menu li a {
	font-family: "sans-serif";
	font-size: 12px;
	font-weight: normal;
	margin-left: 15px;
	text-align: left;
	color: #000;
}

@media (min-width: 801px) {
	.header-nav .sub-menu {
		position: absolute;
		width: 150px;
	}

}

/*---------------ヘッダーサブメニューここまで---------------*/





/*---------------フッターのCSS---------------*/
.footer {
	background: #ceb988;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	height: 50px;
}

.copyright {
	font-family: 'RocknRollOne-Regular', "sans-serif";
	font-size: 12px;
	text-align: center;
	position: relative;
}

/*---------------フッターここまで---------------*/




/*---------------HOMEページ---------------*/
.home-contents {
	background-color: rgb(243, 238, 217, 0.8);
	padding: 30px 40px 35px;
	transition: 0.3s ease;
}

@media(max-width :600px) {
	.home-contents {
		padding: 5px;
		padding-top: 10px;
	}
}

/*---------------HOMEページここまで---------------*/





/*---------------HP内リンク案内部分---------------*/
.hplink-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	padding: 30px;
	padding-top: 10px;
}

.hplink-card {
	background-color: rgba(0, 0, 0, 0.1);
	background-blend-mode: multiply;
	display: block;
	box-sizing: border-box;
	text-decoration: none;
	border-radius: 40px 25px 60px 35px / 20px 60px 30px 45px;
	box-shadow: 10px 0px 40px 20px rgba(0, 0, 0, 0.4) inset;
	color: #fff;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 30px;
	transition: 0.3s ease;
	z-index: 1;
}

.hplink-card:hover {
	transform: translateY(5px);
	filter: brightness(0.9);
}

.hplink-card.left {
	flex: 1 1 45%;
	max-height: 400px;
}

.right-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1 1 45%;
	max-height: 400px;
}

.hplink-card.right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hplink-card-text {
	position: relative;
	z-index: 2;
	color: #ffffff;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
	line-height: 1.1;
}

.hplink-card-big-text {
	font-family: 'craftmincho', sans-serif;
	display: inline-block;
	font-size: 24px;
	margin-bottom: 10px;
}

.hplink-card-small-text {
	font-family: 'RocknRollOne-Regular', sans-serif;
	font-size: 13px;
}

.hplink-card.left.bg1 {
	background-image: url("images/bg_left_1.jpg");
}

.hplink-card.right.bg1 {
	background-image: url("images/bg_right_1.jpg");
}

.hplink-card.right.bg2 {
	background-image: url("images/bg_right_2.jpg");
}

.hplink-card.right.bg3 {
	background-image: url("images/bg_right_3.jpg");
}

@media(max-width :1240px) {
	.hplink-card-small-text {
		font-size: 12px;
	}

}

@media(max-width :900px) {
	.hplink-layout {
		padding: 10px;
	}

	.hplink-layout,
	.right-group {
		display: block;
	}

	.hplink-card,
	.hplink-card.left,
	.hplink-card.right {
		height: 120px;
		width: 100%;
		box-sizing: border-box;
	}

	.hplink-card {
		margin-bottom: 20px;
	}

	.hplink-card.left,
	.hplink-card.right {
		display: flex;
		box-sizing: border-box;
		flex-direction: column;
		justify-content: center;
		padding: 30px;
	}

	.hplink-card-big-text {
		font-size: 23px;
		margin-bottom: 10px;
	}

	.hplink-card-small-text {
		font-size: 12px;
	}
}

@media(max-width :600px) {
	.hplink-layout {
		padding: 15px;
	}

	.hplink-card.right.bg3 {
		margin-bottom: 0px;
	}

}

/*---------------HP内リンク案内部分ここまで---------------*/





/*---------------外部リンク案内部分のCSS---------------*/
.link-card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0 auto;
	padding: 16px 0px;
}

.link-card {
	background-color: #dfd2b3;
	display: block;
	border-left: 15px solid #c3a96c;
	border-radius: 3px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: 0.3s ease;
}

.link-card:hover {
	transform: translateY(5px);
}

.link-card-text {
	font-family: 'craftmincho', sans-serif;
	letter-spacing: -0.05em;
	padding: 10px;
}

.link-card-text {
	line-height: 1.2;
}

.link-card-big-text {
	display: inline-block;
	font-size: 18px;
	margin-bottom: 5px;
}

.link-card-big-text::before {
	content: '★';
	color: #c3a96c;
	margin-right: 5px;
}

.link-card-small-text {
	font-family: 'RocknRollOne-Regular', sans-serif;
	font-size: 12px;
}

@media(max-width :1240px) {
	.link-card-grid {
		grid-template-columns: repeat(3, 1fr);
	}

}

@media(max-width :800px) {
	.link-card-grid {
		grid-template-columns: repeat(2, 1fr);
		padding: 5px;
	}

}

@media(max-width :600px) {
	.link-card-grid {
		grid-template-columns: repeat(1, 1fr);
		padding: 20px 22px;
		gap: 17px;
	}

	.link-card {
		margin: 0px 15px;
	}

	.link-card-big-text {
		font-size: 15px;
		margin-bottom: 2px;
	}

	.link-card-small-text {
		font-size: 11px;
	}

}

/*---------------外部リンク案内部分ここまで---------------*/





/*---------------PROFILE(プロフィール)ページのCSS---------------*/
.profile-icon {
	max-width: 150px;
	max-height: 150px;
	border-radius: 50%;
	pointer-events: none;
}

.profile-container {
	background-color: rgb(243, 238, 217, 0.8);
	box-sizing: border-box;
	padding: 30px;
	transition: 0.3s ease;
}

.profile-contents {
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 15px;
	box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.3);
	margin-left: auto;
	margin-right: auto;
	padding: 30px;
	padding-bottom: 50px;
	transition: 0.3s ease;
}

.profile-contents p,
.profile-contents p a,
.profile-contents h1,
.profile-contents h2,
.profile-contents h3,
.profile-contents h4 {
	transition: 0.3s ease;
}

.profile-contents ul {
	list-style: none;
}

.profile-contents h1 {
	font-family: 'craftmincho', "sans-serif";
	letter-spacing: -0.05em;
	display: block;
	font-size: 25px;
	background-color: #dfd2b3;
	border-left: 10px solid #3f2a0f;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
	border-radius: 3px;
	padding: 15px;
	width: 200px;
	margin-bottom: 30px;
}

.profile-contents h2 {
	display: block;
	font-size: 20px;
	margin: 30px 0px 10px 0px;
	padding: 10px 0px;
	letter-spacing: 1px;
	border-bottom: 2px solid #3f2a0f;
}

.profile-contents h3 {
	display: block;
	font-size: 19px;
	padding: 15px 0px;
}

.profile-contents h4 {
	display: block;
	font-size: 16px;
	padding: 10px 0px;
}


.profile-contents p {
	display: block;
	font-size: 14px;
	margin-bottom: 25px;
}

.profile-contents p a:hover {
	opacity: .6;
}

.profile-contents hr {
	display: block;
	border-top: 1px solid #3f2a0f;
	padding: 10px;
}

@media(max-width :800px) {
	.profile-container {
		padding: 20px;
	}
}

@media(max-width :600px) {
	.profile-contents {
		padding: 30px;
	}

	.profile-contents h1 {
		font-size: 22px;
		padding: 12px;
		width: 150px;
	}

	.profile-contents p {
		font-size: 12px;
	}
}

@media(max-width :450px) {

	.profile-contents h2 {
		font-size: 19px;
		line-height: 1.6;
		border-bottom: 3px solid #3f2a0f;
		padding: 5px 0px;
	}

	.profile-contents p {
		font-size: 13px;
		line-height: 1.6;
	}
}

/*---------------PROFILEページここまで---------------*/





/*---------------GALLERY(ギャラリー)ページのCSS---------------*/
.gallery-container {
	background-color: rgb(243, 238, 217, 0.8);
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding: 30px;
	padding-bottom: 40px;
}

.gallery-container h1 {
	font-family: 'craftmincho', "sans-serif";
	letter-spacing: -0.05em;
	display: block;
	font-size: 25px;
	text-align: center;
	background-color: #dfd2b3;
	border-left: 10px solid #3f2a0f;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
	border-radius: 3px;
	padding: 15px;
	max-width: 200px;
	margin: 0px auto;
	transition: 0.3s ease;
}

.gallery-container h2 {
	font-family: 'RocknRollOne-Regular', "sans-serif";
	display: block;
	font-size: 18px;
	text-align: center;
	margin: 0px auto;
	margin-bottom: 15px;
}



/*ギャラリーナビゲーション*/
.gallery-nav-wrap {
	max-width: 500px;
	text-align: center;
	margin: 20px auto;
	margin-bottom: 10px;
	padding: 10px;
}

.gallery-nav {
	border-bottom: 3px solid #846033;
	border-radius: 0px 0px 200px 400px / 15px 200px 15px 60px;
	padding-bottom: 10px;
}

.gallery-nav li {
	display: inline-block;
}

.gallery-nav li a {
	font-family: 'craftmincho', "sans-serif";
	font-size: 18px;
	letter-spacing: -0.05em;
	text-decoration: none;
	color: #3f2a0f;
	margin: 0px 8px;
	display: inline-block;
	transition: 0.3s ease;
}

.gallery-nav li a:hover {
	transform: translateY(2px);
	opacity: .6;
}

/*ギャラリーナビゲーションここまで*/



.gallery-content {
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}

.gallery-content p {
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
	padding-bottom: 30px;
}

@media(max-width :800px) {
	.gallery-container {
		padding: 30px 10px;
		padding-bottom: 40px;
	}
}

@media(max-width :600px) {
	.gallery-container {
		padding: 20px 5px;
		padding-bottom: 30px;
	}

	.gallery-nav li a {
		font-size: 16px;
	}
}

@media(max-width :450px) {
	.gallery-container h1 {
		font-size: 20px;
		padding: 10px;
		max-width: 150px;
	}

	.gallery-nav li a {
		font-size: 14px;
	}
}

/*---------------GALLERYページここまで---------------*/





/*---------------404ページのCSS---------------*/
.four-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: rgb(243, 238, 217, 0.8);
	box-sizing: border-box;
	max-width: 1200px;
	padding: 50px;
	margin: 0 auto;
}

.four-h1 {
	margin-bottom: 30px;
	color: #3f2a0f;
	font-size: 25px;
}

.four-p {
	text-align: left;
	color: #3f2a0f;
	font-size: 15px;
	margin-bottom: 10px;
}

.four-img {
	max-width: 700px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	pointer-events: none;
}

.four-homeback {
	font-family: 'craftmincho', "sans-serif";
	letter-spacing: -0.05em;
	display: block;
	font-size: 19px;
	color: #3f2a0f;
	background-color: #dfd2b3;
	border-left: 10px solid #3f2a0f;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
	border-radius: 3px;
	max-width: 180px;
	width: 100%;
	padding: 15px;
	transition: 0.3s ease;
}

.four-homeback:hover {
	transform: translateY(5px);
}

@media(max-width: 800px) {
	.four-container {
		padding-top: 40px;
		padding-bottom: 20px;
	}

	.four-h1 {
		margin-bottom: 20px;
		font-size: 20px;
	}

	.four-p {
		margin-bottom: 15px;
		font-size: 13px;
	}

	.four-homeback {
		margin-top: 10px;
		font-size: 15px;
	}
}

@media(max-width: 600px) {
	.four-container {
		padding: 30px;
	}

	.four-h1 {
		font-size: 15px;
	}

	.four-p {
		margin-bottom: 20px;
		font-size: 12px;
	}

	.four-homeback {
		font-size: 13px;
		max-width: 140px;
		padding: 10px;
		margin-top: 20px;
	}
}

@media(max-width :450px) {
	.four-p {
		font-size: 11px;
	}
}

/*---------------404ページここまで---------------*/





/*---------------以下は投稿ページのCSS(今は使ってないページ)---------------*/





/*---------------indexページ---------------*/
.index-container {
	background-color: rgb(243, 238, 217, 0.8);
	box-sizing: border-box;
	padding: 30px;
	transition: 0.3s ease;
}

.index-container:after {
	display: block;
	clear: both;
	content: '';
}

.index-contents {
	float: left;
	width: 70%;
	margin: 0 2.5%;
}

.sidebar {
	float: left;
	width: 20%;
	margin: 0 2.5%;
}

@media(max-width: 800px) {

	.index-contents,
	.sidebar {
		float: none;
		width: 100%;
		margin: 0;
	}

	.index-container {
		padding: 30px;
	}

	.index-contents {
		margin-bottom: 20px;
	}

	.sidebar {
		max-width: 300px;
		margin: 0 auto;
	}
}

@media(max-width: 600px) {

	.index-container {
		padding: 20px;
	}

	.index-contents {
		margin-bottom: 10px;
	}

	.sidebar {
		max-width: 250px;
	}
}

/*---------------indexページここまで---------------*/





/*---------------ブログバナー---------------*/
.blog-banner {
	position: relative;
	display: block;
	text-align: center;
	max-width: 500px;
	font-family: 'craftmincho', "sans-serif";
	font-size: 28px;
	line-height: 1.5;
	background-color: #dfd2b3;
	color: #3f2a0f;
	font-weight: bold;
	letter-spacing: 1px;
	border-left: 15px solid #c3a96c;
	border-right: 15px solid #c3a96c;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	transition: 0.3s ease;
	margin: 30px auto;
	margin-top: 0px;
	padding: 10px 0;
}

.blog-banner::before,
.blog-banner::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 15px;
	height: 15px;
	background-color: #c3a96c;
	border-radius: 50%;
	transform: translateY(-50%);
}

.blog-banner::before {
	left: 10px;
}

.blog-banner::after {
	right: 10px;
}


.blog-banner:hover {
	transform: translateY(5px);
}

@media(max-width: 800px) {
	.blog-banner {
		font-size: 24px;
	}
}

@media(max-width: 600px) {

	.blog-banner::before,
	.blog-banner::after {
		width: 12px;
		height: 12px;
	}

	.blog-banner {
		font-size: 20px;
	}
}

/*---------------ブログバナーここまで---------------*/





/*---------------記事本文CSS---------------*/
.article-list {
	background-color: rgba(255, 255, 255, 0.5);
	margin-bottom: 30px;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.article-list h2 {
	display: inline-block;
	font-size: 20px;
	line-height: 1.6;
	background-color: #dfd2b3;
	border-left: 10px solid #3f2a0f;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
	border-radius: 3px;
	padding: 10px;
	padding-right: 50px;
	margin-bottom: 15px;
	transition: 0.3s ease;
}

.article-list h2:hover {
	transform: translateY(5px);
}

.article-list p {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 25px;
}

.article-list a {
	display: inline;
}

.article-list a:after {
	display: inline;
	clear: both;
	content: '';
}

.article-list a:hover {
	opacity: .6;
}

.article-list img {
	margin-bottom: 30px;
}

.article-list h3 {
	display: inline-block;
	font-size: 18px;
	line-height: 1.6;
	background-color: #eee4cc;
	border-left: 10px solid #ceb988;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
	border-radius: 3px;
	padding: 5px;
	padding-right: 30px;
	transition: 0.3s ease;
	margin-bottom: 30px;
}

.article-list h3::before {
	content: '★';
	color: #ceb988;
	margin-right: 5px;
}

.article-list h4 {
	position: relative;
	display: inline-block;
	font-size: 15px;
	line-height: 1.6;
	background-color: #eee4cc;
	border: 3px solid #c9b992;
	border-radius: 10px;
	padding: 4px 8px;
	transition: 0.3s ease;
	margin: 20px 0;
}

.article-list h4::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 20px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 12px solid #eee4cc;
}

.article-list h4::before {
	content: '';
	position: absolute;
	bottom: -16px;
	left: 18px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 14px solid #c9b992;
}

.article-list .more-link {
	display: inline-block;
	text-decoration: none;
	font-size: 15px;
	color: rgb(125, 125, 150);
	margin: 10px 0 0 0;
}

.article-list .cat-data a {
	font-size: 12px;
	display: inline-block;
	text-decoration: none;
	margin: 30px 0 10px;
	color: #888;
}

.article-list .article-date {
	font-size: 12px;
	font-weight: bold;
	display: block;
	margin-bottom: 1rem;
	color: #888;
}

.article-list .article-date {
	margin-right: .5rem;
}

.article-list i {
	margin-right: .3rem;
}

.article-list hr {
	border-top: 1px dashed #3f2a0f;
}

.article-list .content-boader {
	box-sizing: border-box;
	margin-top: 20px;
	border-bottom: 2px dotted #3f2a0f;
}

.blog-no-contents {
	background-color: rgba(255, 255, 255, 0.5);
	margin-bottom: 30px;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.blog-no-contents p {
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
}

@media(max-width: 800px) {
	.article-list p {
		font-size: 15px;
	}

	.article-list .more-link {
		font-size: 14px;
		margin: 7px 0 0 0;
	}

	.blog-no-contents p {
		font-size: 15px;
	}

	.article-list h3 {
		font-size: 17px;
	}

}

@media(max-width: 600px) {
	.article-list {
		padding: 20px;
	}

	.article-list p {
		font-size: 13px;
	}

	.article-list .more-link {
		font-size: 12px;
		margin: 3px 0 0 0;
	}

	.blog-no-contents p {
		font-size: 13px;
	}

	.article-list h2 {
		font-size: 16px;
		padding-right: 40px;
	}

	.article-list h3 {
		font-size: 15px;
	}

	.article-list h4 {
		font-size: 14px;
	}
}

/*---------------記事本文CSSここまで---------------*/





/*---------------記事本文内の動画はみだし防止---------------*/
.video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-bottom: 30px;
}

.video iframe,
.video object,
.video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*---------------記事本文内の動画はみだし防止ここまで---------------*/





/*---------------アーカイブページ---------------*/
.archive-top {
	font-family: 'craftmincho', "sans-serif";
	background-color: #dfd2b3;
	/*border-left: 10px solid #3f2a0f;*/
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
	border-radius: 3px;
	padding: 12px;
	margin-bottom: 20px;
}

.archive-top h1 {
	font-size: 17px;
}

@media(max-width: 800px) {
	.archive-top h1 {
		text-align: center;
		margin-left: 0;
	}
}

@media(max-width: 600px) {
	.archive-top {
		margin-bottom: 20px;
	}
}

/*---------------アーカイブページここまで---------------*/





/*---------------ページネーション---------------*/
.pagination {
	margin: 2rem 0;
	text-align: center;
}

.pagination ul {
	font-size: 0;
}

.pagination ul li {
	font-size: 12px;
	display: inline-block;
	margin-right: .5rem;
}

.pagination ul li:last-child {
	border: 0;
}

.pagination ul li a,
.pagination .current {
	display: block;
	padding: .5rem .8rem;
	background-color: #dfd2b3;
	border-radius: 10px;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.pagination ul li .prev,
.pagination ul li .next {
	border: 0;
	color: #3f2a0f;
	background-color: transparent;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.pagination ul li a {
	color: #3f2a0f;
}

.pagination ul li a:hover {
	opacity: .6;
}

.pagination .current {
	color: #dfd2b3;
	background-color: #3f2a0f;
}

/*---------------ページネーションここまで---------------*/





/*---------------サイドバー---------------*/
.widget {
	background-color: #dfd2b3;
	margin-bottom: 30px;
	padding: 0 15px;
	padding-bottom: 50px;
	border-radius: 10px;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.widget-title {
	border-bottom: 2px dotted #3f2a0f;
	display: block;
	font-size: 19px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 15px;
	width: 100%;
}

.widget ul {
	list-style: none;
	text-align: center;
	margin-top: 10px;
}

.widget ul li {
	font-size: 14px;
	padding: 3px 0;
}

.widget ul li a {
	color: #444;
	text-decoration: none;
}

.widget ul li a:hover {
	opacity: .6;
}

@media(max-width :800px) {

	.widget h1 {
		font-size: 16px;
	}

	.widget-title {
		font-size: 18px;
	}

}

@media(max-width :600px) {
	.widget h1 {
		font-size: 15px;
	}

	.widget-title {
		font-size: 16px;
	}

}

/*---------------サイドバーここまで---------------*/