@charset "utf-8";

/*
  File Name   : accessibility.css
  Description : ウェブアクセシビリティ検証結果ページのスタイル
*/

html {
  font-size: 62.5%;

  --keyColor: #014290;
  --keyColor2: #109cd0;
}

a.over:hover,
a:hover img.over,
input.over:hover,
button.over:hover {
  filter: alpha(opacity=70);
           -moz-opacity: .7;
                opacity: .7;
  text-decoration: none;
  -webkit-transition: ease all .3s;
  transition: ease all .3s;
}

#top-main h1 {
  background: #3aafdb;
  color: #fff;
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  height: 195px;
  line-height: 1;
  padding-top: 80px;
  text-align: center;
}

#top-main h1 span {
  font-size: 14px;
  font-size: 1.4rem;
}

#main {
  padding: 15px 0 155px;
}

.breadcrumbs {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 20px 0;
}

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

.text-right {
  text-align: right;
}

.blue {
  color: #0099ff;
}

.w10per {
  width: 10%;
}

.w15per {
  width: 15%;
}

.w20per {
  width: 20%;
}

.w25per {
  width: 25%;
}

.w30per {
  width: 30%;
}

.btn {
  max-width: 260px;
}

.btn01 {
  color: #fff !important;
  text-decoration: none !important;
  transition: opacity .3s ease-out;
}

.btn01:hover {
  opacity: .7;
}

.btn.left {
  margin-inline: 0;
}

.section {
  line-height: 1.7;
}

.section + .section {
  margin-top: min(15%, 100px);
}

.section p {
  font-size: 16px;
  font-size: 1.6rem;
}

.article + .article {
  margin-top: min(15%, 100px);
}

a {
  word-break: break-all;
}

.icon-new-window {
  padding-right: 1.5em;
}

.icon-new-window:after {
  right: .3em;
  top: .6em;
}

.heading-style01:first-child {
  margin-top: 0;
}

.accessibilityH3 {
  border-bottom: 3px solid #cce4ff;
  margin: 1.5em 0 0.8em 0;
  font-size: 16px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

.accessibilityH3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #014290;
  bottom: -3px;
  width: 30%;
}

.commonTbl {
  border-collapse: collapse;
  margin: 2em auto;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
}

.commonTbl th,
.commonTbl td {
  padding: .75em;
  border: 1px solid #aaa;
  font-size: .9em;
}

.commonTbl thead th {
  background:  #cce4ff;
  text-align: center;
  font-weight: 500;
}

.commonTbl tbody th,
.commonTbl tbody .th {
  background: #f7f7f7;
}

table caption {
  font-weight: bold;
}

.ol li {
  margin-left: 1.5em;
  list-style-type: number;
}

.ol li:not(:last-child) {
  margin-bottom: 1em;
}

@media print, screen and (max-width: 767px) {
  .section p, table {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .commonTbl th,
  .commonTbl td {
    font-size: .835em;
    padding: .4em;
  }

  .commonTbl .w30per {
    width: 35%;
  }

  table.overviewTbl th,
  table.overviewTbl td {
    padding: .5em !important;    
  }

  table.overviewTbl th {
    border-block: 0;
  }

  table.overviewTbl tr:first-child th {
    border-top: 1px solid #aaa;
  }

  table.checkListTbl thead th {
    font-size: .8em;
  }
}