@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* =========
   Cafe Fleur base
========= */
:root{
  --cf-bg: #fbf3f6;
  --cf-card: #ffffff;
  --cf-text: #241c1f;
  --cf-sub: #7a5c66;
  --cf-accent: #ff4fa3;
  --cf-accent2:#ff76b8;
  --cf-line: rgba(36, 28, 31, .08);
  --cf-radius: 22px;
  --cf-shadow: 0 12px 30px rgba(0,0,0,.06);
  --cf-max: 1100px;
}

/* TOPページの上部余白を除去 */
.top #content {
    padding-top: 1em;
}

/* SWELLのフルワイド上で“中身幅”を作る汎用 */
.cf-container{
  max-width: var(--cf-max);
  margin: 0 auto;
  padding: 0 18px;
}

.cf-section{
  background: var(--cf-bg);
  padding: 56px 0;
}

.cf-card{
  background: var(--cf-card);
  border: 1px solid var(--cf-line);
  border-radius: var(--cf-radius);
  box-shadow: var(--cf-shadow);
}

.cf-muted{ color: var(--cf-sub); }

.cf-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color: var(--cf-accent);
  background: rgba(255,79,163,.10);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.cf-h1{
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 14px 0 10px;
  color: var(--cf-text);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cf-script{
  font-family: "Brush Script MT","Segoe Script","Comic Sans MS",cursive;
  color: var(--cf-accent);
  font-weight: 700;
}
.cf-lead{
  color: var(--cf-sub);
  line-height: 1.8;
  margin: 0 0 18px;
}

.cf-btns{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px; }
.cf-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration:none !important;
  border: 1px solid var(--cf-line);
  color: var(--cf-text);
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.cf-btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 18px rgba(0,0,0,.08); }
.cf-btn.primary{
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--cf-accent), var(--cf-accent2));
}

/* =========
   HERO
========= */
.cf-hero{
  padding: 22px;
  overflow:hidden;
}
.cf-heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
}
.cf-heroLeft{ padding: 20px 10px 20px 20px; }
.cf-heroRight{
  border-radius: 18px;
  overflow:hidden;
  aspect-ratio: 4/3;
}
.cf-heroRight img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

@media (max-width: 900px){
  .cf-heroGrid{ grid-template-columns: 1fr; }
  .cf-heroLeft{ padding: 10px; }
  .cf-hero{ padding: 16px; }
}









/* =========
   Single.php レシピ詳細ページ：新レイアウト版
========= */

#breadcrumb,
.single-post .p-breadcrumb,
.single-post .c-breadcrumb,
.single-post .breadcrumb,
.single-post .l-breadcrumb {
	display: none !important;
}

#main_content.recipe-page {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	background: #f7f3ec;
}

#main_content.recipe-page .recipe-detail {
	max-width: 1180px;
	margin: 0 auto;
	padding: 46px 24px 80px;
	box-sizing: border-box;
}

.recipe-hero {
	display: grid;
	grid-template-columns: minmax(0, 48%) minmax(0, 52%);
	gap: 48px;
	/*align-items: center;*/
	margin-bottom: 50px;
}

.recipe-hero__media,
.recipe-hero__info,
.recipe-tabs,
.recipe-tabs__panels {
	min-width: 0;
}
.recipe-hero__media {
    padding-top: 15px;
}
.recipe-hero__info {
    padding-top: 15px;
}
.recipe-slider {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #eee6da;
	box-shadow: 0 18px 34px rgba(45, 38, 32, .10);
}

.recipe-slider__slides,
.recipe-slide {
	position: absolute;
	inset: 0;
}

.recipe-slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity .38s ease, visibility .38s ease;
}

.recipe-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.recipe-slide__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.96) contrast(1.03);
}

.recipe-slider__btn {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 999px;
	background: rgba(34, 29, 24, .72);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background .25s ease, transform .25s ease;
}

.recipe-slider__btn:hover {
	background: rgba(34, 29, 24, .9);
	transform: translateY(-50%) scale(1.04);
}

.recipe-slider__btn--prev {
	left: 14px;
}

.recipe-slider__btn--next {
	right: 14px;
}

/* スマホ：スライダーボタンを小さく */
@media (max-width: 768px) {
  .recipe-slider__btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 18px !important;
  }
}

.recipe-slider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 7px;
    margin-left: 15px; /*左寄りに見えるのをセンター寄りに*/
}
@media (max-width: 768px) {
.recipe-slider__dots {
    margin-left: 0px; /*右寄りに見えるのをセンター寄りに*/
}
}
.recipe-slider__dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: rgba(255,255,255,.55);
}

.recipe-slider__dot.is-active {
	background: #fff;
}

.recipe-header__topmeta {
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
	margin-bottom: 16px;
	font-size: 10px;
	letter-spacing: .04em;
}

.recipe-header__topmeta-item {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
    padding: 5px 7px;
	border: 1px solid #d8c9b8;
	border-radius: 999px;
	background: rgba(255,255,255,.58);
	color: #6e5f52;
	font-weight: 500;
	line-height: 1.2;
}

.recipe-header__topmeta-item--genre {
	background: #2d2620;
	border-color: #2d2620;
	color: #fff;
	font-weight: 600;
}

.recipe-header__title {
	margin: 0;
	font-size: clamp(34px, 4vw, 62px);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .02em;
	color: #2d2620;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.recipe-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.recipe-tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	background: #eee5d8;
	color: #6e5f52;
	font-size: 12px;
	line-height: 1.2;
}

.recipe-tabs {
	margin-top: 0;
}

.recipe-tabs__nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid #d8cdbf;
	border-bottom: 1px solid #d8cdbf;
	background: rgba(255,255,255,.26);
}

.recipe-tabs__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 18px 20px;
	border: none;
	border-right: 1px solid #ded2c4;
	border-radius: 0;
	background: transparent;
	color: #6f6257;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 1;
	cursor: pointer;
	transition: background .25s ease, color .25s ease;
}

.recipe-tabs__btn:last-child {
	border-right: none;
}

@media (max-width: 600px) {
  .recipe-tabs__btn:last-child {
    border-right: 1px solid #d8c7b2 !important;
  }
}

.recipe-tabs__btn:hover {
	background: rgba(154,115,79,.05);
	color: #2d2620;
}

.recipe-tabs__btn.is-active {
	background: rgba(154,115,79,.08);
	color: #2d2620;
}

.recipe-tabs__btn::after {
	content: "";
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: -1px;
	height: 2px;
	background: transparent;
	transition: background .25s ease;
}

.recipe-tabs__btn.is-active::after {
	background: #9a734f;
}

.recipe-tabs__panels {
	padding-top: 34px;
}

.recipe-tabs__panel {
	display: none;
}

.recipe-tabs__panel.is-active {
	display: block;
}

.recipe-overview,
.recipe-points {
	max-width: 920px;
	font-size: 15.5px;
	line-height: 2.05;
	color: #322a24;
}

.recipe-overview > *:first-child,
.recipe-points > *:first-child {
	margin-top: 0;
}

.recipe-ingredients__list {
	max-width: 920px;
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #d8c9b8;
}

.recipe-ingredients__item {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 17px 0;
	border-bottom: 1px solid #d8c9b8;
}

.recipe-ingredients__name {
	font-size: 16px;
	font-weight: 500;
	color: #2d2620;
}

.recipe-ingredients__amount {
	font-size: 15px;
	color: #6d5f50;
	white-space: nowrap;
}

.recipe-steps {
	max-width: 960px;
	display: grid;
	gap: 0;
	border-top: 1px solid #d8c9b8;
}

.recipe-step {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 28px;
	padding: 20px 0;
	border-bottom: 1px solid #d8c9b8;
}

.recipe-step__num {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	color: #9a734f;
}

.recipe-step__num span {
	font-size: 10px;
	letter-spacing: .18em;
}

.recipe-step__num strong {
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	color: #2d2620;
}

.recipe-step__title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 600;
	color: #2d2620;
}

.recipe-step__text {
	font-size: 15px;
	line-height: 2;
	color: #463b32;
}

.recipe-step__text > *:first-child {
	margin-top: 0;
}

@media (max-width: 900px) {
	#main_content.recipe-page .recipe-detail {
		padding: 32px 18px 64px;
	}

	.recipe-hero {
		grid-template-columns: 1fr;
		gap: 26px;
		margin-bottom: 36px;
	}

	.recipe-header__title {
		font-size: 34px;
	}
}

@media (max-width: 767px) {
	#main_content.recipe-page .recipe-detail {
		padding: 26px 16px 56px;
	}

	.recipe-slider {
		aspect-ratio: 4 / 3;
	}

	.recipe-header__topmeta {
		gap: 6px;
		margin-bottom: 12px;
	}

	.recipe-header__topmeta-item {
        padding: 4px 1px;
        font-size: 11px;
	}

	.recipe-header__title {
		font-size: 30px;
	}

	.recipe-tabs__nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
		border: none;
		background: transparent;
	}

	.recipe-tabs__btn {
		padding: 14px 10px;
		border: 1px solid #d8cdbf;
	}

	.recipe-tabs__btn:nth-child(2n) {
		border-right: 1px solid #d8cdbf;
	}

	.recipe-tabs__panels {
		padding-top: 26px;
	}

	.recipe-step {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 18px 0;
	}

	.recipe-step__num {
		flex-direction: row;
		align-items: baseline;
		gap: 8px;
	}

	.recipe-step__num strong {
		font-size: 24px;
	}
}


/* ===============================
   カテゴリメニュー制御
=============================== */
/* カテゴリカード全体 */
/* カテゴリカード */
.eatica-cat-card {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.eatica-cat-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, filter .45s ease;
}

/* 写真にうっすら深みを足す */
.eatica-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,.28) 100%
  );
  pointer-events: none;
}

/* タイトル帯 */
.eatica-cat-title {
  position: absolute;
  left: 50%;
bottom: 12px;
  transform: translateX(-50%);
  z-index: 2;
min-width: 67%;
padding: 7px 18px 7px;
  background: rgba(28, 27, 25, .82);
  color: #fff;
  text-align: center;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(0,0,0,.20);
  backdrop-filter: blur(3px);
}

/* 英字サブタイトル */
.eatica-cat-title::after {
  display: block;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
font-size: 9px;
  font-weight: 400;
  letter-spacing: .16em;
  color: rgba(255,255,255,.72);
}

/* カテゴリ別の英字 */
.eatica-cat-card:nth-child(1) .eatica-cat-title::after {
  content: "RICE BOWL";
}

.eatica-cat-card:nth-child(2) .eatica-cat-title::after {
  content: "NOODLES";
}

.eatica-cat-card:nth-child(3) .eatica-cat-title::after {
  content: "SANDWICH";
}

.eatica-cat-card:nth-child(4) .eatica-cat-title::after {
  content: "DESSERT";
}

/* ホバー */
.eatica-cat-card:hover img {
  transform: scale(1.045);
  filter: brightness(.94);
}

/* 余白リセット */
.eatica-cat-card p,
.eatica-cat-card figure {
  margin: 0;
}

/* スマホ */
@media (max-width: 768px) {
  .eatica-cat-title {
    bottom: 16px;
    min-width: 64%;
    padding: 9px 14px 8px;
    font-size: 16px;
  }

  .eatica-cat-title::after {
    font-size: 9px;
  }
}






/* ===============================
   投稿リスト　カテゴリラベル 洗練化
=============================== */
/* 投稿リスト：カテゴリラベル共通調整 */
.p-postList__cat,
.c-postThumb__cat,
.c-categoryList__link,
.c-postThumb__cat span {
	border-radius: 999px !important;
	background: rgba(35, 30, 25, 0.78) !important;
	color: #fff !important;
	padding: 6px 13px !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: .06em !important;
	line-height: 1 !important;
	border: none !important;
}

/* フォルダアイコン削除 */
.p-postList__cat::before,
.c-postThumb__cat::before,
.c-categoryList__link::before,
.p-postList__cat i,
.c-postThumb__cat i,
.c-categoryList__link i,
.p-postList__cat svg,
.c-postThumb__cat svg,
.c-categoryList__link svg {
	display: none !important;
	content: none !important;
}

/* カテゴリ位置調整 */
.c-postThumb__cat,
.p-postList__cat {
	top: 12px !important;
	right: 12px !important;
	left: auto !important;
}


/* ===============================
   投稿リスト　タイトルラベル 洗練化
=============================== */
.p-postList__title {
	margin-top: 14px !important;
	font-size: 17px !important;
	line-height: 1.55 !important;
	font-weight: 600 !important;
	letter-spacing: .02em !important;
	color: #2d2620 !important;
}

/* 日付（投稿リスト）完全制御 */
.p-postList__date,
.p-postList__meta,
.p-postList__meta span,
.p-postList__meta time {
	font-size: 11px !important;
	color: #9a8b7b !important;
	opacity: 0.8 !important;
	margin-top: 6px !important;
	display: block;
}

/* アイコンも薄く */
.p-postList__date i,
.p-postList__meta i,
.p-postList__meta svg {
	opacity: 0.5;
	font-size: 11px;
}







/* ===============================
   New Recipes 見出し
=============================== */
.home .wp-block-heading,
.front-page .wp-block-heading {
	position: relative;
	text-align: center;
	margin-bottom: 38px !important;

	font-family: "Playfair Display", "Georgia", serif;
	font-size: 32px !important;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: .03em;
	color: #2d2925;
}

/* 上の小さい文字は非表示 */
.home .wp-block-heading::before,
.front-page .wp-block-heading::before {
	content: none !important;
	display: none !important;
}

/* 下ライン */
.home .wp-block-heading::after,
.front-page .wp-block-heading::after {
	content: "";
	display: block;
	width: 52px;
	height: 1px;
	margin: 14px auto 0;
	background: #9a734f;
	opacity: .9;
}








/* ===============================
   レシピ詳細：横幅を最大限使用
=============================== */

#main_content.recipe-page {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

#main_content.recipe-page .recipe-detail {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.recipe-detail__top,
.recipe-tabs {
	width: 100% !important;
	max-width: none !important;
}

.recipe-detail__top {
	padding-left: 32px;
	padding-right: 32px;
	box-sizing: border-box;
}

.recipe-tabs {
	padding-left: 32px;
	padding-right: 32px;
	box-sizing: border-box;
}



/* ===============================
   ヘッダー下の余白除去
=============================== */

/* SWELLメインエリア */

#content {
	padding-top: 32px !important;
	margin-top: 0 !important;
}

/* レシピ詳細ページのみ */
.single-post #content {
	padding-top: 2px !important;
	margin-top: 0 !important;
}

/* mainエリア */
.l-mainContent {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* レシピページ */
#main_content.recipe-page {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* レシピ上部 */
.recipe-detail__top {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.recipe-detail {
	margin-top: -1px;
}


/* ===============================
   画像上の余白除去
=============================== */

.recipe-detail__top {
	padding-top: 0 !important;
	margin-top: 0 !important;
	align-items: stretch;
}

.recipe-mainvisual {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* 画像自体 */
.recipe-slider,
.recipe-slider .swiper,
.recipe-slider .swiper-wrapper,
.recipe-slider .swiper-slide {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* main 全体 */
.recipe-detail {
	padding-top: 0 !important;
	margin-top: 0 !important;
}




/* ===============================
   タブ内容を中央寄せ
=============================== */

.recipe-tabs__panels {
	max-width: 820px !important;
	width: 100% !important;
	margin: 32px auto 0 !important;
}

/* 各パネル内も中央に */
.recipe-tabs__panel > * {
	max-width: 820px !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* 材料リスト */
.recipe-ingredients__list {
	max-width: 820px !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* 概要・ポイント */
.recipe-overview,
.recipe-points {
	max-width: 820px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	
}

/* 作り方 */
.recipe-steps {
	max-width: 820px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.recipe-points {
	font-size : 17px;
}






/* ===============================
   上部ビジュアル＋タイトル洗練化
=============================== */

/* 上部2カラム全体 */
.recipe-detail__top {
	min-height: 520px;
	align-items: stretch !important;
	background: #f7f3ec;
}

/* 左画像 */
.recipe-detail__slider {
	height: 520px;
}

.recipe-slide__img {
	height: 100%;
	object-fit: cover;
}

/* 右情報エリア */
.recipe-detail__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 72px;
	background: #f7f3ec;
}

/* メタ情報 */
.recipe-header__topmeta {
	margin-bottom: 18px;
}

/* タイトル */
.recipe-header__title {
	max-width: 720px;
	font-size: clamp(42px, 4vw, 72px);
	font-size: 20px;
	font-size: 20px;
	line-height: 1.18;
	letter-spacing: .02em;
}

/* タイトル下に細い装飾ライン */

.recipe-header__title::after {
	content: "";
	display: block;
	width: 72px;
	height: 1px;
	background: #9a734f;
	margin-top: 26px;
}

/* スマホ */
@media (max-width: 767px) {
	.recipe-detail__top {
		min-height: auto;
	}

	.recipe-detail__slider {
		height: auto;
	}

	.recipe-detail__info {
		padding: 28px 18px 32px;
	}

	.recipe-header__title {
		font-size: 32px;
	}

	.recipe-header__title::after {
		margin-top: 18px;
	}
}



/* ===============================
   上部ヒーロー：ブラッシュアップ
=============================== */

/* 上部全体の高さを少し締める */
.recipe-detail__top {
	min-height: 500px !important;
	background: #f6f1e8;
}

/* 画像側 */
.recipe-detail__slider {
	height: 500px !important;
	box-shadow: none;
}

/* 右側：中央寄せすぎをやめて少し上品に上寄せ */
.recipe-detail__info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start !important;
	padding: 96px 72px 56px !important;
	background:
		linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
		#f6f1e8;
}

/* メタタグを少し締める */
.recipe-header__topmeta {
	margin-bottom: 16px !important;
	gap: 8px !important;
}

.recipe-header__topmeta-item {
	padding: 5px 7px !important;
	font-size: 11px !important;
	letter-spacing: .04em !important;
	background: rgba(255,255,255,.55);
}

/* カテゴリだけ少し高級感 */
.recipe-header__topmeta-item--genre {
	background: #2b241f !important;
	color: #fff !important;
	border-color: #2b241f !important;
}

/* タイトル */
.recipe-header__title {
	max-width: 780px !important;
	font-size: clamp(42px, 4.2vw, 78px) !important;
	font-size: clamp(30px, 3.2vw, 40px) !important;
/*	font-size: 40px !important;*/
	line-height: 1.12 !important;
	letter-spacing: .025em !important;
	font-weight: 600 !important;
	color: #28211c !important;
}

/* 下線を短く細く */
.recipe-header__title::after {
	width: 64px !important;
	height: 1px !important;
	margin-top: 28px !important;
	background: #9a734f !important;
	opacity: .75;
}

/* タイトル下に余韻を作る */
.recipe-detail__info::after {
	content: "EATica Recipe";
	margin-top: 22px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	letter-spacing: .18em;
	color: rgba(45,38,32,.38);
}

/* スライダー矢印を少し上品に */
.recipe-slider__btn {
	background: rgba(35,30,25,.58) !important;
	backdrop-filter: blur(4px);
}

.recipe-slider__btn:hover {
	background: rgba(35,30,25,.78) !important;
}

/* スマホ */
@media (max-width: 767px) {
	.recipe-detail__top {
		min-height: auto !important;
	}

	.recipe-detail__slider {
		height: auto !important;
	}

	.recipe-detail__info {
		padding: 28px 18px 32px !important;
	}

	.recipe-detail__info::after {
		display: none;
	}

	.recipe-header__title {
		font-size: 25px !important;
		line-height: 1.25 !important;
	}

	.recipe-hero__info {
		padding-left: 18px !important;
		padding-right: 18px !important;
		box-sizing: border-box;
	}

	.recipe-header__title,
	.recipe-hero__lead {
		max-width: 100% !important;
		overflow-wrap: break-word;
		word-break: normal;
	}

	.recipe-hero__lead {
		font-size: 14px;
		line-height: 2;
	}
}



.recipe-hero__info {
	min-width: 0;
	overflow: hidden;
}

.recipe-hero__lead {
	max-width: 580px;
	margin: 22px 0 0;
	font-size: 15px;
	line-height: 2;
	color: #4a4038;

	white-space: normal;
	word-break: normal;
	overflow-wrap: anywhere;
}



/* PC：概要文の右端見切れ防止 */
@media (min-width: 901px) {
	.recipe-hero__info {
		box-sizing: border-box;
		/*padding-right: 80px !important;*/
		overflow: hidden;
	}

	.recipe-hero__lead {
		max-width: 560px !important;
		width: 100%;
		overflow-wrap: break-word;
		word-break: normal;
	}
}


/* ACFリッチエディタ内の番号なしリスト表示 */
.recipe-points ul,
.recipe-ingredients-editor ul {
	list-style: disc !important;
	margin: 0 0 1.4em 1.4em !important;
	padding-left: 1.2em !important;
}

.recipe-points li,
.recipe-ingredients-editor li {
	display: list-item !important;
	list-style: disc !important;
	margin-bottom: 0.6em;
	line-height: 1.9;
}


/* ポイントタブ：リスト表示を中央寄せ */
.recipe-points {
	max-width: 700px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.recipe-points ul {
	max-width: 560px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 1.4em !important;
}


/* ====================================
   EATica kitchen Contact Form
   ナチュラルカフェ風
==================================== */

.eatica-contact-form {
  max-width: 720px;
  margin: 40px auto 60px;
  padding: 32px 36px;
  background: rgba(255, 252, 246, 0.95);
  border: 1px solid #e5ddcf;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(70, 60, 45, 0.06);
}

/* リード文 */
.contact-lead {
  text-align: center;
  margin: 0 auto 30px;
  color: #7a6d5d;
  font-size: 15px;
  line-height: 2;
  max-width: 700px;
}

/* 各項目 */
.eatica-contact-form .cf-row {
  margin-bottom: 16px;
}

/* ラベル */
.eatica-contact-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #4c4033;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* 必須 */
.eatica-contact-form label span {
  padding: 3px 8px;
  background: #ebe2d2;
  color: #6b5d4a;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

/* 入力欄 */
.eatica-contact-form input[type="text"],
.eatica-contact-form input[type="email"],
.eatica-contact-form select,
.eatica-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d8cebe;
  border-radius: 8px;
  background: #fffefb;
  color: #4d4338;
  font-size: 15px;
  line-height: 1.6;
  box-sizing: border-box;
  transition: all .25s ease;
}

/* placeholder */
.eatica-contact-form input::placeholder,
.eatica-contact-form textarea::placeholder {
  color: #a79e93;
}

/* フォーカス */
.eatica-contact-form input:focus,
.eatica-contact-form select:focus,
.eatica-contact-form textarea:focus {
  outline: none;
  border-color: #8b8166;
  box-shadow: 0 0 0 3px rgba(139,129,102,0.10);
  background: #fff;
}

/* テキストエリア */
.eatica-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* セレクトボックス */
.eatica-contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8b8166 50%),
    linear-gradient(135deg, #8b8166 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* 同意欄 */
.eatica-contact-form .cf-acceptance {
  margin: 18px 0;
  text-align: center;
  color: #665a4d;
  font-size: 14px;
}

.eatica-contact-form .cf-acceptance a {
  color: #665a4d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.eatica-contact-form input[type="checkbox"] {
  margin-right: 6px;
}

/* ボタンエリア */
.eatica-contact-form .cf-submit {
  text-align: center;
  margin-top: 6px;
}

/* 送信ボタン */
.eatica-contact-form input[type="submit"] {
  min-width: 240px;
  padding: 13px 30px;
  border: none;
  border-radius: 6px;
  background: #6f6b50;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 8px 20px rgba(70,60,45,.15);
}

/* Hover */
.eatica-contact-form input[type="submit"]:hover {
  background: #57523f;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(70,60,45,.22);
}

/* エラー */
.eatica-contact-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: 12px;
  color: #b25d4a;
}

/* 結果メッセージ */
.eatica-contact-form .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 8px;
  font-size: 13px;
}

/* Contact Form 7余白リセット */
.eatica-contact-form p {
  margin: 0;
}

/* スマホ */
@media screen and (max-width: 768px) {

  .eatica-contact-form {
    margin: 30px auto 50px;
    padding: 24px 20px;
    border-radius: 14px;
  }

  .contact-lead {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .eatica-contact-form input[type="submit"] {
    width: 100%;
    min-width: auto;
  }

}


/* ===============================
   レシピ詳細ページ：標準横幅に戻す
=============================== */

.single-post #main_content.recipe-page.recipe-page--standard {
	width: 90% !important;
	max-width: 90% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/* スマホ：横幅100%に戻す */
@media (max-width: 767px) {
	.single-post #main_content.recipe-page.recipe-page--standard {
		width: 100% !important;
		max-width: 100% !important;
	}
}
@media (max-width: 767px) {
	.single-post #main_content.recipe-page.recipe-page--standard .recipe-detail {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

.single-post #main_content.recipe-page.recipe-page--standard .recipe-detail {
	width: 100% !important;
	max-width: 1180px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 24px !important;
	padding-right: 24px !important;
	box-sizing: border-box;
}

/* 上部エリア・タブも標準幅内に収める */
.single-post .recipe-detail__top,
.single-post .recipe-tabs {
	width: 100% !important;
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}

/* スマホ調整 */
@media (max-width: 767px) {
	.single-post #main_content.recipe-page.recipe-page--standard .recipe-detail {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
}


/* もっと見るボタン制御 */
/* マウスオーバー時 */
.is-style-more_btn a:hover,
.is-style-more_btn a:focus {
background: #F7F3EC !important;
color: #661414 !important;
}


/* 特定のフルワイドブロックに左右余白 */
.new-recipes-section.alignfull {
padding-left: 20px !important;
padding-right: 20px !important;
margin-left: 5px !important;
margin-right: 10px !important;
box-sizing: border-box;
}



@media (max-width: 767px) {
  .new-recipes-section.alignfull {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }
}


/* サムネイルhover時の青いオーバーレイを無効化 */
.p-postList__thumb:before,
.p-postList__thumb:hover:before {
  background: transparent !important;
  opacity: 0 !important;
}

/* hover時の画像色変化・透過も無効化 */
.p-postList__thumb img,
.p-postList__thumb:hover img {
  filter: none !important;
  opacity: 1 !important;
}

/* ヘッダーメニュー：カフェサイト風 */
.c-gnav > li > a {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
font-size: 22px!important;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #3b3028;
}

/*材料タブ表示 材料ヘッダー制御*/
.recipe-ingredients__heading{
	list-style:none;
	margin:20px 0 8px;
	padding:8px 12px;
	background:#f7f3eb;
	border-left:4px solid #c89b6d;
	font-weight:700;
	font-size:15px;
	color:#444;
}

/*分量表示制御*/
.recipe-ingredients__meta{
	margin-bottom:20px;
	font-size:17px;
	font-weight:600;
	color:#6f4e37;
}


/*ヘッダーメニューにInstagramアイコンを表示*/
.fa-instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ① About us / Contact us / All Recipes のページタイトルを非表示 */
.page-id-310 .c-pageTitle,   /* About us */
.page-id-312 .c-pageTitle   /* Contact us */
{  
  display: none;
}




/* ② About us：セクション間の余白を詰める */
.page-id-310 .about-section {
  margin-top: 40px !important;
  margin-bottom: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/* ③ About us：セクション間の境界線を削除 */
.page-id-310 .about-section {
  border-bottom: none !important;
}

/* ④ About us：左右の余白を縮める（コンテンツ幅を広げる） */
.page-id-310 .section-card {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
width: calc(100% - 40px) !important;
}

/* ⑤ About us：l-contentの下マージンを削除 */
.page-id-310 #content.l-content {
  margin-bottom: 0 !important;
}


/* ⑦ TOPページ：カテゴリ列全体に左右の余白を追加 */
.home .wp-block-columns {
  padding-left: 22px !important;
  padding-right: 22px !important;
  box-sizing: border-box !important;
}

/* ⑧ スマホ：カテゴリジャンルを2列表示に */
@media (max-width: 768px) {
  .home .wp-block-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    flex-wrap: unset !important;
  }

  .home .wp-block-columns .eatica-cat-card {
    width: 100% !important;
    flex-basis: unset !important;
  }
}
/* ⑧ スマホ：カテゴリ画像間に余白を追加 */
@media (max-width: 768px) {
  .home .wp-block-columns {
    gap: 8px !important;
    padding: 8px !important;
  }
}
/* ⑧ スマホ：カテゴリタイトルのフォントサイズを縮小して改行防止 */
@media (max-width: 768px) {
  .home .eatica-cat-card .eatica-cat-title {
    font-size: 12px !important;
    padding: 6px 10px 6px !important;
  }
}


/* ⑩ スマホ：Conceptのタイトル下余白を縮小 */
@media (max-width: 767px) {
.eatica-concept {
padding: 0px 4px !important;
}
}