@charset "UTF-8";

:root{
  --bg:#ffffff;
  --text:#222;
  --text-sub:#555;
  --red:#d4351c;
  --red-bg:#fff0ec;
  --orange:#f08300;
  --orange-bg:#fff7e8;
  --yellow:#ffeb6e;
  --green:#2e8b57;
  --green-dk:#1e6b40;
  --gray-bg:#f5f5f5;
  --border:#e0e0e0;
  --cite:#888;
}
*{box-sizing:border-box;}
html,body{
  overflow-x:hidden;
  width:100%;
  max-width:100%;
}
body{
  font-family:"Hiragino Sans","Yu Gothic UI","Meiryo",sans-serif;
  margin:0;
  padding:0;
  background:#f0f0f0;
  color:var(--text);
  line-height:1.7;
  font-size:16px;
}
.article{
  max-width:680px;
  width:100%;
  margin:0 auto;
  background:var(--bg);
  overflow-x:hidden;
}
.section{
  padding:24px 20px;
}
.section--white{background:#fff;}
.section--gray{background:#fafafa;}
.section--summary{
  background:linear-gradient(180deg,#fff5ef 0%,#ffe9d9 100%);
}

@media (max-width:480px){
  .section{
    padding:20px 14px;
  }
  .diagram{
    padding:12px;
  }
}

.fv{
  position:relative;
  margin:0;
  padding:0;
  overflow:hidden;
  background:#f4f7fb;
}
.fv__img{
  display:block;
  width:100%;
  height:auto;
  margin:0;
}
.fv__pr{
  position:absolute;
  top:6px;
  right:8px;
  font-size:10px;
  color:#666;
  background:rgba(255,255,255,.85);
  padding:1px 6px;
  border-radius:3px;
  z-index:2;
  font-weight:600;
}

.fv__h1-sr{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

.h2{
  font-size:22px;
  font-weight:800;
  line-height:1.45;
  margin:0 0 16px;
  padding:14px 12px;
  background:#f5f5f5;
  border-left:6px solid var(--green);
  color:var(--text);
}
.h2--warn{
  border-left-color:var(--red);
  background:#fff5f3;
}
.h2--strong{
  border-left-color:var(--red);
  background:#fff5f3;
}
.h3{
  font-size:18px;
  font-weight:800;
  line-height:1.45;
  margin:24px 0 12px;
  padding-left:10px;
  border-left:4px solid var(--orange);
}

.red-bold{color:var(--red);font-weight:800;border-bottom:2px solid var(--red);padding-bottom:1px;}
.yellow-underline{
  font-weight:700;
  background:linear-gradient(transparent 60%,#ffeb6e 60%);
  padding:0 2px;
}
.orange-bold{color:var(--orange);font-weight:800;}
.marker{
  background:#ffeb6e;
  padding:2px 4px;
  font-weight:700;
}
.bold{font-weight:700;}

.text-link{
  color:#1a5fb4;
  text-decoration:underline;
  font-weight:700;
}
.text-link:visited{color:#1a5fb4;}
.text-link:hover{color:#0d4a96;}

p{margin:0 0 14px;}

.speech{
  display:flex;
  align-items:flex-start;
  margin:18px 0;
  gap:10px;
}
.speech--left{flex-direction:row;}
.speech--right{flex-direction:row-reverse;}
.speech__icon{
  width:56px;
  height:56px;
  border-radius:50%;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:2px solid #fff;
  box-shadow:0 1px 3px rgba(0,0,0,0.1);
}
.speech__icon--a{background:#dbeaff;}
.speech__icon--b{background:#fff0d9;}
.speech__icon svg,
.speech__icon img{width:100%;height:100%;display:block;object-fit:cover;}
.speech__bubble{
  position:relative;
  background:#fff;
  border:2px solid #ddd;
  padding:12px 14px;
  border-radius:12px;
  font-size:15px;
  line-height:1.6;
  max-width:78%;
}
.speech--right .speech__bubble{
  background:#fff8ec;
  border-color:#f0d8ad;
}
.speech--left .speech__bubble{
  background:#f0f6ff;
  border-color:#cfdef5;
}
.speech--left .speech__bubble::before{
  content:'';
  position:absolute;
  left:-10px;
  top:18px;
  border:6px solid transparent;
  border-right-color:#cfdef5;
}
.speech--right .speech__bubble::before{
  content:'';
  position:absolute;
  right:-10px;
  top:18px;
  border:6px solid transparent;
  border-left-color:#f0d8ad;
}

.fail-list{
  list-style:none;
  padding:14px 16px;
  margin:0 0 16px;
  background:var(--red-bg);
  border:1px solid #f5cabc;
  border-radius:8px;
}
.fail-list li{
  padding:8px 0 8px 24px;
  position:relative;
  border-bottom:1px dashed #f5cabc;
  font-size:15px;
  line-height:1.5;
}
.fail-list li:last-child{border-bottom:none;}
.fail-list li::before{
  content:"✗";
  position:absolute;
  left:4px;
  top:8px;
  color:var(--red);
  font-weight:bold;
}

.benefit-list{
  list-style:none;
  padding:14px 16px;
  margin:0 0 16px;
  background:#eef7f1;
  border:1px solid #c3e0d1;
  border-radius:8px;
}
.benefit-list li{
  padding:8px 0 8px 28px;
  position:relative;
  border-bottom:1px dashed #c3e0d1;
  font-size:15px;
  line-height:1.5;
}
.benefit-list li:last-child{border-bottom:none;}
.benefit-list li::before{
  content:"✓";
  position:absolute;
  left:4px;
  top:8px;
  color:var(--green);
  font-weight:bold;
  font-size:16px;
}

.key-box{
  border:2px solid var(--orange);
  border-radius:10px;
  padding:14px 16px;
  margin:18px 0;
  background:var(--orange-bg);
}
.key-box__label{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  font-size:12px;
  font-weight:bold;
  padding:3px 10px;
  border-radius:4px;
  margin-bottom:8px;
}
.key-box__body{
  font-size:17px;
  font-weight:700;
  line-height:1.5;
  margin:0;
}

.diagram{
  margin:18px 0;
  padding:16px;
  background:#f8f8f8;
  border-radius:8px;
  border:1px solid #e8e8e8;
}
.diagram__title{
  font-size:14px;
  font-weight:700;
  text-align:center;
  margin:0 0 12px;
  color:var(--text-sub);
}

.cmp-table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  background:#fff;
  margin:14px 0;
  table-layout:fixed;
}
.cmp-table th,.cmp-table td{
  border:1px solid #d4d4d4;
  padding:8px 6px;
  text-align:center;
  vertical-align:middle;
  line-height:1.3;
}
.cmp-table thead th{
  background:#f0f0f0;
  font-size:13px;
}
.cmp-table thead th.best{
  background:var(--green);
  color:#fff;
}
.cmp-table .label{
  background:#f8f8f8;
  font-weight:700;
  text-align:left;
  font-size:12px;
}
.cmp-table .best-col{background:#f5fbf7;}
.cmp-note{
  display:block;
  font-size:10px;
  font-weight:700;
  color:var(--orange);
  line-height:1.3;
  margin-top:2px;
}
.mark-c{color:var(--red);font-size:18px;font-weight:bold;}
.mark-x{color:#999;font-size:18px;}
.mark-t{color:var(--orange);font-size:18px;font-weight:bold;}
.mark-o{color:#3a7ac4;font-size:18px;font-weight:bold;}

.cmp-btn{
  display:inline-block;
  padding:8px 6px;
  font-size:12px;
  font-weight:700;
  border-radius:4px;
  text-decoration:none;
  line-height:1.2;
  white-space:nowrap;
  width:100%;
  box-sizing:border-box;
  text-align:center;
}
.cmp-btn--1{
  background:var(--green);
  color:#fff !important;
  box-shadow:0 2px 0 var(--green-dk);
}
.cmp-btn--sub{
  background:#666;
  color:#fff !important;
  box-shadow:0 2px 0 #444;
}
.cmp-btn:visited,.cmp-btn:hover,.cmp-btn:active{color:#fff !important;text-decoration:none;}
.cmp-table__cta-row td{padding:8px 4px;}

.notice{
  background:#fffaeb;
  border-left:4px solid #f0c040;
  padding:14px 14px 14px 16px;
  margin:18px 0;
  font-size:14px;
  border-radius:0 6px 6px 0;
}
.notice__title{
  font-weight:700;
  font-size:15px;
  margin:0 0 6px;
  color:#9a6a00;
}

.cta-area{
  margin:24px 0;
  text-align:center;
}
.cta-area__micro{
  display:inline-block;
  background:#ffeb6e;
  padding:6px 14px;
  font-size:13px;
  font-weight:700;
  margin-bottom:6px;
  border-radius:4px;
  line-height:1.5;
}
.cta-area__micro .nb{
  display:inline-block;
  white-space:nowrap;
}
.cta-area__note{
  font-size:11px;
  color:var(--text-sub);
  margin:6px 0 0;
  line-height:1.4;
}
.cta-btn{
  display:block;
  background:var(--green);
  color:#fff !important;
  text-decoration:none;
  padding:16px 20px;
  font-size:17px;
  font-weight:700;
  border-radius:8px;
  text-align:center;
  box-shadow:0 3px 0 var(--green-dk);
  margin:6px 0 0;
}
.cta-btn:visited,.cta-btn:hover,.cta-btn:active{color:#fff !important;}
.cta-btn .arrow{margin-left:6px;color:#fff;}

.rank-card{
  border:2px solid #e0e0e0;
  border-radius:10px;
  background:#fff;
  padding:18px 16px;
  margin:24px 0;
  position:relative;
}
.rank-card--1{border-color:var(--orange);box-shadow:0 4px 12px rgba(240,131,0,.12);}
.rank-card__medal{
  position:absolute;
  top:-12px;
  left:14px;
  background:#fff;
  padding:0 8px;
  font-size:22px;
}
.rank-card__title{
  font-size:20px;
  font-weight:800;
  margin:6px 0 12px;
  color:var(--text);
}
.rank-card__title a{color:var(--text);text-decoration:underline;}
.rank-card__banner{
  background:linear-gradient(135deg,#1e6b40,#2e8b57);
  color:#fff;
  padding:24px 16px;
  border-radius:6px;
  text-align:center;
  margin-bottom:14px;
}
.rank-card__banner--2{background:linear-gradient(135deg,#4a4a4a,#666);}
.rank-card__banner--3{background:linear-gradient(135deg,#2c3e6e,#4a6ba8);}
.rank-card__banner h3{margin:0 0 6px;font-size:18px;}
.rank-card__banner p{margin:0;font-size:13px;opacity:.95;}

.banner-img{
  display:block;
  width:100%;
  height:auto;
  border-radius:6px;
  margin-bottom:14px;
  border:1px solid #eee;
}
.banner-link{
  display:block;
  text-decoration:none;
  transition:opacity .15s;
}
.banner-link:hover{opacity:.9;}

.point-box{
  background:#fff7e8;
  border:1px solid #f0d8ad;
  border-radius:6px;
  padding:14px 14px 14px 16px;
  margin:14px 0;
}
.point-box__title{
  font-size:15px;
  font-weight:800;
  color:var(--orange);
  margin:0 0 8px;
}
.point-list{
  list-style:none;
  padding:0;
  margin:0;
}
.point-list li{
  padding:6px 0 6px 22px;
  position:relative;
  font-size:14px;
  line-height:1.55;
}
.point-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:6px;
  color:var(--orange);
  font-weight:bold;
}

.mini-eval{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin:14px 0;
}
.mini-eval__item{
  background:#f8f8f8;
  border:1px solid #e0e0e0;
  border-radius:6px;
  padding:10px;
  text-align:center;
}
.mini-eval__label{
  font-size:11px;
  color:var(--text-sub);
  margin-bottom:4px;
  font-weight:600;
}
.mini-eval__mark{
  font-size:24px;
  font-weight:bold;
  line-height:1;
  margin-bottom:4px;
}
.mini-eval__mark--c{color:var(--red);}
.mini-eval__mark--o{color:#3a7ac4;}
.mini-eval__mark--t{color:var(--orange);}
.mini-eval__mark--x{color:#999;}
.mini-eval__text{font-size:12px;font-weight:600;color:var(--text);}

.spec-table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  margin:10px 0;
}
.spec-table th,.spec-table td{
  border:1px solid #ddd;
  padding:8px;
  text-align:left;
  vertical-align:top;
}
.spec-table th{
  background:#f5f5f5;
  font-weight:700;
  width:36%;
  font-size:12px;
}

.rating{
  display:flex;
  align-items:center;
  gap:12px;
  margin:14px 0;
  padding:10px;
  background:#fff7e8;
  border-radius:6px;
}
.rating__score{
  font-size:28px;
  font-weight:800;
  color:var(--orange);
  line-height:1;
}
.rating__stars{
  font-size:16px;
  color:var(--orange);
  letter-spacing:1px;
}
.rating__label{
  font-size:12px;
  color:var(--text-sub);
}

.authority{
  background:#fff;
  border:2px solid var(--orange);
  border-radius:8px;
  padding:14px;
  margin:14px 0;
}
.authority__title{
  text-align:center;
  font-size:13px;
  font-weight:700;
  color:var(--orange);
  margin:0 0 10px;
}
.authority__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  text-align:center;
}
.authority__item{padding:6px 4px;}
.authority__num{
  font-size:22px;
  font-weight:800;
  color:var(--red);
  line-height:1.1;
  display:block;
}
.authority__lbl{
  font-size:11px;
  color:var(--text-sub);
  font-weight:600;
  display:block;
  margin-top:4px;
}
.authority__cite{
  font-size:9px;
  color:var(--cite);
  display:block;
  margin-top:2px;
  line-height:1.2;
}

.review-scroll{
  overflow-x:auto;
  overflow-y:hidden;
  margin:14px 0;
  padding:4px 4px 12px;
  scrollbar-width:thin;
  -webkit-overflow-scrolling:touch;
}
.review-track{
  display:flex;
  flex-wrap:nowrap;
  gap:12px;
  width:max-content;
}
.review-card{
  flex:0 0 240px;
  width:240px;
  box-sizing:border-box;
  background:#fff;
  border:1px solid #e0e0e0;
  border-radius:8px;
  padding:14px;
  font-size:13px;
  display:flex;
  flex-direction:column;
}
.review-card__stars{color:var(--orange);margin-bottom:4px;font-size:14px;}
.review-card__title{
  font-weight:800;
  color:var(--orange);
  margin:0 0 8px;
  font-size:14px;
  line-height:1.4;
}
.review-card__body{
  font-size:13px;
  line-height:1.55;
  margin:0 0 10px;
  color:var(--text);
  flex:1;
}
.review-card__cite{
  font-size:8px;
  color:var(--cite);
  border-top:1px solid #eee;
  padding-top:6px;
  margin-top:8px;
  word-break:break-all;
  line-height:1.3;
}

.checklist{
  background:#fff;
  border:2px solid var(--orange);
  border-radius:8px;
  padding:16px;
  margin:16px 0;
}
.checklist li{
  list-style:none;
  padding:8px 0 8px 28px;
  position:relative;
  border-bottom:1px dashed #e0d0aa;
  font-size:15px;
  line-height:1.5;
}
.checklist li:last-child{border-bottom:none;}
.checklist li::before{
  content:"☑";
  position:absolute;
  left:4px;
  top:8px;
  color:var(--orange);
  font-weight:bold;
  font-size:18px;
}
.checklist ul{padding:0;margin:0;}

.alert-box{
  background:#fff0ec;
  border:1px solid #f5cabc;
  border-radius:8px;
  padding:12px 14px;
  margin:14px 0;
  font-size:14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.alert-box__icon{
  font-size:22px;
  color:var(--red);
  flex-shrink:0;
}

.cite{
  font-size:9px;
  color:var(--cite);
  line-height:1.3;
  margin:4px 0 12px;
  display:block;
}
.cite a{color:var(--cite);text-decoration:none;pointer-events:none;cursor:default;}

.divider{
  text-align:center;
  margin:24px 0;
  font-size:15px;
  font-weight:700;
  color:var(--orange);
}

@media(max-width:680px){
  .section{padding:22px 16px;}
  .h2{font-size:19px;padding:12px 10px;}
  .speech__bubble{font-size:14px;max-width:75%;}
  .cmp-table{font-size:12px;}
  .cmp-table th,.cmp-table td{padding:6px 4px;}
  .authority__grid{gap:6px;}
  .authority__num{font-size:18px;}
}

.svg-full{width:100%;height:auto;display:block;}

.sub-h3{
  font-size:16px;
  font-weight:800;
  margin:18px 0 8px;
}

.point-box--orange{
  background:#fff7e8;
  border-color:#f0d8ad;
}

.cta-btn--gray{
  background:#666;
  box-shadow:0 3px 0 #444;
}
.cta-btn--blue{
  background:#4a6ba8;
  box-shadow:0 3px 0 #2c3e6e;
}

.h2--center-double{
  text-align:center;
  border:none;
  background:none;
  padding:14px 0;
  border-bottom:3px double var(--orange);
}
.h2--center-solid{
  background:none;
  border:none;
  border-bottom:3px solid var(--orange);
  text-align:center;
  padding:14px 0;
}

.text-center{text-align:center;}

.banner-link--mt{margin:18px 0;}

.diagram--white{
  background:#fff;
  border-color:#f0d8ad;
}

.m0{margin:0;}

.color-red{color:var(--red);}
.color-sub{color:var(--text-sub);}

.score-rank1{
  color:var(--orange);
  font-weight:bold;
}

.note-sub{
  margin-top:14px;
  font-size:14px;
  color:var(--text-sub);
}

.cmp-cols-7 col:nth-child(1){width:22%;}
.cmp-cols-7 col:nth-child(2){width:26%;}
.cmp-cols-7 col:nth-child(3){width:26%;}
.cmp-cols-7 col:nth-child(4){width:26%;}
.cmp-cols-5 col:nth-child(1){width:24%;}
.cmp-cols-5 col:nth-child(2){width:25%;}
.cmp-cols-5 col:nth-child(3){width:25%;}
.cmp-cols-5 col:nth-child(4){width:26%;}

.term-box{
  background:#eef5fb;
  border:1px solid #b8d4ed;
  border-radius:8px;
  padding:14px 16px;
  margin:18px 0;
  position:relative;
}
.term-box__title{
  font-size:14px;
  font-weight:800;
  color:#1a5fb4;
  margin:0 0 8px;
  padding-left:24px;
  position:relative;
}
.term-box__title::before{
  content:"💡";
  position:absolute;
  left:0;
  top:0;
  font-size:16px;
}
.term-box__body{
  font-size:14px;
  line-height:1.65;
  margin:0;
  color:var(--text);
}

.criteria-note{
  font-size:13px;
  color:#666;
  margin-top:10px;
}

.jump-to-top3{
  margin:28px 16px;
  border:2px solid var(--orange);
  border-radius:4px;
  overflow:hidden;
  background:#fff;
  box-sizing:border-box;
}
.jump-to-top3__head{
  background:var(--orange);
  color:#fff;
  font-weight:700;
  font-size:15px;
  padding:8px 14px;
  display:flex;
  align-items:center;
  gap:6px;
}
.jump-to-top3__head::before{
  content:"✓";
  font-weight:900;
}
.jump-to-top3__body{
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.jump-to-top3__icon{
  flex:0 0 auto;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  line-height:1;
}
.jump-to-top3 a.jump-to-top3__link{
  color:#1a5fb4;
  font-weight:700;
  font-size:17px;
  text-decoration:underline;
  word-break:break-word;
}
.jump-to-top3 a.jump-to-top3__link:visited{color:#1a5fb4;}
.jump-to-top3 a.jump-to-top3__link:hover{color:#0d4a96; text-decoration:none;}

@media (max-width:480px){
  .jump-to-top3{
    margin:16px 12px 20px;
  }
  .jump-to-top3__head{
    font-size:14px;
    padding:8px 12px;
  }
  .jump-to-top3__body{
    padding:10px 12px;
  }
  .jump-to-top3__link{
    font-size:15px;
  }
}

.term-box__img,
.notice__img,
.diagram__img,
.reason-img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  margin:12px auto 4px;
  border-radius:4px;
  box-sizing:border-box;
}

.reason-img{
  margin:8px 0 16px;
}

.diagram,
.term-box,
.notice{
  box-sizing:border-box;
  overflow:hidden;
}

.article img,
.article svg{
  max-width:100%;
  height:auto;
}