@charset 'UTF-8';
/*
Theme Name: HELICHRYSUM
Description: WordPressオリジナルテーマ
Author: Itou
Author URI: http://helichrysum.site/
*/

/*------------------ BASE ------------------------*/
.sharedaddy{
	display: none;/*シェアボタン非表示*/
}
body {
	color: #413427!important;
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
}
p {
    line-height: 2;
	letter-spacing: 0.05rem;
}

.red{
	color:#a41d1d;
}
.text_center{
	text-align: center!important;
}
.border{
	border-bottom: 1px solid #a41d1d;
}
.need{
	font-size: 0.75rem;
	background:#a41d1d;
	color:#fff;
	padding: 0px 5px 0px 5px;
	line-height: 1.6;
	margin-right: 8px;
}

img,
iframe {
    max-width: 100%;
}

a,input[type="submit"]{
	transition: .3s ease;
}
a:hover,input[type="submit"]:hover{
	opacity: 0.8;
}

/*ボーダー(デフォルト)*/
.wp-block-separator.is-style-default{
	border-top: solid 1px #e1dcd6!important;
}

/*ボーダー(ドット)*/
.wp-block-separator.is-style-dots{
	border-top: dotted 2px rgba(178,166,154,0.6)!important;
}
.wp-block-separator.is-style-dots::before{
	display: none!important;
}

/*------------------ TOP/下層の大枠 ------------------------*/

.post-content.wrapper,
.single-post main,/*←記事の詳細シングルページ*/
.error404 main{/*←記事の詳細エラーページ*/
	width: 100%;
	max-width: 1100px;/*下層ページは最大コンテンツ幅1100px*/
	margin: 0 auto;
}
main .post-content{
    margin: 0 auto;
    padding: 0;
	padding-top: 5rem;
}

.home .con_wrapper{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0px;
}
.home .info_wrapper,
.home .origin_wrapper{
	width: 100%;
	height: auto;
}
.home main p {
	line-height: 2.3;
}

@media screen and (max-width: 1200px){
	.post-content.wrapper,
	main .post-content{
    	padding: 0 1.5rem;
		padding-top: 3.5rem;
	}
	.home .con_wrapper{
		padding: 70px 1.5rem;
	}
}
@media screen and (max-width: 900px){
	body {
		font-size: 0.95rem;
	}
	.home .con_wrapper{
		padding: 60px 1.3rem;
	}
	.home main p {
		line-height: 2;
		letter-spacing: 0rem;
	}
}
/*------------------- ヘッダー -----------------------*/
.home header .wrapper,
header .wrapper{
	padding: 0 20px;
	max-width: 1350px;
	margin: 0 auto;
}
.site-header {
    padding-top: 1rem;
    margin-bottom: 25px;
}
.site-title {
    margin-bottom: 25px;
}
.site-logo {
	height: auto;
	max-width: 260px;
	width: 100%;
}
.site-description {
    font-size: 0.8rem;
	text-align: right;
}
.h_wrapper{
	display: flex;
	width: 100%;
	align-items: center;
}
.h_wrapper > a{
	width: 23%;
}
.h_wrapper nav{
	width: 77%;
}

@media screen and (max-width: 900px){
	.h_wrapper > a {
    	width: 100%;
	}
	.site-logo {
		width: 225px;
	}
	.f_logo {
    	padding-top: 40px;
	}
	.site-description {
		text-align: left;
		font-size: 0.75rem;
	}
	.site-title {
    	margin-bottom: 15px;
	}
	.site-header {
    	margin-bottom: 20px;
	}
}

/*------------------- ヘッダーナビ -----------------------*/
header nav ul{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-left: 20px;
	justify-content: space-between;
	font-size: 0.95rem;
	letter-spacing: 0.12rem;
}
header nav ul li{
	position: relative;
	width: 20%;
	text-align: center;
}
header nav ul li a{
	display: block;
	padding: 0 12px 15px 12px;
}

@media screen and (min-width: 901px){
	header nav ul li::before{
		content: "";
		width: 1px;
		height: 60%;
 		position: absolute;
		top: 0%;
		left: 0;
		background: #b0adaa;
	}
	header nav ul li:last-child::after{
		content: "";
		width: 1px;
		height: 60%;
 		position: absolute;
		top: 0%;
		right: 0;
		background: #b0adaa;
	}
	header nav ul li a{
		position: relative;
	}
	header nav ul li a::before{
		content: "";
		width: 0%;
		height: 2px;
 		position: absolute;
		bottom: 0;
		left: 25%;
		background: #af9274;
		opacity: 0;
	}
	header nav ul li a:hover::before{
		opacity: 1;
		width: 50%;
		transition: .4s ease;
	}
}

/*バーガーメニュー*/
.btn-menu {
	display: none;
}
@media screen and (max-width: 900px){
	.btn-menu {
		display: block;
	}
	.btn-menu {
		padding: 10px;
		position: absolute;
		top: 1rem;
		right: 0.8rem;
		background: #af9274;
        color: #fff;
        width: 70px;
        height: 42px;
        text-align: center;
		font-family: 'Noto Serif JP', "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
        letter-spacing: 0.1rem;
        font-size: 0.85rem;
		outline: 1px solid rgba(255, 255, 255, 0.5);
        outline-offset: -3px;
	}
	.btn-menu {
    	top: calc(1rem + 35px);
		z-index: 10;
	}
	.menu-wrapper {
    	background: rgba(255,255,255,.7);
    	-webkit-backdrop-filter: blur(8px);
    	backdrop-filter: blur(8px);
    	padding: 1rem 0 0.5rem 0;
    	margin-top: 1rem;
    	position: absolute;
    	z-index: 1;
    	top: 50px;
    	right: 0;
    	overflow-x: hidden;
    	text-align: center;
    	width: 0;
    	transition: .6s;
	}
	.menu-wrapper {
    	top: calc(50px + 60px);
	}
	.menu-wrapper li {
		width: 100%;
		border-top: 1px solid rgba(0, 0, 0, 0.12);
	}
	.menu-wrapper a {
    	white-space: nowrap;
		padding:24px 5px;
	}
	.menu-wrapper.open-menu {
    	width: 100%;
	}
	header nav ul{
		display: block;
	}
}

/*------------------- MV -----------------------*/
#mv{
	position: relative;
}
#mv::before{
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 48%;
	background: url(images/bg_con.png) repeat #f4f1e9;
	bottom: -30px;
	left: 0px;
	background-size: auto;
	z-index: -1;
}
.slider.pc img{
	max-width: 1500px;
	width: 96%;
	box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.2);
	margin: 15px auto;
}
.slider.sp{
	display: none;
}
.slick-next{
	display: none!important;
}
.slick-dots li{
	width: 8px!important;
	height: 10px;
	margin: 0 10px!important;
}
.slick-dots li button::before{
	content: ''!important;
	width: 7px!important;
  	height: 7px!important;
	background: #d6ccc1;
	border-radius: 100px;
	opacity: 1!important;
}
.slick-dots li.slick-active button::before {
	background: #af9274;
}
.slick-dots{
	bottom: -35px!important;
}

@media screen and (max-width: 600px){
	.slider.sp{
		display: block;
	}
	.slider.pc{
		display: none;
	}
}
/*------------------- お問い合わせフォーム -----------------------*/
form{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
form p{
	text-align: left!important;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	border: 1px solid #e1dcd6!important;
	border-radius: none!important;
	padding: .5rem;
	width: 100%;
	max-width: 1000px;
	background: #f7f4ee;
}

.wpcf7-not-valid-tip {
	color: #a41d1d!important;
}
form ul li{
	list-style: none;
}
form ul li{
	margin-bottom: 1.1rem !important;
	padding-bottom: 0.7rem;
	border-bottom: 1px solid #e1dcd6;
}
form ul li:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
form label{
	display: flex;
	align-items: center;
	width: 100%;
}
.label_name{
	display: flex;
	line-height: 1.3;
	width: 25%;
}
.label_box{
	width: 75%;
}

/*送信エラー時のメッセージ*/
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	padding: 0.7em 0.5em!important;
	border: 2px solid #e1dcd6!important;
	color: #413427 !important
}
/*送信完了時のメッセージ*/
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #e1dcd6!important;
}
.wpcf7 form .wpcf7-response-output {
	margin: 1em 0.5em 1em!important;
	padding: 0.7em 0.5em!important;
	border: 2px solid #e1dcd6!important;
}

/*お問い合わせ_説明テキスト*/
.contact_wrapper .text{
	margin-bottom: 55px;
}
@media screen and (max-width: 900px){
	form label{
		display: block;
	}
	.label_name,
	.label_box{
		width: 100%;
		margin-bottom: -12px;
	}
	form .label_box textarea{
		height: 200px;
	}
}

/*------------------- フッター -----------------------*/

.site-footer {
    background: url(images/bg_footer.png) repeat;
    text-align: center;
    color: var(--white);
    padding-top: 3.7rem;
    margin-top: 4rem;
}
.copyright {
    font-size: 0.75rem;
    color: #fff;
	padding:13px 0px;
	margin-top: 25px;
	border-top:1px solid #8d7359;
	box-shadow: 0 1px 0 #c1a888 inset;
}

footer nav{
	color: #fff;
	max-width: 1200px;
	margin: 0 auto;
	font-size: 0.9rem;
	letter-spacing: 0.1rem;
}
footer nav ul{
	display: flex;
    flex-wrap: wrap;
	width: 92%;
	margin-left: 4%;
	justify-content: space-around;
}
footer nav ul li a{
	padding: 15px 10px;
	display: block;
}
.f_logo{
	padding-top:55px;
}
.f_sns img{
	width: 45px;
	height: auto;
	margin-top: 25px;
}

@media screen and (max-width: 600px){
	footer nav{
		font-size: 0.8rem;
	}
	footer nav ul{
		width: 100%;
		margin-left: 0%;
	}
	footer nav ul li{
		width: 50%;
		border-bottom: 1px solid #8d7359;
		border-top: 1px solid #c1a888;
	}
	footer nav ul li a{
		padding: 20px 10px;
	}
	/*footer nav ul li:last-child{
		width: 100%;
	}*/
	footer nav ul li:nth-child(odd){
		border-right: 1px solid #8d7359;
	}
	footer nav ul li:nth-child(even){
		border-left: 1px solid #c1a888;
	}
	/*footer nav ul li:last-child{
		border-right:none;
	}*/
	.f_logo{
		border-top: 1px solid #c1a888;
		padding-top:30px;
	}
	.site-footer{
		padding: 0;
		margin-top: 3rem;
	}
}

/*------------------- PAGE TOP -----------------------*/
#wpfront-scroll-top-container {
	right: 5%!important;
	bottom: 7%!important;
}
#wpfront-scroll-top-container img {
	width: 115px!important;
	height: auto!important;
}
@media screen and (max-width: 1200px){
	#wpfront-scroll-top-container{
		display: none!important;
	}
}

/*------------------- 見出し -----------------------*/

main h2,
main h3,
main h4,
main h5{
	font-family:'Noto Serif JP', "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 0.2rem;
    margin-bottom: 15px;
}
main h6{
	letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
}
/*@media screen and (max-width: 900px){
	main h2,
	main h3,
	main h4,
	main h5{
		letter-spacing: 0.1rem;
	}
}*/

/*------------------- h2見出し -----------------------*/
.home main h2,
main h2{
	position: relative;
	text-align: center;
	font-size: 2.9rem;
	padding-bottom: 20px;
	line-height: 1.3;
}
main h2{
	font-size: 2.5rem;
}
.home main h2::before,
main h2::before{
	content: "";
	position: absolute;
    width:70px;
    height: 3px;
    bottom: 0;
    left: calc(50% - 35px);
	border-bottom: double 3px #413427;
}
.home main h2::first-letter {
	color: #af9274;
}
main h2::before{
}

@media screen and (max-width: 900px){
	.home main h2{
		font-size: 2.05rem;
	}
	main h2{
		font-size: 1.8rem;
	}
	.home main h2,
	main h2{
		padding-bottom: 16px;
	}
}

/*------------------- h3見出し -----------------------*/

main h3{
	font-size: 1.4rem;
	background: #f7f4ee;
	padding: 11px 16px 12px 16px;
	border-left: 2px solid #af9274;
	border-bottom: 1px dotted rgba(0,0,0,0.4);
	letter-spacing:0.1rem;
	line-height: 1.4;
}
@media screen and (max-width: 900px){
	main h3{
    	font-size: 1.2rem;
    	padding: 9px 10px 10px 10px;
	}
}
/*------------------- h4見出し -----------------------*/
main h4{
	position: relative;
	font-size: 1.5rem;
	padding-left: 23px;
	letter-spacing: 0.1rem;
	border-bottom: 1px dotted rgba(0,0,0,0.4);
	padding-bottom: 10px;
	display: inline-block;
}
main h4::before{
	display: block;
	content: '';
	width: 14px;
	height: 14px;
	position: absolute;
	top: calc(50% - 11px);
	left: 0;
	border: 4px solid #af9274;
	border-radius: 100px;
}
@media screen and (max-width: 900px){
	main h4{
		font-size: 1.3rem;
		padding-left: 20px;
		padding-bottom: 8px;
	}
	main h4::before{
		width: 12px;
    	height: 12px;
		border: 3px solid #af9274;
		top: calc(50% - 9px);
	}
}
/*------------------- h5/6見出し -----------------------*/
main h5{
	font-size: 1.35rem;
	padding-bottom: 10px;
	border-bottom: 1px solid #e1dcd6;
}
main h6{
	font-size: 1.1rem;
	font-weight: 600;
	color: #af9274;
}
@media screen and (max-width: 900px){
	main h5{
		font-size: 1.25rem;
	}
}
/*------------------- ボタン -----------------------*/
.home .wp-block-button{
	text-align: center;/*TOPページのボタン左右中央寄せ*/
}
.pt-cv-wrapper .pt-cv-readmore.btn,/*記事一覧ページのボタン*/
.wp-block-button a,
form .wpcf7-submit{
	font-family:'Noto Serif JP', "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 0.15rem;
	font-size: 1rem;
}
.wp-block-button a{
	margin-bottom: 1.5rem;
}
.pt-cv-wrapper .pt-cv-readmore.btn,/*記事一覧ページのボタン*/
.wp-block-button a,
input[type="submit"] {
	padding: 12px 20px;
	background: #af9274!important;
	color: #fff;
	text-align: center!important;
	margin: 0 auto;
	display: block;
	min-width: 200px;
	outline: 1px solid rgba(255,255,255,0.5)!important;
	outline-offset: -4px;
	border-radius: 0;
	line-height: 1.9;
	letter-spacing: 0.1rem;
}
.pt-cv-wrapper .pt-cv-readmore.btn,/*記事一覧ページのボタン*/
.wp-block-button a{
	display: inline-block;
}

/*記事一覧ページの見出し*/
.pt-cv-wrapper .pt-cv-title{
	font-family:'Noto Serif JP', "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif!important;
}

/*------------------- 下層ページタイトル -----------------------*/
.page main .post-list,
.single-post .post-header{
	margin-top: 40px;
}
main .post-header,
.single-post .post-header{
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(images/bg_img.webp) no-repeat #af9274;
	background-size: cover;
}
main h1.post-title,
.single-post h1.post-title{
	font-family:'Noto Serif JP', "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 0.2rem;
	font-size: 2.35rem;
	padding: 0px 20px;
	color: #fff;
	line-height: 1.5;
	max-width: 1250px;
	text-align: center;
}

@media screen and (max-width: 900px){
	.page main .post-list,
	.single-post .post-header{
		margin-top: 20px;
	}
	main .post-header,
	.single-post .post-header{
		height: 200px;
	}
	main h1.post-title,
	.single-post h1.post-title{
		font-size: 1.6rem;
		letter-spacing: 0.05rem;
	}
}


/*-----------------------------------------------------------*/
/*------------------- TOPコンテンツCSS ------------------------*/
/*-----------------------------------------------------------*/
.home .con_wrapper p{
	text-align: center;
}
.home p.sub_title{
	font-family: 'Noto Serif JP', "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 0.2rem;
	font-size: 1.25rem;
	margin-bottom: 45px;
	line-height: 1.5;
}
.home .contact_wrapper{
	padding-bottom: 20px;
}
@media screen and (max-width: 900px){
	.home p.sub_title{
		font-size: 1.1rem;
		margin-bottom: 35px;
	}
	.home .contact_wrapper{
		padding-bottom: 0px;
	}
}

/*------------------- 子猫情報 -----------------------*/

.home .info_wrapper{
	background: url(images/bg_con.png) repeat #f4f1e9;
	background-size:auto;
}
ul.cat_list{
	display: flex;
	width: 100%;
	margin-bottom: 60px;
	letter-spacing: 0.05rem;
	line-height: 1.6;
}
ul.cat_list li{
	width: 22.75%;
	margin-right: 3%;
	overflow-wrap: break-word;
}
ul.cat_list li:last-child{
	margin-right: 0%;
}

.cat_list .thumb{
	position: relative;
	margin-bottom: 20px;
	border: 7px solid #fff;
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}
ul.cat_list img{
	object-fit: cover;
	aspect-ratio: 1 / 1;
	max-width: 100%;
	height: auto;
	width: 800px;
	transition: transform .8s ease;
}
ul.cat_list a:hover img{
	transform: scale(1.1);
}

/*最新1記事のみNEWを付ける*/
.cat_list .thumb .new {
	position: absolute;
	top: 0px;
	left: 0px;
	background: #a41d1d;
	color: #fff;
	font-size: 15px;
	padding:3px 10px 5px 10px;
	font-family: 'Noto Serif JP', "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 0.1rem;
}

.cat_list .date{
	font-size: 0.85rem;
	background: rgba(0,0,0,0.06);
	padding: 3px 10px;
	margin-bottom: 8px;
	display: inline-block;
}
.cat_list .title{
	position: relative;
	border-bottom:1px dotted rgba(0,0,0,0.5);
	padding: 0 0 7px 18px;
}
.cat_list .title::before{
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	top: calc(50% - 7px);
	left: 0;
	border: 3px solid #af9274;
	border-radius: 100px;
}

@media screen and (max-width: 900px){
	ul.cat_list{
		flex-wrap: wrap;
		margin-bottom: 45px;
		font-size: 0.9rem;
	}
	ul.cat_list li {
    	width: 47%;
		margin-right: 0%;
	}
	ul.cat_list li:nth-child(odd){
		margin-right: 6%;
	}
	ul.cat_list li:nth-child(1),
	ul.cat_list li:nth-child(2){
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 500px){
	.cat_list .thumb{
    	border: 5px solid #fff;
	}
	.cat_list .thumb .new{
		font-size: 11px;
		padding: 3px 10px 3px 10px;
	}
	ul.cat_list li:nth-child(1),
	ul.cat_list li:nth-child(2){
		margin-bottom: 30px;
	}
}

/*------------------- ご挨拶 -----------------------*/

.home .greeting_text p{
	text-align: left!important;
}
.greeting_all .greeting_text img{
	margin-top: 35px;
	max-width: 340px;
	width: 80%;
    margin-left: 0%;
}
.greeting_all .greeting_img{
	text-align: center;
}
@media screen and (min-width: 901px){
	.greeting_all{
		display: flex;
		width: 100%;
		align-items: center;
	}
	.greeting_all .greeting_text{
		width: 51%;
		margin-right: 4%;
	}
	.greeting_all .greeting_img{
		width: 45%;
	}
}
@media screen and (max-width: 900px){
	.greeting_all .greeting_text img{
		margin-top: 25px;
		margin-bottom:15px; 
	}
}

/*------------------- キャッテリーの由来 -----------------------*/
.home .origin_wrapper{
	background: url(images/bg_img.webp) no-repeat #af9274;
	background-size: cover;
	color: #fff!important;
}
.origin_wrapper h2::before{
	border-bottom: double 3px #fff!important;
}
.origin_wrapper h2::first-letter {
	color: #fff!important;
}

/*------------------- コンテンツ間のボーダー -----------------------*/
.home .blog_wrapper{
	position: relative;
}
.home .blog_wrapper::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	border-bottom: solid 1px #e1dcd6;
}

/*------------------- ブログ -----------------------*/
.home .blog_list{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
	margin-top: -10px;
}
.home .blog_list li{
	width: 48%;
	display: flex;
	border-bottom: 1px solid #e1dcd6;
	overflow-wrap: break-word;
	line-height: 1.6;
	align-items: center;
}
.home .blog_list li:nth-child(odd){
	margin-right: 4%;
}
.home .blog_list li a{
	padding: 23px 0 23px 28px;
	width: 100%;
	letter-spacing: 0.05rem;
	position: relative;
}
.home .blog_list li .date{
	padding-right: 12px;
}
.home .blog_list li a::before{
	content: "";
	display: block;
	position: absolute;
	height: 7px;
	width: 7px;
	border-top: 1px solid #413427;
	border-right: 1px solid #413427;
	transform: rotate(45deg);
	top: calc(50% - 2px);
	left: 5px;
}

@media screen and (max-width: 900px){
	.home .blog_list{
		display: block;
	}
	.home .blog_list li{
		width: 100%;
	}
	.home .blog_list li:nth-child(odd){
		margin-right: 0%;
	}
	.home .blog_list li a{
		padding: 20px 0 20px 27px;
	}
}

/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/

/*------------------- 下層_サイトマップ -----------------------*/
.page-id-22 .wp-block-list{
	max-width: 700px;
	margin: 0 auto;
}
.page-id-22 .wp-block-list li{
	display: flex;
	border-bottom: 1px solid #e1dcd6;
}
.page-id-22 .wp-block-list li:first-child{
	border-top: 1px solid #e1dcd6;
}
.page-id-22 .wp-block-list li a{
	position: relative;
	width: 100%;
	padding:22px 0 22px 28px;
}
.page-id-22 .wp-block-list li a::before{
	content: "";
	display: block;
	position: absolute;
	background: #af9274;
	height: 16px;
	width: 16px;
	border-radius: 20px;
	top: calc(50% - 8px);
	left: 0;
}
.page-id-22 .wp-block-list li a::after {
	content: "";
	display: block;
	position: absolute;
	height: 5px;
	width: 5px;
	top: calc(50% - 2.6px);
	left: 3.5px;
	transform: rotate(45deg);
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
@media screen and (max-width: 900px){
	.page-id-22 .wp-block-list li a{
		padding:17px 0 17px 30px;
	}
}

/*------------------- 記事詳細のシングルページ -----------------------*/
/*アイキャッチ画像*/
.eye_img img {
 	max-width: 100%!important;
	height: auto!important;
	aspect-ratio: auto!important;
	width: auto!important;
	margin-bottom: 40px;
}
.eye_img{
	text-align: center;
}
.post-date_all{
	margin-bottom: 25px;
	display: flex;
}
ul.post-categories{
	padding-left: 15px;
}
.post-date_all .post-date{
	padding-left: 17px;
	position: relative;
}
.post-date_all .post-date::before {
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	top: calc(50% - 4.1px);
	left: 0;
	border: 3px solid #af9274;
	border-radius: 100px;
}
nav.post-navigation{
	display: flex;
	justify-content:center;
	margin-top: 50px;
}
.prev-post a,
.next-post a{
	padding: 10px 15px;
	/*background: #f7f4ee;*/
	margin: 0 20px;
	border: 1px solid rgba(0,0,0,0.09);
	font-size: 0.9rem;
}

/*------------------- 記事の一覧ページ(固定ページのプラグインに対して) -----------------------*/
.pt-cv-wrapper .pagination > .active > a,
.pt-cv-wrapper .pagination > .active > a:focus,
.pt-cv-wrapper .pagination > .active > a:hover,
.pt-cv-wrapper .pagination > .active > span,
.pt-cv-wrapper .pagination > .active > span:focus,
.pt-cv-wrapper .pagination > .active > span:hover{
	background-color: #af9274!important;
	border-color: #af9274!important;
}
.pt-cv-wrapper .pagination > li > a,
.pt-cv-wrapper .pagination > li > span{
	color: #413427!important;
}
.pt-cv-wrapper .pagination > .active > a{
	color: #fff!important;
}
@media screen and (max-width: 767px){
	.pt-cv-wrapper .pt-cv-rmwrap {
    	text-align: center!important;
	}
}
/*------------------- 記事のテーブルデザイン -----------------------*/
.wp-block-table.is-style-stripes {
	border-top: 1px solid #e1dcd6;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(2n+1) {
	background-color: #fff;
}
.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
	word-break: break-word;
}
.wp-block-table td, .wp-block-table th{
	padding: 1em;
}
.wp-block-table.is-style-stripes tr > td:first-child{
	width: 30%;
	border-left: 1px solid #e1dcd6;
	background-color: #f7f4ee!important;
}
.wp-block-table.is-style-stripes tr > td{
	border-right: 1px solid #e1dcd6;
	border-bottom: 1px solid #e1dcd6;
}

/*------------------- 記事のアイキャッチ画像調整 -----------------------*/
.single-post .eye_img img {
	max-height: 550px;
}

/*------------------- ペット保険バナー -----------------------*/
#sp_img{
	display: none;
}
@media screen and (max-width: 500px){
	#sp_img{
		display: block;
		text-align: center;
	}
	#pc_img{
		display: none;
	}
}