管理栄養士マキの監修レシピ

ベーコンと豆乳のスープ

分量
作りやすい量
難易度
★☆☆☆☆

 材料

作りやすい量

  • 塩だけベーコン(食べやすい大きさ) 100g
  • 有機じゃがいも(1cm厚さいちょう切り) 1個
  • 有機にんじん(5mm厚さいちょう切り) 1/3本
  • 有機玉ねぎ(くし切り) 1/2個
  • カットぶなしめじ 1/2袋
  • オリーブオイル 小さじ1
  • 成分無調整豆乳 300ml
  • 塩こしょう 少々
  • 【A】旬楽膳 コンソメ 大さじ1
  • 【A】水 150ml

 作り方

  1. 鍋にオリーブオイルを熱し、ベーコンと玉ねぎを軽く炒める。
  2. じゃがいも・にんじんを加え炒め合わせる。
  3. 【A】を加え中火で7分程度煮たらしめじを加え3分程度煮る。
  4. 弱火にしたら豆乳を加えてあたため、塩こしょうで調える。

カスタムCSS
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: ‘Noto Sans JP’, sans-serif;
line-height: 1.8;
color: #333;
background-color: #f8f8f8;
padding: 20px;
}

.recipe-content {
max-width: 800px;
margin: 0 auto;
background: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.recipe-title {
font-size: 2.2em;
font-weight: 700;
color: #2c3e50;
margin-bottom: 30px;
text-align: center;
padding-bottom: 15px;
border-bottom: 3px solid #e74c3c;
}

.recipe-image {
width: 100%;
border-radius: 8px;
margin-bottom: 35px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.recipe-section {
margin-bottom: 40px;
}

.section-title {
font-size: 1.5em;
font-weight: 700;
color: #e74c3c;
margin-bottom: 20px;
padding-left: 15px;
border-left: 4px solid #e74c3c;
}

.servings {
font-size: 0.95em;
color: #7f8c8d;
margin-bottom: 15px;
font-weight: 500;
}

.ingredients-list {
background-color: #fef5f1;
padding: 25px 30px;
border-radius: 6px;
border-left: 4px solid #e74c3c;
}

.ingredients-list ul {
list-style: none;
}

.ingredients-list li {
padding: 8px 0;
padding-left: 25px;
position: relative;
font-size: 1.05em;
}

.ingredients-list li:before {
content: “●”;
position: absolute;
left: 0;
color: #e74c3c;
font-size: 0.8em;
}

.steps-list {
list-style: none;
counter-reset: step;
}

.steps-list li {
counter-increment: step;
padding: 20px 25px;
margin-bottom: 15px;
background-color: #f8f9fa;
border-radius: 6px;
position: relative;
padding-left: 70px;
font-size: 1.05em;
transition: all 0.3s ease;
}

.steps-list li:hover {
background-color: #e8f4f8;
transform: translateX(5px);
}

.steps-list li:before {
content: counter(step);
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
background-color: #e74c3c;
color: white;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.1em;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
margin-top: 20px;
}

.product-card {
background-color: #f8f9fa;
padding: 20px;
border-radius: 6px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
border-color: #e74c3c;
}

.product-icon {
font-size: 3em;
margin-bottom: 15px;
}

.product-name {
font-weight: 700;
color: #2c3e50;
margin-bottom: 8px;
font-size: 0.95em;
}

.product-price {
color: #e74c3c;
font-weight: 700;
font-size: 1.2em;
}

.recipe-info {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.info-item {
text-align: center;
padding: 15px 25px;
background-color: #fef5f1;
border-radius: 6px;
}

.info-label {
font-size: 0.85em;
color: #7f8c8d;
margin-bottom: 5px;
}

.info-value {
font-size: 1.3em;
font-weight: 700;
color: #e74c3c;
}

@media (max-width: 768px) {
.recipe-content {
padding: 25px 20px;
}

.recipe-title {
font-size: 1.8em;
}

.section-title {
font-size: 1.3em;
}

.products-grid {
grid-template-columns: repeat(2, 1fr);
}

.steps-list li {
padding-left: 65px;
}

.steps-list li:before {
width: 30px;
height: 30px;
font-size: 1em;
left: 15px;
}
}

@media (max-width: 480px) {
.products-grid {
grid-template-columns: 1fr;
}

.recipe-info {
gap: 15px;
}

.info-item {
padding: 12px 20px;
}
}

PAGE TOP