@charset "utf-8";
/* CSS Document */
/*===============================================
●pc.css 画面の横幅が737px以上
===============================================*/
@media screen and (min-width: 737px) {
  #report-wrapper {
    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) {
  #report-wrapper {
    width: 100vw;
    overflow-x: hidden;
    background-color: #fffbeb;
    margin: -10px -15px;
  }
  .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: #E2785D;
  --theme-main-light: #FFF5F0;
  --theme-cream: #FFFAF5;
  --theme-accent-brown: #8B5A45;
  --text-dark: #4A3B3B;
  --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%;
  /* 【修正】SPではみ出さないよう最大幅を設定 */
  max-width: 100%;
}
.chart-bg {
  background-color: #FFFFFF;
  border: 1px solid #FFE4D9;
}
.highlight-text {
  font-weight: bold;
  color: #F97316;
}
