@charset "UTF-8";
/* CSS Document */
/*=== お知らせ ==============================*/
.newsletter .inner {
	max-width: 1000px;
}
.newflexbox {
	display: flex;
	justify-content: space-between;
}
.newstitle {
	width: 250px;
	margin-right: 40px;
}
.newswrap {
	width: 100%;
}
/**/
.newswrap li a {
	list-style-type: none;
	padding: 34px 0;
	line-height: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	color: #3b3c42;
	border-bottom: 1px solid #c7c7c7;
}
.newswrap li:nth-of-type(1) a {
	padding-top: 0 !important;
}
/* text */
.news_textWrap {
	width: 100%;
}
/* title */
.newswrap .title {
	display: block;
	margin-top: 5px;
	font-size: 110%;
}
/* img */
.news_thumbNailWrap {
	width: 210px;
	margin-right: 40px;
}
/*thumbNail*/
.news_thumbNailWrap .thumbNailWrap {
	position: relative;
	display: block;
	overflow: hidden;
}
.news_thumbNailWrap .thumbNailWrap::before {
	content: '';
	display: block;
	padding-top: 95%; /*高さの比率*/
}
.news_thumbNailWrap .thumbNailWrap img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.9s ease;
}
ul li a:hover img {
	transform: scale(1.05);
}
@media (max-width: 1040px) {
	.newsletter {
		padding-top: 100px;
	}
	.newflexbox {
		display: block;
	}
	.newstitle {
		width: 100%;
		margin-right: 0;
	}
	.newstitle .entitle {
		margin-bottom: 50px;
	}
}
@media (max-width: 950px) {
	.newswrap li a {
		padding: 23px 0;
	}
}
@media (max-width: 550px) {
	.newsletter {
		padding-top: 60px;
	}
	.newsletter .inner {
		width: 85%;
	}
	.newswrap li a {
		display: block;
		padding: 30px 0;
	}
	.news_thumbNailWrap {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.news_thumbNailWrap .thumbNailWrap::before {
		padding-top: 75%;
	}
	.news_textWrap {
		font-size: 90%;
	}
}
/*=== 園の様子 ==============================*/
.blogs {
	padding: 120px 0 130px;
}
.blogs .inner {
	max-width: 1250px;
}
.blogList {
	display: flex;
	flex-wrap: wrap;
}
.blogList li {
	width: 29%;
	margin: 0 2% 55px;
	border: none;
	display: flex;
	padding: 0;
}
.blogList li a {
	color: #3b3c42;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-left: 27px;
}
/* title */
.blogList li a .title {
	padding: 5px 10px 7px;
	background: #fff;
	line-height: 1.3;
	position: absolute;
	bottom: 15px;
	left: 2px;
	max-height: 70px;
	overflow: hidden;
	width: 97%;
	max-width: fit-content;
	font-size: 0.7rem;
}
/* date */
.blogList .up_ymd {
	position: absolute;
	top: 0;
	left: 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 1;
	font-family: "Courier Prime", monospace;
	color: red;
	font-size: 0.9rem;
}
/* img */
.blogList .thumbNailWrap {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}
.blogList .thumbNailWrap::before {
	content: '';
	display: block;
	padding-top: 65%; /*高さの比率*/
}
.blogList .thumbNailWrap img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.9s ease;
}
/* pages */
.pages {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1160px;
	margin: auto;
	margin-top: 35px;
}
.pages a {
	color: #3b3c42;
}
.pages a:hover {
	opacity: 0.6;
}
.page_next a::before, .page_prev a::after {
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	color: #0069aa;
	transition: .4s;
}
.page_next a::before {
	content: "\f137";
	margin-right: 10px;
}
.page_prev a::after {
	content: "\f138";
	margin-left: 10px;
}
.blogs .pages {
	margin-top: 15px;
}
@media (max-width: 1280px) {
	.blogs .inner {
		width: 94%;
	}
	.blogList li {
		width: 31%;
		margin: 0 1% 55px;
	}
}
@media (max-width: 1040px) {
	.blogs .inner {
		width: 94%;
	}
	.blogList li {
		width: 46%;
		margin: 0 2% 55px;
	}
}
@media (max-width: 750px) {
	.blogs .inner {
		width: 89%;
	}
	.blogList li {
		width: 100%;
		margin: 0 0 45px;
	}
	.blogList li:last-child {
		margin-bottom: 0;
	}
	.blogs .pages {
		margin-top: 45px;
	}
}
@media (max-width: 550px) {
	.blogs {
		padding: 50px 0 80px;
	}
	.blogs .entitle {
		margin-bottom: 50px;
	}
	.blogList li a {
		padding-left: 20px;
	}
	.blogList li a .title {
		max-height: 49px;
	}
	.blogList .up_ymd {
		font-size: 85%;
		top: 3px;
		left: -6px;
	}
	.blogList li a .title {
		padding: 5px 7px 7px;
	}
}
/*=== 詳細ページ ==============================*/
.detailContents {
	padding: 130px 0 110px;
}
.detailContents .inner {
	max-width: 887px;
}
/* date category */
.cat_name {
	margin-left: 5px;
}
.cat_name::before {
	content: "｜";
	margin-right: 3px;
}
.dates, .dtitle {
	text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
/* title */
.dtitle {
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 60px;
	font-size: clamp(1.2rem, 0.7rem + 1.6vw, 1.6rem);
}
/* illust */
.detail_illust {
	width: 30%;
	max-width: 210px;
	position: absolute;
	top: -70px;
	right: 0;
}
.detail_illust img {
	width: 100%;
	height: 100%;
}
@media (max-width: 550px) {
	.dtitle {
		margin-bottom: 40px;
	}
	.detailContents {
		padding: 90px 0 70px;
	}
}
/* 一覧へ戻る */
.go_back_btn a {
	position: relative;
	color: #3b3c42;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: auto;
	margin-top: 80px;
}
.go_back_btn a::after {
	margin-left: 15px;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #0069aa;
	color: #fff;
	font-size: 70%;
	transition: .4s;
}
.go_back_btn a:hover {
	opacity: 0.6;
}
/*
.go_back_btn a:hover::after {
	transform: scale(1.2);
}
*/
@media (max-width: 550px) {
	.go_back_btn a {
		margin-top: 50px;
	}
}
/* 詳細ページ共通設定 ==================*/
/*ol*/
.detailContents ol {
	counter-reset: number 0;
}
.detailContents ol li::before {
	counter-increment: number 1;
	content: counter(number)".";
	margin-right: 4px;
}
/*ul*/
.detailContents ul li::before {
	content: "・";
}
/*img*/
.detailContents img {
	max-width: 100%;
	height: 100%;
	border-radius: 15px;
}