@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 横方向のスクロールバーを非表示 */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* 縦方向のスクロールバーを非表示 */
html {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 980px;
  margin: 40px auto;
}

a {
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2 {
  font-size: 24px;
  text-align: center;
  width: 100%;
  margin: 20px auto;
  display: block;
  font-weight: bold;
}

h2 {
  text-decoration: underline;
}

h3 {
  text-align: center;
  font-weight: 800;
  font-size: 18px;
}

._small {
  font-size: 15px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.acc_btn {
  margin-top: 20px;
  position: relative;
  padding: 1% 0;
  text-align: center;
  background-color: #40a8ff;
  color: #fff;
  font-size: 15px;
}

.acc_btn:hover {
  cursor: pointer;
}

.acc_box {
  display: none;
  overflow-x: scroll;
  width: 100%;
  max-height: 50vh;
  -webkit-overflow-scrolling: touch;
  margin-top: 3px;
  position: relative;
}

/* 矢印 */
.acc_btn:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.acc_btn.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

table {
  width: 100%;
  max-width: 980px;
  border-spacing: 0;
  border-collapse: collapse;
  /* overflow: auto; */
  table-layout: fixed;
}

td,
th {
  border: 1px solid #40a8ff;
  text-align: center;
  font-size: 12px;
  vertical-align: middle;
  white-space: nowrap;
}

td,
th {
  padding: 8px;
  width: calc(830px/4 - 1px);
}

th {
  background: #acd9ff;
}

table td {
  background: #fff;
}

table tr:nth-child(odd) td {
  background: #d7efff;
}

.line {
  border-top: 1px solid #40a8ff;
  margin: 5px 0;
}

.sticky {
  width: auto;
  padding: 8px 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  z-index: 1;
}
.bold_txt {
  font-weight: bold;
  color: #000;
  text-shadow: 0 0 1px currentColor;
}

.sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sticky._row {
  border-right: none;
  top: 2px;
}

.sticky._row::before {
  left: -1px;
  border-left: 1px solid #40a8ff;
  border-right: 1px solid #40a8ff;
  border-bottom: 1px solid #40a8ff;
}

.sticky._line {
  border-bottom: none;
  top: 0;
}

.sticky._line::before {
  border: 1px solid #40a8ff;
  border-right: none;
  top: -1px;
}

._02 th.sticky._line {
  position: sticky;
  top: 3.4rem;
  background: #acd9ff;
  /* z-index: 2; */
}

.sticky._all {
  border-bottom: none;
  border-right: none;
  top: 0px;
  z-index: 2;
}

.sticky._all::before {
  border: 1px solid #40a8ff;
  top: -1px;
  left: -1px;
}

.sticky._02 {
  top: 68px;
}

.anc {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  align-items: center;
}

.anc a {
  width: 30%;
}

.btn {
  border: solid 2px #40a8ff;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 14px;
}

.btn._01 {
  padding: 20px 10px;
}

.btn:hover {
  color: #fff;
  background: #40a8ff;

}

span {
  display: block;
}

.back_btn {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 20px;
  bottom: 96px;
  background-color: #003662;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  line-height: 1.2;
  padding: 2px;
  z-index: 10;
}

.arrowWrap {
  display: none;
}

.Pref {
  background-color: #40a8ff;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

@media screen and (max-width:979px) {
  body {
    width: 95%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  h1,
  h2 {
    font-size: 4.6vw;
    margin: 3% auto;
  }

  .acc_btn {
    margin-top: 15px;
    font-size: 3.8vw;
  }

  .acc_btn:after {
    top: 20%;
  }

  table,
  td,
  th {
    font-size: 10px;
  }

  td,
  th {
    padding: 5px 0;
    width: calc(560px/4 - 1px);
  }
  .graph {
    width: 74%;
    margin: 0 auto 40px;
  }
  .sticky {
    padding: 5px 0;
    width: unset;
  }

  .sticky._02 {
    top: 56px;
  }

  th.sticky {
    width: 50%;
    /* width: 150px; */
  }

  th.sticky.span3 {
    width: calc(120px*3);
  }

  /* .sticky._row{
    border-right: ;
  } */
  ._02 th.sticky._line {
    top: 2.6rem;
  }
  .anc {
    gap: 10px;

  }

  .anc a {
    width: 45%;
  }

  .btn {
    font-size: 2.8vw;
    padding: 4% 1%;
  }

  .btn._01 {
    padding: 13% 1%;
  }

  .back_btn {
    width: 40px;
    height: 40px;
    right: 11px;
    bottom: 56px;
    font-size: 10px;
    line-height: 1.1;
    padding: 1px;
  }

  .scrolltext {
    font-size: 2.5vw;
    font-weight: 100;
    text-align: right;
    position: sticky;
    left: 0;
    animation: sway 2s infinite ease-in-out;
  }

  @keyframes sway {
    0% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(-5px);
    }

    100% {
      transform: translateX(0);
    }
  }

}