@charset "utf-8";

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

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

/* 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:#fff;
  /* 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; }
.dp_n{ display:none; }

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

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

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

h3{
  background:#283460;
  color:#fff;
  padding:2%;
  display:inline-block;
  margin-bottom:0%;
  width:96%;
  font-size:22px;
}

h4{
  position: relative;
  display: inline-block;
  padding: 0.8rem 2.1rem 0.8rem 1rem; /* 右側に余白 */
  color: #fff;
  border-radius: 0 100vh 100vh 0;
  background: linear-gradient(90deg,#2b2a70 0%,#1628a1 100%);
  width:95%;
}

h4:before{
  position:absolute;
  top:50%;
  right:30px; /* ←右に変更 */
  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%
  );
}

.txC{
  text-align:center;
  display:block;
  margin-top:4%;
}

.red{
  color:#ff0000;
}

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

.mt2{
  margin-top:2%;
}

@media screen and (max-width:767px){
  h2{
    margin:7% 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;
}
/* -----------------専門家コメントここまで ------------------*/

/* -----------------比較表10選 ------------------*/
@media screen and (min-width:640px){
  .chat-container_wrap.mabottom0.mabottom0-2{
    margin-bottom:3%;
  }
  .sp{
    display:none;
  }
}

@media screen and (max-width:640px){
  .sp{
    display:block;
  }
}

.tac{
  text-align:center;
}

.mt{
  margin-top:30px;
}

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

.rankTable{
  margin-bottom:40px;
  padding:40px 12px;
}

.table_inner{
  border:3px solid #273460;
  overflow:hidden;
  overflow-x:scroll;
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    "MS Mincho",
    serif;
}

.rankTable,
.rankTable table,
.rankTable th,
.rankTable td,
.rankTable a,
.table_cta{
  font-weight: 700;
}

.rankTable th{
  width:40px;
  padding:5px 0px 5px;
  background-color:#273460;
  color:#fff;
  left:0;
  border-bottom:1px dotted #fff;
  font-size:9px;
}

.rankTable .table_cta{
  background-color:#f87b07;
  width:100%;
  display:block;
  color:#fff;
  font-weight:700;
  padding:10% 0;
  border-radius:10px;
  box-shadow:#b53900 0px 0.5em;
}

.table_cta a{
  text-decoration:none;
}

.stycky{
  position:sticky;
  left:0;
  z-index:50;
}

.rankTable .bgblue{
  background-color:#8c9edf !important;
}

.yellow{
  color:#ff9900;
}

.rankTable .bgblue img{
  width:80%;
  display:inline-table;
}

.rankTable .name{
  background-color:#596ab4 !important;
  position:sticky;
  font-weight:700;
}

.rankTable a{
  color:#fff;
}

.rankTable td{
  width:auto;
  border-bottom:1px dotted #eee;
  border-top:none;
  padding:2px 5px 0px;
  font-size:12px;
  position:relative;
  vertical-align:middle;
  border-right:1px dotted #ddd;
  background:none;
}

.rankTable td.gtop{
  vertical-align:top;
}

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

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

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

.rankTable td{
  border-right:1px dotted #ddd;
}

.rankTable tr{
  border-bottom:1px dotted #ddd;
}

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

.rank-table-main th,
.rank-table-main td {
  padding: 10px;
}

.rankTable table th:first-child,
.rankTable table td.name{
  width:120px; /* ←好きな幅に調整（例：140〜180px） */
  min-width:140px;
}

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

  .rankTable{
    overflow-x:scroll;
  }
}

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

  .rankTable{
    padding:20px 12px;
  }

}

.rankTable table th{
  vertical-align:middle;
  width:9.0%;
  font-size:13px;
  z-index:88;
}

img.table_icon{
  width:99%;
  margin-top:5px;
}

.sogood{
  font-size:35px;
  color:#ed340c;
}

.good{
  font-size:34px;
  color:#ffbb00;
  font-weight:normal;
}

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

.soso{
  font-size:34px;
  font-weight:bold;
  color:#0cc300;
}

.t_btn{
  display:block;
  width:95%;
  background:#0cc300;
  padding:7px 5px;
  border-radius:5px;
  margin-bottom:10px;
  box-shadow:0px 7px 0px 0 #087e00;
}

.t_btn02{
  display:block;
  width:95%;
  background:#ff6600;
  padding:7px 5px;
  border-radius:5px;
  margin-bottom:10px;
  box-shadow:0px 7px 0px 0 #a72100;
}

.t_btn02,
.t_btn{
  text-decoration:none;
  color:#fff;
  font-weight:bold;
}

.rankTable .table_width{
  width:8%;
}

.anno{
  font-size:10px !important;
  text-align:right;
  color:#747474 !important;
}

@media screen and (max-width:768px){
  .anno{
    font-size:7.5px !important;
  }
}

.center.rinsyo{
  margin:6% 0 0;
}

/* 行の高さを圧縮 */
.rankTable table{
  line-height:1; /* ←1.2 → 1に */
}

/* セルの余白削減 */
.rankTable td,
.rankTable th{
  padding:1px 2px; /* ←今より小さく */
}



/* CTAの高さ圧縮 */
.rankTable .table_cta{
  padding:6% 0; /* 10% → 6% */
}

/* 改行の余白対策 */
.rankTable td br{
  line-height:0.8;
}
/* -----------------比較表10選ここまで ------------------*/

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

/* -----------------タブ動画 ------------------*/
.tab-002,
.tab-003,
.tab-004,
.tab-005,
.tab-006,
.tab-007{
  display:flex;
  flex-wrap:wrap;
  gap:0 5px;
  width:100%;
}

.tab-002 > label,
.tab-003 > label,
.tab-004 > label,
.tab-005 > label,
.tab-006 > label,
.tab-007 > label{
  flex:1 1;
  order:-1;
  opacity:.5;
  min-width:70px;
  padding:.6em 1em;
  border-radius:5px 5px 0 0;
  background-color:#3295c6;
  color:#fff;
  font-size:1.1em;
  text-align:center;
  cursor:pointer;
}

.tab-002 > label:hover,
.tab-003 > label:hover,
.tab-004 > label:hover,
.tab-005 > label:hover,
.tab-006 > label:hover,
.tab-007 > label:hover{
  opacity:.8;
}

.tab-002 input,
.tab-003 input,
.tab-004 input,
.tab-005 input,
.tab-006 input,
.tab-007 input{
  display:none;
}

.tab-002 > div,
.tab-003 > div,
.tab-004 > div,
.tab-005 > div,
.tab-006 > div,
.tab-007 > div{
  display:none;
  width:100%;
  background-color:#fff;
}

.tab-002 label:has(:checked),
.tab-003 label:has(:checked),
.tab-004 label:has(:checked),
.tab-005 label:has(:checked),
.tab-006 label:has(:checked),
.tab-007 label:has(:checked){
  opacity:1;
}

.tab-002 label:has(:checked) + div,
.tab-003 label:has(:checked) + div,
.tab-004 label:has(:checked) + div,
.tab-005 label:has(:checked) + div,
.tab-006 label:has(:checked) + div,
.tab-007 label:has(:checked) + div{
  display:block;
}

.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:#747474;
  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%;
  }

  .tab-002 > label,
  .tab-003 > label,
  .tab-004 > label,
  .tab-005 > label,
  .tab-006 > label,
  .tab-007 > label{
    font-size:.8em;
  }

  .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:8% 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;
}

.tab-003{
  margin:6% 0;
}

.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:8px auto;
  position:relative;
  box-sizing:border-box;
}

.acc_trigger{
  display:none;
}

.acc_header{
  position:relative;
  width:100%;
}

.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:1200px;
  border:3px solid #1c3d7a;
  background:#f5f5f5;
  padding:20px;
  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:36px;
    width:160px;
  }
}

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

.item_bg{
  background-color:#f0e1fe;
  padding:0px 0;
  
}

.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:#1a1976;
  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,93,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:0 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:5px 0 29px;
    margin-top:-24px;
  }

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

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

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

  .n-pickup.n-pickup-kumo2{
    width:calc(100% - 24px);
    margin:24px auto 0;
    padding:22px 12px 16px;
    border-radius:28px 28px 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 30px 30px;
  }

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



/* =========================================
   雲のやすらぎプレミアムマットレスモデル3R 専用
========================================= */
/* .item_bg-r3{
  margin-top: -30px;
}
@media screen and (max-width:767px){
  .item_bg-r3{
    margin-top: -27px;
  }

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

.rank-kumo3r{
  background: #fff;
}

/* 上部レイアウト共通 */
.kumo3r-topwrap{
  display: flex;
  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{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
  }

  /* 左にFV */
  .kumo3r-mainimg{
    width: 35%;
    flex-shrink: 0;
    margin: 0;
    margin-left: 13px;
  }

  /* 右に「総合評価＋概要」を縦並び */
  .kumo3r-infoCol{
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
    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: #1a2e98;
  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;
}

/* 口コミスライダー全体 */
.review_slider_area{
  position: relative;
  width: 100%;
  margin: 12px auto 30px;
  padding: 32px 18px 26px;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 281px; /* ← 高さを増やす */
}

.review_bg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ← 中央配置にする */
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* 注釈 */
.review_note{
  position: relative;
  z-index: 2;
  color: #999999;
  font-size: 14px;
  text-align: center;
  margin: 0 0 10px;
  bottom: -224px;
}

/* スライダー本体 */
.review_slider{
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 20px;
}

/* 各スライド */
.review_slide{
  padding: 0 8px;
  box-sizing: border-box;
}

/* 口コミ画像 */
.review_img{
  display: block;
  width: 100%;
  height: auto;
}

/* slick調整 */
.review_slider .slick-list{
  overflow: visible;
}

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

.review_slider .slick-slide{
  height: auto;
}

.review_slider .slick-slide > div{
  height: 100%;
}

/* ドット */
.review_slider .slick-dots{
  bottom: -28px;
}

.review_slider .slick-dots li{
  margin: 0 3px;
}

.review_slider .slick-dots li button:before{
  font-size: 10px;
  color: #b9bfd3;
  opacity: 1;
}

.review_slider .slick-dots li.slick-active button:before{
  color: #283460;
  opacity: 1;
}

/* =========================
   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;
}

