@charset "utf-8";

:root {
  --guide_color: #0096E2;
  --guide_red: #e51661;
  --base_padding: clamp(1.375rem, 1.2rem + 0.89vw, 2rem);
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-grow {
  flex-grow: 1;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-dir-mbc {
  -ms-flex-direction: row;
  flex-direction: row;
}

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-center {
  align-content: center;
}

.align-content-between {
  align-content: space-between;
}

.align-content-around {
  align-content: space-around;
}

.align-content-stretch {
  align-content: stretch;
}

.align-items-md-start {
  align-items: flex-start;
}

@media (max-width: 767px) {
  .flex-dir-mbc {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .align-items-md-start {
    align-items: normal;
  }
}

/* Class 新設
 * .gcon
 */

.gcon .sectiontitle {
  color: #111;
}

.gcon .ttl02-margin {
  margin-bottom: 10px;
  margin-top: 30px;
}

.gcon .hd-block {
  background: #eee;
  padding: 1rem .5rem .5rem;
  font-size: 24px;
  font-weight: bold;
}

.gcon .sectiontitle:before {
  content: "■";
  color: var(--guide_color);
}

.gcon ul.list_reg li:before {
  background-color: var(--guide_color);
}

.li_autonum {
  counter-reset: number 0;
  padding: var(--base_padding);
}

.li_autonum li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5rem;
}

.li_autonum li::before {
  position: absolute;
  counter-increment: number 1;
  content: counter(number);
  display: inline-block;
  background: #74c2f8;
  color: #FFF;
  font-weight: bold;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  top: 3px;
  -webkit-transform: translateY(-3%);
  transform: translateY(-3%);
}

.li_autonum .li_head {
  font-weight: bold;
  font-size: 1.6rem;
}

.aside_box {
  background-color: #fef5fa;
  color: #e51661;
  padding: var(--base_padding);
}

.aside_box mark {
  color: inherit;
}

.aside_box>p:last-child {
  margin-bottom: 0;
}

.innerbox {
  padding: var(--base_padding);
}

.toc_container p.toc_title+ul.toc_list>li {
  margin-bottom: 0.1em;
  padding-bottom: 0.4em;
}

.toc_container p.toc_title+ul.toc_list {
  margin-top: 1em;
  margin-right: 0.4em;
}

.toc_container li {
  padding-left: 1em;
  line-height: 1.8em;
}

.toc_container ul ul {
  margin-bottom: 10px;
}

.toc_number {
  margin-left: -0.5em;
  margin-right: 0.5em;
  font-family: 'Dynalight', cursive;
}

.toc_container ul>li>ul>li {
  font-size: 94%;
}

.toc_container .toc_toggle>a {
  color: #fff;
  letter-spacing: 0.1em;
}

.toc_container a {
  text-decoration: none;
  text-shadow: none;
  color: var(--guide_color);
}

.toc_container {
  background-color: #fff;
  margin-bottom: 1em;
  width: auto;
  display: table;
  border: solid 3px var(--guide_color);
  position: relative;
  border-radius: 7px;
  margin-top: 25px;
}

.toc_container p.toc_title {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 700;
  padding: 10px 5%;
  color: #fff;
  margin: 0;
  border-radius: 0;
  background-color: var(--guide_color);
  letter-spacing: 0.05em;
}

.gcon .panel-title::before {
  content: "▼";
  color: var(--guide_color);
}

.gcon .hdbar {
  background: #d9f1ff;
  display: block;
  padding: 1rem 1rem 0.5rem;
}

/* table */
/*--table-layout: autoを指定--*/
table.layout {
  table-layout: auto;
  width: 100%;
  text-align: center;
}

table.layout,
table.layout td,
table.layout th {
  border: solid 1px #fff;
  border-collapse: collapse;
}

th.top {
  width: 100px;
}

table.layout th {
  background-color: #fd6158;
}

table.layout td,
table.layout th {
  padding: 10px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  table.col01table {
    width: 100%;
  }
}

@media (max-width: 767px) {
  table.col01table {
    width: 800px;
  }

  table.tbl.guide_tbl_responsible td {
    display: block;
    width: 100%;
  }
}


.tbl .bg,
.tbl .bg th,
.tbl .bg td {
  background-color: #f3f3f3;
}

.tbl td[data-tbl="right"] {
  text-align: right !important;
  white-space: nowrap;
}

.tbl .bd-b {
  border-bottom-color: #f3f3f3;
}

.tbl th[colspan="3"] {
  background: #2799d3;
  color: #fff;
}

.tbl .separate {
  border-right: none;
  border-left: 1px solid #fff;
  padding-left: 0;
}

@media(min-width:641px) {
  .tbl .ws-no {
    white-space: nowrap;
  }
}

/* -----------汎用----------- */
.c-blue {
  color: var(--guide_color);
}

.c-red {
  color: var(--guide_red);
}

.m0-auto {
  margin: 0 auto;
}

.fas.fa-info-circle::before {
  content: "■";
}
