html {
  font-size: 62.5%;
}

.report-header {
  display: flex;
  justify-content: space-between;
  max-width: 1168px;
  margin: 25px auto 30px;
}

body {
  color: #262626;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-weight: normal;
}

h2, h3, p {
  margin: 0 0 8px;
}

.container {
  max-width: 1168px;
  margin: 0 auto;
}

.container.sub {
  margin-top: 90px;
}

h1 {
  font-size: 3.2rem;
  height: 23px;
}

h1 span {
  font-size: 1.5rem;
  margin-left: 2.4rem;
  vertical-align: middle;
}

h2 {
  font-size: 2.4rem;
  border-bottom: 2px solid #D6D6D6;
  margin-bottom: 32px;
}

h3 {
  font-size: 2.4rem;
}

.sp_none {
  display: block;
}

.pc_none {
  display: none;
}

.tab-nav {
  margin-top: 50px;
  padding-bottom: 80px;
  background-color: #fff;
  box-shadow: 0px 3px 18px #00000014;
  width: 100%;
  margin: 0 auto;
}

.tab-label {
  width: calc(100%/2);
  height: 54px;
  background-color: #BCBCBC;
  line-height: 54px;
  font-size: 2.4rem;
  text-align: center;
  color: #FFFFFF;
  display: block;
  float: left;
  position: relative;
}

.tab-label:hover {
  opacity: .8;
}

.tab-label:after {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #155492;
  bottom: -8px;
  transform: rotate(45deg);
  left: 50%;
  margin-left: -9px;
}

input[name="tabs"] {
  display: none;
}

.tab_panel {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

#tab-1:checked ~ #tab-1_content,
#tab-2:checked ~ #tab-2_content {
  display: block;
}

.tab-nav input:checked + .tab-label {
  background-color: #155492;
  color: #fff;
}

.tab-nav input:checked + .tab-label:after {
  content: '';
}

.flex {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 0 0;
}

.flex.col3 section, .flex.col2 section {
  background-color: #E9E9E9;
  width: calc((100% - 80px)/3);
  text-align: center;
  min-height: 200px;
  margin-bottom: 85px;
  padding-top: 16px;
  position: relative;
}

.flex.col3 section:after, .flex.col2 section:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #B7B7B7;
  top: 5px;
  left: 5px;
  z-index: -1;
}

.flex.col3 section > div, .flex.col2 section > div {
  background-color: #FFFFFF;
  margin: 10px 15px;
  border-radius: 8px;
}

.flex.col3 section > div p, .flex.col2 section > div p {
  font-size: 1.2rem;
}

.flex.col3 section .flex, .flex.col2 section .flex {
  justify-content: space-around;
  padding-top: 10px;
}

.flex.col2 {
  justify-content: flex-start;
}

.flex.col2 section {
  margin-right: 40px;
}

.flex.col3 section {
  padding-bottom: 15px;
}

.btn-report {
  background-color: #66ACBE;
  width: 212px;
  height: 40px;
}

.btn-report a {
  color: #FFFFFF;
  font-size: 1.5rem;
  display: inline-block;
  margin: 9px auto;
  padding-left: 45px;
  cursor: pointer;
  width: 100%;
}
.downloading {
  color: red;
  padding-top: 5px;
  display:none;
}
.red {
  color: #F36666;
}

.gray {
  color: #AAAAAA;
}

.date {
  font-size: 2.0rem;
  line-height: 3.0rem;
}

.date span {
  font-size: 1.5rem;
  margin-left: 14px;
}

b {
  font-family: "Arial Narrow", Arial, sans-serif;
  line-height: 7.3rem;
}

b.big {
  font-size: 6.4rem;
}

b.small {
  font-size: 3.2rem;
}

.table {
  overflow: auto;
  overflow-y: hidden;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  overflow: scroll;
}

table td {
  padding: 9px;
}

table thead {
  background-color: #E7F1F0;
  text-align: center;
  border-bottom: 1px solid #9B9B9B;
}

table thead td {
  border-left: 1px solid #FFFFFF;
}

table thead td .sort {
  position: relative;
  margin-right: 10px;
}

table thead td .sort:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 7px;
  right: -14px;
  border: 7px solid transparent;
  border-top: 10px solid #606060;
}

table tbody td:not(:first-child) {
  text-align: right;
}

table tbody tr {
  border-bottom: 1px solid #9B9B9B;
}

table.col3 {
  max-width: 481px;
}

table.col3 td {
  width: 33%;
}

table.col6 td:first-child {
  width: 38%;
}

table.col6 td:nth-type-of(2) {
  width: 14%;
}

table.col6 td:nth-type-of(3) {
  width: 16%;
}

table.col4 td:first-child {
  text-align: center;
  width: 10%;
}

table.col4 td:last-child {
  width: 67%;
  text-align: left;
  padding-left: 50px;
}

.allTable tbody tr:last-child {
  border-top: 1px solid #202020;
}

table.col4 tbody tr:last-child td:not(:first-child) {
  font-weight: bold;
}

@media (max-width: 1024px) {
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
  header, .container {
    padding: 0 10px;
  }
  .flex:not(.fix) {
    display: block;
  }
  .flex:not(.fix).col3 section, .flex:not(.fix).col2 section {
    width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    display: block;
    text-align: center;
  }
  h1 {
    font-size: 2.4rem;
    height: 3rem;
  }
  header > div {
    text-align: center;
  }
  .btn {
    width: 80%;
    margin: 0 auto;
  }
  .flex.fix {
    display: block;
  }
  .flex.fix > div {
    margin-bottom: 10px;
  }
}

.shop-name {
  height: 5rem !important;
  font-size:2rem;
  width: 90%;
  display:inline-block
}


/*# sourceMappingURL=style.css.map */