@charset "UTF-8";

div#container {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 100vh;
}

main {
  box-sizing: border-box;
  width: 100%;
}

footer {
  margin-top: auto;
}

/*
================================
     help-list * index.php *
================================
*/
div.wrapper {
  box-sizing: border-box;
  width: 100%;
}

@media screen and (min-width:701px) {
  div.wrapper {
    width: 90%;
    max-width: 600px;
    margin: 2em auto 1em;
  }
}

div.wrapper>h2 {
  box-sizing: border-box;
  width: 100%;
  padding: .6em .6em;
  font-size: clamp(18px, 1.85vw, 28px);
  color: #056e88;
  display: flex;

}

@media screen and (min-width:701px) {
  div.wrapper>h2 {
    border-left: 12px solid #056e88;
    background: #eee;
  }
}

div.wrapper>ul.help-list {
  box-sizing: border-box;
  width: 99%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.0em .8em;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1em 0;
  background: #eee;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media screen and (min-width:701px) {
  div.wrapper>ul.help-list {
    width: 95%;
    padding: 1.6em 1.2em .6em;
    gap: 1em 0;
    background: inherit;
  }
}

div.wrapper>ul.help-list>li::before {
  content: '▸';
}

div.wrapper>ul.help-list>li {
  box-sizing: border-box;
  width: 100%;
  font-size: clamp(13px, 1.85vw, 16px);
  padding-bottom: .3em;
  border-bottom: 2px dotted #888;
}

div.wrapper>ul.help-list>li>a:link,
div.wrapper>ul.help-list>li>a:visited {
  color: #015634;
  transition: .6s;
  -webkit-transition: .6s;
  -moz-transition: .6s;
  -ms-transition: .6s;
  -o-transition: .6s;
}

div.wrapper>ul.help-list>li>a:hover {
  color: #105c96;
}