@charset "utf-8";
/* CSS Document */
/*===============================================
●pc.css 画面の横幅が737px以上
===============================================*/
@media screen and (min-width: 737px) {
  #egg-bento {
    max-width: 1200px;
    background-color: #fffbeb;
    margin: 0 auto;
  }
  .main-img {
    max-width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0.5rem;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}
/*===============================================
●sp.css  画面の横幅が736pxまで
===============================================*/
@media screen and (max-width:736px) {
  #egg-bento {
    width: 100vw;
    background-color: #fffbeb;
    margin: -10px -15px;
  }
  .main-img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0.5rem;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}
/*===============================================
●共通
===============================================*/
/* カスタムスタイル */ :root {
  --theme-yellow: #F59E0B; /* 黄身の色 */
  --theme-orange: #EA580C; /*濃いオレンジ */
  --theme-cream: #FFFBEB; /* 薄いクリーム色 */
  --theme-text: #451a03; /* 焦げ茶色 */
}
main {
  max-width: 1200px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), linear-gradient(45deg, #FEF3C7 25%, transparent 25%, transparent 75%, #FEF3C7 75%, #FEF3C7), linear-gradient(45deg, #FEF3C7 25%, transparent 25%, transparent 75%, #FEF3C7 75%, #FEF3C7);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}
.chart-container {
  position: relative;
  margin: auto;
  height: 250px; /* 高さを調整 */
  width: 100%;
}
/* セクションカードのスタイル */
.section-card {
  background-color: white;
  border-radius: 0.75rem; /* 12px */
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  padding: 1rem; /* スマホ向けにパディング調整 */
  margin-bottom: 2rem;
  border: 1px solid #FDE68A;
}
@media (min-width: 768px) {
  .section-card {
    padding: 2.5rem;
    margin-bottom: 3rem;
  }
}
.text-theme-main {
  color: var(--theme-orange);
}
.bg-theme-main {
  background-color: var(--theme-yellow);
}
.bg-theme-sub {
  background-color: var(--theme-orange);
}
h1, h2, h3, h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
/* テーブルのスタイル調整 */
.ranking-table th, .ranking-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}
.ranking-table tr:last-child td {
  border-bottom: none;
}
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
}
.rank-1 {
  background-color: #eab308;
} /* Gold */
.rank-2 {
  background-color: #94a3b8;
} /* Silver */
.rank-3 {
  background-color: #b45309;
} /* Bronze */
.rank-other {
  background-color: #d1d5db;
  color: #4b5563;
}