/* ============================================
   🍱 自園給食 かわいいデザイン強化
   ============================================ */

/* --- セクション見出し h2#info4 --- */
#info4 {
  font-size: 1.6em;
  font-weight: bold;
  margin: 1.2em 0 0.6em 0.05em;
  border: none;
  background: linear-gradient(135deg, #ffd6f5 0%, #ffe0a3 50%, #d6f5ff 100%);
  padding: 0.6em 0.5em;
  border-radius: 20px;
  text-align: center;
  color: #c05fa0;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(240, 130, 200, 0.25);
  position: relative;
}

#info4::before {
  content: "🍱";
  margin-right: 0.4em;
}

#info4::after {
  content: "🥕";
  margin-left: 0.4em;
}

/* --- 給食紹介テキスト --- */
.aboutschool5 {
  margin: 12px 10px;
  line-height: 1.9;
  font-size: 0.95em;
  color: #7a5c7a;
  background: rgba(255, 245, 255, 0.8);
  border-radius: 14px;
  padding: 12px 16px;
  border-left: 4px solid #f9a8d4;
}

/* --- 給食写真エリア --- */
.lunch01 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 10px;
}

.lunch01_1 {
  width: 42%;
  height: auto;
  border-radius: 30% 40% 35% 45% / 45% 35% 50% 40%;
  box-shadow: 0 8px 24px rgba(255, 140, 220, 0.4);
  border: 4px solid #fff;
  outline: 2px dashed #f9a8d4;
  outline-offset: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lunch01_1:hover {
  transform: rotate(1.5deg) scale(1.04);
  box-shadow: 0 12px 30px rgba(255, 100, 200, 0.5);
}

/* --- 給食献立例 タイトル --- */
.lunch02_2 {
  text-align: center;
  font-size: 1.15em;
  font-weight: bold;
  color: #c05fa0;
  letter-spacing: 0.1em;
  margin: 20px 0 5px;
  position: relative;
}

.lunch02_2::before,
.lunch02_2::after {
  content: " ✿ ";
  color: #f9a8d4;
}

/* --- 献立カードエリア --- */
.lunch02_1 {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 8px;
}

/* --- 曜日別カード --- */
.lunch02 {
  width: 42%;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(240, 140, 200, 0.2);
  overflow: visible;
  border: 2px solid #fce4f6;
  transition: transform 0.25s ease;
}

.lunch02:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(240, 100, 180, 0.3);
}

.lunch02 img {
  border-radius: 18px 18px 0 0;
  width: 100%;
  display: block;
}

.lunch02 ul {
  background: linear-gradient(180deg, #fff5fd 0%, #ffe8f8 100%);
  padding: 14px 8px 12px 24px;
  margin: 0;
  border-radius: 0 0 18px 18px;
}

.lunch02 ul li {
  list-style-type: "🌸";
  font-size: 11.5px;
  margin: 6px 0;
  color: #7a5c7a;
  padding-left: 4px;
}

/* --- 曜日バッジ --- */
.lunch02 span {
  border-radius: 50%;
  color: #ffffff;
  font-weight: bold;
  font-size: 1em;
  padding: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -10px;
  top: -10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
  z-index: 2;
}

/* --- 曜日カラー（よりパステルに） --- */
.icon-mon {
  background: linear-gradient(135deg, #ffe066, #ffd000);
}

.icon-tues {
  background: linear-gradient(135deg, #ff9ec4, #f75da8);
}

.icon-thu {
  background: linear-gradient(135deg, #7de89b, #3fcf66);
}

.icon-fri {
  background: linear-gradient(135deg, #91c9ff, #5799f7);
}

/* --- 給食の説明リスト --- */
.lunch03 {
  margin: 20px 10px 20px 10px;
  font-size: 12.5px;
  background: linear-gradient(135deg, #fff9fe 0%, #f0faff 100%);
  border-radius: 16px;
  padding: 16px 20px;
  border: 1.5px dashed #f9a8d4;
  list-style: none;
}

.lunch03 li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #7a5c7a;
}

.lunch03 li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #f48dce;
  font-size: 1em;
}

/* --- 野菜イラストエリア --- */
.lunch04_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 10px 20px;
}

.lunch04 {
  width: 10%;
  transition: transform 0.3s ease;
}

.lunch04:hover {
  transform: rotate(8deg) scale(1.15);
}

@media screen and (min-width: 600px) {
  .lunch02 {
    width: 22%;
  }

  .lunch02 ul li {
    font-size: 12px;
  }

  .lunch01_1 {
    width: 30%;
  }

  .lunch04 {
    width: 6%;
  }
}

