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


table {
  margin: 0;
  padding: 0;
  border-spacing: 0;
  border-collapse: collapse;
  text-indent: initial;
  unicode-bidi: isolate;
}
table {
  /* table-layout: fixed; */
  table-layout: auto;
  width: 100%;
}

* {
  -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;
}

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;
} */
#ttl {
  font-size: 2em;
}

h2 {
  text-decoration: underline;
}

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

._small {
  font-size: smaller;
}

.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: 18px;
}

.acc_btn:hover {
  cursor: pointer;
}

.acc_box {
  display: none;
  width: 100%;
  max-height: 40vh;
  -webkit-overflow-scrolling: touch;
  margin-top: 3px;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  -ms-overflow-style: none;  
  scrollbar-width: none;  

}
.acc_box.scrollber {
  /* overflow-x: scroll; */
  overflow-y: scroll;
  scrollbar-width: auto;
}
.acc_box.scrollber::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.acc_box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.acc_box.kanto{
  max-height: 100%; 
}


.kanto .acc_btn {
  background-color: #d0ecff;
  color: #595757;
}
/* 矢印 */
.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); */
}

td a[href] {
 color: #007BFF;
  text-decoration: underline;
}


th {
  background: #acd9ff;
}

table td {
  background: #f4f4f4;
}

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

.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;
}

.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;
}

.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: 35px;
}

.sticky._w80{
  width: 80px;
}
.header_wrap {
  background: #40a8ff;
  color: #fff;
  padding: 20px 0;
}

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

.anc a {
  width: 34%;
}

.anc._02 a {
  width: 23%;
}
.btn {
  border: solid 2px #fff;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 14px;
  background: #acd9ff;
  color: #595757;
  position: relative;
}
.btn::before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #595757;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}
.btn._01 {
  padding: 20px 10px;
}

.btn:hover {
  background: #fff;

}

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;
}

.btn._02 {
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-align: center;
}

.btn._02 p {
  display: block;
  width: 100%;
}

.btn._02:hover {
  background: #40a8ff;
}

#sec02 .sticky._line {
  /* vertical-align: bottom; */
}

.Pref {
  background-color: #d0ecff;
  color: #595757;
  font-size: 15px;
  font-weight: 500;
}

.sticky._row.Pref::before {
  left: -1px;
  border-right: 1px solid #d0ecff;
}

.graph._05 .sticky._02 {
  top: 85px;
}

.graph._02 .sticky._02 {
  top: 51px;
}

.graph._06 .sticky._02 {
  top: 85px;
}

.info_text{
  width: 130px;
}

@media screen and (max-width:979px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* h1,
  h2 {
    font-size: 4.6vw;
    margin: 3% auto;
  } */
  #ttl {
    font-size: 2.6rem;
  }
  

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

  .acc_btn:after {
    top: 20%;
  }

  table,
  td,
  th {
    font-size: 10px;
    /* width: auto; */
  }

  td,
  th {
    padding: 14px 0;
    /* width: calc(560px/4 - 1px); */
    width: auto;

  }

  .sticky {
    padding: 14px 0;
    width: unset;
  }

  .sticky._all.sticky_all_01 {
    width: 100px;
  }

  .sticky._02 {
    top: 44px;
  }

  th.sticky {
    width: 160px;
  }

  th.sticky.span3 {
    width: calc(120px*3);
  }
  .info_text{
    padding: 5px 0;
  }
  #sec01{
    width: 95%;
}
  #sec02 th.sticky {
    width: 180px;
  }

  .anc {
    gap: 10px;

  }

  .anc a {
    width: 45%;
  }
  .anc._02 a {
    width: 45%;
  }

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

  .btn._01 {
    padding: 18.5% 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);
    }
  }
  
  .graph._02 .sticky._02 {
    top: 71px;
  }
  .graph._05 .sticky._02 {
    top: 71px;
  }
  .graph._06 .sticky._02 {
    top: 71px;
  }
  .acc_box{
    position: relative;
  }
  .Pref{
    font-size: 12px;
    height: 30px;
  }
  .Pref_s{
    position: absolute;
    top: 0;
    color: #fff;
    z-index: 10;
    font-size: 3.2vw;
  }

}


#sec02 .acc_btn {
  background-color: #ff4040;
}

#sec02 td,
#sec02 th {
  border: 1px solid #ff4040;
}

#sec02 th {
  background: #ffacac;
}

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

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

#sec02 .sticky._line::before {
  border: 1px solid #ff4040
}

#sec02 .sticky._all::before {
  border: 1px solid #ff4040;
}

#sec02 .Pref {
  background-color: #ff4040;
}

#sec02 .btn {
  background: #ffacac;
}

#sec01{
  max-width: 980px;
  margin: 0 auto;
}