@charset "UTF-8";

/*----------------------------------------------------

各種公表 

----------------------------------------------------*/

#public .page-container {
  padding-top: 0;
}

.public-content {
  padding: 0 0 5rem;
}

/* タブ部分 */
.tab-box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.tab-box .tab {
  width: 48%;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.5;
  padding: 1.5rem 0;
  border: 0.1rem #ccc solid;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: .5s;
}
.tab-box .tab.active {
  background: var(--blue);
  color: #fff;
  border: 0.1rem var(--blue) solid;
}
.tab-box .tab span {
  display: inline-block;
  text-align: left;
  position: relative;
}
.tab-box .tab span::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/btn-ar-bl-bg-bl-down.svg);
  position: absolute;
  top: 0.2rem;
  left: 3.7em;
}

/* コンテンツ部分 */
.tab-content {
  display: none;
}
.tab-content.show {
  display: block;
}
.tab-content h3 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 1.3rem;
  border-bottom: 0.1rem #d7dce2 solid;
  margin-bottom: 5rem;
  position: relative;
}
.tab-content h3::after {
  content: "";
  display: block;
  width: 16rem;
  height: 0.1rem;
  background: var(--blue);
  position: absolute;
  bottom: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
}

.tab-content a {
  color: var(--blue);
  text-decoration: underline;
}
.tab-content img {
  width: 1.4rem;
  vertical-align: baseline;
  margin-left: 0.7rem;
}

.tab-content .report-box {
  background: #fff;
  border: 0.1rem #ccc solid;
  margin-bottom: 3rem;
}
.tab-content .report-box h4 {
  background: #f8f8f8;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 2.5rem 0;
  border-bottom: 0.1rem #ccc solid;
}
.tab-content .report-in {
  padding: 3rem 2.5rem 5rem;
}
.tab-content .report-in > p {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

.report-data {
  display: flex;
  justify-content: center;
  align-items: center;
}

.report-data .select-month {
  margin-right: 2rem;
  position: relative;
}
.report-data .select-month::before,
.report-data .select-month::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.report-data .select-month::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 4.2rem;
  border-radius: 0 1rem 1rem 0;
  background-color: var(--blue);
  right: 0;
}
.report-data .select-month::after {
  content: '';
  position: absolute;
  top: 42%;
  right: 0.6rem;
  width: 0;
  height: 0;
  border: 0.6rem transparent solid;
  border-top: 0.6rem #fff solid;
}
.report-data .select-month select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 8rem;
  height: 4.2rem;
  font-size: 1.6rem;
  color: #000;
  padding: 1.2rem;
  border: 0.1rem #666 solid;
  border-radius: 1rem;
  cursor: pointer;
}
.report-data .select-month select:focus {
  outline: 1px solid var(--blue);
}

.report-data .select-data .month-txt {
  display: none;
}
.report-data .select-data .month-txt.is-active {
  display: block;
}

.report-box.daily .report-in p {
  text-align: left;
  margin-bottom: 2.5rem;
}
.report-box.daily .report-in p:last-child {
  margin-bottom: 0;
}

.tab-content .another {
  display: flex;
}
.tab-content .another h4 {
  margin-right: 5.5rem;
}
@media only screen and (min-width: 750px) {

  /* タブ部分 */
  .tab-box .tab span::after {
    top: 50%;
    left: auto;
    right: -3em;
    transform: translateY(-50%);
  }


}




@media only screen and (min-width: 1000px) {

  .public-content {
    padding: 10rem 0;
  }

  /* タブ部分 */
  .tab-box {
    padding-bottom: 6rem;
  }
  .tab-box .tab {
    font-size: 1.8rem;
    text-align: left;
    padding: 1.5rem 0;
    position: relative;
  }
  .tab-box .tab::before {
    content: "";
    display: block;
    width: 2.4rem;
    height: 3.2rem;
    background: url(../public/img/common-icon-public-gr.svg) no-repeat;
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
  }
  .tab-box .tab.active::before {
    background-image: url(../public/img/common-icon-public-wh.svg);
  }
  .tab-box .tab::after {
    content: "";
    display: block;
    width: 2.1rem;
    height: 2.1rem;
    background: url(../img/btn-ar-bl-bg-bl-down.svg);
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
  }
  .tab-box .tab span {
    padding: 1.5rem 3rem;
    border-left: 0.1rem #ccc solid;
    margin-left: 8rem;
  }
  .tab-box .tab.active span {
    border-left-color: #fff;
  }
  .tab-box .tab span::after {
    display: none;
  }

  /* コンテンツ部分 */
  .tab-content h3::after {
    width: 30rem;
  }
  .report {
    display: flex;
    justify-content: space-between;
  }
  .report-box {
    width: 48%;
  }
  .report-box.monthly .report-in p {
    text-align: left;
  }

  .tab-content .another {
    margin-left: 2.5rem;
  }


}




@media only screen and (min-width: 1400px) {

  /* タブ部分 */
  .tab-box .tab {
    font-size: 2.4rem;
    padding: 2.5rem 0;
  }
  .tab-box .tab::before {
    width: 3.6rem;
    height: 4.9rem;
    left: 4rem;
  }
  .tab-box .tab::after {
    width: 2.8rem;
    height: 2.8rem;
    right: 4rem;
  }
  .tab-box .tab span {
    padding: 2.5rem 4rem;
    border-left: 0.1rem #ccc solid;
    margin-left: 12rem;
  }



  /* コンテンツ部分 */
  .tab-content h3 {
    font-size: 3rem;
  }
  .tab-content h3::after {
    width: 40rem;
  }
  .tab-content .report-box h4 {
    font-size: 2.4rem;
  }
  .tab-content .report-in {
    padding: 3rem 5rem 7rem;
  }
  .tab-content .report-in > p {
    font-size: 2.1rem;
  }
  .tab-content img {
    width: 1.6rem;
    margin-left: 1rem;
  }

  .tab-content .another h4 {
    font-size: 2rem;
  }
  .tab-content .another .another-doc {
    font-size: 1.8rem;
  }


}





