/** [AIV_SHORT]  Build version: 1.11.1 - Monday, July 7th, 2025, 5:33:07 AM  **/ 
 #markdown {
  max-width: 800px;
}

/**
  * Text Cell
  */

#markdown .text-cell {
  font-size: 14px;
}

/**
  * Code Cell
  */

#markdown .code-cell {
  font-size: 12px;
}

/**
  * Markdown Cell
  */

#markdown .markdown-cell {
  font-size: 14px;
}

/**
  * LaTeX Cell
  */

#markdown .latex-cell {
  font-size: 14px;
}

#markdown h1 {
  position: relative;
  padding: 1em 0;
}
#markdown h1::before,
#markdown h1::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 6px;
  box-sizing: border-box;
}
#markdown h1::before {
  top: 0;
  border-top: 2px solid #4682b4;
  border-bottom: 1px solid #4682b4;
}
#markdown h1::after {
  bottom: 0;
  border-top: 1px solid #4682b4;
  border-bottom: 2px solid #4682b4;
}

#markdown h2 {
  position: relative;
  padding: 0.75em 1em 0.75em 1.5em;
  border: 1px solid #4682b4;
}
#markdown h2::after {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  content: '';
  width: 6px;
  height: -webkit-calc(100% - 1em);
  height: calc(100% - 1em);
  background-color: #4682b4;
  border-radius: 4px;
}

#markdown h3 {
  padding: 0.5em 0.75em;
  background-color: #f0f8ff;
  border-left: 6px solid #4682b4;
}

#markdown h4 {
  padding: 0.5em 0.75em;
  background-color: #f0f8ff;
  border-radius: 6px;
}

#markdown h5 {
  padding: 0.5em 0.75em;
  border-bottom-style: dotted;
  border-bottom-color: #4682b4;
  border-bottom-width: thin;
}

#markdown hr {
  background-color: #fff;
  border-top: 1px dashed #4682b4;
}

#markdown strong {
  background: linear-gradient(transparent 60%, #4682b4 100%);
}

#markdown ul > li {
  padding: 0px;
  margin: 0px;
}

#markdown ul > li {
  list-style-type: none !important;
  list-style-image: none !important;
  margin: 5px 0px 5px 0px !important;
}

#markdown ul > li {
  position: relative;
  padding-left: 20px;
}

/* トップレベルのリストアイテム（▶︎） */
#markdown > ul > li:before {
  content: '';
  display: block;
  position: absolute;
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.2) inset;
  top: 3px;
  left: 2px;
  height: 0;
  width: 0;
  border-top: 6px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #4682b4;
}

/* 2段目以降のリストアイテム（円形） */
#markdown ul ul > li:before {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 2px;
  width: 6px;
  height: 6px;
  background-color: #4682b4;
  border-radius: 50%;
}

#markdown a {
  position: relative;
  color: #4682b4;
}

#markdown a:before {
  content: '→ ';
}

#markdown ol {
  counter-reset: li; /* Initiate a counter */
  padding: 0; /* Remove the default left padding */
  list-style: none; /* Disable the normal item numbering */
}
#markdown ol li {
  position: relative; /* Create a positioning context */
  margin: 0 0 8px 4em; /* Give each list item a left margin to make room for the numbers */
  padding: 2px 8px;
}
#markdown ol li:before {
  content: counter(li); /* Use the counter as content */
  counter-increment: li; /* Increment the counter by 1 */
  /* Position and style the number */
  position: absolute;
  top: -2px;
  left: -2em;
  width: 2em;
  padding: 3px 0;
  color: #fff;
  background: #4682b4;
  font-weight: bold;
  text-align: center;
  border-radius: 20px;
}

#markdown img {
  height: 50%;
  width: 50%;
  margin: auto;
  display: block;

  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

#markdown img:hover {
  width: 100%;
  height: 100%;
}

#markdown table {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
  table-layout: fixed;
  border-collapse: collapse;
}

#markdown table,
#markdown thead,
#markdown tbody,
#markdown tr,
#markdown th,
#markdown td {
  border: 1px solid #333;
}

#markdown th {
  color: #edffff;
  background: #5090d1;
}

#markdown tr > *:first-child {
  width: 10%;
}

#markdown tr {
  background-color: #e7ecf6;
}

/**
  * image width
  */
#markdown img[alt='w120'] {
  width: 120px;
}
#markdown img[alt='w240'] {
  width: 240px;
}
#markdown img[alt='w360'] {
  width: 360px;
}
#markdown img[alt='w480'] {
  width: 480px;
}
#markdown img[alt='w600'] {
  width: 600px;
}
#markdown img[alt='w720'] {
  width: 720px;
}
/**
  * image height
  */
#markdown img[alt='h120'] {
  height: 120px;
}
#markdown img[alt='h240'] {
  height: 240px;
}
#markdown img[alt='h360'] {
  height: 360px;
}
#markdown img[alt='h480'] {
  height: 480px;
}
#markdown img[alt='h600'] {
  height: 600px;
}
#markdown img[alt='h720'] {
  height: 720px;
}
#markdown img[alt='h840'] {
  height: 840px;
}
#markdown img[alt='h960'] {
  height: 960px;
}
#markdown img[alt='h1080'] {
  height: 1080px;
}
 