@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap');
.fs-maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
}


main {
  background: url("../img/page/recipe/tileable_wood_texture_@2X.png");
  background-size: 600px auto;
}
footer {
  margin-top: -60px;
  -webkit-mask-image: linear-gradient(#000, #000), url("../img/page/recipe/mask.png");
  mask-image: linear-gradient(#000, #000), url("../img/page/recipe/mask.png");
  -webkit-mask-size: 100% 100%, auto 60px;
  mask-size: 100% 100%, auto 60px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 1px -1px, top center;
  mask-position: 1px -1px, top center;
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
footer:before {
  display: none!important;
}

:root {
	--recipe-color-green: #3cb464;
  --recipe-color-green-text: #009632;
  --recipe-color-brown: #785a3c;
}

/* --------------------------------------------------------------------------
   MaineVisual
   -------------------------------------------------------------------------- */

.p-recipe-hero {
	position: relative;
	background: url("../img/page/recipe/bg_mv.jpg") center top / cover;
	padding: 65px 0 25px;
	overflow: hidden;
}

.p-recipe-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 40px;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.p-recipe-hero__head {
  position: absolute;
  top: 25px;
  left: 3vw;
  z-index: 100;
}

.p-recipe-hero__logo img {
	display: block;
	width: 373px;
	height: auto;
}

.p-recipe-hero__body {
	position: relative;
	z-index: 2;
}

.p-recipe-pickup {
	position: relative;
	padding: 0 56px 44px;
	overflow: visible;
}

.p-recipe-pickup .swiper-wrapper {
	align-items: center;
}

.p-recipe-pickup .swiper-slide {
	width: 70%;
  max-width: 800px;
	transition: transform 0.45s ease, opacity 0.45s ease;
	transform: scale(0.88);
}

.p-recipe-pickup .swiper-slide-active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}

.p-recipe-pickup__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.p-recipe-pickup__media {
	border-radius: 125px;
	overflow: hidden;
	aspect-ratio: 40 / 29;
}

.p-recipe-pickup__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-recipe-pickup__title {
	display: inline-block;
	position: absolute;
	left: 0px;
	bottom: 40px;
	max-width: 100%;
	margin: 0;
}
.p-recipe-pickup__title span {
  display: inline-block;
	padding: 0.2em 0.6em;
	font-size: 2.375rem;
	font-weight: 400;
	line-height: 1;
	color: var(--recipe-color-green-text);
	background-color: #fff;
	border-radius: 999px;
}
.p-recipe-pickup__link {
	position: relative;
}

.p-recipe-pickup__navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 70%;
  max-width: 880px;
  height: 0;
  transform: translate(-50%, -50%);
}

.p-recipe-pickup__prev,
.p-recipe-pickup__next {
	position: absolute;
	top: 50%;
	z-index: 10;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	transform: translateY(-50%);
	cursor: pointer;
}

.p-recipe-pickup__prev {
	left: -22px;
}

.p-recipe-pickup__next {
	right: -22px;
}

.p-recipe-pickup__prev::before,
.p-recipe-pickup__next::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	margin: 0 auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.p-recipe-pickup__prev::before {
	transform: rotate(-135deg);
}

.p-recipe-pickup__next::before {
	transform: rotate(45deg);
}

.p-recipe-pickup__pagination {
	position: absolute;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
  align-items: center;
	gap: 10px;
}

.p-recipe-pickup__pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0;
	background-color: #fff;
  opacity: 1;
}

.p-recipe-pickup__pagination .swiper-pagination-bullet-active {
	background-color: #fadc73;
  width: 12px;
	height: 12px;
}

@media screen and (min-width: 431px) {
  .p-recipe-pickup__pagination {
  	bottom: 4px!important;
  }
}
@media screen and (max-width: 1000px) {
  .p-recipe-pickup__media {
	  border-radius: clamp(60px, 21.000px + 10.4vw, 125px);
  }
  .p-recipe-pickup__title {
    bottom: clamp(15px, 0.000px + 4vw, 40px);
  }
	.p-recipe-pickup .p-recipe-pickup__title span {
		font-size: clamp(1.1rem, 0.335rem + 3.264vw, 2.375rem);
	}
}
@media screen and (max-width: 1000px) and (min-width: 431px) {
  .p-recipe-hero__head {
    top: 15px;
  }
  .p-recipe-hero__logo img {
    width: 35vw;
  }
  .p-recipe-pickup .swiper-slide {
    width: 86%;
  }
  .p-recipe-pickup__navigation {
    width: 86%;
  }
  .p-recipe-pickup__prev,
	.p-recipe-pickup__next {
		width: 36px;
		height: 36px;
	}
  .p-recipe-pickup__prev {
		left: 18px;
	}
	.p-recipe-pickup__next {
		right: 18px;
	}
}
@media (max-width: 430px) {
  .p-recipe-hero__head {
    top: 10px;
  }
  .p-recipe-hero__logo img {
    width: 35vw;
  }
  .p-recipe-pickup .swiper-slide {
    width: 86%;
  }
  .p-recipe-pickup .swiper-slide-active {
    transform: scale(1.04);
  }
	.p-recipe-pickup .p-recipe-pickup__title span {
    padding: 0.4em 0.75em;
	}
  .p-recipe-hero {
    padding: 45px 0 10px;
  }
  .p-recipe-pickup {
    padding: 0 20px 40px;
  }
  .p-recipe-pickup__pagination {
  	bottom: 10px!important;
    zoom: 0.8;
  }  
  .p-recipe-pickup__navigation {
    width: 86%;
  }
  .p-recipe-pickup__prev::before,
  .p-recipe-pickup__next::before {
    width: 8px;
    height: 8px;
  }
  .p-recipe-pickup__prev {
		left: -18px;
	}
	.p-recipe-pickup__next {
		right: -18px;
	}
}

/* --------------------------------------------------------------------------
   絞り込み検索
   -------------------------------------------------------------------------- */

.search-container {
  width: 100%;
  padding: 40px;
  background: url("../img/page/recipe/bg_search.jpg");
}

/* ラジオボタン自体は非表示 */
.tab-input {
  display: none;
}

/* タブのレイアウト */
.tab-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom:  solid 3px #f9cb38;
}

.tab-item {
  flex: 1;
}

.tab-label {
  display: block;
  background-color: #fcd66b;
  color: var(--recipe-color-brown);
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.55em 0;
  cursor: pointer;
  border-radius: 20px 20px 0 0;
  transition: background-color 0.2s ease;
}

/* コンテンツの初期状態（非表示） */
.tab-content {
  display: none;
  min-height: 150px;
  padding: 40px 0 0;
}

/* --- input連動・タブ切り替え表示ロジック --- */
#tab-keyword:checked ~ .tab-menu .label-keyword {
  background-color: #ffffff;
}
#tab-keyword:checked ~ #content-keyword {
  display: block;
}

#tab-freeword:checked ~ .tab-menu .label-freeword {
  background-color: #ffffff;
}
#tab-freeword:checked ~ #content-freeword {
  display: block;
}

/* --- キーワード検索（タグ）のスタイル --- */
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #ffffff;
  color: var(--recipe-color-brown);
  font-weight: 600;
  font-size: 1.06em;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0 1em;
  border-radius: 2em;
  transition: opacity 0.2s;
}
.tag-btn_on {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: var(--recipe-color-brown);
  color: #FFF;
  font-weight: 600;
  font-size: 1.06em;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0 1em;
  border-radius: 2em;
  transition: opacity 0.2s;
}

.tag-btn:hover {
  opacity: 0.8;
}

/* --- フリーワード検索（検索バー）のスタイル --- */
.search-bar-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 890px;
  height: 40px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}

.search-input {
  flex: 1;
  height: 100%;
  border: none;
  padding: 0 25px;
  color: #6d5335;
  outline: none;
}

.search-input::placeholder {
  color: #a6937c;
}

.search-submit {
  height: 100%;
  background-color: #7a5f43;
  color: #ffffff;
  border: none;
  padding: 0 35px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-submit:hover {
  background-color: #634c35;
}

@media screen and (max-width: 1000px) {
  .search-container {
    padding: 20px 0;
  }
  .tab-content {
    min-height: auto;
    padding: 15px 0 0;
  }
  .tab-label {
    font-size: 1rem;
    letter-spacing: 0;
    padding: 10px 0;
    border-radius: 10px 10px 0 0;
  }
  .keyword-tags {
    gap: 6px 5px;
  }
  .tag-btn {
    height: auto;
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
  }
  .search-bar-form {
    border-radius: 25px;
  }
  .search-input {
    padding: 12px 15px;
    font-size: 14px;
  }
  .search-submit {
    padding: 0 20px;
    font-size: 14px;
  }
}

/* より幅の狭いスマートフォン向け（480px以下） */
@media screen and (max-width: 480px) {
  .tab-label {
    font-size: 14px;
  }
  .keyword-tags {
    justify-content: flex-start;
  }
}


/* --------------------------------------------------------------------------
   Recipe grid
   -------------------------------------------------------------------------- */

.p-recipe-grid {
  padding-top: 75px;
}

.p-recipe-grid__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 36px;
	margin: 0;
	padding: 0 ;
	list-style: none;
}

.p-recipe-grid__more {
	margin: 80px 0 0;
	padding: 0 1em;
	text-align: center;
}

.p-recipe-grid__more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 356px;
	min-height: 60px;
	padding: 0.75em;
	border: 3px solid #b2dfc1;
	border-radius: 999px;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--recipe-color-green-text);
	background-color: #fff;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
}

.p-recipe-grid__more-btn:hover {
	background-color: var(--recipe-color-green);
  border: 3px solid var(--recipe-color-green);
	color: #fff;
  opacity: 1;
}

@media (max-width: 1000px) {
	.p-recipe-grid {
    padding-top: 40px;
		border-radius: 16px;
	}
	.p-recipe-grid__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.p-recipe-grid__more {
		margin-top: 35px;
	}
	.p-recipe-grid__more-btn {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 600px) {
	.p-recipe-grid__list {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
   Recipe card
   -------------------------------------------------------------------------- */

.recipe-card {
	height: 100%;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 0px 10px rgba(55, 52, 43, 0.1);
	overflow: hidden;
}

.recipe-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.recipe-card__head {
	position: relative;
}

.recipe-card__img {
	aspect-ratio: 356 / 237;
	overflow: hidden;
	background-color: #ebe7df;
}

.recipe-card__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  object-position: center;
}

.recipe-card__badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	margin: 0;
	padding: 0.6em 1.25em;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	background-color: var(--recipe-color-green);
	border-radius: 0 0 18px 0;
}

.recipe-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1em 1.75em;
}

.recipe-card__catch {
	margin: 0 0 6px;
	font-size: 0.8rem;
  font-weight: 800;
	line-height: 1.5;
	color: #785a3c;
}

.recipe-card__title {
	margin: 0 0 10px;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.5;
}

.recipe-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
}

.recipe-card__tag {
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--recipe-color-green-text);
}
.recipe-card__tag::before {
  content: "#";
  opacity: 0.5;
}

.recipe-card__meta {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: auto;
}

.recipe-card__time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	color: #afaeaa;
}

.recipe-card__time::before {
	content: "";
	display: block;
	width: 17px;
	height: 19px;
	background: url("../img/page/recipe/icon_time.svg") center/contain no-repeat;
}
@media (max-width: 1000px) {
  .recipe-card__badge {
    font-size: 0.8rem;
  }
  .recipe-card__title {
    font-size: 1.05rem;
  }
  .recipe-card__tags li {
    line-height: 1;
  }
  .recipe-card__tag {
    font-size: 0.7rem;
  }
  .recipe-card__meta {
    zoom: 0.8;
  }
}

/* --------------------------------------------------------------------------
   ナビゲーション 20260527
   -------------------------------------------------------------------------- */

.pager {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (max-width: 1000px) {
    .pager {
        margin-top:40px
    }
}

.pager a {
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.pager a:hover {
    opacity: .6
}

.pager .back,.pager .next {
    width: 20px;
    height: 20px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiPjxkZWZzPjxzdHlsZT4uZHtmaWxsOiM3ODVhM2M7fS5le2ZpbGw6bm9uZTtzdHJva2U6I2ZmZjtzdHJva2UtbWl0ZXJsaW1pdDoxMDtzdHJva2Utd2lkdGg6MnB4O308L3N0eWxlPjwvZGVmcz48ZyBpZD0iYSIvPjxnIGlkPSJiIj48ZyBpZD0iYyI+PGc+PGNpcmNsZSBjbGFzcz0iZCIgY3g9IjEwIiBjeT0iMTAiIHI9IjEwIi8+PHBvbHlsaW5lIGNsYXNzPSJlIiBwb2ludHM9IjExLjUgMTQgNy41IDEwIDExLjUgNiIvPjwvZz48L2c+PC9nPjwvc3ZnPg==) center/contain no-repeat;
    margin-right: 35px
}

@media (max-width: 1000px) {
    .pager .back,.pager .next {
        margin-right:30px
    }
}

.pager .next {
    margin-right: 0;
    margin-left: 35px;
    -webkit-transform: scale(-1,1);
    transform: scale(-1,1)
}

@media (max-width: 1000px) {
    .pager .next {
        margin-left:30px
    }
}

.pager ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.pager ul li {
    margin-right: 20px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(120,90,60,.6)
}

.pager ul li:last-child {
    margin-right: 0
}

@media (max-width: 1000px) {
    .pager ul li {
        margin-right:15px;
        font-size: 17px
    }
}

.pager ul li a {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(120,90,60,.6)
}

@media (max-width: 1000px) {
    .pager ul li a {
        font-size:17px
    }
}

.pager ul li.dot {
    margin-bottom: -.3em
}

.pager ul li.current {
    color: #785a3c
}

/* --------------------------------------------------------------------------
   詳細ページ
   -------------------------------------------------------------------------- */

.page_recipe.under.detail { /* 20260527 add */
  background: #FFF;
}

.page_recipe.under .recipe-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../img/page/recipe/bg_title.jpg");
  color: #ffffff;
  text-align: center;
  padding: 1.75em 2em;
  font-size: 2.18em;
  font-weight: 600;
  text-align: center;
  line-height: 1.4em;
  letter-spacing: 0.1em;
}
.page_recipe.under .recipe-title__catch {
  margin-bottom: 0.5em;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}
.recipe-title__pickup {
  margin-bottom: 0.75em;
  padding: 0.6em 0.75em;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  background: var(--recipe-color-green-text);
  border-radius: 0.5em;
}

.page_recipe.under .recipe-meta {
  width: 90%;
  max-width: 1220px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  margin: 2em auto;
  line-height: 1.4;
}

.page_recipe.under .recipe-meta__time {
  display: inline-flex;
  align-items: center;
  font-size: 1.06em;
  letter-spacing: 0.05em;
}

.page_recipe.under .recipe-meta__time::before {
  content: "";
  width: 18px;
  height: 20px;
  margin-right: 5px;
  background: url("../img/page/recipe/icon_time_gr.svg") center / contain no-repeat;
}

.page_recipe.under .recipe-meta__time strong {
  font-size: 1.25em;
  font-weight: 600;
  color: var(--recipe-color-green-text);
}

.page_recipe.under .recipe-meta__tag {
  background-color: #eaf6ed;
  color: var(--recipe-color-green-text);
  padding: 0.4em 1em;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1.1em;
}

.page_recipe.under .recipe-visual {
  position: relative;
  width: 70%;
  max-width: 800px;
  margin: 0 auto 100px;
}

.page_recipe.under .recipe-visual__main-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  border-radius: 20px;
  aspect-ratio: 40 / 27;
}

.page_recipe.under .recipe-visual__character {
  position: absolute;
  bottom: -18px;
  left: -18%;
  width: clamp(80px, 3.800px + 20.32vw, 207px);
  height: auto;
  aspect-ratio: 23 / 28;
}

.page_recipe.under .recipe-content {
  width: 90%;
  max-width: 1220px;
  display: block;
  margin: 0 auto 100px;
}

.page_recipe.under .ingredients {
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: 25px 0 10px;
  margin-bottom: 40px;
}

.page_recipe.under .ingredients__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.56em;
  letter-spacing: 0.1em;
  color: var(--recipe-color-green-text);
  font-weight: 700;
  padding: 0 7.3%;
  margin-bottom: 15px;
}
.page_recipe.under .ingredients__title span {
  margin: 0 0 -0.4em -0.5em;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.page_recipe.under .ingredients__group-title {
  font-size: 15px;
  font-weight: 700;
  margin: 25px 0 10px;
  color: #333333;
}

.page_recipe.under .ingredients__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page_recipe.under .ingredients__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 7.3%;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.95em;
}

.page_recipe.under .ingredients__item:last-child {
  border-bottom: none;
}

.page_recipe.under .ingredients__name {
  font-weight: 500;
}

.page_recipe.under .ingredients__amount {
  text-align: end;
  align-content: center;
  flex-basis: 0;
  flex-grow: 1;
  min-width: fit-content;
  overflow-wrap: anywhere;
  color: #555555;
  font-weight: 500;
}

.page_recipe.under .instructions__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.56em;
  color: var(--recipe-color-green-text);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 25px 0 25px;
}

.page_recipe.under .instructions__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page_recipe.under .instructions__item {
  display: flex;
  padding: 1.5em 0;
  border-bottom: 1px solid #edf2f7;
}

.page_recipe.under .instructions__item:first-child {
  padding-top: 0;
}

.page_recipe.under .instructions__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page_recipe.under .instructions__number {
  background-color: var(--recipe-color-green);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin: 0.1em 20px 0 7px;
  padding-bottom: 0.1em;
}

.page_recipe.under .instructions__text-wrap {
  flex: 1;
}

.page_recipe.under .instructions__text {
  line-height: 1.8;
  text-align: justify;
  word-break: break-all;
}

.page_recipe.under .instructions__thumb {
  width: 34.6%;
  max-width: 260px;
  margin-left: 5%;
}
.page_recipe.under .instructions__thumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}

.page_recipe.under .recipe-point {
  width: 75%;
  max-width: 800px;
  background-color: #FFF;
  border: 10px solid #fadc73;
  border-radius: 20px;
  padding: 40px 50px;
  margin: 0 auto 100px;
  position: relative;
}

.page_recipe.under .recipe-point__title {
  width: 160px;
  position: absolute;
  top: -38px;
  left: 30px;
}

.page_recipe.under .recipe-point__text {
  font-size: 1.125em;
  line-height: 1.6;
  text-align: justify;
  word-break: break-all;
}

.page_recipe.under .recipe-point__character {
  position: absolute;
  right: -14%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(60px, 10.800px + 13.12vw, 142px);
  aspect-ratio: 142 / 201;
}

.page_recipe.under .recipe-nav {
  text-align: center;
  padding: 0 calc(20px + 1em);
}

.page_recipe.under .recipe-nav__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 356px;
	min-height: 60px;
	padding: 0.75em;
	border: 3px solid #b2dfc1;
	border-radius: 999px;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--recipe-color-green-text);
	background-color: #fff;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
}

.page_recipe.under .recipe-nav__btn:hover {
	background-color: var(--recipe-color-green);
  border: 3px solid var(--recipe-color-green);
	color: #fff;
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .page_recipe.under .recipe-content {
    display: flex;
    gap: 5%;
    align-items: flex-start;
  }
  .page_recipe.under .ingredients {
    width: 33.6%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .page_recipe.under .instructions {
    flex: 1;
  }
}

@media screen and (max-width: 1000px) {
  .page_recipe.under .recipe-title {
    font-size: 1.3em;
  }
  .page_recipe.under .recipe-visual,
  .page_recipe.under .recipe-point {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 576px) {
  .recipe-visual__character {
    left: -5%;
  }
  .page_recipe.under .recipe-meta {
    font-size: 0.7em;
  }
  .page_recipe.under .instructions__item {
    flex-direction: column;
    gap: 15px;
  }
  .page_recipe.under .instructions__text-wrap {
    padding: 0 3%;
  }
  .page_recipe.under .instructions__thumb {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .page_recipe.under .recipe-point {
    width: 90%;
    padding: 30px 30px;
    border: 8px solid #fadc73;
  }
  .page_recipe.under .recipe-point__text {
    font-size: 1rem;
  }
  .page_recipe.under .recipe-point__character {
    top: -6vw;
    right: 0;
  }
}
















