@charset "UTF-8";
.c-category__checkbox  {
	cursor: pointer;
}
/* チェックボックス自体を隠す */
.c-category__checkbox input[type="checkbox"] {
    display: none;
}
/* チェックされたときのスタイル */
.c-category__checkbox input[type="checkbox"]:checked + .c-card__article-category-item {
    border: 1px solid #06633C;
	background: #06633C;
	color: #fff;
}
.c-category__checkbox input[type="checkbox"]:checked + .c-card__article-tags-item {
    text-decoration: underline;
}
.c-category__submit .c-button-right {
	max-width: 230px;
	margin: 30px auto 0;
	padding-block: 10px;
}
.c-category__submit .c-button-right span {
    justify-content: center;
    gap: 15px;
    flex-direction: row-reverse;
}
.c-category__submit .c-button-right span::after {
    background-image: url(../img/search.svg);
    width: 26px;
	height: 26px;
}
.c-search__form input {
    margin: 0;
    border: none;
    width: 200px;
}
.c-search__form button {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    background: #24A239;
    padding: 2px 17px;
    border-radius: 9px;
	cursor: pointer;
}
.c-search {
    padding: 0 5% 50px;
	width: fit-content;
    margin-left: auto;
}
.c-search__head {
    font-size: 20px;
    font-weight: bold;
    color: #06633C;
    margin-bottom: 7px;
}
.c-search__form {
    padding: 8px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    width: fit-content;
    margin-left: auto;
    background: #fff;
	border-radius: 50px;
	border: 1px solid #C5D4CF;
}
.c-category__area {
	position: fixed;
	right: 0;
    top: 0;
	height: 100vh;
	z-index: 10000000;
	width: 100%;
	opacity: 0;
    z-index: -100;
}
.c-category__area.open {
	z-index: 10000000;
	opacity: 1;
}
.c-category__btn {
    writing-mode: vertical-rl;
    background: #24A239;
    color: #fff;
    width: 56px;
    height: 184px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 29px 0 0 29px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
	position: fixed;
    right: 0;
	top: 25vh;
	z-index: 10000001;
}
.c-category__content {
    padding: 50px 80px 50px 50px;
    max-height: 750px;
    min-height: 500px;
    background: #fff;
    height: 75vh;
    border-radius: 25px 0 0 25px;
    border: 1px solid #707070;
    border-right: none;
	width: fit-content;
    margin-left: auto;
    max-width: 600px;
}
.c-category__content form {
    height: 100%;
}
.c-category__inner {
    height: calc(100% - 150px);
    overflow-y: scroll;
    margin-top: 30px;
	padding-bottom: 10px;
	padding-right: 40px;
}
.overlay {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: -1;
	opacity: 0.4;
}
.c-category__box {
    margin-top: 30px;
}
.c-category__box:first-child {
	margin-top: 0;
}
.c-category__box p {
    font-size: 20px;
    font-weight: bold;
    color: #06633C;
    margin-bottom: 15px;
}
.c-category__list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
	overflow: hidden;
}
.c-category__list.-category {
	max-height: calc(27px * 3 + 30px);
	align-content: flex-start;
}
.c-category__list.-category.no-limit {
  max-height: none !important;
}
.c-category__list.-tag {
	height: calc(1.75em * 3 + 30px);
	align-content: flex-start;
}
.c-category__list.is-open {
	height: auto;
}
.c-category__list.-category.is-open {
	max-height: none;
}
.c-category__more {
	color: #24A239;
	font-size: 16px;
	font-weight: 500;
	margin-left: auto;
	cursor: pointer;
	width: fit-content;
    margin-left: auto;
    display: block;
}
.c-category__more.is-close {
	display: none;
}

.c-category__item-link {
    font-size: 16px;
    color: #06633C;
    border: 1px solid #D3D3D3;
    border-radius: 50px;
    padding: 2px 12px;
    font-weight: 500;
    margin: 0;
}
.c-category__item-link.is-active {
    background: #06633C;
	color: #fff;
    border: 1px solid #06633C;
}
.c-category__list .c-card__article-tags-item:before {
    position: absolute;
    content: url(../img/tag.svg);
    left: 0;
    top: -1px;
}
.p-filter-summary__head {
	font-size: 24px;
    color: #004D2D;
    font-weight: bold;
    margin-bottom: 10px;
}
.p-filter-summary__head.-key {
	font-size: 16px;
    color: #004D2D;
    font-weight: 500;
    margin-bottom: 10px;
}
.p-filter-summary__category {
    display: flex;
    gap: 10px;
    pointer-events: none;
    flex-wrap: wrap;
    border-bottom: 1px solid #B3C4BE;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.c-button-reset {
	font-size: 16px;
    color: #24A239;
    border: 1px solid #24A239;
    border-radius: 5px;
    padding: 2px 38px 2px 11px;
    font-weight: 500;
	position: relative;
	margin-left: auto;
	display: block;
    width: fit-content;
}
.c-button-reset:hover {
    color: #fff;
	background: #24A239;
}
.c-button-reset:before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    mask-image: url(../img/reset.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    background-color: #24A239;
    mask-size: 100%;
    right: 12px;
	top: 53%;
	transform: translateY(-50%);
}
.c-button-reset:hover:before {
	background-color: #fff;
}

.l-archive__list {
	padding: 0 5%;
}
.l-archive__content {
	padding: 65px;
	display: flex;
	flex-wrap: wrap;
	gap: 75px 50px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
}
.c-card__article-content a:hover {
	opacity: 0.7;
}
.c-card__article {
	width: calc((100% - 100px) / 3);
}
.c-card__article-thumbnail {
    aspect-ratio: 374 / 212;
	height: auto;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 9px;
}
.c-card__article-thumbnail img {
    height: auto;
    width: 100%;
	object-fit: cover;
    aspect-ratio: 374 / 212;
}
.c-card__article-textarea {
	padding: 13px 15px;
}
.c-card__article-category {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	overflow: hidden;
	height: 27px;
}
.c-card__article-category-item {
	border: 1px solid #06633C;
	border-radius: 50px;
	display: flex;
	align-items: center;
	height: 27px;
	padding: 0 15px;
	color: #06633C;
	font-weight: 500;
	background: #fff;
	font-size: 16px;
}
.c-card__article-category-item:hover {
	border: 1px solid #06633C;
	background: #06633C;
	color: #fff;
	opacity: 1 !important;
}
.c-card__article-title {
	margin: 8px 0 0;
	color: #06633C;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.75em;
    display: -webkit-box !important;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3.5em;
	height: auto;
    word-break: break-all;
	padding: 0 15px;
}
.c-card__article-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	overflow: hidden;
	height: 27px;
}
.c-card__article-tags-item {
	position: relative;
	padding-left: 18px;
	font-weight: 500;
	color: #06633C;
	font-size: 16px;
}
.c-card__article-tags-item:hover {
	text-decoration: underline;
	opacity: 1 !important;
}
.c-card__article-tags-item:before {
	position: absolute;
	content: url("../img/tag.svg");
	left: 0;
}
.l-single {
    max-width: 1100px;
	width: 90%;
	margin: 0 auto;
}
.l-single__title {
	padding: 30px 22px;
	font-weight: bold;
	color: #06633C;
	border-top: 3px solid #FFBF00;
	border-bottom: 3px solid #FFBF00;
	background: #fff;
	font-size: 24px;
}
.l-single__info {
	display: flex;
	align-items: center;
	gap: 27px;
	margin: 27px 0;
}
.c-card__article-date {
	margin-left: auto;
	color: #06633C;
	font-weight: 500;
}
.l-single__img img {
    width: 100%;
    height: auto;
}
.l-single__content {
    margin-top: 60px;
}
.l-single__content #ez-toc-container {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
    padding: 25px 12.5% 50px;
}
.l-single__content div#ez-toc-container .ez-toc-title {
    cursor: inherit;
    text-align: center;
    display: block;
    color: #06633C;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}
.l-single__content div#ez-toc-container ul li {
    margin-bottom: 25px;
}
.l-single__content div#ez-toc-container ul li:last-child {
    margin-bottom: 0;
}
.l-single__content div#ez-toc-container ul li a {
    font-size: 24px;
    color: #06633C;
    font-weight: bold;
}
.l-single__content h2 {
	padding: 30px 15px;
	font-weight: bold;
	color: #06633C;
	border-left: 3px solid #FFBF00;
	background: #fff;
	font-size: 24px;
}
.l-single__content h3 {
	padding: 0 0 8px;
	font-weight: bold;
	color: #06633C;
	border-bottom: 3px solid #FFBF00;
	font-size: 24px;
}
.l-single__content .wp-block-heading {
    max-width: 820px;
    margin: 0 auto 1em;
}
.l-single__content p {
    max-width: 820px;
    margin: 0 auto 1em;
	font-size: 18px;
}
.l-single__content .wp-block-image {
    max-width: 820px;
    margin: 0 auto 1em;
	border-radius: 15px;
    overflow: hidden;
}
.wp-block-embed-youtube {
    max-width: 820px;
    margin: 0 auto;
}
.wp-block-embed-youtube iframe {
    margin: 0 auto;
    display: block;
}
.l-single__author {
    border-top: 1px solid #B3C4BE;
    padding-top: 30px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}
.l-single__author-head {
    font-size: 18px;
    font-weight: 500;
    color: #06633C;
    margin-bottom: 17px;
}
.l-single__author-content {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}
.l-single__author-content figure {
    width: 83px;
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50px;
	overflow: hidden;
}
.l-single__author-profile {
    font-size: 13px;
    margin-top: 12px;
}
.l-single .c-button-right {
	margin: 120px auto 0;
}
.l-single .c-button-right span {
	flex-direction: row-reverse;
	justify-content: center;
    gap: 20px;
}
.l-single .c-button-right > span::after {
    transform: rotate(180deg);
}
.l-single__list {
	padding: 0 5%;
	margin-top: 80px;
}
.l-single__list-head {
	font-size: 38px;
    color: #06633C;
    font-weight: bold;
	margin-bottom: 40px;
}
.swiper-pagination {
    position: relative !important;
    margin-top: 10px !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background: #24A239;
}
.l-single__list-wrapper {
    position: relative;
}
.l-single__list-slider {
    width: calc(100% - 180px);
}
.prev-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
	cursor: pointer;
}
.next-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
	cursor: pointer;
}
.no-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 60px;
}
.l-archive__content.-no {
    position: relative;
    padding-top: 95px;
}
.no-title {
    position: absolute;
    top: 20px;
    font-size: 24px;
    font-weight: bold;
}
.c-button-right.-no {
    margin: 50px auto;
}
.c-button-right.-no span {
    flex-direction: row-reverse;
	justify-content: center;
    gap: 20px;
}
.c-button-right.-no span::after {
    transform: rotate(180deg);
}
.l-single__img {
    border-radius: 16px;
    overflow: hidden;
}
@media screen and (max-width: 960px) {
	.l-archive__content {
    	padding: 30px;
		gap: 50px 30px;
	}
    .c-card__article {
		width: calc((100% - 30px) / 2);
	}
	.c-card__article-title {
		font-size: 18px;
	}
	.l-single__content #ez-toc-container {
		padding: 25px 5% 50px;
	}
}
@media (any-hover: none) {
	.c-card__article-category-item:hover {
		border: 1px solid #06633C;
		background: #fff;
		color: #06633C;
		opacity: 1 !important;
	}
	.c-card__article-tags-item:hover {
		text-decoration: unset;
		opacity: 1 !important;
	}
}
@media screen and (max-width: 768px) {
	.c-category__btn {
		width: 35px;
		font-size: 16px;
	}
	.c-category__content {
		padding: 50px 50px 50px 20px;
		height: 100vh;
	}
	.l-archive__content {
    	padding: 25px;
		gap: 30px 30px;
	}
    .c-card__article {
		width: 100%;
	}
	.c-card__article-textarea {
		padding: 15px 0;
	}
	.c-card__article-title {
		font-size: 16px;
		margin: 8px 0 10px;
	}
	.l-single__title {
		padding: 20px 15px;
		font-size: 20px;
	}
	.l-single__info {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.l-single__content {
		margin-top: 30px;
	}
	.l-single__content #ez-toc-container {
		padding: 20px 5% 30px;
		margin-bottom: 30px;
	}
	.l-single__content div#ez-toc-container ul li {
		margin-bottom: 20px;
	}
	.l-single__content div#ez-toc-container ul li a {
		font-size: 18px;
	}
	.l-single__content h2 {
		font-size: 20px;
		padding: 20px 10px;
	}
	.l-single__content h3 {
		font-size: 20px;
	}
	.l-single__list-slider {
		width: calc(100% - 100px);
	}
	.prev-btn {
		width: 40px;
	}
	.next-btn {
		width: 40px;
	}
	.c-search__head {
		font-size: 18px;
	}
	.c-search__form {
		padding: 4px 8px;
	}
	.c-search__form input {
		font-size: 16px;
		width: 150px;
	}
	.c-search {
		padding: 0 5% 30px;
		margin-left: 0;
	}
	.no-text {
    	font-size: 18px;
		margin-bottom: 35px;
	}
	.l-archive__content.-no {
		padding-top: 60px;
	}
	.no-title {
		font-size: 20px;
		top: 10px;
	}
	.wp-block-embed-youtube iframe {
        aspect-ratio: 16 / 9;
        width: 100%;
        height: auto
	}
	.c-category__inner {
		padding-right: 20px;
	}
}
.p-front-shop__inner {
    margin-right: 0;
	width: 96%;
}
.-photo .p-front-shop__inner {
    margin-left: 0;
}
.p-front-shop.-photo {
    padding-right: 0;
    margin-left: 0;
    padding-left: clamp(10px, 7.5vw, 120px);
    margin-right: clamp(10px, 7.5vw, 120px);
    border-radius: 0px 10px 10px 0px;
    margin-top: 65px;
}
.p-front-shop__inner.-photo::before {
    opacity: 0;
}
.-photo .p-front-shop__flex-area {
    flex-direction: row-reverse;
    column-gap: clamp(10px, 5vw, 120px);
}
.p-front-shop__flex-link {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}
.p-front-shop__flex-link a {
    margin: 0;
    width: fit-content;
}
.p-front-shop__flex-link a span {
    gap: 20px;
}

@media screen and (max-width: 768px) {
	.p-front-shop.-photo  {
		padding-left: 20px;
		margin-right: clamp(8px, 2.6666666667vw, 60px);
	}
	.-photo .p-front-shop__flex-area {
		flex-direction: column;
	}
	.p-front-shop__flex-link {
		margin-top: 40px;
		gap: 25px;
		justify-content: center;
	}
	.p-front-shop__flex-link a {
		width: 100%;
	}
	.l-single__content p {
		font-size: 16px;
	}
	.l-single__list-wrapper .c-card__article-category-item {
		height: 22px;
		font-size: 12px;
	}
	.l-single__list-wrapper .c-card__article-tags-item {
		font-size: 12px;
	}
	.l-single__list-head {
		font-size: 18px;
	}
}

.c-card__article-category {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  gap: 0;
}

.js-category-item {
  margin-right: 6px;
  white-space: nowrap;
}

.c-card__article-category-overflow ,.js-tag-overflow{
	font-size: 14px;
    padding: 0;
    height: 26px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #0e6f55;
    color: #fff;
	pointer-events: none;
}
.js-tag-overflow:before {
	display: none;
}
.js-tag-overflow:before {
	display: none;
}

.-photo .p-front-shop__flex-right::after {
	display: none;
}

.is-active .l-header__main {
    opacity: 0;
}