@charset "utf-8";

/*========================================================================================================
　共通
----------------------------------------------------------------------------------------------------------
Googleフォント（400=Regular / 500=Medium / 600=SemiBold / 700=Bold）

font-family: "Noto Sans JP", sans-serif;
font-weight: <400,500,700>;
font-style: normal;
font-optical-sizing: auto;

font-family: "Noto Serif JP", serif;
font-weight: <400,600,700>;
font-style: normal;
font-optical-sizing: auto;

font-family: "Libre Baskerville", serif;
font-weight: <400,700>;
font-style: normal;
========================================================================================================*/

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	height:100%;
	font-size: 16px;
	line-height: 2;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #333;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
}

header, nav, main, section, footer, div, p,
h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, th, td, form, figure {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

input, button, select, textarea {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
}

ul li,
ol li {
	list-style: none;
}

/* 背景画像
--------------------------------------------------------------------------*/
#bg{
	max-width: 1000px;
	height: 200px;
	background-image: url(../images/bg_sp.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: auto 200px;
}

/* 枠
--------------------------------------------------------------------------*/
#wrapper{
	margin: 0 auto;
	padding: 0;
}

main {
	margin: 0 0 96px 0;
	padding: 0;
}

/*テキストの改行位置を調整
--------------------------------------------------------------------------*/
h1 span, h2 span, h3 span, h4 span {
	display: inline-block;
}

.text-br {
	display: inline-block;
}

/*改行
--------------------------------------------------------------------------*/
.pc_br{
	display: none;
}

/* テキスト装飾
--------------------------------------------------------------------------*/
.marker{
	font-weight: bold;
	background: linear-gradient(transparent 75%, #ffe0c1 75%);
}

.newline {
	margin: 16px 0 0 0;
	padding: 0;
}

/* リンク設定（共通）
--------------------------------------------------------------------------*/
a:link,
a:visited,
a:active {
	color: #333;
	outline: none;
	transition: all 0.3s 0s ease;
}
a:hover {
	color: #65ab31;
	text-decoration: none;
}

/*フォーカス時の枠線非表示*/
*:focus {
	outline: none;
}
/*タップ時の枠線非表示*/
a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor:pointer;
}

/*画像関連
--------------------------------------------------------------------------*/
img {
	max-width: 100%;
	height: auto;
	/*display: block;	/*余白リセット*/
}
a img {
	transition: all 0.3s 0s ease;
}
a:hover img {
	opacity: 0.8;	/*hover時の不透過度*/
}

/* 配置、回り込み解除
--------------------------------------------------------------------------*/
.center {
	text-align: center;
}

.floatHidden {
	overflow: hidden;
}

.floatClear {
	clear: both;
}

/*---------------------------------------------------------------------------------------------------------
ヘッダーメニュー
----------------------------------------------------------------------------------------------------------*/
header {
	max-width: 1000px;
	margin: 0;
	padding: 0;
}

.logoBox {
	margin: -110px 0 32px 0;
	padding: 0;
}
.logo {
	width: 200px;
	margin: 0 0 0 auto;
	padding: 0 16px 0 0;
}
.logo img{
	margin: 0;
	padding: 0;
}
.pc { display: none !important; }
.sp { display: block !important; }

/* ハンバーガーメニュー
--------------------------------------------------------------------------*/
@media screen and (max-width: 1023px) {
	.hm_menu_check {
		display: none;
	}
	.hm_wrap {
		display: inline-block;
		position : fixed;
		top :0;
		left :0;
		width :100%;
		z-index :11;/*2019-06-07追加*/
	}

	/* ハンバーガーメニュー */
	.hm_btn {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 50px;
		height: 50px;
		cursor: pointer;
		background-image: url(../images/btn_hmenu.png);
		background-size: 50px 50px;
		z-index: 5;
	}

	.hm_menu_wrap {
		/*width :70%;
		height :10000px;*/
		width :220px;
		height :100vh;
		overflow :auto;
		background: #fff;
		position: absolute;
		left: -100%;
		top: 0;
		-webkit-transition: left 0.4s;
		transition: left 0.4s;
		box-shadow: 0px 5px 5px rgba(0,0,0,0.2);	/*背景のシャドウ*/
		z-index: 4;
	}

	/* 開閉時のアニメーション */
	.hm_menu_check:checked ~ .hm_title {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	.hm_menu_check:checked ~ .hm_btn::before {
		-webkit-box-shadow: transparent 0 0 0;
		box-shadow: transparent 0 0 0;
		-webkit-transform: rotate(45deg) translate3d(6px, 11px, 0);
		transform: rotate(45deg) translate3d(6px, 11px, 0);
	}
	.hm_menu_check:checked ~ .hm_btn::after {
		-webkit-transform: rotate(-45deg) translate3d(6px, -11px, 0);
		transform: rotate(-45deg) translate3d(6px, -11px, 0);
	}
	.hm_menu_check:checked ~ .hm_menu_wrap {
		left: 0;
	}

	/* オープン時の背景（クローズ機能あり） */
	.hm_menu_close {
		width :0;
		height :0;
		background: #000;
		opacity :0;
		position: absolute;
		top: 0;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.hm_menu_close label {
		display :block;
		width :100%;
		height :100%;
		cursor : pointer;
	}
	.hm_menu_check:checked ~ .hm_menu_close {
		width :100%;
		height :10000px;
		opacity :0.1;
	}

	/* メニュー内のタイトル */
	.hm_logo {
		width: 135px;
		margin: 40px 0 0 35px;
		padding: 0;
	}
	/* メニュー内のリストスタイル */
	.hm_list {
		float: left;
		margin: 0 0 40px 0;
		padding: 10px;
	}
	.hm_list li {
		margin: 0 0 0 10px;
		padding: 5px 10px 5px 0;
		list-style: none;
		border-bottom: 1px dotted #cdcdcd;
	}
	.hm_list a {
		display: block;
		overflow: hidden;
		padding: 8px 22px;
		position: relative;
		text-decoration: none;
		font-family: 'Libre Baskerville',serif;
		font-size: 16px;
		/*z-index: 1;*/
	}
	.hm_list div.kana {
		margin: -5px 0 0 0;
		padding: 0;
		font-family: "Noto Sans JP", sans-serif;
		font-size: 10px;
	}
}

/*---------------------------------------------------------------------------------------------------------
Welcome to mayumin BOX
----------------------------------------------------------------------------------------------------------*/
.welcome-wrap {
	overflow: hidden;
	max-width: 900px;
	margin: 16px auto 0;
	padding: 0 24px;
}
.lamp {
	float: left;
	margin: 0 12px 0 0;
	width: 95px;
}
.welcome-wrap h1 {
	margin: 0;
	padding: 8px;
	font-size: 24px;
	line-height: 1.2;
	font-family: 'Libre Baskerville',serif;
	font-weight: 400;
	font-style: normal;
}

/* 花飾り */
.flower {
	max-width: 600px;
	margin: 32px auto 0;
	padding: 16px 12px 24px 12px;
}

/* 花飾り（トップページ以外） */
.flower-common {
	max-width: 500px;
	margin: 32px auto 0;
	padding: 0;
}
.flower-commonr img {
	padding: 0;
	text-align: center;
}

/*---------------------------------------------------------------------------------------------------------
イラスト
----------------------------------------------------------------------------------------------------------*/
.slider-wrap {
	width: 100%;
	margin: 0;
	padding: 0;
}

.illust-bg {
	overflow: hidden;
	width: 100%;
	position: relative;
	background-color: #efefee;
	background: url(../images/bg_wall.jpg) ;
	margin: 54px 0 0 0;
	padding: 64px 24px;
}
.illust-bg::after{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	width: 0px;
	height: 0px;
	margin: 0 auto;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
	border-width: 30px 40px 0 40px;
}

.illust-wrap {
	max-width: 700px;
	margin: 0 auto;
	padding: 48px 32px;
	background-color: #fff;
	border-radius: 20px;
}
.illust-wrap h2 {
	font-size: 32px;
	line-height: 1;
	font-family: 'Libre Baskerville',serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
}
.illust-wrap h2 span {
	margin: 0 0 0 16px;
	padding: 0;
	font-size: 15px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 700;
}
.illust-wrap .pixta {
	width: 110px;
	margin: 32px auto 0;
	padding: 0;
}
.illust-wrap dl {
	margin: 32px 0 0 0;
	padding: 0;
}
.illust-wrap dt {
	position: relative;
	margin: 0 0 32px 0;
	padding: 0;
	font-size: 18px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 700;
	text-align: center;
}
.illust-wrap dt::after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 40px;
	height: 5px;
	left: 50%;
	bottom: -16px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #f5f2ef;
	border-radius: 2px;
}

/*
.illust-wrap a:link,
.illust-wrap a:active,
.illust-wrap a:visited {
	color: #65ab31;
	outline: none;
}
.illust-wrap a:hover {
	color: #65ab31;
	text-decoration: none;
}
*/

/*---------------------------------------------------------------------------------------------------------
ダウンロード
----------------------------------------------------------------------------------------------------------*/
.dl-wrap {
	width: 100%;
	margin: 0;
	padding: 64px 0 0 0;
	background: url(../images/bg_tree.png) no-repeat bottom left/300px;
}

.dl-title {
	position: relative;
	float: right;
	width: 340px;
}
.dl-title::before {
	position: absolute;
	content: '';
	margin: -28px 0 0 0;
	padding: 0;
	width: 340px;
	height: 84px;
	background: url(../images/bg_titile_right.png) no-repeat bottom right/contain;
}
.dl-title h2 {
	font-size: 32px;
	font-family: 'Libre Baskerville',serif;
	font-weight: 400;
	font-style: normal;
	line-height: 0.95;
	text-align: center;
}

.dl-inner {
	max-width: 700px;
	margin: 48px auto 0;
	padding: 24px;
}
.dl-inner h3 {
	margin: 0;
	padding: 16px;
	font-size: 24px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 600;
	background: url(../images/bg_title_circle.png) no-repeat top left/contain;
}
.dl-inner p.read{
	margin: 24px 0 0 0;
	padding: 0;
}

/* スイング設定
--------------------------------------------------------------------------*/
.swing-wrap {
	max-width: 360px;
	margin: 0 auto;
	padding: 16px 8px 32px 8px;
}
@media screen and (min-width: 590px) and ( max-width:767px) {
	.swing-wrap {
		max-width: 550px;
	}
}
@media screen and (min-width:768px) and ( max-width:1023px) {
	.swing-wrap {
		max-width: 700px;
	}
}

.swing-outer {
	zoom: 1;
	display: flex;
	flex-wrap: wrap;
}
.swing-outer::before,
.swing-outer::after {
	content: "";
	display: table;
}
.swing-outer::after {
	clear: both;
}

/*よこサイズ*/
.swingY {
	display: block;
	margin: 32px 22px;
	animation: swing linear 4s infinite;
	transform-origin: center -20px 0;
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
}
.swingY img {
	z-index: 2;
	display: block;
	width: 125px;
}
.swingY::after {
	content: '';
	border: 1px solid #999;
	top: -10px;
	z-index: 0;
	left: 45%;
	width: 20px;
	height: 20px;
	border-bottom: none;
	border-right: none;
	transform: rotate(45deg);
	position: absolute;
}
.swingY::before {
	content: '';
	top: -14px;
	z-index: 5;
	left: 51%;
	width: 5px;
	border-radius: 50% 50%;
	background-color: #000;
	height: 5px;
	position: absolute;
}

/*たてサイズ*/
.swingT {
	display: block;
	margin: 32px 40px;
	animation: swing linear 4s infinite;
	transform-origin: center -20px 0;
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
}
.swingT img {
	z-index: 2;
	display: block;
	width: 90px;
}
.swingT::after {
	content: '';
	border: 1px solid #999;
	top: -10px;
	z-index: 0;
	left: 40%;
	width: 20px;
	height: 20px;
	border-bottom: none;
	border-right: none;
	transform: rotate(45deg);
	position: absolute;
}
.swingT::before {
	content: '';
	top: -14px;
	z-index: 5;
	left: 48%;
	width: 5px;
	border-radius: 50% 50%;
	background-color: #000;
	height: 5px;
	position: absolute;
}

@keyframes swing {
	0% {transform: rotate(0deg);}
	25% {transform: rotate(10deg);}
	50% {transform: rotate(0deg);}
	75% {transform: rotate(-10deg);}
	100% {transform: rotate(0deg);}
}

/*秒数*/
.swing.cycle-2s {animation-duration: 2s;}
.swing.cycle-4s {animation-duration: 4s;}
.swing.cycle-6s {animation-duration: 6s;}
.swing.cycle-8s {animation-duration: 8s;}


/* 印刷方法
--------------------------------------------------------------------------*/
.print-bg {
	overflow: hidden;
	width: 100%;
	position: relative;
	background: url(../images/bg_wall.jpg) ;
	margin: 0;
	padding: 64px 24px;
}
.print-bg::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
	border-width: 30px 40px 0 40px;
}

.print-wrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 32px 24px;
	background-color: #fff;
	border-radius: 20px;
}
.print-wrap h4 {
	position: relative;
	margin: 0 0 48px 0;
	padding: 0;
	text-align: center;
	font-size: 20px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 700;
}
.print-wrap h4::after {
	position: absolute;
	content: '';
	bottom: -16px;
	display: inline-block;
	width: 40px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #f5f2ef;
	border-radius: 2px;
}

.print-wrap ul {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
@media screen and (max-width: 600px) {
	.print-wrap ul {
		margin: 0;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}
.print-wrap ul li {
	margin: 0;
	padding: 0;
}
.print-wrap ul li img {
	display: block;
}

#bannerAcrobat {
	margin: 16px auto 0;
	padding: 16px 0;
}
#bannerAcrobat img {
	display: block;	
	margin: 0;
	padding: 0;
}
#bannerAcrobat p.text{
	margin: 8px 0 0 0;
	padding: 0;
	font-size: 13px;
	line-height: 1.8;
}

/*---------------------------------------------------------------------------------------------------------
プロフィール
----------------------------------------------------------------------------------------------------------*/
#profile {
	width: 100%;
	padding: 124px 0 0 0;
	background: url(../images/bg_lamp_02.png) no-repeat top 0 right 5%/300px;
}
.profile-title {
	position: relative;
	width: 340px;
	margin: 24px 0 0 0;
	padding: 0;
}
.profile-title h2 {
	font-size: 32px;
	font-family: 'Libre Baskerville',serif;
	font-weight: 400;
	font-style: normal;
	line-height: 0.95;
	text-align: center;
}
.profile-title::before {
	position: absolute;
	content: '';
	margin: -28px 0 0 0;
	padding: 0;
	width: 340px;
	height: 84px;
	background: url(../images/bg_titile_left.png) no-repeat bottom left/contain;
}

.profile-wrap {
	max-width: 700px;
	margin: 24px auto 0;
	padding: 24px 24px 32px 24px;
}
.profile-wrap .name {
	margin: 0;
	padding: 20px 0;
	font-size: 22px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 600;
}
.profile-wrap .furigana {
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.profile-illust {
	margin: 48px 0 0 0;
	padding: 0;
	max-width: 400px;
}
.profile-wrap h3 {
	position: relative;
	margin: 32px 0;
	font-size: 18px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 700;
	text-align: center;
}
.profile-wrap h3 span {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin: 0 2.5em;
	padding: 0 1em;
	background-color: #fff;
	text-align: left;
}
.profile-wrap h3::before {
	position: absolute;
	top: 50%;
	z-index: 1;
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #cdcdcd;
}

.profile-wrap h4 {
	margin: 0;
	padding: 0;
	text-align: center;
}

.col-wrap {
	margin: 0;
	padding: 0;
}
.col-wrap .col-l {
	margin: 0;
	padding: 0;
}
.col-wrap .col-r {
	padding: 0;
}
.dvd{
	padding: 20px 0 32px 0;
	text-align: center;
}
.dvd a{
	padding: 0 10px;
}
.hobby {
	margin: 24px 0 0 0;
	padding: 32px;
	background: url(../images/bg_wall.jpg);
	border-radius: 10px;
}
.hobby p {
	margin: 8px 0 0 0;
	padding: 0;
}
.hobby p:first-child {
	margin: 0;
	padding: 0;
}

/*---------------------------------------------------------------------------------------------------------
ブログ
----------------------------------------------------------------------------------------------------------*/
#blog {
	margin: 0;
	padding: 64px 0 64px 0;
	background: url(../images/bg_wall_top.jpg) repeat-x top left, url(../images/bg_wall_bottom.jpg) repeat-x bottom left;
}
.blog-bg {
	width: 100%;
	margin: 0;
	padding: 32px 0 24px;
	background-color: #f5f2ef;
	background: url(../images/bg_wall.jpg) top left;
}
.blog-title {
	width: 300px;
	margin: 0 auto 48px;
	padding: 60px 0;
	background: url(../images/bg_title_leaf_left.png) no-repeat top left/contain, url(../images/bg_title_leaf_right.png) no-repeat top right/contain;
}
.blog-title h2 {
	font-size: 38px;
	font-family: 'Libre Baskerville',serif;
	font-weight: 400;
	font-style: normal;
	line-height: 0.9;
	text-align: center;
}
.blog-title p.text {
	margin: 24px 0 0 0;
	padding: 0;
	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 600;
	text-align: center;
}

/*新着記事3個
--------------------------------------------------------------------------*/
.post-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 48px;
}
.post-wrap ul {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
@media screen and (max-width: 650px) {
	.post-wrap ul {
		margin: 0;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 32px 24px;
	}
}
.post-wrap ul li {
	margin: 0;
	padding: 0;
}
.post-wrap ul li img {
	margin: 0;
	padding: 0;
	border-radius: 60px;
}

/*記事の項目（見出し、日付、テキスト）※WordPressと共通
--------------------------------------------------------------------------*/
.post-inner {
	margin: 0;
	padding: 0 4px;
}
.post-inner .title {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
	text-align: left;
}
.cate-data-wrap {
	margin: 0;
	padding: 0;
}
.post-inner .data {
	margin: 2px 0 0 4px;
	padding: 0;
	font-size: 14px;
	line-height: 1.8;
	font-weight: 400;
	color: #939393;
	text-align: left;
}
.post-inner p {
	margin: 5px 0 0 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 400;
	text-align: left;
}

/* リンク設定（ブログ：見出し、カテゴリー）※WordPressと共通
--------------------------------------------------------------------------*/
.post-inner a:link,
.post-inner a:visited,
.post-inner a:active {
	outline: none;
	text-decoration: none;
}
.post-inner a:hover {
	color: #65ab31;
	text-decoration: none;
}

.post-inner .cate-data-wrap a:link,
.post-inner .cate-data-wrap a:visited,
.post-inner .cate-data-wrap a:active {
	margin: 0 2px 0 0;
	padding: 1px 6px 3px 6px;
	font-size: 12px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background-color: #333;
	border-radius: 2px;
}
.post-inner .cate-data-wrap a:hover {
	margin: 0 2px 0 0;
	padding: 1px 6px 3px 6px;
	font-size: 12px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background-color: #65ab31;
	text-decoration: none;
	border-radius: 2px;
}

.single-page-wrap .cate-data-wrap {
	margin: 0 0 24px 0;
	padding: 0;
}
.single-page-wrap .cate-data-wrap a:link,
.single-page-wrap .cate-data-wrap a:visited,
.single-page-wrap .cate-data-wrap a:active {
	margin: 0 2px 0 0;
	padding: 1px 8px 3px 8px;
	font-size: 12px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background-color: #333;
	text-decoration: none;
	border-radius: 2px;
}
.single-page-wrap .cate-data-wrap a:hover {
	margin: 0 2px 0 0;
	padding: 1px 8px 3px 8px;
	font-size: 12px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background-color: #65ab31;
	text-decoration: none;
	border-radius: 2px;
}

/*ブログ一覧ボタン
--------------------------------------------------------------------------*/
.blog-btn {
	margin: 32px 0;
	padding: 0;
	text-align: center;
}
a.btn {
	position: relative;
	display: inline-block;
	border-bottom: 2px dotted;
	padding: 0.5rem 2.6rem 0.1rem 0.5rem;
	transition: all 0.3s;
	color: #000;
	text-decoration: none;
}
a.btn::before {
	content: "";
	position: absolute;
	right: 5px;
	bottom: 0;
	width: 0;
	height: 0;
	bottom: 30%;
	border-left: 5px solid black;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	transition: all 0.3s;
}
a.btn:hover::before {
	right: 0;
}

/*---------------------------------------------------------------------------------------------------------
WordPress（ブログ）
----------------------------------------------------------------------------------------------------------*/
.wp-blog-margin {
	margin: 0 32px;
}
@media screen and (max-width: 650px) {
	.wp-blog-margin {
		margin: 0 16px;
	}
}
.wp-blog-wrap {
	max-width: 1000px;
	margin: 64px auto 0;
	padding: 0;
}
.wp-blog-title {
	margin: 0 0 32px 0;
	padding: 0;
	line-height: 1;
}
.wp-blog-title h1 {
	font-size: 40px;
	font-family: 'Libre Baskerville',serif;
	font-weight: 400;
	font-style: normal;
}
.wp-blog-title .subtitle {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.wp-blog-title .notes {
	margin: 16px 0 0 0;
	padding: 0;
	font-size: 13px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

/*トップページ 1カラム3列（index.php）
----------------------------------------------------------------------------------------------------------*/
.wp-post-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
.wp-post-wrap ul {
	margin: 0;
	padding: 0;
}
.wp-post-wrap ul li {
	margin: 0;
	padding: 24px 0;
	display: flex;
	border-bottom: 2px dotted #D5D5D5;
}
.wp-post-wrap ul li div:first-child {
	margin: 0 16px 0 0;
	width: 35%;
}
.wp-post-wrap ul li div:last-child {
	width: 65%;
}
.wp-post-wrap ul li img {
	margin: 0;
	padding: 0;
	border-radius: 20px;
}

/*メンテナンス用
--------------------------------------------------------------------------*/
.mainte {
	margin: 48px auto 0;
	padding: 0 8px;
}
.mainte p {
	padding: 8px 0;
	font-size: 15px;
}

/*ウィジェット：カテゴリーメニュー（横配列）
--------------------------------------------------------------------------*/
.category-menu {
	margin: 48px auto 0;
	padding: 0;
}
.category-menu h2 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 700;
}
.category-menu ul {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 16px;
}
.category-menu ul li {
	margin: 0;
	padding: 8px 4px;
	border-bottom: 2px dotted #D5D5D5;
	font-size: 14px;
}
.category-menu li a {
	display: block;
	margin: 0;
	padding: 0;
	text-decoration: none;
}
.category-menu a:hover {
	text-decoration: none;
}

/*トップページ以外 2カラム（共通）
----------------------------------------------------------------------------------------------------------*/
.two-column {
	max-width: 1000px;
	margin: 0 auto 0;
	padding: 0;
}
.two-column-l {
	width: 100%;
	margin: 0;
	padding: 0;
}
.two-column-r {
	width: 100%;
	margin: 64px 0 0 0;
	padding: 0;
}

/*ウィジェット：カテゴリーメニュー（縦配列）
--------------------------------------------------------------------------*/
.two-column-r .category-menu {
	margin: 0 auto;
	padding: 0;
}
.two-column-r .category-menu h2 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 700;
}
.two-column-r .category-menu ul {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 16px;
}
.two-column-r .category-menu ul li {
	margin: 0;
	padding: 8px 4px;
	border-bottom: 2px dotted #D5D5D5;
}
.two-column-r .category-menu ul li a {
	display: block;
	margin: 0;
	padding: 0;
	text-decoration: none;
}
.two-column-r .category-menu a:hover {
	text-decoration: none;
}

/*カテゴリーページ（category.php）
--------------------------------------------------------------------------*/
.category-wrap ul {
	margin: 0;
	padding: 0;
}
.category-wrap ul li {
	margin: 0;
	padding: 24px 0;
	display: flex;
	border-bottom: 2px dotted #D5D5D5;
}
.category-wrap ul li div:first-child {
	margin: 0 16px 0 0;
	width: 35%;
}
.category-wrap ul li div:last-child {
	width: 65%;
}
.category-wrap ul li img {
	margin: 0;
	padding: 0;
	border-radius: 20px;
}

/*おすすめリンク
--------------------------------------------------------------------------*/
.reco-link-wrap {
	margin: 0;
	padding: 0;
}
.reco-link-wrap h2 {
	margin: 72px auto 0;
	padding: 0 0 0 4px;
	font-size: 20px;
	line-height: 1;
	font-family: 'Noto Serif JP',serif;
	font-weight: 700;
}
.reco-link-wrap div {
	display: flex;
	align-items: center;
	margin: 16px 0 0 0;
	padding: 24px;
	border: 1px solid #ccc;
	border-radius: 10px;
}
.reco-link-wrap a {
	text-decoration: none;
}
.reco-link-wrap div:nth-child(n+2) {
	margin: 16px auto 0;
}
.reco-link-wrap p.link img {
	max-width: 180px;
	display: block;	/*余白リセット*/
}
.reco-link-wrap p.text {
	margin: 0;
	padding: 0 0 0 16px;
	font-size: 14px;
	line-height: 1.6;
}
@media screen and (max-width: 650px) {
	.reco-link-wrap div {
		margin: 16px 0 0 0;
		padding: 8px;
	}
	.reco-link-wrap p.link img {
		margin: 0 auto;
		padding: 0 12px 0 0;
		max-width: 120px;
	}
	.reco-link-wrap p.text {
		margin: 0;
		padding: 0;
		font-size: 13px;
		line-height: 1.6;
	}
}

/*個別投稿ページ（single.php）
----------------------------------------------------------------------------------------------------------*/
.single-page-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
.single-page-wrap .title {
	margin: 0;
	padding: 0;
	font-size: 22px;
	line-height: 1.8;
	font-weight: 700;
}
.single-page-wrap .data {
	margin: 0 0 0 4px;
	padding: 0;
	font-size: 15px;
	line-height: 1.6;
	font-weight: 400;
	color: #939393;
}

.wp-content {
	margin: 0;
	padding: 0;
}
.wp-content img {
	margin: 8px 0 0 0;
	padding: 0;
	border-radius: 40px;
	display: block;	/*余白リセット*/
}
.wp-content p {
	margin: 0;
	padding: 0 0 16px 0;
	font-size: 15px;
	font-weight: 400;
}
.wp-content ul li {
	margin: 0 0 0 16px;
	padding: 0;
	font-size: 15px;
	list-style: disc;
}

/*一覧ページへ戻るボタン
--------------------------------------------------------------------------*/
.single-menu-btn-back {
	width: 180px;
	margin: 48px auto 0;
}
.single-menu-btn-back a {
	display: block;
	margin: 0;
	padding: 12px 4px;
	border-radius: 9999px;
	color: #fff;
	background: #000;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}
.single-menu-btn-back a:hover {
	background-color: #65ab31;
}

/*前の投稿・次の投稿ボタン
--------------------------------------------------------------------------*/
.single-menu-btn {
	display: flex;
	justify-content: space-between;
	margin: 48px 0;
	padding: 12px 4px;
	font-size: 15px;
	border-top: 2px dotted #D5D5D5;
	border-bottom: 2px dotted #D5D5D5;
}
.single-menu-btn a {
	text-decoration: none;
}

/*引用デザイン
--------------------------------------------------------------------------*/
blockquote{
	position:relative;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	margin: 8px 0 24px 0;
	padding: 24px 0 0 0;
}
blockquote:before{
	position:absolute;
	content:'';
	left: 0;
	top: -12px;
	width: 20px;
	height: 20px;
	background: url(https://www.mayumin-box.com/blog/images/quote_01.svg) no-repeat;
}
blockquote:after{
	position:absolute;
	content:'';
	right: 0;
	bottom: -8px;
	width: 20px;
	height: 20px;
	background: url(https://www.mayumin-box.com/blog/images/quote_02.svg) no-repeat;
}
blockquote cite {
	display: block;
	padding: 16px 0 0 0;
	font-size: 14px;
	text-align: right;
	color: #808080;
}

/*ページネーション（共通）
----------------------------------------------------------------------------------------------------------*/
.pagination {
	margin: 32px 0 0 0;
	padding: 0;
}
.screen-reader-text {
	display:none;
}
.nav-links ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 8px;
}
.nav-links li > * {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	height: 45px;
}
.nav-links li > *:not(.dots) {
	width: 45px;
	border-radius: 50%;
	color: #fff;
	background: #000;
}
.nav-links li > .current,
.nav-links li > a:hover {
	color: #fff;
	background-color: #65ab31;
}

/*検索窓
----------------------------------------------------------------------------------------------------------*/
.search-wrap {
	max-width: 300px;
	margin: 48px auto 0;
	padding: 0;
}
.search-form {
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	border: 1px solid #D5D5D5;
	border-radius: 9999px;
}
.search-form input {
	width: 240px;
	height: 45px;
	padding: 5px 15px;
	border: none;
	font-size: 1em;
	outline: none;
}
.search-form input::placeholder{
	color: #777777;
}
.search-form input[type="text"]:focus {
	border: 0;
	outline: 0;
}
.search-form button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 45px;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.search-form button::after {
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23777777'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	content: '';
}

.search-results {
	margin: 32px 0 0 0;
	padding: 0;
}
.search-results p {
	margin: 0;
	padding: 0;
	font-size: 15px;
	text-align: center;
}


/*youtube
--------------------------------------------------------------------- */
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/* ウィジェット見出し
--------------------------------------------------------------------- */
.widgettitle {
	margin: 0;
	padding: 10px 0 10px 0;
	font-family: 'Noto Serif JP',serif;
	font-weight: 600;
	font-size: 22px;
}

/* カレンダー（ウィジェット）
--------------------------------------------------------------------- */
#calendar-2 {
	margin: 0 0 30px 0;
	padding: 0;
}

#wp-calendar {
	width: 300px;
	margin: 0px 0px 20px 0;
	padding: 0px;
	border-collapse: collapse;
}

#wp-calendar caption {
	margin: 0px 0px 10px 0;
	padding: 0px;
	color: #333;
	font-size: 16px;
	line-height: 2em;
	text-align: center;
	font-weight: bold;
}

#wp-calendar th {
	text-align: center;
	font-family: 'Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,YuGothic,'Yu Gothic Medium',sans-serif;
	font-size: 12px;
	font-weight: normal;
}

#wp-calendar tbody td {
	margin: 0;
	padding: 2px;
	font-family: 'Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,YuGothic,'Yu Gothic Medium',sans-serif;
	font-size: 14px;
	text-align: center;
}

#wp-calendar a:link{
	margin: 0;
	padding: 0;
	display:block;
	background-color:#fbdac8;
}

/*フッターの月*/
#wp-calendar tfoot td{
	margin: 0;
	padding: 10px 0 0 0;
}

#prev,
#next {
	margin: 0;
	padding: 0;
	font-size: 14px;
	text-align: center;
}

#prev a:link,
#next a:link {
	background-color: #FFF;
}

/* ウィジェット外枠
--------------------------------------------------------------------- */
/*
（ローカル）#categories-3
（サーバー）#categories-2に変更

（ローカル）#archives-3
（サーバー）#archives-2に変更
*/

#categories-3,
#archives-3,
#recent-posts-4,
#rpwwt-recent-posts-widget-with-thumbnails-2 {
	margin: 0 0 30px 5px;
	padding: 0;
	font-family: 'Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,YuGothic,'Yu Gothic Medium',sans-serif;
	font-size: 14px;
	line-height: 2;
}

#archives-3 select {
	margin: 5px 0 0 10px;
	padding: 0;
	font-family: 'Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,YuGothic,'Yu Gothic Medium',sans-serif;
	font-size: 13px;
	line-height: 2;
}


/* リスト（ウィジェット）
--------------------------------------------------------------------- */
#categories-3 li,
#archives-3 li,
#rpwwt-recent-posts-widget-with-thumbnails-2 li,
#recent-posts-4 li{
	margin: 0 0 0 18px;
	padding: 5px 0;
	line-height: 2;
}

.cat-item cat-item-5{
	list-style: none;
}

/* アーカイブドロップダウンメニュー（ウィジェット）
--------------------------------------------------------------------- */
.screen-reader-text{
	margin: 0 0 0 5px;
	padding: 5px 0;
}

/* 最新の投稿
--------------------------------------------------------------------- */
#rpwwt-recent-posts-widget-with-thumbnails-2 ul{
	margin: -5px 0 0 0;
	padding: 0;
}

#rpwwt-recent-posts-widget-with-thumbnails-2 li{
	width: 95%;
	margin: 0;
	padding: 15px 0 10px 5px;
	line-height: 2;
	border-bottom: dotted 1px #ccc;
}

#categories-3 a:link,
#categories-3 a:visited,
#rpwwt-recent-posts-widget-with-thumbnails-2 a:link,
#rpwwt-recent-posts-widget-with-thumbnails-2 a:visited{
	/*text-decoration: none;*/
	text-decoration: underline;
}

#categories-3 a:hover,
#categories-3 a:active,
#rpwwt-recent-posts-widget-with-thumbnails-2 a:hover,
#rpwwt-recent-posts-widget-with-thumbnails-2 a:active{
	text-decoration: none;
}

.rpwwt-post-date {
	color: #999;
}


/* もしもアフィリエイト  かんたんリンク カスタマイズ
--------------------------------------------------------------------- */

/* --- 商品タイトル --- */
p.easyLink-info-name {
	line-height: 1.5;
}
p.easyLink-info-name a {
	color: #333 !important; /* 文字色 */
	font-size: 14px !important;
	font-weight: 500;
}
/* --- ボタンサイズ --- */
div.easyLink-box div.easyLink-info p.easyLink-info-btn a{
	padding: 5px !important;
}
@media screen and (min-width: 704px) {
	div.easyLink-box div.easyLink-info p.easyLink-info-btn a{
		margin-bottom: 10px !important;
	}
}
/* --- ボタン下空白を削除 --- */
div.easyLink-box{
	padding: 10px;
}
div.easyLink-box div.easyLink-info p.easyLink-info-btn a:last-child {
	margin-bottom: 0 /*!important*/;
}
/* --- ボタン色 --- */
a.easyLink-info-btn-amazon {
	font-size: 12px !important;
	background: #f6a306 !important; /* 背景色 */
}
a.easyLink-info-btn-rakuten {
	font-size: 12px !important;
	background: #cf4944 !important; /* 背景色 */
}
a.easyLink-info-btn-yahoo {
	font-size: 12px !important;
	background: #51a7e8 !important; /* 背景色 */
}
/* --- 画像サイズ --- */
/*
div.easyLink-box div.easyLink-img,
div.easyLink-box div.easyLink-img p.easyLink-img-box,
div.easyLink-box div.easyLink-img p.easyLink-img-box img.easyLink-img-pht{
	margin: auto;
	max-width: 130px !important;
	max-height: 130px !important;
}
*/

/* スライダー矢印ボタン非表示 */
/*
@media screen and (max-width: 699px) {
	div.easyLink-box div.easyLink-img a.easyLink-arrow-left img,
	div.easyLink-box div.easyLink-img a.easyLink-arrow-right img {
		display: none;
	}
}
*/

/*---------------------------------------------------------------------------------------------------------
メール
----------------------------------------------------------------------------------------------------------*/
#mail {
	margin: 0;
	padding: 0;
}
.mailIllustBox {
	overflow: hidden;
}
.mailIllust {
	float: right;
	margin: 0;
	padding: 0;
	width: 200px;
	height: 127px;
	background: url(../images/bg_mail.png) no-repeat top right/contain;
}
.mail-bg {
	width: 100%;
}
.mail-wrap {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 24px;
}
.mail-title {
	margin: 0;
	padding: 64px 0 24px 0;
}
.mail-title h2{
	font-size: 38px;
	line-height: 1;
	font-family: 'Libre Baskerville',serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;

}
.mail-title p{
	margin: 24px 0 0 0;
	padding: 0;
}

/*入力フォーム
--------------------------------------------------------------------------*/
.mail-form {
	max-width: 700px;
	margin: 0 auto;
	padding: 0;
}
.mail-form p {
	margin: 0;
	margin: 16px 0 0 0;
	font-size: 15px;
}

/*必須テキスト*/
.textRequired{
	margin: 0;
	padding: 0;
	font-size: 11px;
	color: #ec6941;
}
/*リアルタイムチェック*/
div.error{
	color: #ec6941;
	padding: 2px 0;
}
/*未入力エラーのテキスト*/
.textRed {
	color: #ec6941;
}

/* 入力欄サイズ指定 */
.text-input {
	width: 100%;
	height: 36px;
	margin: 0;
	padding: 2px 8px;
	font-size: 100%;
	border: 1px #cdcdcd solid;
}
textarea {
	width: 100%;
	height: 200px;
	margin: 0;
	padding: 8px;
	font-size: 100%;
	line-height: 1.6;
	border: 1px #cdcdcd solid;
}

/* ボタン */
.form-btn-wrap {
	width: 100%;
	text-align: center;
}
input[type="submit"],
input[type="button"] {
	-webkit-appearance: none;
	margin: 0;
	padding: 16px 24px;
	color: #fff;
	text-align: center;
	background-color: #000;
	text-decoration: none;
	border: 0px solid #000;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
}
input[type="submit"]:hover,
input[type="button"]:hover {
	color: #fff;
	background-color: #000;
}

/*送信完了ページ
--------------------------------------------------------------------------*/
.mail-send {
	max-width: 600px;
	margin: 64px auto 0;
	padding: 0 24px;
}
.mail-send p {
	text-align: center;
}
.mail-send p.midashi {
	font-family: 'Noto Serif JP',serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.6;
}
.mail-send p.read {
	padding: 32px 0 0 0;
	font-size: 15px;
	text-align: left;
}

/*---------------------------------------------------------------------------------------------------------
ご利用にあたって
----------------------------------------------------------------------------------------------------------*/
.policy-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 24px 24px 0 24px;
}
.policy-wrap h1 {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 26px;
	font-family: 'Noto Serif JP',serif;
	font-weight: 600;
}

.policy-wrap .col-wrap {
	margin: 16px 0 0 0;
	padding: 0;
}
.policy-wrap .colLeft {
	margin: 0;
	padding: 0;
}
.policy-wrap .colRight {
	margin: 0;
	padding: 0;
}

.policy-wrap .colLeft h2 {
	margin: 0;
	padding: 0;
	font-family: 'Noto Serif JP',serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.6;
}
.policy-wrap .colLeft ul {
	margin: 0;
	padding: 8px 0 32px 16px;
}
.policy-wrap .colLeft li {
	margin: 0;
	padding: 5px 0;
	list-style: disc;
}
.policy-wrap .colLeft p {
	margin: 0;
	padding: 10px 10px 32px 0;
}

.qaBox {
	margin: 24px 0;
	padding: 10px 15px;
	font-size: 14px;
	line-height: 1.8;
	background-image: url(../images/bg_wall.jpg);
	border-radius: 5px;
}

/*
.qaBox p{
	text-indent: -2em;
	margin-left: 1.5em;
	padding: 10px;
}
*/

.qaBox dl{
	overflow: hidden;
	_zoom: 1;
}
.qaBox dl dd,
.qaBox dl dt{
	text-indent: -2.4em;
	padding: 0 10px 10px 40px;
}
.qaBox dl dt{
	margin: 20px 0 0 0;
}
.qaBox dl dd{
	margin: 0 0 -1px 0;
	padding-bottom:15px;
	border-bottom: 1px #e8e5e3 solid;
}
.qaBox dl dt:first-letter{
	margin-right: 8px;
	padding: 1px 8px 2px 8px;
	font-weight: bold;
	color: #fff;
	background: #f39800;
	border-radius: 5px;
}
.qaBox dl dd:first-letter{
	margin-right: 8px;
	padding: 1px 8px 2px 8px;
	font-weight: bold;
	color: #fff;
	background: #097c25;
	border-radius: 5px;
}

/*---------------------------------------------------------------------------------------------------------
フッター
----------------------------------------------------------------------------------------------------------*/
.footer-fixed {
	position: relative;
	min-height: 100vh;
	padding-bottom: 120px; /* フッターの高さを指定 */
}
footer {
	position: absolute;
	bottom: 0;
	height: 120px;
	width: 100%;
	margin: 0;
	padding: 0;
	background: url(../images/bg_footer_leaf.jpg) repeat-x bottom left;
}
.footer-wrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
}
.footer-wrap .text {
	margin: 0;
	padding: 0;
	font-size: 14px;
	text-align: center;
}
.copyright {
	margin: 16px 0 0 0;
	padding: 0;
	font-size: 10px;
	font-family: 'Libre Baskerville',serif;
	font-weight: 400;
	color: #b4b4b4;
	text-align: center;
}

/*トップへ戻るボタン
--------------------------------------------------------------------------*/
.btnTop {
	position: fixed;
	right: 15px;
	bottom: 24px;
	height: 50px;
	text-decoration: none;
	transform: rotate(90deg);
	font-family: 'Libre Baskerville',serif;
	font-size: 90%;
	line-height: 1.5rem;
	padding: 0 0 0 35px;
	border-top: solid 1px;
}
.btnTop::before {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0px;
	width: 15px;
	border-top: solid 1px;
	transform: rotate(35deg);
	transform-origin: left top;
}
.btnTop a:link,
.btnTop a:visited,
.btnTop a:hover,
.btnTop a:active {
	color: #333;
	text-decoration: none;
}

/*---------------------------------------------------------------------------------------------------------
エラー画面
----------------------------------------------------------------------------------------------------------*/
.errorBox {
	max-width: 600px;
	margin: 0 auto;
	padding: 64px 24px 96px 24px;
}
.errorBox h1{
	margin: 0 0 16px 0;
	padding: 0;
	font-size: 30px;
	text-align: center;
}
.errorBox p.midashi {
	font-family: 'Noto Serif JP',serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
}
.errorBox p.read {
	padding: 24px 0 0 0;
	font-size: 15px;
}

