body {
    background-color: #EEEEEE;
    font-size: 12pt;
    line-height: 1.5;
    margin: 20px auto;
    max-width: 750px;
}
    
a{
  overflow-wrap: anywhere;
  color:#373A40;
}

a:visited{
    color:#373A40;
}

a:hover {
  color: #DC5F00;
}

p{
  color: #373A40;
  padding-left: 5%;
}

h1{
  color: #373A40;
}

h2{
  color: #373A40;
}

/*
h3{
  color: #373A40;
}

h4{
  color: #373A40;
}
*/

span{
  color: #DC5F00;
}

ul {
  list-style: none;
}

small{
  font-size: small;
}

@media screen and (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    html {
        font-size: 18px;
    }
}

/*
#title {
    padding: 20px 10px 10px;
}

#title a {
    display: inline-block; /* ブロックでもOK */
    text-decoration: none;
}

#title img {
    display: block;        /* 余白除去 */
    width: 200px;          /* 必要に応じて変更 */
    height: auto;          /* 元画像比率を維持 */
}
*/

header {
    border-bottom: 1px solid #ddd;
}

#lastModified {
    text-align: right;
    color: #686D76;
    font-size: 0.75em;
}

#created {
    text-align: right;
    color: #686D76;
    font-size: 0.75em;
}

.quote {
    max-width: 500px;
    position: relative;
    /* 上 | 右 | 下 | 左 */
    padding: 1.5em 2em 1em 2em;
    color: #373A40;
    background-color: #D3DAD9;
}

.quote p {
    margin-top: 0;
    /*font-family: courier new;*/
}

.quote cite {
    display: block;
    color: #686D76;
    font-size: .8em;
    text-align: right;
}

.book-info {
  line-height: 1.6;
}

/*.copyBtn {
  padding: 1px 1px 1px 1px;
  font-size: 10px;
}*/


/*
table {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  white-space: nowrap;
}

table th{
  background-color: #DC5F00;
}

table th,
      td{
  padding: 0.1em 0.2em;
  border: 1px solid #999;
  width: 6rem;
}

.table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
*/



.table {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: max-content;   /* ← 文字が長いと横に伸びる */
  min-width: 100%;      /* ← 短いときは画面に収まる */
  border-collapse: collapse;
}

th {
  background-color: #DC5F00;
}

th, td {
  border: 1px solid #999;
  padding: 0.2em 0.4em;
  white-space: nowrap;  /* ← セル内で折り返さない */
}



.toc {
  column-count: 2;
  column-gap: 2em;
}

.toc-wrap summary {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 0.5em;
}

