@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    "MS Mincho",
    serif;
}

.tac {
  text-align: center;
}

#wrapper {
  margin: auto;
  background-color: #fff;
  padding: 12px;
  box-shadow: 0 4px 20px rgb(203 209 210);
}

@media screen and (min-width:768px) {
  #wrapper {
    margin: auto;
    background-color: #fff;
    padding: 17px;
    box-shadow: 0 4px 20px rgb(203 209 210);
  }
}

@media only screen and (max-width: 766px) {
  #wrapper {
    margin: 0;
  }

  p {
    font-size: 16px !important;
    line-height: 1.5;
    padding: 10px;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/* Font Awesome を使う要素だけ指定 */
.fa,
.fa-solid,
.fa-magnifying-glass,
.searchBtn_box i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  background-color: #edfdff;
  /* box-shadow:0px 5px 22px 0px rgb(0 0 0 / 25%); */
  position: relative;
  /* padding: 0 1.5%; */
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width:700px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

h1,
h2,
h3,
h4 {
  margin: 0 auto;
}

h2 {
  margin: 15% 0 2% 0;
}

h4 {
  position: relative;
  text-align: center;
  color: #165e6b;
  font-size: 22px;
  font-weight: bold;
  background: #eef9fb;
  padding: 14px 20px;
  margin: 40px auto 30px;
  width: 92%;
  line-height: 1.5;

  border-top: 2px solid #3d9dae;
  border-bottom: 2px solid #3d9dae;
  margin-bottom: 30px;
}

/* 下の折れ線 */
h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%) rotate(45deg);

  width: 22px;
  height: 22px;
  background: #eef9fb;

  border-right: 2px solid #3d9dae;
  border-bottom: 2px solid #3d9dae;
}

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

  h4 {
    font-size: 18px;
    padding: 12px 10px;
    width: 94%;
    line-height: 1.4;
    margin-bottom: 13px;
  }

  h4::after {
    width: 18px;
    height: 18px;
    bottom: -11px;
  }

}

h3 {
  position: relative;
  display: inline-block;
  padding: 0.8rem 2.1rem 0.8rem 1rem;
  /* 右側に余白 */
  color: #fff;
  background: linear-gradient(90deg,
      #00253f 0%,
      #004461 85%,
      rgba(0, 68, 97, 0) 100%);
  width: 100%;
  margin-top: 6%;
  margin-bottom: 1%;
  padding-left: 40px;
}

h3:before {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  content: '';
  background: #fff;

  clip-path: polygon(50% 0%,
      65% 35%,
      100% 50%,
      65% 65%,
      50% 100%,
      35% 65%,
      0% 50%,
      35% 35%);
}

.red {
  color: #ff0000;
  font-weight: bold;
}

.blue {
  color: #1a2e98;
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 70%, #ffff89 0);
}

@media screen and (max-width:767px) {
  h2 {
    margin: 15% 0 4% 0;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }
}

/* ---------ロゴスライド--------- */
.loopSlide {
  display: flex;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.loopSlide img {
  width: auto;
  height: 100%;
}

.loopSlide img:first-child {
  animation: slide1 60s -30s linear infinite;
}

.loopSlide img:last-child {
  animation: slide2 60s linear infinite;
}

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

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

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

  100% {
    transform: translateX(-200%);
  }
}

@media screen and (max-width:767px) {
  .loopSlide {
    height: 60px;
    width: 100%;
  }
}

/* ---------ロゴスライドここまで--------- */

.center {
  text-align: center;
  margin: 4% 0 0;
}

/* -----------------目次 ------------------*/
.mokuji {
  border-radius: 3px;
  background-color: #ffffff;
  margin: 6% auto;
  width: 100%;
  max-width: 96%;
  border: solid 1px #111f4c;
  box-sizing: border-box;
}

.mokuji label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 5px 0;
  background-color: #111f4c;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.mokuji label::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  content: '';
}

.mokuji label::after {
  margin-left: 7px;
  font-weight: 500;
  font-size: .7em;
  color: #fff;
  content: "[開く]";
  cursor: pointer;
}

.mokuji:has(:checked) label::after {
  content: "[閉じる]";
}

.mokuji input {
  display: none;
}

.mokuji ol {
  list-style-type: decimal;
  margin: 0;
  overflow: hidden;
}

.mokuji>ol {
  height: 0;
}

.mokuji:has(:checked)>ol {
  height: auto;
  padding: 1em 1em 1em 3em;
}

.mokuji ol ol {
  margin-top: 5px;
  padding-left: 1.1em;
}

.mokuji li {
  padding: 5px 0;
  font-weight: 600;
}

.mokuji ol ol li {
  font-weight: 500;
  font-size: .9em;
}

.mokuji a {
  color: #333;
}

@media screen and (max-width:767px) {
  .mokuji {
    margin-top: 3%;
    margin-bottom: 1%;
    width: 100%;
    max-width: 96%;
    line-height: 1.3;
  }

  .mokuji:has(:checked)>ol {
    padding: 1em 1em 1em 2em;
  }
}

/* -----------------目次ここまで ------------------*/

/* -----------------専門家コメント ------------------*/
.chat-container_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
  padding: 3% 0;
  margin-bottom: 5%;
}

.mabottom0 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.matop0 {
  margin-top: 0;
  padding-top: 0;
}

.chat-container {
  width: 97%;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
}

.chat_img {
  width: 20%;
  margin-right: 2%;
}

.chat-bubble {
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 15px;
  position: relative;
  max-width: 80%;
  word-wrap: break-word;
  width: 69%;
}

.left {
  background-color: rgb(232 236 237);
  align-self: flex-start;
  margin-left: 10px;
}

.chat_midashi {
  font-size: 20px;
  font-weight: 700;
  color: #102161;
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble.left::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -11px;
  height: 0;
  border: 21px solid transparent;
  border-right-color: rgb(232 236 237);
  border-left: 0;
  border-bottom: 0;
  margin-top: -4px;
}

/* -----------------専門家コメントここまで ------------------*/

.pickup {
  position: relative;
  background: #283460;
  line-height: 1.4;
  padding: 0.9em 0.5em;
  margin: 1em auto 0;
  font-weight: 700;
  margin-top: 9%;
  color: #fff;
  text-align: center;
  width: 94%;
}

.n-pickup {
  position: relative;
  background: #ffffff;
  line-height: 1.4;
  padding: 0.9em 0.5em;
  margin: 1em auto 0;
  font-weight: 700;
  margin-top: 9%;
  color: #fff;
  text-align: center;
  width: 96%;
}

.pickup::after {
  position: absolute;
  font-weight: 900;
  content: '\2605\ pickup';
  background: #fffcbe;
  color: #ed5d0c;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 5px 13px 7px;
  font-size: 1.4em;
  line-height: 1;
  letter-spacing: 0.05em;
}

.pickup_name {
  font-size: 25px;
}

.width {
  width: 97%;
  margin: 1% auto 4%;
}

.star_wrap {
  font-weight: 700;
  font-size: 20px;
}

.star {
  color: #ff9900;
}

/* -----------------ミニ比較表 ------------------*/
.minitable_wrap table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 98%;
  border: 2px solid #bd9643;
}

.minitable_wrap table th {
  border-right: solid 1px #fff;
  padding: 0.2em 10px 0.2em 1em;
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.minitable_wrap table td {
  padding: 0.6em 10px 0.6em 1em;
  border: 1px solid #b3b3b3;
  text-align: center;
  line-height: 1.2;
}

.minitable_wrap table thead tr {
  background-color: #bd9643;
}

.official_cta {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 70%;
  left: 100px;
  margin: 4% auto 3%;
}

.official_cta::after {
  animation: 2s 0s shine linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .4) 100%);
  content: '';
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
}

@keyframes shine {
  20% {
    left: 30%;
  }

  50% {
    left: 120%;
  }

  100% {
    left: 150%;
  }
}

/* -----------------ミニ比較表ここまで ------------------*/

/* 点滅 */
.blink {
  margin-bottom: 3px;
}

.blinking {
  -webkit-animation: blink 0.6s ease-in-out infinite alternate;
  -moz-animation: blink 0.6s ease-in-out infinite alternate;
  animation: blink 0.6s ease-in-out infinite alternate;
  color: #ff0000;
  font-size: 20px;
  font-weight: bold;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



.osusume {
  border: dotted 3px #7db4e6;
}

.osusume ul {
  list-style-type: none;
}

.osusume li {
  position: relative;
  font-weight: 700;
}

.osusume li::after {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: -1.5em;
  width: 10px;
  height: 5px;
  border-left: 2px solid #f15b5b;
  border-bottom: 2px solid #f15b5b;
  transform: rotate(-45deg);
}

video {
  width: 100%;
}

footer {
  background-color: #002331;
  padding: 5% 0;
  text-align: center;
  margin-top: 3%;
}

.floating_inner {
  position: fixed;
  bottom: 10px;
  z-index: 100;
  max-width: 300px;
  right: 250px;
}

footer a {
  color: #fff;
}

@media (min-width:768px) and (max-width:1600px) {
  .floating_inner {
    right: 3%;
  }
}

@media screen and (max-width:767px) {
  p.center.rinsyo {
    margin: 7% 0 0;
  }

  h4 {
    width: 88%;
    margin-top: 6%;
  }

  .pickup {
    padding: 0.7em 0.5em;
    width: 94%;
    margin: 11% auto 0;
    box-shadow: 0 1px 7px rgba(0, 0, 0, .3);
  }

  .chat_img {
    width: 22%;
  }

  .pickup::after {
    font-size: 1em;
  }

  .pickup_name {
    font-size: 20px;
  }

  .minitable_wrap table th {
    font-size: 14px;
  }

  .minitable_wrap table td {
    padding: 0.5em 10px 0.5em 1em;
    font-size: 14px;
  }

  .official_cta {
    margin: 4% 0 3%;
    width: 100%;
    left: 0;
  }

  .floating_inner {
    right: 0;
    width: 50%;
  }

  footer {
    margin-top: 0;
  }

  .blinking {
    font-size: 15px;
  }

  .flex {
    flex-direction: column;
  }

  img.rank-star {
    padding: 2%;
    width: 96%;
    margin-top: 2%;
  }

  html body div .minitable_wrap {
    width: 100%;
  }

  body .flex div {
    width: 100%;
  }

  div .review_header figure {
    width: 18%;
    margin: 0;
  }

  html body .slick-dotted.slick-slider {
    margin-bottom: 50px;
  }
}

.ctacomment {
  margin: 0 auto 0 !important;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3% 0 3%;
}

.rank-star {
  padding: 0% 2% 1%;
  width: 75%;
  margin: auto;
}

body div .minitable_wrap {
  width: 61%;
}

.flex div {
  width: 37%;
}

.small {
  font-size: 11px;
}

.review_header figure {
  width: 10%;
  margin: 0;
}

.review_header {
  display: flex;
  align-items: center;
  padding: 4px 10px 4px;
  line-height: 0.7;
  border-bottom: 1px solid #d9d9d9;
  width: 92%;
  margin: auto;
}

.profile ul {
  display: flex;
  font-size: 17px;
  padding-inline-start: 20px;
}

.commentArea_s {
  font-size: 0.90rem;
  padding: 5px 10px;
}

.box {
  border: 1px solid #f87b07;
  border-radius: 10px;
  background-color: #fff;
  width: 97%;
  margin: auto;
}

li {
  list-style: none;
  font-weight: bolder;
  margin-top: 5px;
}

.comment {
  width: 97%;
  margin: 2% auto 5%;
}

.acc_content_wrapper {
  margin: 1% 0 2%;
  padding: 3px;
  position: relative;
  margin-bottom: 45px;
}

.graph {
  margin: 2% 0 4%;
  width: 100%;
}

.price_table {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto 0;
  border-right: #fff solid 2px;
  border-left: #fff solid 2px;
}

.price_table th {
  width: 30%;
  background-color: #EAF8FF;
  position: static;
  padding: 6px 7px;
}

.price_table th,
.price_table td {
  font-size: 12px;
  border: 1px solid #c3c3c3;
  font-weight: normal;
  vertical-align: middle;
}

.price_table td {
  background-color: #fff;
  text-align: left;
  padding: 5px 10px;
}

body .slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.rank {
  background: #fff;
  padding: 0 4% 3%;
  margin: 0 1% 18%;
  box-shadow: 0 1px 7px rgba(0, 0, 0, .3);
  position: relative;
}

.show_more span {
  background: #c3e7f8;
  padding: 5px 10px;
  border-radius: 5px;
  color: #283460;
}

.show_more {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 15px;
  padding-top: 60px;
  text-align: center;
  line-height: 30px;
  background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, #ffffff 90%);
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

.acc_content.hidden {
  overflow: hidden;
  margin-bottom: 4%;
}

label {
  line-height: 1.2;
}



.price {
  position: relative;
}

.p-cta {
  position: absolute;
  bottom: 10%;
  width: 90%;
  margin: auto;
  right: 0;
  left: 0;
}

/*離脱ポップ*/
html.popup-open,
body.popup-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

#exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
}

.exit-popup-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  width: 400px;
}

#exit-popup-image {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

@media (max-width:768px) {
  .exit-popup-content {
    width: 90%;
  }

  #close-popup {
    position: absolute;
    top: -14%;
    right: 0%;
    background: none;
    border: none;
    font-size: 38px;
    cursor: pointer;
    color: #ffffff;
    z-index: 2;
  }
}

@media (min-width:769px) {
  #close-popup {
    position: absolute;
    top: -17%;
    right: 0%;
    background: none;
    border: none;
    font-size: 38px;
    cursor: pointer;
    color: #ffffff;
    z-index: 2;
  }
}

.profile li {
  line-height: 1.2;
}

/*装飾指示*/
.line {
  text-decoration: underline;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs14 {
  font-size: 14px;
}

.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 20px;
}

.gray {
  color: #898989;
}

.bl {
  color: #356eb8;
}

.kuro {
  color: #000000;
}

.kiiro {
  color: #ff9900;
}

.pink {
  color: #eb59a4;
}

.red {
  color: #c30000;
}

.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.marker {
  background: linear-gradient(to bottom, transparent 0%, transparent 65%, #fff59c 40%, #fff492 100%);
}

/*装飾指示ここまで*/

.rankTable tr:nth-of-type(2) td,
.rankTable tr:nth-of-type(3) td {
  background-color: #fffbe8;
}

.column_box {
  padding: 10px;
}

.slider a {
  display: block;
}

.pagination-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
}

@media screen and (max-width:699px) {
  .pagination-3 {
    flex-wrap: wrap;
    width: 70%;
    margin: 0 auto 5%;
  }
}

.pagination-3 a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-bottom: 2px solid #f2f2f2;
  color: #333;
  text-decoration: none;
}

.pagination-3 .current a {
  border-bottom: 2px solid #2589d0;
  pointer-events: none;
}

/* 診断コンテンツ */
.q_wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 600%;
}

.mattress2,
.model3R {
  width: 16.5%;
}

p.q_ttl {
  font-size: 20px;
  font-weight: bold;
  color: #30416b;
  margin: 0 0 0;
}

.mattress2,
.model3R {
  display: none;
}

.q_cta {
  background-color: #f87b07;
  display: block;
  color: #fff;
  font-weight: normal;
  padding: 3% 0;
  border-radius: 10px;
  box-shadow: #b53900 0px 0.5em;
  text-align: center;
  text-decoration: none;
  margin-top: 16px;
}

a.q_cta2 {
  text-decoration: none;
  display: block;
  width: 60%;
  margin: auto;
}

p.q_sub.q_result2 {
  text-align: center;
  line-height: 1.6;
}

p.q_result {
  font-size: 25px;
  font-weight: bold;
  color: #30416b;
  margin: 0 0 2%;
  text-align: center;
}

img.q_img_last {
  width: 70%;
  margin: 0 auto 3%;
}

p.q_sub {
  margin: 0;
}

p.q_ttl.q_main {
  width: 17%;
  margin: 0;
}

.q_top {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.q_container {
  overflow: hidden;
  width: 92%;
  position: relative;
  background: #d3e5f2;
  padding: 5% 4%;
  background-image: linear-gradient(30deg, rgb(255 254 241), rgb(210 226 255));
}

.q_next {
  background: #435378;
  text-decoration: none;
  font-size: 17px;
  padding: 1vw 1%;
  border-radius: 50px;
  color: #ffffff;
  width: 15.7%;
  text-align: center;
  max-width: 570px;
}

img.q_img {
  width: 16.6%;
}

.q_btn.off {
  width: 14.5%;
  background: #fff5d9;
  text-decoration: none;
  font-size: 17px;
  padding: 1.5vw 1%;
  border-radius: 50px;
  color: #30416b;
  line-height: 1.3;
  font-weight: bold;
  border: 2px solid #30416C;
  text-align: center;
  max-width: 560px;
}

.q_result2 {
  text-align: center;
}

@media screen and (max-width:699px) {
  .q_cta {
    padding: 6% 0;
    margin-bottom: 30px;
  }

  p.q_result {
    font-size: 28px;
    font-weight: bold;
    color: #30416b;
    margin: 0 0 4%;
    text-align: center;
    line-height: 1.3;
  }

  .q_img {
    width: 90vw;
  }

  a.q_btn.off {
    background: #fff;
    text-decoration: none;
    font-size: 17px;
    padding: 2vw 4vw;
    border-radius: 50px;
    color: #000;
    justify-content: space-between;
    flex-direction: row;
  }

  p.q_ttl {
    width: 330px;
    margin: 0;
  }

  .q_btn.off {
    width: 14%;
    background: #fff5d9;
    text-decoration: none;
    font-size: 17px;
    padding: 2vw 7vw;
    border-radius: 50px;
    color: #30416b;
    line-height: 1.3;
    font-weight: bold;
    border: 2px solid #30416C;
  }

  .q_next {
    text-decoration: none;
    font-size: 17px;
    padding: 4vw 2vw;
    border-radius: 50px;
    width: 15%;
    text-align: center;
  }

  p.q_sub {
    margin: 0;
    width: 17%;
  }

  .q_img {
    width: 335px;
  }

  section.question {
    margin-top: 4%;
  }
}

/* 採点の基準 */
.scoringTable {
  margin: 1% auto 2%;
  color: #333;
}

.scoringTable table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.scoringTable th,
.scoringTable td {
  padding: 10px;
}

.scoringTable th {
  background: #EAF8FF;
  width: 20%;
  white-space: nowrap;
  font-size: 0.9em;
}

.scoringTable td {
  width: 28%;
  font-size: 0.9em;
}

.scoringTable .cross {
  font-size: 1.5em;
  line-height: 0;
}

@media screen and (max-width:767px) {
  .scoringTable th {
    width: 14%;
    white-space: inherit;
    font-size: 0.8em;
  }

  .scoringTable td {
    font-size: 0.8em;
  }

  .scoringTable th,
  .scoringTable td {
    padding: 4px;
  }

  .scoringTable .supple {
    font-size: 0.8em;
    margin-left: -5px;
  }
}

.y_star {
  display: inline-flex;
  line-height: 1;
}

.y_star span {
  position: relative;
  display: inline-block;
  color: #ff9900;
  line-height: 1;
}

.y_star span.half {
  color: transparent;
}

.y_star span.half::before,
.y_star span.half::after {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.y_star span.half::before {
  color: #ff9900;
  width: 50%;
  overflow: hidden;
}

.y_star span.half::after {
  color: transparent;
  -webkit-text-stroke: 1px #ff9900;
}

.half {
  font-size: 9px;
  margin-top: 1.6px;
}

.bgBlue {
  background-color: #ebf1f8;
}

.bd-solid-left-bold {
  border-left: 5px solid;
  color: #102161;
}

#exitPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* --- ポップアップ --- */
.popup-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- 閉じるボタン --- */
#closePopup {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* --- 画像 --- */
.popup-img,
.popup-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 8%;
}

/* --- カウントダウン文字 --- */
#countdownText {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  width: 100%;
  position: absolute;
  bottom: 63px;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 2;
}

/* --- SP版調整 --- */
@media (max-width:600px) {
  .popup-content {
    width: 70%;
    padding: 12px;
  }

  #countdownText {
    font-size: 17px;
    top: 274px;
    white-space: pre-line;
  }
}

.qn_img {
  position: absolute;
  bottom: 10%;
  width: 90%;
  margin: auto;
  right: 0;
  left: 0;
}

th:first-child,
td:first-child {
  border-left: none !important;
}

/* ピックアップ行 */
tr.pickup__line td {
  border-top: 3px solid #bd9643;
  border-bottom: 3px solid #bd9643;
}

tr.pickup__line td:first-child {
  box-shadow: inset 3px 0 0 #bd9643;
}

tr.pickup__line td:last-child {
  box-shadow: inset -3px 0 0 #bd9643;
}

tr.pickup__line td.bgblue {
  position: relative;
  padding: 0px;
}

tr.pickup__line td.bgblue::before {
  content: "★ pickup";
  position: sticky;
  top: 0px;
  display: inline-block;
  background: #bd9643;
  color: #fff;
  border: 3px solid #bd9643;
  border-top: none;
  padding: 5px 4px 4px 3px;
  border-radius: 0 0 5px 5px;
  font-size: 12px;
  line-height: 1;
  z-index: 3;
}

/* =========================
   ポイント アコーディオン
========================= */
.point_accordion {
  width: 100%;
  max-width: 100%;
  margin: 12px auto;
  position: relative;
  box-sizing: border-box;
}

.acc_trigger {
  display: none;
}

.acc_header {
  position: relative;
  width: 100%;
  margin-top: 5%;
}

.acc_header>img {
  width: 100%;
  display: block;
}

/* ボタンエリア */
.btn_area {
  position: absolute;
  bottom: 63px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  cursor: pointer;
  display: block;
  z-index: 5;
  line-height: 0;
  font-size: 0;
}

/* 2枚を完全に重ねる */
.btn_area .btn_open,
.btn_area .btn_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .25s ease, transform .25s ease;
}

/* 初期状態 */
.btn_area .btn_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn_area .btn_close {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 開いた時に切り替え */
.acc_trigger:checked+.acc_header .btn_area .btn_open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.acc_trigger:checked+.acc_header .btn_area .btn_close {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ホバー */
.btn_area:hover .btn_open,
.btn_area:hover .btn_close {
  transform: scale(1.05);
}

.acc_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  box-sizing: border-box;
}

.acc_trigger:checked~.acc_content {
  max-height: 2400px;
  border: 3px solid #00253f;
  background: #f5f5f5;
  padding: 16px;
  padding-bottom: 22px;
  box-sizing: border-box;
}



.point_text {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
}

.acc_content img {
  width: 100%;
  display: block;
}

@media (max-width:600px) {
  .btn_area {
    bottom: 37px;
    width: 146px;
  }
}

/* =========================
   雲のやすらぎプレミアムマットレスII
   FV・総合評価・概要をPC/SPとも縦並び
========================= */

.item_bg {
  background-color: #c9dfe3;
}

.kumo2-section {
  position: relative;
}

/* pickup見出し */
.n-pickup.n-pickup-kumo2 {
  position: relative;
  width: calc(100% - 24px);
  margin: 28px auto 0;
  padding: 26px 18px 18px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 32px 32px 0 0;
  text-align: center;
  color: #fff;
  z-index: 3;
}

/* pickup画像 */
.n-pickup-kumo2 .pickup_badge {
  position: absolute;
  top: -22px;
  left: 10px;
  width: 150px;
  max-width: 42%;
  height: auto;
  display: block;
  z-index: 4;
}

/* 商品名 */
.n-pickup-kumo2 .pickup_name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #fff;
}

/* 本体カード */
.rank.rank-kumo {
  margin: 0 12px 34px;
  padding: 18px 12px 28px;
  background: #fff;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 14px 28px rgba(76, 157, 169, 0.18);
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* 上部レイアウト：常に縦並び */
.kumo-topwrap {
  display: block;
  margin-bottom: 24px;
}

/* FV */
.kumo-mainimg {
  width: 100%;
  margin: 0 0 14px;
  flex-shrink: 0;
}

.kumo-mainimg img {
  width: 100%;
  height: auto;
  display: block;

}

/* 総合評価＋概要 */
.kumo-infoCol {
  width: 100%;
  display: block;
}

/* 総合評価 */
.kumo-scoreimg {
  width: 92%;
  margin: 0 auto 12px;
}

.kumo-scoreimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* 概要画像 */
.kumo-summaryimg {
  width: 100%;
  margin: 0;
}

.kumo-summaryimg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* CTA */
.kumo-cta {
  display: block;
  width: 78%;
  max-width: 420px;
  margin: -10px auto 26px;
  left: 0;
}

.kumo-cta img {
  width: 100%;
  height: auto;
  display: block;
}

/* 本文 */
.rank-kumo h4 {
  width: 100%;
  box-sizing: border-box;
  margin: 32px 0 14px;
}

.rank-kumo p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.85;
  color: #222;
}

.rank-kumo>img {
  width: 100%;
  height: auto;
  display: block;
  margin: 10px auto 18px;
}

/* グラフ */
.kumo-graphimg {
  width: 100%;
  margin: 10px auto 24px;
}

.kumo-graphimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* 詳細画像中央 */
.kumo-detailimg {
  width: 100%;
  max-width: 620px;
  margin: 18px auto 24px;
  text-align: center;
}

.kumo-detailimg img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================
   PC
========================= */
@media screen and (min-width:768px) {
  .item_bg {
    padding: 90px 0 29px;
    margin-top: -90px;
  }

  .n-pickup.n-pickup-kumo2 {
    width: calc(100% - 36px);
    margin: 34px auto 0;
    padding: 30px 24px 22px;
    border-radius: 36px 36px 0 0;
  }

  .n-pickup-kumo2 .pickup_badge {
    top: -46px;
    left: 6px;
    width: 190px;
    max-width: none;
  }

  .n-pickup-kumo2 .pickup_name {
    font-size: 26px;
    line-height: 1.35;
  }

  .rank.rank-kumo {
    margin: 0 18px 40px;
    padding: 26px 22px 34px;
    border-radius: 0 0 40px 40px;
  }

  /* PCでも縦並び */
  .kumo-topwrap {
    display: block;
    margin-bottom: 28px;
  }

  .kumo-mainimg {
    width: 100%;
    margin: 0 0 18px;
  }

  .kumo-infoCol {
    width: 100%;
    display: block;
  }

  .kumo-scoreimg {
    width: 75%;
    margin: 0 auto 14px;
  }

  .kumo-summaryimg {
    width: 100%;
    margin: 0;
  }

  .rank-kumo p {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 12px;
  }

  .kumo-detailimg {
    max-width: 450px;
    margin: 20px auto 28px;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width:767px) {
  .item_bg {
    padding: 54px 0 3px;
    margin-top: -57px;
  }

  .n-pickup.n-pickup-kumo2 {
    width: calc(100% - 24px);
    margin: 24px auto 0;
    padding: 22px 12px 16px;
    border-radius: 20px 20px 0 0;
  }

  .n-pickup-kumo2 .pickup_badge {
    top: -25px;
    left: 8px;
    width: 112px;
    max-width: none;
  }

  .n-pickup-kumo2 .pickup_name {
    font-size: 18px;
    line-height: 1.45;
  }

  .rank.rank-kumo {
    margin: 0 12px 30px;
    padding: 16px 12px 24px;
    border-radius: 0 0 20px 20px;
  }

  .kumo-topwrap {
    display: block;
    margin-bottom: 18px;
  }

  .kumo-mainimg {
    width: 100%;
    margin: 0 0 14px;
  }

  .kumo-infoCol {
    width: 100%;
    display: block;
  }

  .kumo-scoreimg {
    width: 92%;
    margin: 0 auto 12px;
  }

  .kumo-summaryimg {
    width: 100%;
    margin: 0;
  }

  .kumo-cta {
    width: 100%;
    margin: 0 auto 22px;
  }

  .rank-kumo p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .kumo-graphimg {
    margin-bottom: 20px;
  }

  .kumo-detailimg {
    width: 100%;
    max-width: 100%;
    margin: 16px auto 20px;


  }
}

/* ベース */
.kumo3r-section {
  position: relative;
}

.rank-kumo3r {
  background: #fff;
}

/* 上部レイアウト共通 */
.kumo3r-topwrap {
  align-items: flex-start;
  justify-content: space-between;
}

.kumo3r-mainimg img,
.kumo3r-scoreimg img,
.kumo3r-summaryimg img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   PC
========================= */
@media screen and (min-width:768px) {

  .kumo3r-topwrap {
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
  }

  /* 左にFV */
  .kumo3r-mainimg {
    width: 100%;
    flex-shrink: 0;
    margin: 0 auto;
  }

  /* 右に「総合評価＋概要」を縦並び */
  .kumo3r-infoCol {
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    margin: 0 auto;
    padding-top: 0;
  }

  .kumo3r-scoreimg {
    width: 100%;
    margin: 0;
  }

  .kumo3r-summaryimg {
    width: 100%;
    margin: 0;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width:767px) {

  .kumo3r-topwrap {
    display: block;
    margin-bottom: 18px;
  }

  .kumo3r-mainimg {
    width: 100%;
    margin: 0 0 14px;
  }

  .kumo3r-infoCol {
    width: 100%;
    display: block;
    margin: 0;
    padding-top: 0;
  }

  .kumo3r-scoreimg {
    width: 92%;
    margin: 0 auto 12px;
  }

  .kumo3r-summaryimg {
    width: 100%;
    margin: 0;
  }
}

/* osusume_cta */

.osusume_wrap {
  position: relative;
}

.osusume_wrap img {
  width: 100%;
  display: block;
}

/* CTA共通 */
.osusume_cta {
  position: absolute;
  bottom: 52px;
  width: 177px;
  transform: translateX(-50%);
}

/* 3つ横並び位置 */
.cta1 {
  left: 18%;
}

.cta2 {
  left: 50%;
}

.cta3 {
  left: 82%;
}

.osusume_cta img {
  width: 100%;
}

/* SP調整 */
@media screen and (max-width:767px) {

  .osusume_cta {
    bottom: 25px;
    width: 100px;
  }

  .cta1 {
    left: 18%;
  }

  .cta2 {
    left: 50%;
  }

  .cta3 {
    left: 82%;
  }

}


/* ハンバーガーメニュー */
.hea {
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  background-color: #002331;
  min-height: 45px;
  position: relative;
  /* fixedを解除 */
  top: auto;
  z-index: 10;
  box-sizing: border-box;
}

/* 中身幅を本文に合わせる */
.menu-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 12px;
  min-height: 45px;
  box-sizing: border-box;
}

.hamburger {
  width: 30px;
  cursor: pointer;
  z-index: 300;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 開閉メニュー */
.menu {
  display: none;
  width: 100%;
  background-color: #eee;
  padding: 20px 12px 40px;
  font-size: 13px;
  box-sizing: border-box;
}

.menu.open {
  display: block;
}

.form-content {
  margin: 0;
}

/* SP */
@media (max-width: 699px) {
  .hea {
    max-width: 100%;
  }

  .menu-container {
    padding: 8px 10px;
  }

  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(3) {
    background-color: #fff;
  }
}

.point_ttl {
  margin-top: -25px;
  margin-bottom: 0px;
}




/* =========================
   PC
========================= */
@media screen and (min-width: 768px) {
  .review_slider_area {
    min-height: 680px;
    padding: 40px 30px 30px;
    /* 左右余白を少し確保 */
  }

  .review_bg {
    width: 100%;
    max-width: 100%;
    height: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .review_note {
    bottom: -224px;
  }

  .review_slider {
    padding-top: 202px;
    padding-left: 8px;
    /* 20px → 8px にして画像を少し大きく */
    padding-right: 8px;
    /* 20px → 8px にして画像を少し大きく */
  }

  .review_slide {
    padding: 0 6px;
    /* 端が切れにくく、かつ画像を大きめに */
  }

  .review_slider .slick-list {
    overflow: hidden;
    /* PCは端の見切れ防止 */
  }

  .review_slider .slick-track {
    display: flex;
    align-items: stretch;
  }

  .review_img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {
  .review_slider_area {
    padding: 22px 10px 22px;
    margin: -25px auto -58px;

  }

  .review_bg {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
  }

  .review_slider {
    padding-top: 28px;
  }

  .review_slide {
    padding: 26% 9px;
  }

  .review_note {
    font-size: 12px !important;
    bottom: -126px;
  }

  .review_slider .slick-dots {
    bottom: 72px;
  }
}

@media screen and (min-width: 768px) {
  .review_slider_area {
    min-height: 768px;
  }
}

.commentR3 {
  padding-top: 16px;
}

@media screen and (min-width: 768px) {
  .commentR3 {
    padding-top: 24px;
  }
}

.emma-expert {
  padding-top: 60px;
}



@media screen and (max-width: 767px) {
  .emma-expert {
    padding-top: 30px;
  }
}

.hikaku_title {
  margin-top: 0px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.NEKK_expert {
  margin-bottom: -82px;
}

@media screen and (max-width: 767px) {
  .NEKK_expert {
    margin-bottom: -40px;
  }
}

.ema_top {
  margin-top: 0px !important;
}

.consulting {
  padding: 0px;
}

.info {
  max-width: 550px;
  display: block;
  margin: 8% auto 0%;
}

.info-table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  font-family: sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(209, 209, 209);
  border-image: initial;
}

.info-table thead th {
  background-color: rgb(37, 37, 37);
  color: rgb(255, 255, 255);
  font-size: 18px;
  padding: 12px;
  border-bottom: 1px solid rgb(209, 209, 209);
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.info-table th {
  background-color: rgb(92, 92, 92);
  width: 30%;
  color: rgb(255, 255, 255);
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 600px) {

  .info-table th,
  .info-table td {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .info-table th {
    width: 35%;
  }
}

/* ========== 口コミ ========== */
.voice_container {
  background-color: #fff8d8;
  padding: 10px;
  margin-bottom: 22px;
  margin-top: 15%;
}

.voice_container h3 {
  background: linear-gradient(90deg,
      #ff7b00 55%,
      #ffb347 85%,
      rgba(255, 179, 71, 0) 100%);

  color: #fff;
}


.voice_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #45b2cb;
  font-size: 1.5rem;
}

.voice_ttl img {
  width: 40px;
}

.tab_menu,
.tab_menu2,
.tab_menu3 {
  z-index: 2;
  position: relative;
  width: 120px;
  margin: 0 3px 0 0;
  color: #fff;
  background-color: #9c9c9c;
  line-height: 36px;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border: solid 2px #ccc;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  box-sizing: border-box;
}

@media (max-width: 768px) {

  .tab_menu,
  .tab_menu2,
  .tab_menu3 {
    width: 105px;
  }

  .tab_menu:first-of-type,
  .tab_menu2:first-of-type,
  .tab_menu3:first-of-type {
    margin: 0 5px 0 16px;
  }
}

.tab_menu:hover,
.tab_menu2:hover,
.tab_menu3:hover {
  color: #838383;
}

.tab_menu:first-of-type,
.tab_menu2:first-of-type,
.tab_menu3:first-of-type {
  margin: 0 5px 0 10px;
}

input:checked+.tab_menu,
input:checked+.tab_menu2,
input:checked+.tab_menu3 {
  background-color: #333333;
  border-bottom: solid 2px #333333;
  color: #fff;
}

input[name="tab_menu"],
input[name="tab_menu2"],
input[name="tab_menu3"] {
  display: none;
}

.tab_content {
  display: none;
  z-index: 1;
  clear: both;
  background-color: #fff;
  border: solid 2px #ccc;
  border-radius: 8px;
  padding: 8px;
  position: relative;
  top: -2px;
  padding-top: 14px;
}

#tab_a:checked~#tab_a_content,
#tab_b:checked~#tab_b_content,
#tab_c:checked~#tab_c_content,
#tab_d:checked~#tab_d_content,
#tab_e:checked~#tab_e_content,
#tab_f:checked~#tab_f_content,
#tab_g:checked~#tab_g_content,
#tab_h:checked~#tab_h_content,
#tab_i:checked~#tab_i_content {
  display: block;
}

.tab_contents_box {
  margin-top: 6%;
}

.voice {
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
  gap: 6px;
}

.voice img {
  width: 15%;
  height: 12%;
  margin-right: 0%;
  margin-top: 1%;
  margin-left: 2%;
}

/* 吹き出し */
.fukidashi {
  position: relative;
  display: inline-block;
  margin: 7px 0 18px 1px;
  /* 左側にマージンを追加 */
  padding: 13px;
  width: calc(100% - 9px);
  /* 左マージン分を引く */
  color: #222222;
  font-size: 15px;
  line-height: 1.4;
  background: #f7f7f7;
  border: 2px solid #222222;
  border-radius: 12px;
  /* より大きな角丸に */
}

.fukidashi:before,
.fukidashi:after {
  content: "";
  position: absolute;
  top: 20%;
}

.fukidashi:before {
  left: -16px;
  margin-top: -5px;
  border-style: solid;
  border-width: 8px 16px 8px 0;
  /* 三角形をより滑らかに */
  border-color: transparent #222222 transparent transparent;
}

.fukidashi:after {
  left: -12px;
  margin-top: -3px;
  border-style: solid;
  border-width: 6px 13px 6px 0;
  border-color: transparent #f7f7f7 transparent transparent;
}


/* ========== 比較表（.rankTable〜） ========== */
.table-section {
  padding: 0;
}

.rankTable {
  overflow-x: scroll;
  border: 3px solid #3d9dae;
  margin-bottom: 10px;
  margin-top: 14px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.rankTable table {
  width: 880px;
  text-align: center;
  line-height: 1.2;
}

.rankTable th {
  position: sticky;
  width: 20px;
  padding: 4px 0px 4px;
  background-color: #3d9dae;
  color: #fff;
  left: 0;
  border-bottom: 1px solid #d0d0d0;
  /* 少し濃く */
  font-size: 9px;
}

.rankTable td {
  width: auto;
  border-bottom: 1px solid #d6d6d6;
  /* 少し濃く */
  border-top: none;
  padding: 8px 3px 8px;
  font-size: 14px;
  position: relative;
  vertical-align: middle;
  border-right: 1px dotted #ccc;
  background-color: #fff;
  font-weight: bold;
}

.rankTable td:last-child {
  border-right: none;
}

.rankTable tr th+td {
  background-color: #fdffe4;
}

.rankTable table th {
  width: 19.0%;
  font-size: 12px;
}

/* 横線（行境界）を実線＆少し濃く */
.rankTable table tr {
  border-top: 1px solid #bfbfbf;
}

.rankTable table tr:first-child {
  border-top: 1px solid #ffffff;
}

.rankTable tr {
  border-bottom: 1px solid #cfcfcf;
}

.rankTable tr:last-child {
  border-bottom: none;
}

.rankTable tr:last-child td {
  border-bottom: none;
  padding: 14px 1px 17px;
}

.crown {
  width: 30%;
  height: auto;
  margin: 20%;
  margin-left: 30%;
  margin-top: 0%;
  margin-bottom: 2px;
  position: absolute;
  top: 5%;
  right: -28%;
}

.star-rating {
  position: relative;
  display: inline-block;
  font-size: 30px;
  /* 星の大きさ */
  color: #ccc;
  /* 空の星の色（グレー） */
}

.star-rating::before {
  content: "★★★★★";
}

.star-rating-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #ffcc00;
  /* 塗りつぶす星の色（黄色） */
  white-space: nowrap;
  /* ↓ ここで評価を調整（4.7なら 4.7 / 5 = 94%） */
  width: 94%;
}

@media screen and (max-width:768px) {
  .rankTable table {
    width: 710px;
  }

  .rankTable {
    overflow-x: scroll;
  }

  .rankTable th {
    padding: 2px 0px 2px;
    font-size: 7px;
  }

  .rankTable td {
    padding: 8px 1px 8px;
    font-size: 11px;
  }
}

.rankTable table th {
  vertical-align: middle;
  width: 9%;
  z-index: 88;
}

img.table_icon {
  width: 100%;
  margin-top: 2px;
}

.sogood {
  font-size: 33px;
  color: #ff4a1d;
}

.good {
  font-size: 32px;
  color: #ff7b00;
  font-weight: normal;
}

.soso {
  font-size: 32px;
  color: #1bb3ff;
  font-weight: normal;
}

.bad {
  font-size: 35px;
  font-weight: 300;
  color: #747474;
}

a.tbl_a01 {
  color: #5c1200;
  font-weight: bold;
  font: 11px/1.2 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

a.t_btn {
  text-decoration: none;
  color: #fff;
  font: 11px/1.2 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background: #616161;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 0 #303030;
  font-weight: bold;
}

td.pb10 {
  padding: 20px 0 25px;
}

a.t_btn02 {
  text-decoration: none;
  color: #fff;
  font: 11px/1.2 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background: #ff7b00;
  padding: 10px;
  border-radius: 10px;
  margin: 0 7%;
  box-shadow: 0 6px 0 #ad4500;
  display: block;
  font-weight: bold;
}

.star-rating {
  position: relative;
  display: inline-block;
  font-size: 16px;
  /* 表に合わせて少し小さめに調整 */
  color: #ccc;
  letter-spacing: 2px;
  /* 星の間隔を少し広げると見やすい */
}

.star-rating::before {
  content: "★★★★★";
}

.star-rating-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #ff7b00;
  white-space: nowrap;
}

/* ========== 比較表ここまで ========== */

.anno,
p.anno {
  font-size: 12px !important;
  color: #666;
  line-height: 1.6;
  font-weight: normal;
  padding: 0 !important;
  margin: 0.5em 0 1em;
}

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

  .anno,
  p.anno {
    font-size: 11px !important;
    line-height: 1.5;
    padding: 0 !important;
  }
}

.mb0 {
  margin: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.scroll_notice{
  display:block;
  width:100%;
  text-align:center;
  font-size:14px;
  line-height:1.5;
  color:#666;
  margin:10px 0;
  position:relative;
  z-index:10;
}