@charset "UTF-8";
/* ------------------------------------------------------
 * base
 * ------------------------------------------------------ */
:root {
    --color-white: #fff;
	--color-gray: #666;
	--color-light-gray: #868686;
	--color-light-gray2:#cbcbcb;
	--color-link: #008bb7;
    --color-washi: #f3f1e9;
}

a {
    -webkit-touch-callout: none;
    color: inherit;
}

:focus {
	outline: 0;
}

img, svg {
	vertical-align: middle;
}

button, input, select, textarea {
	border-radius: .5rem;
}

input[type=text]:focus-visible {
    outline: none;
}

input[type="checkbox"] {
	display: inline-block;
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	background-color: var(--color-light-gray2);
	border: none;
	border-radius: 2px;
	cursor: pointer;
}

input[type="checkbox"]::after {
	content: '\e923';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--color-white);
	font-family: icomoon;
	font-size: 0.8rem;
}

input[type="checkbox"]:checked {
	background-color: var(--color_main);
}

input[type="checkbox"]:checked::after {
	opacity: 1;
}

.external-link,
.phone-link {
	position: relative;
	padding-left: 25px;
}

.external-link::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background: url(../images/common/icon_external-link.svg) no-repeat;
	width: 16px;
	height: 16px;
	margin: auto;
}

.external-link::after {
/*
	content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #000;
*/
}

.phone-link::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background: url(../images/common/icon_phone-link.svg) no-repeat;
	width: 15px;
	height: 15px;
	margin: auto;
}

/* breadcrumb */
.single .p-breadcrumb__item:last-child>span.p-breadcrumb__text {
	display: block;
}

.p-breadcrumb {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
}

.p-breadcrumb__list {
	display: inline-flex;
	min-width: max-content;
	gap: 0.5rem;
	margin: 0;
	list-style: none;
}

.p-breadcrumb__item {
	flex-shrink: 0;
}

/* ------------------------------------------------------
 * post
 * ------------------------------------------------------ */
.p-postList.-type-card {
	gap: 1.5rem 1rem;
	margin: 0;
}

.-type-card .p-postList__item {
	width: 100%;
	margin: 0;
	padding: 0;
}

.-type-card .p-postList__thumb {
	border-radius: 0.625rem;
}

.post-type-archive-feature .-type-card .p-postList__thumb,
.post-type-archive-feature .c-postThumb__figure {
	aspect-ratio: 3 / 2;
}

.-type-card .p-postList__body {
	position: initial;
	padding-top: 0.625rem;
}

.p-postList__meta {
	font-size: 0.875rem;
	flex-wrap: nowrap;
	align-items: flex-start;
}

.p-postList__areaList {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 5px;	
}

.p-postList__areaLink {
    padding: 2px 10px;
    background: var(--color_main);
    border-radius: 0.9375rem;
    color: var(--color-white);
}

.post-views-count {
	min-width: 90px;
	margin-left: auto;
	text-align: right;
}

.p-postList .p-postList__title {
	margin-top: 0.625rem;
	font-size: 1.25rem;
}

.p-postList__link {
	position: initial;
	font-size: 1.25rem;
}

.-ps-style-normal .p-postList__item:hover .p-postList__body,
.-type-card .p-postList__item:hover .p-postList__body,
.-type-list .p-postList__item:hover .p-postList__body {
	opacity: initial;
}

.p-postList__link::before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.p-postList__categoryList {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 5px;
}

.p-postList__categoryLink {
	font-size: 0.875rem;
}

.p-postList__taxonomy {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0.9375rem;
    background: var(--color-washi);
    border-radius: 8px 0 0.625rem 0;
    color: var(--color_text);
    font-size: 1.125rem;
    font-weight: bold;
	opacity: .9;
}

.p-postList__author {
	display: flex;
	gap: 0.9375rem;
	align-items: center;
	margin-top: 10px;
}

.p-postList__author-thumb img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

/* ------------------------------------------------------
 * favorite
 * ------------------------------------------------------ */
.c-favorite-icon {
    display: flex;
    align-items: center;
    justify-content: center;
	position: absolute;
	top: 10px;
	right: 10px;
    cursor: pointer;
    transition: transform 0.2s;
	width: 40px;
	height: 40px;
	background: var(--color-white);
	border: none;
	border-radius: 50%;
	pointer-events: auto;
	z-index:10;
}

.c-favorite-icon .heart-icon {
    fill: none;
    stroke: var(--color_main);
    stroke-width: 2;
}

.c-favorite-icon .heart-icon.active {
    fill: var(--color_main);
    stroke: var(--color_main);
    transform: scale(1.1);
}

.clear-favorites {
    text-align: center;
    margin: 20px 0;
}

.clear-btn {
    background-color: var(--color_main);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.clear-btn:hover {
    background-color: var(--color_main);
}

/* font */
.c-font--red {
	color: var(--color_main);
}

/* icon */
.icon-checkmark {
	color: var(--color_main);
	font-size: .9375rem;
}

.icon-chevron-right {
	color: var(--color_main);
	font-size: .9375rem;
}

.icon-chevron-right.more {
    display: inline-grid;
    width: 25px;
    height: 25px;
	margin-right: .3125rem;
    padding: 3px;
	border: 2px solid var(--color_main);
    border-radius: 50%;
    font-weight: bold;
    margin-right: .75rem;
}

/* btn */
.c-btn {
    display: block;
    max-width: 260px;
    width: 100%;
    margin: auto;
    padding: 1rem;
    border-radius: 2rem;
    text-align: center;
    font-weight: bold;
}

.c-btn--red {
	background-color: var(--color_main);
	color: var(--color-white);
}

.c-btn--wh {
	background-color: var(--color-white);
	color: var(--color_main);
}

.c-lineArrow {
	margin: -15px 0 0 0;
	width: 100%;
	height: .5rem;
	border-bottom: 1px solid var(--color_text);
	border-right: 1px solid var(--color_text);
	transform: skew(45deg);
}

/* page-top */
.c-fixBtn {
    opacity: 1;
    background: var(--color_main);
    color: var(--color-white);
}

.c-fixBtn:hover {
    opacity:.75;
}

/* ------------------------------------------------------
 * レイアウト
 * ------------------------------------------------------ */
.l-content {
	padding-top: 0;
}

.single-post .l-content {
	padding-top: 2em;
}

/* ------------------------------------------------------
 * パンくずリスト
 * ------------------------------------------------------ */
.p-breadcrumb__list {
	font-size: clamp(.815rem, 2vw, .875rem);
}

 .p-breadcrumb__text .__home:before {
	content: none;
}

/* ------------------------------------------------------
 * heading
 * ------------------------------------------------------ */
.c-pageTitle {
	position: relative;
	width: 100vw;
    margin: 0 calc(50% - 50vw);
	padding: 3rem 1rem;
    background:#f3f1e9;
	font-family: 'Zen Old Mincho', serif;
	font-size: 2.25rem;
}

.c-pageTitle__inner {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	padding: 0;
	text-align: center;
}

.c-pageTitle__subTitle {
	margin: 0;
	font-style: normal;
	font-size: .9rem;
}

/* ------------------------------------------------------
 * 検索フォーム
 * ------------------------------------------------------ */
.c-searchForm {
    display: flex;
    border: 2px solid var(--color-gray);
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
}

.c-searchForm__s {
	padding: 0.5em 1em;
	border: none;
}

.c-searchForm__s:focus {
	outline: 2px solid var(--color_text);
}

.c-searchForm__submit {
    background: #fff !important;
    border: none;
}

.c-searchForm__submit::before {
	color: var(--color_text);
}

/* ------------------------------------------------------
 * UI-ドロップダウン
 * ------------------------------------------------------ */
/* Component - ドロップダウンの基本スタイル */
.c-search-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
}

.c-search-dropdown__label {
	position: relative;
    display: block;
    background-color: var(--color-white);
    padding: 10px;
    cursor: pointer;
    border: 1px solid #111;
    border-radius: 5px;
    text-align: center;
}

.c-search-dropdown__label::after {
	font-family: icomoon!important;
	content: "\e910"!important;
	position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 1rem;
}

.c-search-dropdown__label.active {
	background: #ff4133;
    color: var(--color-white);
	border: 1px solid #ff4133;
}

.c-search-dropdown__content {
    display: none;
    position: absolute;
	margin-top: 10px;
    width: 100%;
    padding: 20px;
    z-index: 1;
    max-height: 300px;
    overflow-y: auto;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px
}

.c-search-dropdown__close-btn {
	position: absolute;
	top: 0;
	right: 10px;
    cursor: pointer;
    color: #333;
    font-size: 1.4rem;
    font-weight: bold;
}

.o-search-form__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.o-search-form__wrap .o-search-form__submit,
.o-search-form__wrap .o-search-form__reset {
	max-width: 400px;
	min-width: 260px;
	width: 65%;
	margin: 0 auto;
	padding: 10px;
	border: none;
	border-radius: 25px;
}

.o-search-form__submit {
	background: #111;
	color: var(--color-white);
}

.o-search-form__reset {
	background: #ebebeb;
	color: #111;
}

.c-search-dropdown__list {
	display: flex;
    flex-direction: column;
	gap: 10px;
}

.c-search-dropdown__item label {
	display: flex;
	align-items: center;
	gap: 10px;
}

.c-search-dropdown__checkbox {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	width: 1.4rem;
	height: 1.4rem;
	padding: 0;
	background: #bfbfbf;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.c-search-dropdown__checkbox::before {
	content: "\e923"!important;
	font-family: icomoon!important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--color-white);
	font-size: 12px;
}

.c-search-dropdown__checkbox:checked {
	background-color: #ff4133;
}

.c-search-dropdown__checkbox:checked::before {
	content: "\e923"!important;
	font-family: icomoon!important;
	display: grid;
	place-content: center;
	height: 100%;
	color: var(--color-white);
	font-size: 12px;
}

.c-search-dropdown__input-text {
	width: 100%;
	padding: 10px;
	background-color: var(--color-white);
	border: 1px solid #111;
    border-radius: 5px;
}

/* ------------------------------------------------------
 * 600px以上
 * ------------------------------------------------------ */
@media (min-width: 600px) {
	.p-postList.-type-card {
		gap: 2rem 1.5rem;
	}

	.-type-card .p-postList__item,
	.-sidebar-off .-type-card.-pc-col3 .p-postList__item {
		width: calc((100% - 3rem) / 2);
	}

	.p-postList__author-thumb img {
		width: 60px;
		height: 60px;
	}	
}

/* ------------------------------------------------------
 * 960px以上
 * ------------------------------------------------------ */
@media (min-width: 960px) {
	.p-postList.-type-card {
		gap: 3rem 2rem;
	}

	.-type-card .p-postList__item,
	.-sidebar-off .-type-card.-pc-col3 .p-postList__item {
		width: calc((100% - 4rem) / 3);
	}
}