@charset "UTF-8";
/* 基本設定 */
/* ライトモード(通常)用の色を設定 */
:root {
  --text-size: 22px;
  --line-height: 36px;
  --medium-text-size: 18px;
  --medium-line-height: 30px;
  --small-text-size: 16px;
  --small-line-height: 28px;

  --aside-text-size: 18px;
  --aside-line-height: 24px;
  --aside-medium-text-size: 16px;
  --aside-medium-line-height: 20px;
  --aside-small-text-size: 14px;
  --aside-small-line-height: 18px;

  --textarea-size: 22px;
  --medium-textarea-size: 18px;
  --small-textarea-size: 16px; /* iOSでは16px以下だと自動ズームしてしまう */

  --chart-main-title-size: 18px;
  --chart-sub-title-size: 14px;
  --chart-foot-note-size: 12px;
  --medium-chart-main-title-size: 16px;
  --medium-chart-sub-title-size: 13px;
  --medium-chart-foot-note-size: 11px;
  --small-chart-main-title-size: 14px;
  --small-chart-sub-title-size: 12px;
  --small-chart-foot-note-size: 10px;
  --brand-color: #104284;
}
:root {
  --text-color: #000;
  --faint-text-color: #666;
  --fainter-text-color: #aaa;
  --bg-color: #ffffff;
  --faint-bg-color: #dddddd;
  --fainter-bg-color: #eeeeee;
  --reddish-color: #ff2222;
  --button-color: #a9a9a9;
  --selected-text-color: lightblue;
  --selected-color: black;
  --shadow-color: blue;
}
:root[theme="dark"] {
  --text-color: #fff;
  --faint-text-color: #bbb;
  --fainter-text-color: #888;
  --bg-color: #000000;
  --faint-bg-color: #222222;
  --fainter-bg-color: #111111;
  --reddish-color: #ff6666;
  --button-color: #32ed6a;
  --selected-text-color: darkblue;
  --selected-color: white;
  --shadow-color: orange;
}
* {
	/* サイズ計算で輪郭線の幅を参入する */
	box-sizing: border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;
	margin:0;padding:0;
	overflow-anchor: none;
}
html {
	color: var(--text-color);
	background-color: var(--bg-color);
	font-size: var(--text-size);
	line-height: var(--line-height);
	font-family: 'Noto Serif JP', "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "Sawarabi Mincho", Meiryo, georgia,"times new roman", serif;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	transition: background-color 0.5s;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  html {
    font-size: var(--medium-text-size);
    line-height: var(--medium-line-height);
  }
}
@media screen and (max-width: 428px) {
  html {
    font-size: var(--small-text-size);
    line-height: var(--small-line-height);
  }
}
@media print {
  @page {
    margin: 10mm 10mm; size: A4 portrait;
  }
  html {
    font-size: var(--small-text-size);
    line-height: var(--small-line-height);
  }
}

p {
	-webkit-margin-before: 0;-webkit-margin-after: 0;-webkit-margin-start: 0;-webkit-margin-end: 0;
	text-indent: 1em;
	letter-spacing: -0.05em;
	word-wrap: break-word;
	word-break: break-word;-ms-word-break: break-all;
	hyphens: auto;-ms-hyphens: auto;-moz-hyphens: auto;-webkit-hyphens: auto;
	text-align:justify;
	text-justify:auto;
	user-select: none;-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;
}
.english {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.2rem; /* 欧文は小さく見える */
  text-indent: 1em;
  letter-spacing: -0.025em;
  word-wrap: break-word;
  word-break: break-word;-ms-word-break: break-all;
  hyphens: auto;-ms-hyphens: auto;-moz-hyphens: auto;-webkit-hyphens: auto;
  text-align:justify;
}
.DropCap { text-indent: 0;}
.DropCap:first-letter {
  float: left;
  font-size: calc(var(--text-size) + var(--line-height));
  padding-top: calc(var(--line-height) / 2);
  padding-right: 0.3rem;
}
@-moz-document url-prefix() {
  .DropCap:first-letter { padding-top: calc(var(--line-height) / 4);}
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .DropCap:first-letter {
    font-size: calc(var(--medium-text-size) + var(--medium-line-height));
    padding-top: calc(var(--medium-line-height) / 2);
  }
  @-moz-document url-prefix() {
    .DropCap:first-letter { padding-top: calc(var(--medium-line-height) / 4);}
  }  
}
@media screen and (max-width: 428px) {
  .DropCap:first-letter {
    font-size: calc(var(--small-text-size) + var(--small-line-height));
    padding-top: calc(var(--small-line-height) / 2);
  }
  @-moz-document url-prefix() {
    .DropCap:first-letter { padding-top: calc(var(--small-line-height) / 4);}
  }  
}
@media print {
  .DropCap:first-letter {
    font-size: calc(var(--small-text-size) + var(--small-line-height));
    padding-top: calc(var(--small-line-height) / 2);
  }
  @-moz-document url-prefix() {
    .DropCap:first-letter { padding-top: calc(var(--small-line-height) / 4);}
  }
}

a, a:visited, a:active { /* text-decoration:none; */
  cursor:pointer;
  text-decoration:underline;text-underline-offset: 0.15em;
  color: var(--faint-text-color);
}
rt {
  font-size: 0.45em;
  line-height:1;
}
@media screen and (max-width: 428px) {
  rt { /* Chromeは10px以下の小さな文字を許可しないから */
    display:none;
  }
}
[data-ruby] {
  position: relative;
}
[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.25em;left: 0;right: 0; width: auto;
  text-align:center;
  font-size: 0.45em;
}
del, s {
  background-image: linear-gradient(#fe3464, #fe3464);
  background-position: 0 50%;
  background-size: 100% 3px;
  background-repeat: repeat-x;
  color: var(--reddish-color);
  margin: 0 0.4em;
  text-decoration: none;
}
i {font-style:italic;}
sup, sub {
  line-height: 1; /* 飛び出した部分が行間隔の乱すから */
  font-size: 0.6em;
}
b, .strong {
  font-weight: bold;
  font-family: sans-serif;
  font-style: normal;
}
em, .emphasis {
  font-weight: bold;
  font-family: sans-serif;
  font-style: normal;
}
small {
  font-size: 0.8em;
  font-family: sans-serif;
  color:var(--faint-text-color);
}
q {
  color:var(--faint-text-color);
  font-weight: bold;
}
blockquote {
  font-size: 0.9rem;
  margin: 0 1rem;
  padding: 1rem 1rem 1rem 2rem;
  background-color: var(--faint-bg-color);
}
.citation { /* 引用元。右揃え */
  text-align:right;
  color:var(--faint-text-color);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;  /* 原則はフォントの1倍。見出しの改行を想定していない */
  -webkit-margin-before: 0;-webkit-margin-after: 0;-webkit-margin-start: 0;-webkit-margin-end: 0;
  font-feature-settings: "palt" on;　/* font-feature-settings : "pkna" on; */
  max-width: calc(100% - 2em);
}
h1, h3, h5 {
  font-family: "游明朝", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN W6", "HGS明朝E", Meiryo, "Times New Roman", serif;
  letter-spacing: -0.05em;
  font-weight: bold;
}
h2, h4, h6 {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  letter-spacing: -0.05em;
  font-weight: bold;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.4rem; }
h3, h4 { font-size: 1.5rem; }
h5, h6 { font-size: 1.0rem; }

ul, ol {
  -webkit-margin-before: 1em;-webkit-margin-after: 1em;
  -webkit-margin-start: 0;-webkit-margin-end: 0;
  -webkit-padding-start: 0;
  padding-left:2rem;
}
ol {
  counter-reset: ol-counter;
  list-style: none;
  max-width:600px;margin:0 auto;
}
ol li { position: relative;list-style: none;}
ol li:before {
  content: counter(ol-counter);
  counter-increment: ol-counter;
  color: var(--text-color);
  background-color: var(--bg-color);
  border: 1px solid;border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(var(--text-size) * 0.8);
  width:  calc(var(--text-size) * 0.8);
  font-size: 0.7rem;
  line-height: 1rem;
  position: absolute;
  top:calc((var(--line-height) - var(--text-size)) / 2 + var(--text-size) * 0.1);
  left: -1rem;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  ol li:before {
    height: calc(var(--medium-text-size) * 0.8);
    width:  calc(var(--medium-text-size) * 0.8);
    top:calc((var(--medium-line-height) - var(--medium-text-size)) / 2 + var(--medium-text-size) * 0.05);
    left: -1rem;
  }
}
@media screen and (max-width: 428px) {
  ol li:before {
    height: calc(var(--small-text-size) * 0.8);
    width:  calc(var(--small-text-size) * 0.8);
    top:calc((var(--small-line-height) - var(--small-text-size)) / 2);
    left: -1rem;
  }
}
@media print {
  ol li:before {
    height: calc(var(--small-text-size) * 0.8);
    width:  calc(var(--small-text-size) * 0.8);
    top:calc((var(--small-line-height) - var(--small-text-size)) / 2);
    left: -1rem;
  }
}
ul {
  max-width:600px;margin:0 auto;
  list-style-type: disc; /* circle/square/decimal */
}

.center_container {
  position:relative;
  max-width: 1024px;margin:0 auto;
}
.center_container:first-of-type {margin-top:2rem;}
.center_container:last-of-type {margin-bottom:2rem;}
.center_container > p { /* 直下以外には適用しない */
  max-width: 600px; /* asideなどが余白に入る */
  margin:0 auto;padding:0 1rem;
}
.container_column_wide {
  max-width: 600px;
  margin:0.5rem auto;padding:0 1rem;
  font-family: sans-serif;
  font-size: calc(1rem - 2px);
}
.center_container > h3, .center_container > h4, .center_container > h5, .center_container > h6 {
  max-width: 600px; /* asideなどが余白に入る */
  margin:1em auto;padding:0 1rem; /* 1remで本文とツラを揃える */
} 
.center_container > blockquote {
  max-width: 600px; /* asideなどが余白に入る */
  margin: 0.5rem calc((100% - 600px + 2rem) / 2);
  padding: 0.5rem 1rem;
}
.nerdbox {
  width:calc(100% - 2em);max-width: 1024px;
  margin: 2em auto 2em;padding: 1em;
  border: 1px solid var(--faint-text-color);
}
.nerdbox p{
  padding:0;
  color: black;
  font-size: 0.9rem; line-height: 1.4rem;
}
.nerdbox p.citation { font-family:sans-serif; }

.nerdbox .table_column_wide {
  padding: 0;margin: 0.5rem auto;
  width: 100%;max-width: 556px;
}
.nerdbox table td, .nerdbox table th {
  font-size: 0.85rem; line-height: 1.35rem;
}
.nerdbox blockquote {
  width:100%; max-width: unset;
  margin:0.5rem 0;padding:0.5rem;
}
.nerdbox blockquote p{
    width:100%;max-width: unset;
}

@media screen and (max-width: 600px) {  
  .center_container > blockquote {
    width:  calc(100% - 2rem);
    margin: 0.5rem 1rem;
  }
}
@media print {
    .center_container > p,
    .center_container > h3, .center_container > h4, .center_container > h5, .center_container > h6,
    .center_container ul, .center_container ol {
        width:calc(100% - 2rem); max-width: unset;
    }
    .center_container > blockquote {
        width:calc(100% - 6rem); max-width: unset;
        margin: 0.5rem 3rem; padding: 0.5rem 1rem;
    }
    .nerdbox {
        width:calc(100% - 2em);max-width: unset;
    }
    .nerdbox p{
        width:calc(100% - 2rem);max-width: unset;
    }
}
aside {
  display:block;
  width: 100%;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  color: var(--faint-text-color);
  font-size: var(--aside-text-size);
  line-height: var(--aside-line-height);
  /* カラムの右側に移されない場合 */
  margin: 0.5rem 0;padding:0 2rem;
  user-select: none;-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  aside {
    font-size: var(--aside-medium-text-size);
    line-height: var(--aside-medium-line-height);
  }
}
@media screen and (max-width: 428px) {
  aside {
    font-size: var(--aside-small-text-size);
    line-height: var(--aside-small-line-height);
  }
}
@media print {
  aside {
    font-size: var(--aside-small-text-size);
    line-height: var(--aside-small-line-height);
  }
}
/* 基本テーブル */

table {
	width:100%;
	border-collapse: separate; border-spacing: 0;
	margin: 0;
	text-align: start;
}
tr {
	border: none;
}
th {
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	letter-spacing: -0.025em;
	font-weight:lighter;
	padding: 0.25em 0.5em;
	border-top:0.5px solid var(--faint-text-color);
	border-left:0.5px solid var(--faint-text-color);
	border-right:0.5px solid var(--faint-text-color);
	border-bottom:2px solid var(--text-color);
}
td {
	font-weight:normal;
	padding: 0.5em 0.5em;
	border:0.5px solid var(--faint-text-color);
	vertical-align: top;
}
summary {display:none;} /* captionの中に入るサマリー */

.table_column_wide {
  /* 外側はremで指定 */
  width:calc(600px - 2rem);
  margin: 0.5rem calc((100% - 600px + 2rem) / 2);
}
@media screen and (max-width: 600px) {
  .table_column_wide {
    width:calc(100% - 2rem); margin: 0.5rem 1rem;
  }
}
.table_page_wide {
  width:calc(100% - 2rem); margin: 0.5rem 1rem;
}
.table_container {
  overflow-y: scroll;
  position: relative;
}
.table_cell_center { text-align: center; }
.table_cell_left   { text-align: start; }
.table_cell_right  { text-align: end; }
.table_cell_vague  { opacity: 0.7; }
.table_cell_strong { font-weight:bold; }
.table_cell_number {
  text-align: center; /* JSで小数点を揃える？ */
}
.table_cell_fix {
  background-color: var(--bg-color);
  position: sticky;position: -webkit-sticky;
  left:0;
}
.table_column_wide h5, .table_page_wide h5 {
    font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    font-weight: bold;
    letter-spacing: -0.05em;
    font-size: var(--chart-main-title-size);
    line-height: 1;
    margin:  0 0 0.5em 0.5rem; /* 左側だけはrem指定 */
    padding: 0;
    text-align: left;
}
.table_column_wide h6, .table_page_wide h6 {
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    font-weight: bold;
    letter-spacing: -0.05em;
    font-size: var(--chart-sub-title-size);
    line-height: 1;
    margin:  0 0 0.5em 0.5rem; /* 左側だけはrem指定 */
    padding: 0;
    text-align: left;
}
.table_foot_note {
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    font-weight: normal;
    letter-spacing: 0;
    font-size: var(--chart-foot-note-size);
    line-height: 1;
    color: var(--faint-text-color);
    margin: 4px 0.5em 0 0;
    padding: 0;
    max-width: none;
    text-align: right;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .table_column_wide h5, .table_page_wide h5 {
    font-size: var(--medium-chart-main-title-size);
  }
  .table_column_wide h6, .table_page_wide h6 {
    font-size: var(--medium-chart-sub-title-size);
  }
  .table_citation{
    font-size: var(--medium-chart-foot-note-size);
  }
}
@media screen and (max-width: 428px) {
  .table_column_wide h5, .table_page_wide h5 {
    font-size: var(--small-chart-main-title-size);
  }
  .table_column_wide h6, .table_page_wide h6 {
    font-size: var(--small-chart-sub-title-size);
  }
  .table_citation{
    font-size: var(--small-chart-foot-note-size);
  }
}
@media print {
  .table_column_wide h5, .table_page_wide h5 {
    font-size: var(--small-chart-main-title-size);
  }
  .table_column_wide h6, .table_page_wide h6 {
    font-size: var(--small-chart-sub-title-size);
  }
  .table_citation{
    font-size: var(--small-chart-foot-note-size);
  }
}
/* スタイルの例 */
.tablestyle01 tr {
  background-color: var(--bg-color);
  border: none;
}
.tablestyle01 tbody tr:nth-child(2n+1) {
  background-color: var(--faint-bg-color);
}
.tablestyle01 th {
  text-align: right;
  font-size: calc(1rem - 2px);
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-weight: bold;
  /* セルの中側はemで指定 */
  padding-right: 1em;
  letter-spacing: -0.025em;
  border-top: none;border-left: none;border-right: none;
  border-bottom:1px solid var(--faint-text-color);
}
.tablestyle01 th:nth-child(3), .tablestyle01 td:nth-child(3) {
  /* セルの中側はemで指定 */
  padding-left: 1em;
  text-align:start;
}
.tablestyle01 td {
  text-align: right;
  font-weight:bold;
  /* セルの中側はemで指定 */
  padding: 0.5em 1em;
  vertical-align: top;
  border:none;
}
.tablestyle01 tr:nth-child(2n+1) td {
  background-color: var(--faint-bg-color);
}
.figure_column_wide {
  width:calc(600px - 2rem);
  margin: 0.5rem calc((100% - 600px + 2rem) / 2);
}
.figure_column_wide img {width:100%;}
@media screen and (max-width: 600px) {
  .figure_column_wide {
    width:calc(100% - 2rem); margin: 0.5rem 1rem;
  }
}
.figure_page_wide {
  width:calc(100% - 2rem); margin: 0.5rem 1rem;
}
.figure_page_wide img {width:100%;}
.figure_float_right { float:right; margin: 0.5rem 1rem;}
.figure_float_left { float:left; margin: 0.5rem 1rem;}
.fixed_resolution img { width:100%;}
.crisp_edges {image-rendering:crisp-edges;}
figcaption {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  letter-spacing: -0.025em;
  font-weight: lighter;
  text-align:start;
  font-size: calc(1rem - 2px);
  line-height:calc(1rem + 3px);
  /* セルの中側はemで指定 */
  padding-left: 2em;
  color:var(--faint-text-color);
}
.fixed_resolution > figcaption {
  padding: 0 0.5em;
}
form {
  display:block;
}
fieldset {
  margin: 1rem;
  border: 1px solid var(--faint-text-color);
  background-color:var(--bg-color);
}
legend {
  font:normal 1rem sans-serif;
  margin:0 0.5em; padding: 0 0.5em;
}
.form_column_wide {
  width:calc(600px - 2rem);
  margin: 0.5rem calc((100% - 600px + 2rem) / 2);
}
@media screen and (max-width: 600px) {
  .form_column_wide {
    width:calc(100% - 2rem); margin: 0.5rem 1rem;
  }
}
.form_page_wide {
  width:calc(100% - 2rem); margin: 0.5rem 1rem;
}
.form_item {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  letter-spacing: -0.05em;
  font-weight: bolder;
  font-size: calc(1rem - 2px);
  width:calc(100% - 2rem);
  margin: 1rem;
  display:block;
}
.form_item label {
  display:inline-block;
  vertical-align: top;
  width: 200px;
}
.form_item input, .form_item textarea {
  width: calc(100% - 2rem);max-width:400px;
}
@media screen and (max-width: 700px) {
  .form_item input, .form_item textarea {
    width:calc(100% - 2px);max-width:none;
  }
}
/* heightをautoにすると英語/日本語で高さが異なってしまう */
input, textarea {
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  font-size: var(--textarea-size);
  padding:4px 0.5em;
}
textarea {resize:vertical; width:100%;}
@media screen and (min-width: 429px) and (max-width: 768px) {
  input, textarea {
    font-size: var(--medium-textarea-size);
  }
}
@media screen and (max-width: 428px) {
  input, textarea { font-size: var(--small-textarea-size); }
}
@media print {
  input, textarea { font-size: var(--small-textarea-size); }
}
/* buttonの基本スタイル */
button, input[type=submit] {
  display: inline-block;
  font-family: sans-serif;
  border:solid 1px var(--faint-text-color);
  color: var(--text-color);
  background-color: var(--faint-bg-color);
  cursor:pointer;
  /*/outline: none; //focusを得たときに青い線が出ることを防ぐ */
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  transition: all 500ms 0s ease;
  opacity: 1;
  font-size: var(--text-size);line-height:1;
  margin:  0.25rem 0.5rem;
  padding: 7px 0.5rem;
  height: 40px; /* 必然的に決まる */
  width: auto;
}
button:hover, input[type=submit]:hover {
  box-shadow:0 0 8px var(--shadow-color);
  -webkit-box-shadow:0 0 8px var(--shadow-color);
  -moz-box-shadow:0 0 8px var(--shadow-color);
  transition: box-shadow 500ms 0s ease;
}

@media screen and (min-width: 429px) and (max-width: 768px) {
  button, input[type=submit] {
    font-size: var(--medium-text-size);
    padding: 6px 0.5rem;
    height: 32px; /* 必然的に決まる */
  }
}
@media screen and (max-width: 428px) {
  button, input[type=submit] {
    font-size: var(--small-text-size);
    padding: 5px 0.5rem;
    height: 30px;
  }
}
button.selected{
  border:solid 1px var(--faint-text-color);
  color: var(--selected-text-color);
  background-color: var(--selected-color);
}

/* selectのバリエーション */
select {
  appearance: none;-webkit-appearance: none;-moz-appearance: none;
  cursor: pointer;
  /* outline: none; // focusを得たときに青い線が出ることを防ぐ */
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
  align-items: center;
  white-space: pre;
  -webkit-rtl-ordering: logical;

  text-shadow: none;
  text-align: start;
  text-overflow: ellipsis;
  position:relative;
  display: inline-block;

  font-size: var(--text-size);line-height:1;
  padding: 7px 1rem;
  height: 38px; /* 必然的に決まる */
  width: auto;
  margin: 0.25rem 1.0rem;
  border:solid 1px var(--faint-text-color);
  color: var(--text-color);
  background-color: var(--bg-color);
}

optgroup, option {
  color: var(--text-color);
  background-color: var(--bg-color);
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  select {
    font-size: var(--medium-textarea-size);
    padding: 6px 1rem;
    height: 32px; /* 必然的に決まる */
  }
}
@media screen and (max-width: 428px) {
  select {
    font-size: var(--small-textarea-size);
    padding: 5px 1rem;
    height: 26px; /* 必然的に決まる */
  }
}
@media print {
  select {
    font-size: var(--small-textarea-size);
    padding: 5px 1rem;
    height: 26px; /* 必然的に決まる */
  }
}
select:not(:-internal-list-box) {
  overflow: visible !important;
}
select::-ms-expand {display: none;}
/*  selct:hoverは危険*/
select:hover{
  box-shadow:0 0 8px var(--shadow-color);
  -webkit-box-shadow:0 0 8px var(--shadow-color);
  -moz-box-shadow:0 0 8px var(--shadow-color);
  transition: box-shadow 500ms 0s ease;
}

/* input[text]の基本スタイル */
input[type=text], input[type=email], input[type=url], input[type=tel], input[type=password], input[type=date], input[type=number], input[type=date] {
  border:solid 1px #ccc;
  margin:0;
  font-size: var(--textarea-size);
  padding:4px 0.5em;
  display:inline-block;
  vertical-align:middle;
  height:calc(1em + 10px);
  box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
  box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);-moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);-webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  input[type=text], input[type=email], input[type=url], input[type=tel], input[type=password], input[type=date], input[type=number], input[type=date] {
    font-size: var(--medium-textarea-size);
    padding:4px 0.5em;
  }
}
@media screen and (max-width: 428px) {
  input[type=text], input[type=email], input[type=url], input[type=tel], input[type=password], input[type=date], input[type=number], input[type=date] {
    font-size: var(--small-textarea-size);
    padding:3px 0.5em;
    height:calc(1em + 8px);
  }
}
@media print {
  input[type=text], input[type=email], input[type=url], input[type=tel], input[type=password], input[type=date], input[type=number], input[type=date] {
    font-size: var(--small-textarea-size);
    padding:3px 0.5em;
    height:calc(1em + 8px);
  }
}

input[type=date]::-webkit-inner-spin-button {
  _-webkit-appearance: none;/* スピンボタン（上下ボタン）を非表示にするなら */
}
/* 無入力時の 年/月/日 を / / にする */
input[type=date]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
input[type=date]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
input[type=date]::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}
input[type=date]::-webkit-datetime-edit-text { color: #666; /* /の色を変える */}
input[type=date]::-webkit-clear-button { _-webkit-appearance: none; /* clearボタンの非表示なら */}
input[type=date]::-webkit-calendar-picker-indicator {
  color: transparent;
  position: relative; /* カレンダーのインジケータ（▼）を非表示なら */
}

input[type=range] {
  appearance: none; -webkit-appearance: none;
  /* outline: none; // focusを得たときに青い線が出ることを防ぐ */
  color: var(--text-color);
  background-color: var(--faint-bg-color);
  border:solid 1px var(--faint-text-color);/* 帯の線 */
  height: 5px; /* 帯の太さ */
  width:50%;
  height:5px;
  display:inline-block;
  vertical-align:middle;
  margin: calc((1rem - 5px) / 2) 1rem;
  padding:0;
}
input[type="range"]:hover {
  box-shadow:0 0 8px var(--shadow-color);
  -webkit-box-shadow:0 0 8px var(--shadow-color);
  -moz-box-shadow:0 0 8px var(--shadow-color);
  transition: box-shadow 500ms 0s ease;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;appearance: none;
  /* your thumb styles */
  cursor: pointer;
  position: relative;
  border: 2px solid var(--text-color);
  width:  1rem;
  height: 1rem;
  display: block;
  background-color: var(--bg-color);;
  border-radius: 50%;-webkit-border-radius: 50%;
}
input[type=range]::-moz-range-thumb {/* again your thumb styles */}
input[type=range]::-ms-thumb { /* should come after -webkit- */
	/* again your thumb styles */
	/* may require different margins */
}
/* 操作範囲 */
input[type=range]::-webkit-slider-runnable-track {
	/* your track styles */
}
input[type=range]::-moz-range-track {
	/* again your track styles */
}
input[type=range]::-ms-track { /* should come after -webkit- */
	border-color: transparent;
	color: transparent;
}

/* input[type=check]の基本スタイル */
input[type=checkbox] {
  /* outline: none; // focusを得たときに青い線が出ることを防ぐ */
  color: var(--text-color);
  background-color: var(--faint-bg-color);
  _border:solid 1px var(--faint-text-color);/* 帯の線 */
  height: 1rem; /* 箱の大きさ */
  width: 1rem;
  display:inline-block;
  vertical-align:middle;
  margin: 0.5rem;
  padding:0;
}

.checkbox01 { /* 背景 */
  display:inline-block;
  position:relative;
  overflow:visible;
  margin:0.25rem 0.25rem;
  height:auto;width:auto;
  padding-left:2rem;
  padding-right:1rem;
}

.checkbox01 input[type="checkbox"] {
  -webkit-appearance: none;appearance: none;
  display:none;
}
.checkbox01 input[type="checkbox"] + label {
  cursor: pointer;position:relative;display:inline-block;
  vertical-align: middle;
  text-align: left;
  background-color: transparent;
  color: var(--text-color);
  font-family:sans-serif;
}
.checkbox01 input[type="checkbox"] + label::before {
  content:"";display:block;position:absolute;
  z-index:-1;
  top: -1px;
  left: -2em;
  width:calc(100% + 3em - 2px);
  height:calc(var(--line-height) - 2px);
  border-radius: 1em;
  border:1px solid var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.5s;
}
.checkbox01 input[type="checkbox"] + label::after {
  content:"";display:block;position:absolute;
  z-index:1;
  top:calc((var(--line-height) - 1em - 2px) / 2);
  left: -1.5em;
  width: calc(1em - 2px);
  height:calc(1em - 2px);
  border-radius: calc(1em - 1px);
  border:1px solid var(--text-color);
  background-color: var(--bg-col);
  transition: all 0.5s;
}
.checkbox01 input[type="checkbox"]:hover + label::before {
  box-shadow:0 0 8px var(--shadow-color);
  -webkit-box-shadow:0 0 8px var(--shadow-color);
  -moz-box-shadow:0 0 8px var(--shadow-color);
  transition: box-shadow 500ms 0s ease;
}

@media screen and (min-width: 429px) and (max-width: 768px) {
  .checkbox01 input[type="checkbox"] + label::before {
    height:calc(var(--medium-line-height) - 2px);
  }
  .checkbox01 input[type="checkbox"] + label::after {
    top:calc((var(--medium-line-height) - 1em - 2px) / 2);
  }
}
@media screen and (max-width: 428px) {
  .checkbox01 input[type="checkbox"] + label::before {
    height:calc(var(--small-line-height) - 2px);
  }
  .checkbox01 input[type="checkbox"] + label::after {
    top:calc((var(--small-line-height) - 1em - 2px) / 2);
  }
}
@media print {
  .checkbox01 input[type="checkbox"] + label::before {
    height:calc(var(--small-line-height) - 2px);
  }
  .checkbox01 input[type="checkbox"] + label::after {
    top:calc((var(--small-line-height) - 1em - 2px) / 2);
  }
}

.checkbox01 input[type="checkbox"]:checked + label {
  color: var(--text-color);
}
.checkbox01 input[type="checkbox"]:checked + label::before {
  background-color: var(--faint-bg-color);
}
.checkbox01 input[type="checkbox"]:checked + label::after {
  background-color: var(--faint-text-color);
}

.radiobutton01 { /* 背景 */
  display:inline-block;
  position:relative;
  overflow:visible;
  margin:0.25rem 1rem;
  height:auto;width:auto;
  padding-left:2rem;
  padding-right:1rem;
}
.radiobutton01 input[type="radio"] {
  -webkit-appearance: none;appearance: none;
  display:none;
}
.radiobutton01 input[type="radio"] + label {
  cursor: pointer;position:relative;
  display:inline-block;margin:0.5rem 2rem;
  vertical-align: middle;
  text-align: left;
  background-color: transparent;
  color: var(--text-color);
}
.radiobutton01 input[type="radio"] + label::before {
  content:"";display:block;position:absolute;
  z-index:-1;
  top: -1px;
  left: -2em;
  width:calc(100% + 3em - 2px);
  height:calc(var(--line-height) - 2px);
  border-radius: 1em;
  border:1px solid var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.5s;
}
.radiobutton01 input[type="radio"] + label::after {
  content:"";display:block;position:absolute;
  z-index:1;
  top:calc((var(--line-height) - 1em - 2px) / 2);
  left: -1.5em;
  width: calc(1em - 2px);
  height:calc(1em - 2px);
  border-radius: calc(1em - 1px);
  border:1px solid var(--text-color);
  background-color: var(--bg-col);
  transition: all 0.5s;
}
.radiobutton01 input[type="radio"]:hover + label::before {
  box-shadow:0 0 8px var(--shadow-color);
  -webkit-box-shadow:0 0 8px var(--shadow-color);
  -moz-box-shadow:0 0 8px var(--shadow-color);
  transition: box-shadow 500ms 0s ease;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .radiobutton01 input[type="radio"] + label::before {
    height:calc(var(--medium-line-height) - 2px);
  }
  .radiobutton01 input[type="radio"] + label::after {
    top:calc((var(--medium-line-height) - 1em - 2px) / 2);
  }
}
@media screen and (max-width: 428px) {
  .radiobutton01 input[type="radio"] + label::before {
    height:calc(var(--small-line-height) - 2px);
  }
  .radiobutton01 input[type="radio"] + label::after {
    top:calc((var(--small-line-height) - 1em - 2px) / 2);
  }
}
@media print {
  .radiobutton01 input[type="radio"] + label::before {
    height:calc(var(--small-line-height) - 2px);
  }
  .radiobutton01 input[type="radio"] + label::after {
    top:calc((var(--small-line-height) - 1em - 2px) / 2);
  }
}

.radiobutton01 input[type="radio"]:checked + label {
  color: var(--text-color);
}
.radiobutton01 input[type="radio"]:checked + label::before {
  background-color: var(--faint-bg-color);
}
.radiobutton01 input[type="radio"]:checked + label::after {
  background-color: var(--faint-text-color);
}

/* クラス指定 */
.page {
	width:100%; margin:0 0 2rem 0;min-height:100vh;
}
.whitepaper {
  color: black; background-color: white;
}
.whitepaper a, .whitepaper a:visited, .whitepaper a:active {
  color:#666666;cursor:pointer;
  text-decoration:underline;text-underline-offset: 0.2em;
}
.blackpaper {
  color: white; background-color: black;
}
.blackpaper a, .blackpaper a:visited, .blackpaper a:active {
  color:#d8d8d8;cursor:pointer;
  text-decoration:underline;text-underline-offset: 0.2em;
}

/* SVG chart */
svg {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  letter-spacing: -0.025em;
}
.main_title {
  font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-weight: bold;
  letter-spacing: -0.025em;
  fill: var(--text-color);
  stroke: none;
}
.sub_title {
  font-weight: bold;
  letter-spacing: -0.025em;
  fill: var(--text-color);
  stroke: none;
}
.foot_note {
  font-weight: normal;
  letter-spacing: 0rem;
  fill: var(--faint-text-color);
  stroke: none;
}
.tick text {
  fill: var(--faint-text-color);
  stroke:none;
}
.tick line, .tick path, .annotation line, .annotation path {
  stroke: var(--faint-text-color);
  fill: var(--faint-text-color);
  stroke-width:1;
}
.xAxis text, .yAxis text{
  fill: var(--faint-text-color);
  stroke:none;
}
.annotations text{
  fill: var(--text-color);
  stroke:none;
}


#related_stories {
  margin: 0.5em auto;padding: 0.5em;
  border: 1px solid #888888;
  max-width: 556px;
}
#related_stories a, #related_stories a:visited, #related_stories a:active {
  text-decoration:none;cursor:pointer;
}
@media screen and (max-width: 556px) {
  #related_stories {margin: 0.5em 0.5em;}
}
.related_title {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 0.85rem;
  line-height: 1;
  margin: 3px 1rem 7px 1rem;
  letter-spacing: 0rem;
}
.related_links {
  margin-top: 10px;padding-top: 3px;
  border-top:1px solid #dddddd;
}
.related_link:not(:last-child) {
  margin-bottom: 3px;padding-bottom: 4px;
  border-bottom:1px solid #dddddd;
}
.related_link a {
  display: flex; align-items: center; margin-top: 0px;
}
.related_link_image {
  margin-right:15px; width:150px;min-width:150px; height:100px;
}
@media screen and (max-width:414px) {
  .related_link_image {
    margin-right:10px; width:75px;min-width:75px; height:50px;
  }
}
.related_link_image img {
  width: 100%; border: none;
}
.related_link_text {
  flex-grow: 1;-webkit-flex-grow: 1;
}
.related_link_text p{
  text-indent: 0;
  line-height: 1.5rem;
}
@media screen and (max-width:414px) {
  .related_link_text p{
    font-size: 0.85rem;line-height: 1.35;
  }
}
/*  chunspo  */
footer {
  font-family: Hiragino Kaku Gothic Pro,メイリオ,Meiryo,Osaka,ＭＳ Ｐゴシック,MS PGothic,sans-serif;
  background-color: var(--brand-color);
  display: -webkit-box; display: flex;
  -ms-flex-direction: row; flex-direction: row;
  -ms-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-box-pack: justify; -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 calc((100% - 1160px) / 2) 20px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  footer { padding: 0 20px 20px;}
}
.footer-column {
  padding-top: 20px;
  -webkit-box-flex: 0 1 22%; flex: 0 1 22%;
}
.footer-column:last-child {
  align-self: flex-end;
}
/* デスクトップファーストで指定する */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-column { -webkit-box-flex: 0 1 33%; flex: 0 1 33%;}
  .footer-column:last-child {-webkit-box-flex: 0 1 100%; flex: 0 1 100%;}
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .footer-column { -webkit-box-flex: 0 1 50%; flex: 0 1 50%;}
  .footer-column:last-child {-webkit-box-flex: 0 1 100%; flex: 0 1 100%;}
}
@media screen and (max-width:428px) {
  .footer-column { -webkit-box-flex: 0 1 100%; flex: 0 1 100%; }
}
.footer-column h6 {
  font-size: 16px; color: #fff;
  font-weight: bold;
  padding: 20px 0px;
}
.footer-column ul {
  list-style: none;
  font-size: 14px; color: #fff;
  text-decoration: none;
  padding: 1em 0;
}
.footer-column ul li {
  padding: 0;
}
.footer-column ul a {
  color: #fff;text-decoration: none;
}
.footer-logo {width:100%;}
.footer-logo svg {
  display: block; margin:0 auto;
  width: 125px; height: 28px;
  fill: #fff;
}
@media print {
  .footer-logo svg { fill: black; }
}
.footer-logo p {
  font-size: 10px;white-space: nowrap;
  text-align: center;
}
@media print {
  #related_stories, footer {display:none;}
}

.katex {
	font-size:1rem;
	font-family: sans-serif;
}
.katex_div {
	margin:0.5rem auto;padding:0 1rem 0 4rem;text-align: left;
	text-indent: -3rem;
	max-width:566px;
}
.katex_display {margin:0.5rem auto;text-align: center;}
@media screen and (max-width: 420px) {
  .katex_display {margin:0.5rem 0.5rem;}
}
#cor_matrix .katex {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
}

@media screen and (min-width: 360px) and (max-width: 500px) {
    .katex {font-size: 0.85rem;}
    #cor_matrix .katex {
	    font-size: 0.85rem;
    }
}
@media screen and (max-width: 359px) {
    .katex {font-size: 0.85rem;}
    #cor_matrix .katex {
	    font-size: 0.75rem;
    }
}

/* 表紙部分 */
header {
  position:relative;
  width:100%;height:100vh;margin:0;
  max-width:unset;
  background-color: #002569;
}
#masthead_holder{
  width:100%;height:75px;margin:0;
  position:relative;
  display: flex; flex-flow: wrap; justify-content: space-around;
  align-items: center;  
}
#masthead {
  display: block;margin:0 auto;
  width:100px;height:23px;
  fill:white; filter: url(#inset_shadow);
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  #masthead {width:80px;height:20px;}
  #masthead_holder{ height:60px;}
}
@media screen and (max-width: 428px) {
  #masthead_holder{ height:40px;}
  #masthead {width:70px;height:19px;}
}

header h1, header h2 {
  position:absolute;
  margin:0;padding:5px 10px;
  z-index:1;transform:translateZ(0);overflow:hidden;
  color:white;
}
header h1 {
  top:20%;
  left:calc((100% - 1060px) / 2 + 280px);
  font-size:66px;line-height: 1.25;
}
header h2 {
  top:calc(20% + 100px);
  left:calc((100% - 1060px) / 2 + 280px);
  font-size:28px;line-height: 1.25;
}
header .lede {
  margin: 0 auto; padding:0 1rem;
  width: 560px;margin: 0 auto; padding:0 1rem;
  z-index:1;transform:translateZ(0);overflow:hidden;
  position:absolute;
  top: 55vh;
  left:calc((100% - 560px) / 2);
}
header .lede p {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-weight:bold;
  letter-spacing: -0.025em;
  color:white;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  header h1 {
    top:20%;
    left:calc((100% - 1024px) / 2 + 310px);
    font-size:60px;line-height: 1.25;
  }
  header h2 {
    top:calc(20% + 90px);
    left:calc((100% - 1024px) / 2 + 310px);
    font-size:26px;line-height: 1.25;
  }
  header .lede {
    margin: 0; padding:0 1rem;
    width: 100%;max-width:500px;
    top: 50vh;
    left:calc((100% - 500px) / 2);
  }
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  header h1 {
    top:20%;
    left:calc((100% - 390px) / 2);
    font-size:48px;line-height: 1.25;
  }
  header h2 {
    top:calc(20% + 75px);
    left:calc((100% - 390px) / 2);
    font-size:22px;line-height: 1.25;
  }
  header .lede {
    margin: 0; padding:0 1rem;
    width: 100%;max-width:430px;
    top: 50vh;
    left:calc((100% - 430px) / 2);
  }
}
@media screen and (min-width: 376px) and (max-width: 428px) {
  header h1 {
    top:20%;
    left:calc((100% - 360px) / 2);
    font-size:40px;line-height: 1.25;
  }
  header h2 {
    top:calc(20% + 75px);
    left:calc((100% - 360px) / 2);
    font-size:20px;line-height: 1.25;
  }
  header .lede {
    margin: 0; padding:0 1rem;
    width: 100%;
    top: 50vh; left:0;
  }
}
@media screen and (max-width: 375px) {
  header h1 {
    top:20%;
    left:calc((100% - 320px) / 2);
    font-size:36px;line-height: 1.25;
  }
  header h2 {
    top:calc(20% + 55px);
    left:calc((100% - 320px) / 2);
    font-size:18px;line-height: 1.25;
  }
  header .lede {
    margin: 0; padding:0 1rem;
    width: 100%;
    top: 50vh; left:0;
  }
}
header .printable { display: none; }

@media print {
  header {width:100%;height:500px;}
  header img {height:100%;width:100%}
  #masthead { fill:black; }
  header h1 {font-size:42px;top: 120px; left:150px;}
  header h2 {font-size:22px;top: 180px; left:150px;}
  header .lede {
    width: 500px;
    top: 300px; left:100px;
  }
  header .printable {
    display:block;position:absolute;
    left:calc(100% - 120px);top:20px;
    width:100px;height:100px;
  }
  header .printable > img { width:100%;height:100%; }
}

/*/////// 野球 ///////*/
.center_container blockquote.ai_session {
  width:100%; max-width: 600px;
  margin:0.5rem auto;padding:0.5rem 1rem;
  background-color: #efefef;
}
p.question {font-family:sans-serif;}
p.answer {color:black;};


.button_holder {
	display: flex;display: -webkit-flex;
	justify-content: space-between;-webkit-justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 500px;margin:0 auto 0.5em;
}
button {
	font-size: var(--medium-text-size);
	margin:  0.25rem 0.5rem;
	padding: 6px 0.5rem;
	height:  32px; /* 必然的に決まる */
}
@media screen and (min-width: 429px) and (max-width: 768px) {
	.button_holder {max-width: 429px;}
	button {
		font-size: var(--medium-text-size);
		margin: 0.25rem;
		padding: 6px 0.5rem;
		height: 32px; /* 必然的に決まる */
	}
}
@media screen and (min-width: 375px) and (max-width: 428px) {
	.button_holder {max-width: 300px;}
	button {
		font-size: var(--small-text-size);
		margin:  0.25rem 0.25rem;
		padding: 5px 0.25rem;
		height: 30px;
	}}
@media screen and (max-width: 374px) {
	.button_holder {max-width: 300px;}
	button {
		font-size: var(--small-text-size);
		margin:  0.25rem 0.25rem;
		padding: 5px 0.25rem;
		height: 30px;
	}
}

.questionform {
  width:100%;max-width:556px; margin:1rem auto;
  padding:0.5rem;
  background-color: #eeeeee;
}
.questionform h5 {margin:5px 1rem; font-family: sans-serif; font-weight:normal; font-size:1rem; line-height:1rem;}
.questionform label { display: none; }
.questionform textarea { width: calc(100% - 2rem); margin:4px 1rem; }
.questionform input[type="text"] { width: calc(100% - 2rem); margin:4px 1rem; }
.questionform p {
  font-family: sans-serif; font-size:12px; line-height:18px;
  color:#666; margin:0 1rem;
}
.questionform button { font-size:12px; line-height:18px; margin:4px 1rem; }
#warnings {margin:0 1rem;font:0.8rem sans-serif;color:red;font-weight:bold;}
#responses .ai_session p.question {
  font-family: sans-serif; font-weight:bold;
  font-size:1rem; line-height:1.6;
  color:black;
}
#responses .ai_session p.answer {
  font-family: serif; font-size:1rem; line-height:1.6;
  color:black;
}
@media screen and (max-width: 599px) {
  .questionform {
    width:calc(100% - 3rem); margin:1rem 1.5rem;
  }
  .questionform h5 {margin:4px 0.5rem; }
  .questionform textarea { width: calc(100% - 1rem); margin:4px 0.5rem; }
  .questionform input[type="text"] { width: calc(100% - 1rem); margin:4px 0.5rem; }
  .questionform p {
    font-size:12px; line-height:16px; margin:0 0.5rem;
  }
  .questionform button { font-size:12px; line-height:12px; margin:4px 1rem; }
}