@charset "utf-8";
/* CSS Document */
/*===============================================
●pc.css 画面の横幅が737px以上
===============================================*/
@media screen and (min-width: 737px) {
  #report-wrapper {
    max-width: 1200px;
    background-color: var(--theme-cream);
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .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) {
  #report-wrapper {
    width: 100vw;
    overflow-x: hidden;
    background-color: var(--theme-cream);
    margin: -10px -15px;
    margin-bottom: 40px;
  }
  .main-img {
    max-width: 100%;
    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時は強制的にブロック要素にして幅いっぱいを使わせる（center寄せがはみ出しの原因） */
  .grid {
    display: block !important;
  }
  /* gridの直下の子要素にマージンを追加して、縦並び時の間隔を確保 */
  .grid > * {
    margin-bottom: 2rem;
  }
  .grid > *:last-child {
    margin-bottom: 0;
  }
}
/*===============================================
●共通
===============================================*/ :root {
  --theme-main: #8B4513; /* うなぎの蒲焼・秘伝のタレを思わせる深い飴色・茶色 */
  --theme-main-light: #FDF9F1; /* 白米を思わせる温かみのあるアイボリー */
  --theme-cream: #FAFAFA; /* 全体の背景 */
  --theme-accent-brown: #3E1F0B; /* 炭火の焦げ目・お重の濃い茶色 */
  --theme-red: #C0392B; /* お重の朱色・スタミナを感じさせる赤 */
  --text-dark: #2C1E16;
  --sub-gray: #888888;
}
#report-wrapper {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--theme-cream);
  color: var(--text-dark);
}
#report-wrapper h1, #report-wrapper h2, #report-wrapper h3, #report-wrapper h4 {
  font-family: 'Noto Sans JP', sans-serif;
}
#report-wrapper h1, #report-wrapper h2 {
  color: var(--theme-main);
  font-weight: 900;
}
#report-wrapper h1 {
  line-height: 1.4;
}
#report-wrapper h3 {
  color: var(--theme-main);
  font-weight: 700;
  border-bottom: 2px solid var(--theme-main-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
#report-wrapper h4 {
  color: var(--text-dark);
  font-weight: 700;
}
#report-wrapper section {
  margin-bottom: 3rem;
}
#report-wrapper .chart-container {
  position: relative;
  margin: auto;
  width: 100%;
}
.chart-bg {
  background-color: #FFFFFF;
  border: 1px solid #E6D5B8;
}
.highlight-text {
  font-weight: bold;
  color: var(--theme-red); /* 強調はスタミナの赤（朱色） */
}
.dl-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background-color 0.2s;
  border: 1px solid #e5e7eb;
  z-index: 10;
}
.dl-btn:hover {
  background-color: #e5e7eb;
}