/* 使わん */

.review-bg-grey {
  background-color: #f2f2f2;
  padding: 20px 27px;
  line-height: 1.5;
  font-size: 15px;
}

.single-reports-main .review-bg-grey img {
  width: 32.9px;
  height: 26.4px;
  display: block;
  margin-bottom: 0;
}



.single-reports-main .shadow-box {
  padding: 0 30px 39px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  margin: 20px 0;
}

.kuchikomi {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.single-reports-main .kuchikomi-img {
  width: 100px;
  height: 100px;
  margin: 0 50px 0 0;
}

.kuchikomi-good {
  margin-bottom: 20px;
}

.kuchikomi-title {
  display: flex;
}

.single-reports-main .kuchikomi-title h4 {
  margin: 0 20px 0 0;
}

.single-reports-main .kuchikomi-title p {
  margin: 0;
  line-height: 20px;
  color: #ff0000;
}

.single-reports-main .kuchikomi-title p .rate-star {
  color: #ff9b45;
  margin-right: 10px;
}
.single-reports-main .kuchikomi-title p .rate-name {
  color:#333333;
}

.kuchikomi-main {
  display: flex;
  margin-top: 20px;
}

.single-reports-main .kuchikomi-text {
  font-size: 15px;
  line-height: 1.87;
  color: #ffffff;
  width: 485px;
  padding: 10px 25px;
  background-color: #808080;
  color: #ffffff;
  border-radius: 15px;
  position: relative;
  margin: 0;
}

.single-reports-main .kuchikomi-good .kuchikomi-text {
  background-color: #ff9b45;
}

.single-reports-main .kuchikomi-bad .kuchikomi-text {
  background-color: #0071bc;
}

.single-reports-main .kuchikomi-text::after {
  position: absolute;
  content: '';
  top: 40px;
  left: -30px;
  border-right: 30px solid #808080;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.single-reports-main .kuchikomi-good .kuchikomi-text::after {
  border-right-color: #ff9b45;
}

.single-reports-main .kuchikomi-bad .kuchikomi-text::after {
  border-right-color:#0071bc;
}



.single-reports-main .general-rank-rate {
  width: 100%;
  margin: 20px 0;
}

.single-reports-main .general-rank-rate th {
  font-size: 17px;
  width: 145px;
  padding: 18px 0;
  background-color: #ff9b45;
  color: #ffffff;
}

.single-reports-main .general-rank-rate td {
  padding: 0 22px;
  font-size: 14px;
  color: #ff0000;
  background-color: #f2f2f2;
}

.single-reports-main .general-rank-rate span {
  margin-right: 20px;
  color: #ff9b45;
}



@media screen and (max-width:769px) {
  .review-bg-grey {
    padding: 5.6vw 7.2vw 8vw;
    font-size: 3.46666vw;
  }

  .single-reports-main .review-bg-grey img {
    width: 8.8vw;
    height: auto;
  }


  .single-reports-main .shadow-box {
    margin: 5.6vw 0;
    padding: 0 4vw 6vw;
  }


  .kuchikomi {
    margin-bottom: 8vw;
  }

  .kuchikomi-good {
    margin-bottom: 8vw;
  }

  .kuchikomi-bad {
    margin-bottom: 8vw;
  }


  .single-reports-main .kuchikomi-img {
    width: 13.6vw;
    height: 100%;
    margin-right: 8vw;
  }

  .single-reports-main .kuchikomi-text {
    width: 54.4vw;
    padding: 3.2vw;
    line-height: 1.2;
    font-size: 3.46666vw;
  }

  .single-reports-main .kuchikomi-text::after {
    border-right-width: 4vw;
    border-top-width: 1.5vw;
    border-bottom-width: 1.5vw;
    left: -4vw;
    top: 6vw;
  }

  .kuchikomi-title {
    display: block;
  }

  .single-reports-main .kuchikomi-title h4 {
     margin: 0 0 2.16vw;
  }

  .single-reports-main .kuchikomi-title p {
    line-height: 1;
  }


  .single-reports-main .general-rank-rate {
    margin: 3.2vw 0;
  }

  .single-reports-main .general-rank-rate th {
    font-size: 3.4666vw;
  }

  .single-reports-main .general-rank-rate td {
    font-size: 3.46666vw;
  }


  .single-reports-main .cta {
    width: 64vw;
    border-radius: 2.72vw;
    margin: 6.64vw auto 0;
  }

  .single-reports-main .cta::after {
    width: 2.4vw;
    height: 3.76vw;
    right: 4.32vw;
  }

  .single-reports-main .cta a {
    font-size: 4.8vw;
  }

}



/* 目次 */

#toc_container {
  display: block!important;
  padding: 25px 0!important;
}

.toc_title {
  cursor: pointer;
  position: relative;
}

.toc_toggle {
  display: none;
}

.toc_title::after {
  display: block;
  content: '';
  width: 17.5px;
  height: 11.1px;
  background-image: url('../img/down-arrow.png');
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 293px;
}

.toc_title.open::after {
  transform: rotate(180deg)translateY(50%);
}

.toc_list {
  display: none;
}

.toc_list.open {
  display: block;
}

.toc_list li {
  padding: 10px 40px!important;
}

#toc_container ul li::before {
  display: none;
}



@media screen and (max-width:769px) {
  #toc_container {
    padding: 5vw 0!important;
  }

  .toc_title {
    font-size: 4vw!important;
  }

  .toc_title::after {
    width: 3.36vw;
    height: 2.16vw;
    right: 34.53333vw;
  }

  .toc_list li {
    font-size: 3.4666vw!important;
    padding: 2vw 6.4vw!important;
  }

}



/* コラム */

.single-reports {
  margin-top: 35.5px;
}

.single-reports-meta {
  font-size: 16px;
  color: #4d4d4d;
}

.single-reports-meta a {
  color: #ff9b45;
}

.single-reports-title h1 {
  font-size: 30px;
  margin-top:  10px;
  line-height: 1.5;
}

.single-reports-date {
  font-size: 13px;
  color: #808080;
  margin-top: 15px;
}

.single-reports-main {
  margin-top: 15px;
}

.single-reports-main p {
  font-size: 17px;
  line-height: 1.76;
  margin-bottom: 20px;
  color: #333333;
}

.single-reports-main a {
  text-decoration: underline;
  color: #000000;
}

.single-reports-main img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.single-reports-main summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

.single-reports-main summary::after {
  display: block;
  content: '';
  width: 17.5px;
  height: 11.1px;
  background-image: url('../img/down-arrow.png');
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17.9px;
}

.single-reports-main details[open] summary::after {
  transform: rotate(180deg)translateY(50%);
}

.single-reports-main summary::-webkit-details-marker {
   display: none; 

}

.single-reports-main ul {
  padding: 25px 33px 25px 63px;
  background-color: #f2f2f2;
  margin-bottom: 20px;
  list-style: none;
}

.single-reports-main ul li {
  font-size: 17px;
  color: #333333;
  line-height: 1.76;
  padding: 7px 0;
  position: relative;
}

.single-reports-main ul li::before {
  content: '・';
  color: #ff9b45;
  font-size: 64px;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.single-reports-main ol {
  list-style: none;
  counter-reset: ol_li;
}

.single-reports-main ol li {
  font-size: 17px;
  color: #333333;
  line-height: 1.76;
  padding: 7px 0;
  color: #333333;
}

.single-reports-main ol li::before {
  margin-right: 20px;
  counter-increment: ol_li;
  content: counter(ol_li);
  color: #ff9b45;
}

.single-reports-main h2 {
  font-size: 23px;
  background: #333333;
  padding: 15px 21.5px;
  border-left: 12px solid #ff9b45;
  color: #ffffff;
  margin: 40px 0 25px;
}

.single-reports-main h3 {
  font-size: 23px;
  font-weight: bold;
  color: #333333;
  padding: 17px 0 17px;
  margin-bottom: 25px;
  position: relative;
  border-bottom: 2px solid #333333;
}

.single-reports-main h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #ff9b45;
  z-index: 10;
}

.single-reports-main h4 {
  font-size: 20px;
  color: #333333;
  margin: 30px 0 16px;
}

.single-reports-main table {
  width: 100%;
  empty-cells:hide;
  margin-bottom: 20px;
}

.single-reports-main table th {
  padding: 18px 10px;
  font-size: 14px;
  color: #333333;
  background-color: #cccccc;
  text-align: center;
}

.single-reports-main table td {
  padding: 18px 10px;
  font-size: 14px;
  color: #333333;
  background-color: #f2f2f2;
}

.sns-share {
  display: flex;
}

.sns-share a {
 display: flex;
 justify-content: center;
 align-items: center;
 flex: 1;
 height: 38.2px;
}

.single-reports-main .sns-share img {
  width: initial;
  height: initial;
  margin-bottom: 0;
}

.sns-share .fb-link {
 background-color: #4874ae;
}

.sns-share .twitter-link {
 background-color: #318dc4;
}

.sns-share .hatebu-link {
 background-color: #04a8d5;
}

.sns-share .line-link {
 background-color: #3aae36;
}

.single-reports-main .cta {
  width: 240px;
  background-color: #ff9b45;
  border-radius: 10.2px;
  margin-top: 25px;
  text-align: center;
  position: relative;
}

.single-reports-main .cta::after {
  content: '';
  display: block;
  width: 8.9px;
  height: 14px;
  background-image: url('../img/arrow-white.png');
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16.2px;
}

.single-reports-main .cta a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  line-height: 2.5;
}

.single-reports-main blockquote {
  padding: 55px 35px 10px;
  background-color: #f2f2f2;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  position: relative;
  margin: 20px 0;
}

.single-reports-main blockquote::before {
  width: 32.9px;
  height: 26.4px;
  content: '';
  color: #333333;
  position: absolute;
  top: 21px;
  left: 27px;
  background-image: url('../img/quotation.png');
  background-size: cover;
}

.rank-name, .comment {
  font-size: 17px;
  line-height: 1.76;
  margin-bottom: 20px;
  color: #333333;
}

.single-reports-main .rank-rate tr:nth-child(1) th{
  background-color: #ff9b45;
  color: #ffffff;
}

.single-reports-main .rank-rate tr:nth-child(1) td{
  color: #ff0000;
}

.single-reports-main .rank-rate td {
  text-align: center;
}

.single-reports-author {
  margin-top: 32px;
}

.single-reports-author .reports-author {
  padding-bottom: 0;
  border-bottom: none;
}


@media screen and (max-width:769px) {

  .single-reports {
    padding: 0 6.133333vw;
  }

  .single-reports-meta {
    margin-top: 6.4vw;
    font-size: 3.73333vw;
  }

  .single-reports-title h1 {
    font-size: 5.86666vw;
  }
  
  .single-reports-date {
    font-size: 2.93333vw;
    margin-top: 2.08vw;
  }

  .single-reports-main {
    margin-top: 3.68vw;
  }

  .single-reports-main p {
    font-size: 4vw;
    margin-bottom: 4.8vw;
  }

  .single-reports-main ul {
    padding: 5vw 5vw 5vw 12vw;
  }

  .single-reports-main ul li {
    font-size: 4vw;
    padding: 2vw 0;
  }

  .single-reports-main ul li::before {
    font-size: 10vw;
    left: -10vw;
  }

  .single-reports-main h2 {
    font-size: 4.8vw;
    line-height: 1.33;
    padding: 3.2vw 5.6vw 3.2vw 3.2vw;
    border-left-width: 2.56vw;
  }

  .single-reports-main h3 {
    font-size: 4.8vw;
    padding: 4vw 0;
    margin-bottom: 6.4vw;
  }

  .single-reports-main h4 {
    font-size: 4.8vw;
    margin: 8vw 0;
  }

  .single-reports-main ol li::before {
    margin-right: 2.4vw;
  }

  .single-reports-main table {
    margin-bottom: 5.6vw;
  }

  .single-reports-main table th {
    font-size: 2.4vw;
    padding: 3.2vw 1.6vw;
  }

  .single-reports-main table td {
    font-size: 2.4vw;
    padding: 3.2vw 1.6vw;
  }

  .sns-share a {
    height: 9.68vw;
  }

  .sns-share a img {
    height: 6.88vw;
    width: auto;
  }

  .rank-name, .comment {
    font-size: 4vw;
    margin-bottom: 4.8vw;
  }

  .single-reports-main blockquote {
    padding: 10.8vw 4vw 1.04vw;
    margin: 4vw 0;
  }
  
  .single-reports-main blockquote::before {
    width: 5.233vw;
    height: 4.21333vw;
    top: 3.36vw;
    left: 4.56vw;
  }

  .single-reports-author {
    margin-top: 7.2vw;
  }

  .single-reports-author .posts-title {
    border-bottom: none;
    padding: 0;
  }

  .single-reports-author .reports-author {
    padding: 0;
  }
  
  
}

