@charset "UTF-8";
/* CSSアニメーションの指定 */
.score-report.open {
  animation: score-report-open 0.5s;
}

/* CSSアニメーションの設定 */
@keyframes score-report-open {
  0% {
    right: -307px;
  }
  100% {
    right: 0;
  }
}
.score-report.close {
  animation: score-report-close 0.5s;
}

@keyframes score-report-close {
  0% {
    right: 0;
  }
  100% {
    right: -355px;
  }
}
/* CSSアニメーションの指定 */
.score-report.open {
  animation: score-report-open 0.5s;
}

/* CSSアニメーションの設定 */
@keyframes score-report-open {
  0% {
    right: -355px;
  }
  100% {
    right: 0;
  }
}
.score-report {
  max-width: 355px;
  right: 0;
  top: 60px;
  z-index: 99;
  width: 100%;
  position: fixed;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .score-report {
    top: 80px;
  }
}
@media screen and (max-width: 550px) {
  .score-report {
    position: unset;
    max-width: 100%;
    margin-top: 16px;
  }
}
.score-report.open {
  right: 0;
}
.score-report.close {
  right: -355px;
}
.score-report .open__btns {
  position: absolute;
  z-index: 2;
  left: -40px;
  top: 40px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  width: 45px;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width: 550px) {
  .score-report .open__btns {
    display: none;
  }
}
.score-report .open__btns .open_btn {
  display: none;
  position: absolute;
  top: 9px;
  height: 160px;
  width: 40px;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
  writing-mode: vertical-rl;
  padding: 10px;
  padding-top: 37px;
  font-size: 14px;
  border-radius: 4px 0 0 4px;
  opacity: .96;
  box-shadow: -6px 3px 7px 0px rgba(0,0,0,.2);
}
.score-report .open__btns .open_btn i {
  margin-top: 11px;
  font-size: 16px;
}
.score-report .open__btns .open_btn.to_open i {
  transform: rotate(180deg);
}
.score-report .open__btns .open_btn_1 {
  background-color: rgba(30, 85, 30, 0.9);
}
.score-report .open__btns .open_btn_2 {
  background-color: rgba(30, 85, 30, 0.9);
}
.score-report .open__btns .open_btn_3 {
  background-color: rgba(30, 85, 30, 0.9);
}
.score-report .open__btns .open_btn_6 {
  background-color: rgba(30, 85, 30, 0.9);
}
.score-report .open__btns .open_btn_7 {
  background-color: rgba(30, 85, 30, 0.9);
}
.score-report .open__btns .open_active {
  display: block;
}
.score-report .open__btns img {
  width: 47px;
}
.score-report .open__btns img.close {
  display: none;
}
.score-report .tab__btns {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 550px) {
  .score-report .tab__btns {
    background: #69afcd;
  }
  .score-report .tab__btns .tab__btn {
    padding-left: 8px;
  }
  .score-report .tab__btns .tab__btn,
  .score-report .tab__btns .tab__btn.tab__btn-2,
  .score-report .tab__btns .tab__btn.tab__btn-3 {
    border-radius: 0;
    background: #ECF5EF;
    color: #333;
    /* border:1px solid #fff; */
  }
  .score-report .tab__btns .tab__btn.tab__btn-1.tab__btn--active,
  .score-report .tab__btns .tab__btn.tab__btn-2.tab__btn--active,
  .score-report .tab__btns .tab__btn.tab__btn-3.tab__btn--active,
  .score-report .tab__btns .tab__btn.tab__btn-6.tab__btn--active,
  .score-report .tab__btns .tab__btn.tab__btn-7.tab__btn--active {
    background: rgba(30, 85, 30, 0.9);
    color: #fff;
    /* border:1px solid #fff; */
  }
  .score-report .tab__btns .tab__btn.tab__btn-2{
    border-left: 0;
    border-right: 0;
  }
}
.score-report .tab__btns .tab__btn {
  flex: 1;
  height: 50px;
  background-color: #fff;
  margin-bottom: 0;
  margin: 0;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-align: left;
  padding: 0;
  padding-top: 2px;
  padding-left: 24px;
  opacity: .96;
  border: 2px solid rgba(30, 85, 30, 0.9);
  border-radius: 0;
}
.score-report .tab__btns .tab__btn.tab__btn-1.tab__btn--active,
.score-report .tab__btns .tab__btn.tab__btn-2.tab__btn--active,
.score-report .tab__btns .tab__btn.tab__btn-3.tab__btn--active,
.score-report .tab__btns .tab__btn.tab__btn-6.tab__btn--active,
.score-report .tab__btns .tab__btn.tab__btn-7.tab__btn--active {
  background: rgba(30, 85, 30, 0.9);
  color: #fff;
}
@media screen and (max-width: 375px) {
  .score-report .tab__btns .tab__btn {
    display: flex;
    align-items: center;
  }
}
.score-report .tab__btns .tab__btn.tab__btn-2 {
  background-color: #fff;
  padding-left: 16px;
  padding-right: 10px;
  color: #333;
  border: 2px solid rgba(30, 85, 30, 0.9);
  border-radius: 0;
  opacity: .96;
  border-left: 0;
  border-right: 0;
}
.score-report .tab__btns .tab__btn.tab__btn-3 {
  background-color: #fff;
  padding-left: 24px;
  color: #333;
  border: 2px solid rgba(30, 85, 30, 0.9);
  border-radius: 0;
  opacity: .96;
}
.score-report .tab__btns .tab__btn.tab__btn-6,
.score-report .tab__btns .tab__btn.tab__btn-7{
  background-color: #fff;
  padding-left: 16px;
  padding-right: 10px;
  border: 2px solid rgba(30, 85, 30, 0.9);
  border-radius: 0;
  opacity: .96;
}
.score-report .tab__btns .tab__btn::after {
  content: none;
}
.score-report .tab-content {
  padding: 0;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.score-report .tab-content .tab-content-title-wrap {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 12px;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content .tab-content-title-wrap {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 17px;
  }
}
.score-report .tab-content .tab-content-title-wrap .tab-content-title {
  color: #fff;
  padding-right: 20px;
  font-size: 13px;
  max-width: calc(100% - 34px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content .tab-content-title-wrap .tab-content-title {
    font-size: 16px;
  }
}
.score-report .tab-content .tab-content-title-wrap .tab-content-round {
  font-size: 14px;
  width: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #fff;
}
.score-report .tab-content .wrap {
  padding: 8px 0 20px 20px;
  position: relative;
  z-index: 1;
  border-top-left-radius: 16px;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content .wrap {
    padding: 20px 12px 32px 12px;
  }
}
.score-report .tab-content::before {
  content: "";
  position: absolute;
  top: -50px;
  height: 100px;
  left: 0;
  right: 0;
}
.score-report .tab-content .content-table {
  height: auto;
  opacity: 1;
}
.score-report .tab-content .content-table::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.score-report .tab-content .content-table::-webkit-scrollbar-track {
  background: transparent;
}
.score-report .tab-content .content-table::-webkit-scrollbar-thumb {
  background-color: #7f7f7f;
  border-radius: 3px;
}
.score-report .tab-content table tr th, .score-report .tab-content table tr td {
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: #d9d9d9;
  padding: 2px 2px;
}
.score-report .tab-content table tr th:first-child, .score-report .tab-content table tr td:first-child {
  border-left: 0;
  width: 24px;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content table tr th:first-child, .score-report .tab-content table tr td:first-child {
    width: 40px;
  }
}
.score-report .tab-content table tr th:nth-of-type(2), .score-report .tab-content table tr td:nth-of-type(2) {
  width: 128px;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content table tr th:nth-of-type(2), .score-report .tab-content table tr td:nth-of-type(2) {
    width: 200px;
  }
}
.score-report .tab-content table tr th:nth-of-type(3), .score-report .tab-content table tr td:nth-of-type(3) {
  width: 41px;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content table tr th:nth-of-type(3), .score-report .tab-content table tr td:nth-of-type(3) {
    width: 55px;
  }
}
.score-report .tab-content table tr th:nth-of-type(4), .score-report .tab-content table tr td:nth-of-type(4) {
  width: 40px;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content table tr th:nth-of-type(4), .score-report .tab-content table tr td:nth-of-type(4) {
    width: 55px;
  }
}
.score-report .tab-content table tr th:last-child, .score-report .tab-content table tr td:last-child {
  width: 35px;
  border-right: 0;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content table tr th:last-child, .score-report .tab-content table tr td:last-child {
    width: 58px;
  }
}
.score-report .tab-content table tr th {
  background: #BFAE88;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-bottom: 0;
  letter-spacing: -1px;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content table tr th {
    padding: 9px 2px;
  }
}
@media screen and (max-width: 375px) {
  .score-report .tab-content table tr th {
    font-size: 12px;
  }
}
.score-report .tab-content table tr td {
  background: #fff;
  color: #333;
  text-align: center;
  font-size: 13px;
  color: #727272;
  padding: 2px 2px;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content table tr td {
    padding: 7px 2px;
  }
  .score-report .tab-content table tr td:nth-of-type(2) {
    width: 140px;
  }
  .score-report .tab-content table tr td:nth-of-type(3) {
    width: 56px;
  }
}
@media screen and (max-width: 550px) and (max-width: 550px) {
  .score-report .tab-content table tr td:nth-of-type(3) {
    width: 85px;
  }
}
.score-report .tab-content .minus_score {
  color: #d84025;
}
.score-report .tab-content .link-button {
  padding: 12px 12px 7px;
  background: #f5f9e6;
  overflow: auto;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content .link-button {
    padding: 12px 12px 0;
  }
}
.score-report .tab-content .link-button a {
  background: url(../images/icon-button.png) no-repeat center right 20px #1e551e;
  background-size: 8px auto;
  color: #fff;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 0 16px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .score-report .tab-content .link-button a {
    line-height: 60px;
    margin-bottom: 10px;
  }
}
.score-report .tab-content .link-button a:hover {
  opacity: 0.6;
}
.score-report .tab-content .link-button a.external {
  background: url(../images/icon-external.png) no-repeat center right 12px #1e551e;
  background-size: 14px auto;
}
.score-report .tab-content .link-button a.disable {
  background-color: #d0d0d0;
  pointer-events: none;
}
.score-report .tab-content .link-button .row {
  display: flex;
  flex-wrap: wrap;
}
.score-report .tab-content .link-button .row a {
  width: calc((100% - 8px) / 2);
  margin-right: 8px;
  padding: 0 16px 0 0;
  background-position: right 8px center;
  padding-right: 16px;
}
.score-report .tab-content .link-button .row a:nth-of-type(2n) {
  margin-right: 0;
}
.score-report .tab__item {
  display: block;
  visibility: hidden;
  position: absolute;
}
.score-report .tab__item--active {
  visibility: visible;
  position: relative;
  background: rgba(30, 85, 30, 0.9);
}/*# sourceMappingURL=score-report.css.map */