@charset "UTF-8";

#tmp_contents html {
  min-width: initial;
  min-width: auto;
}
#tmp_contents body {
  color: var(--color-text);
  font-family: 'Noto Sans','Noto Sans JP','Hiragino Sans','ヒラギノ角ゴシック','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ','Meiryo',sans-serif;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: auto;
}
@media (min-width: 40em) {
  #tmp_contents body {
    font-size: 16px;
  }
}

#tmp_contents img {
  vertical-align: bottom;
  max-width: 100%;
}

#tmp_contents a,
#tmp_contents a:link,
#tmp_contents a:active,
#tmp_contents a:visited {
  color: var(--color-link);
}

/* --------------------------------------------------
  共通スタイル
-------------------------------------------------- */
/* --- 見出し1 --- */
#tmp_contents h1,
.c-heading1 {
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  position: relative;
}
@media (min-width: 40em) {
  #tmp_contents h1,
  .c-heading1 {
    margin-bottom: 3rem;
    padding-top: 4rem;
    font-size: 2.25rem;
  }
}
#tmp_contents h1:before,
.c-heading1:before {
  content: '';
  margin-left: -75px;
  width: 150px;
  height: 4px;
  background-color: var(--color-main);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}
@media (min-width: 40em) {
  #tmp_contents h1:before,
  .c-heading1:before {
    margin-left: -100px;
    width: 200px;
  }
}
#tmp_contents * + h1,
* + .c-heading1 {
  margin-top: 3rem;
}

/* --- 見出し2 --- */
#tmp_contents h2,
.c-heading2 {
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: #F3F4F6;
  color: var(--color-sub2);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
@media (min-width: 40em) {
  #tmp_contents h2,
  .c-heading2 {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    font-size: 1.875rem;
  }
}
#tmp_contents h2:before,
.c-heading2:before {
  content: '';
  width: 4px;
  height: 100%;
  background-image: linear-gradient(0deg, #39B6B2 50%, #398DB9 50%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#tmp_contents * + h2,
* + .c-heading2 {
  margin-top: 2rem;
}

/* --- 見出し3 --- */
#tmp_contents h3,
.c-heading3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #F2F2F2;
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
  position: relative;
}
@media (min-width: 40em) {
  #tmp_contents h3,
  .c-heading3 {
    padding-bottom: 1.5rem;
    font-size: 1.875rem;
  }
}
#tmp_contents h3:before,
.c-heading3:before {
  content: '';
  width: 125px;
  height: 3px;
  background-color: var(--color-main);
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
#tmp_contents * + h3,
* + .c-heading3 {
  margin-top: 1.5rem;
}

/* --- 見出し4 --- */
#tmp_contents h4,
.c-heading4 {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-color: #d1d1d1;
  border-width: 1px 0;
  border-style: solid;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.25;
}
@media (min-width: 40em) {
  #tmp_contents h4,
  .c-heading4 {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
  }
}
#tmp_contents * + h4,
* + .c-heading4 {
  margin-top: 1.25rem;
}

/* --- 見出し5 --- */
#tmp_contents h5,
.c-heading5 {
  margin-bottom: 0.75rem;
  padding: 0.25rem 1rem;
  border-left: 4px solid var(--color-main);
  font-size: 1.125rem;
  font-weight: bold;
}
@media (min-width: 40em) {
  #tmp_contents h5,
  .c-heading5 {
    padding: 0.25rem 1.5rem;
    font-size: 1.375rem;
  }
}
#tmp_contents * + h5,
* + .c-heading5 {
  margin-top: 1.25rem;
}

/* --- 見出し6 --- */
#tmp_contents h6,
.c-heading6 {
  margin-bottom: 0.25rem;
  color: var(--color-main);
  font-size: 1.125rem;
  font-weight: bold;
}
@media (min-width: 40em) {
  #tmp_contents h6,
  .c-heading6 {
    font-size: 1.375rem;
  }
}
#tmp_contents * + h6,
* + .c-heading6 {
  margin-top: 1rem;
}

/* --- リスト --- */
#tmp_contents ul,
.l-main ul,
#tmp_contents ol,
.l-main ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
#tmp_contents ul li,
.l-main ul li {
  padding-left: 3em;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  position: relative;
}
#tmp_contents ul li:before,
.l-main ul li:before {
  content: '';
  margin-top: -3px;
  width: 1rem;
  height: 0.3rem;
  border-style: solid;
  border-color: var(--color-main);
  border-width: 0 1px 1px 0;
  position: absolute;
  top: 1.1em;
  left: 0.5em;
  transform: skew(50deg);
}
#tmp_contents ol,
.l-main ol {
  margin-left: 1.5em;
}
#tmp_contents ol li,
.l-main ol li {
  list-style-type: inherit;
}

/* --- テーブル --- */
#tmp_contents table.datatable,
.l-main table.datatable {
  margin-bottom: 0.5rem;
}
#tmp_contents table.datatable th,
.l-main table.datatable th,
#tmp_contents table.datatable td,
.l-main table.datatable td {
  padding: 0.5rem 1rem;
  border-style: solid;
  border-color: var(--color-table-border);
  border-width: 1px 0;
}
@media (min-width: 40em) {
  #tmp_contents table.datatable th,
  .l-main table.datatable th,
  #tmp_contents table.datatable td,
  .l-main table.datatable td {
    padding: 1rem 2rem;
  }
}
#tmp_contents table.datatable th,
.l-main table.datatable th {
  background-color: var(--color-table-header);
  font-weight: bold;
  vertical-align: middle;
}
#tmp_contents table.datatable--th-nowrap th,
.l-main table.datatable--th-nowrap th {
  white-space: nowrap;
}
