/*
Theme Name: tekicyu-v2
Theme URI: https://kabu-tekicyu.com/
Author: tekicyu
Description: Static local-site design ported to a defensive WordPress theme.
Version: 1.0.0
Text Domain: tekicyu-v2
*/

/* ===== design tokens ===== */
:root{
  --navy-900:#03203a;   /* 検索帯・カード見出し帯・ボタン・サイドメニュー見出し */
  --navy-800:#0e2242;   /* フッター背景 */
  --navy-700:#023562;   /* 記事H2バー・リンク濃紺 */
  --navy-hero:#142548;  /* FV波・固定バナー枠 #00214b 系 */
  --blue-600:#2c6cba;   /* 公式サイトを見るボタン */
  --blue-300:#9dbbd5;   /* 記事H3帯 */
  --blue-050:#f1f6fc;   /* 青吹き出し背景 */
  --gold-500:#c3985b;   /* お問合せ/投稿ボタン・ランキング番号・金アクセント */
  --gold-050:#f8f3ea;   /* ゴールド吹き出し背景 */
  --cream:#fdfbf7;      /* FV地色系 */
  --line-green:#1bb363; /* LINEボタン */
  --green-050:#fbfefc;  /* 緑吹き出し背景 */
  --star:#efa03c;       /* 星評価 */
  --tag-gray:#b1b4b8;   /* 投稿者/投稿日タグ */
  --text:#222222;
  --border:#d9dde2;
  --bg-body:#ffffff;
  --bg-gray:#f2f3f5;    /* 導入文ボックス等の薄グレー */
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg-body);
  color:var(--text);
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  font-size:15px;
  line-height:1.9;
  letter-spacing:0;
}

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

a{
  color:inherit;
  text-decoration:none;
}

a:hover{
  color:var(--navy-700);
  text-decoration:underline;
}

button,
input,
select,
textarea{
  font:inherit;
  letter-spacing:0;
}

button{
  cursor:pointer;
}

.site-container{
  width:100%;
  max-width:1290px;
  margin:0 auto;
  padding:0 20px;
}

.placeholder-thumb,
.placeholder-hero{
  display:block;
  background:#7d7d7d;
}

.placeholder-thumb{
  flex:0 0 auto;
}

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

/* ===== buttons ===== */
.btn-primary-navy,
.btn-official,
.btn-review,
.btn-gold{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 24px;
  border-radius:4px;
  border:0;
  font-weight:700;
  line-height:1.4;
  text-align:center;
  text-decoration:none;
  transition:filter .2s ease, background-color .2s ease, color .2s ease;
}

.btn-primary-navy{
  background:var(--navy-900);
  color:#fff;
}

.btn-official{
  width:min(100%,485px);
  min-height:60px;
  background:var(--blue-600);
  color:#fff;
}

.btn-review{
  min-height:60px;
  border:2px solid var(--navy-900);
  border-radius:6px;
  background:#fff;
  color:var(--navy-900);
}

.btn-gold{
  background:var(--gold-500);
  color:#fff;
}

.btn-primary-navy:hover,
.btn-official:hover,
.btn-review:hover,
.btn-gold:hover{
  filter:brightness(.9);
  text-decoration:none;
}

.btn-primary-navy:hover,
.btn-official:hover,
.btn-gold:hover{
  color:#fff;
}

/* ===== header ===== */
.site-header{
  height:79px;
  background:#fff;
}

.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:79px;
  gap:28px;
}

.site-header__logo{
  display:block;
  flex:0 0 auto;
}

.site-header__logo img{
  width:215px;
  height:auto;
}

.site-header__logo .custom-logo{
  width:auto;
  max-width:215px;
  height:40px;
  max-height:40px;
  object-fit:contain;
}

.global-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  font-size:15px;
  line-height:1.4;
  white-space:nowrap;
}

.global-nav a{
  color:#222;
}

.global-nav a:hover{
  color:var(--navy-700);
  text-decoration:underline;
}

/* ===== sp header and drawer ===== */
.sp-header{
  display:none;
  height:56px;
  background:#fff;
}

.sp-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:56px;
  padding:0 16px;
}

.sp-header__logo img{
  width:auto;
  height:30px;
}

.sp-header__logo .custom-logo{
  max-height:30px;
  object-fit:contain;
}

.sp-header__menu{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border:0;
  background:transparent;
}

.sp-header__menu span,
.sp-header__menu span::before,
.sp-header__menu span::after{
  display:block;
  width:26px;
  height:3px;
  background:var(--navy-900);
  content:"";
}

.sp-header__menu span{
  position:relative;
}

.sp-header__menu span::before{
  position:absolute;
  top:-8px;
}

.sp-header__menu span::after{
  position:absolute;
  top:8px;
}

.sp-drawer{
  position:fixed;
  inset:0;
  z-index:1000;
  background:#fff;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}

.sp-drawer.is-open{
  opacity:1;
  pointer-events:auto;
}

.sp-drawer__panel{
  min-height:100%;
  overflow-y:auto;
  background:#fff;
}

.sp-drawer__close{
  display:flex;
  width:46px;
  height:46px;
  margin-left:auto;
  align-items:center;
  justify-content:center;
  border:0;
  background:#fff;
  color:var(--navy-900);
  font-size:26px;
  line-height:1;
}

.sp-drawer__head{
  display:flex;
  align-items:center;
  min-height:38px;
  padding:8px 18px;
  background:var(--navy-900);
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.sp-drawer__body{
  padding:16px 18px 22px;
}

.sp-drawer__search{
  display:grid;
  gap:14px;
}

.sp-drawer__nav{
  margin:0;
  padding:0;
  list-style:none;
}

.sp-drawer__nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:46px;
  border-bottom:1px solid var(--border);
  color:#222;
  font-size:14px;
}

.sp-drawer__contact{
  gap:10px;
  width:100%;
  min-height:58px;
  margin-top:18px;
  color:#fff;
}

.sp-drawer__contact img{
  width:22px;
  height:auto;
}

body.is-drawer-open{
  overflow:hidden;
}

/* ===== search band ===== */
.search-band{
  height:96px;
  background:var(--navy-900);
}

.search-band__inner{
  display:grid;
  grid-template-columns:minmax(260px,1fr) minmax(240px,330px) 1px 320px;
  gap:22px;
  align-items:center;
  height:96px;
}

.search-band__group{
  display:grid;
  gap:6px;
}

.search-band__label{
  color:#fff;
  font-size:13px;
  line-height:1.2;
}

.search-band__form{
  display:flex;
  height:42px;
  overflow:hidden;
  border-radius:4px;
  background:#fff;
}

.search-band__input,
.search-band__select{
  width:100%;
  height:42px;
  border:0;
  background:#fff;
  color:#222;
  font-size:14px;
}

.search-band__input{
  padding:0 14px;
}

.search-band__select{
  padding:0 38px 0 14px;
  border-radius:4px;
  appearance:none;
  background:#fff linear-gradient(45deg,transparent 50%,#555 50%) right 17px center/7px 7px no-repeat;
}

.search-band__submit{
  flex:0 0 46px;
  border:0;
  background:var(--navy-900);
  color:#fff;
  font-size:18px;
}

.search-band__divider{
  width:1px;
  height:62px;
  background:rgba(255,255,255,.85);
}

.search-band__contact{
  display:flex;
  min-height:60px;
  align-items:center;
  justify-content:center;
  gap:12px;
  border-radius:4px;
  background:var(--gold-500);
  color:#fff;
  font-size:14px;
  font-weight:700;
  line-height:1.45;
  text-align:center;
}

.search-band__contact img{
  width:28px;
  height:auto;
}

.search-band__contact:hover{
  color:#fff;
  filter:brightness(.9);
  text-decoration:none;
}

/* ===== breadcrumbs ===== */
.breadcrumbs{
  background:#fff;
  color:#555;
  font-size:13px;
}

.breadcrumbs__inner{
  padding:12px 20px;
}

.breadcrumbs a{
  color:#555;
}

.breadcrumbs__sep{
  margin:0 8px;
}

/* ===== page fv ===== */
.page-fv{
  width:100%;
  overflow:hidden;
  background:var(--cream);
}

.page-fv img{
  width:100%;
  height:auto;
}

/* ===== layout ===== */
.top-layout,
.two-column-layout{
  display:flex;
  align-items:flex-start;
  gap:26px;
  margin-top:32px;
  margin-bottom:48px;
}

.main-content{
  flex:1 1 auto;
  min-width:0;
}

.sidebar{
  flex:0 0 264px;
  width:264px;
}

/* ===== sidebar widgets ===== */
.widget{
  margin-bottom:24px;
  border:1px solid var(--border);
  border-radius:6px;
  overflow:hidden;
  background:#fff;
}

.widget__head{
  display:flex;
  min-height:38px;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  background:var(--navy-900);
  color:#fff;
  font-size:15px;
  font-weight:700;
  line-height:1.35;
  text-align:center;
}

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

.profile-card__photo{
  position:relative;
  height:118px;
  overflow:hidden;
}

.profile-card__photo img{
  width:100%;
  height:118px;
  object-fit:cover;
}

.profile-card__avatar{
  width:72px;
  height:72px;
  margin:-36px auto 10px;
  position:relative;
  z-index:2;
  border:4px solid #fff;
  border-radius:50%;
  background:#fff;
  overflow:hidden;
  box-shadow:0 2px 9px rgba(0,0,0,.18);
}

.profile-card__avatar img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

.profile-card__name{
  margin:0 16px 12px;
  font-size:14px;
  font-weight:700;
  line-height:1.45;
}

.profile-card__name span{
  text-decoration:underline;
}

.profile-card__text{
  margin:0;
  padding:0 16px 8px;
  font-size:13px;
  line-height:1.75;
  text-align:left;
}

.profile-card__more{
  margin:0;
  padding:0 16px 18px;
  font-size:13px;
  line-height:1.5;
  text-align:right;
}

.profile-card__more a{
  color:var(--navy-700);
  text-decoration:none;
}

.profile-card__more a:hover{
  text-decoration:underline;
}

.refsite-card{
  padding:10px;
}

.refsite-card a{
  display:block;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:4px;
}

.ranking-list{
  margin:0;
  padding:12px 14px;
  list-style:none;
}

.ranking-list__item{
  display:grid;
  grid-template-columns:26px 1fr auto;
  gap:8px;
  align-items:center;
  min-height:40px;
  border-bottom:1px solid var(--border);
  font-size:13px;
}

.ranking-list__item:last-child{
  border-bottom:0;
}

.ranking-list__rank{
  display:flex;
  width:24px;
  height:24px;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  background:var(--gold-500);
  color:#fff;
  font-weight:700;
  line-height:1;
}

.ranking-list__rate{
  color:#c93131;
  font-weight:700;
}

.popular-widget{
  margin:0;
  padding:12px;
  list-style:none;
}

.popular-widget__item{
  display:grid;
  grid-template-columns:20px 60px 1fr;
  gap:8px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
}

.popular-widget__item:last-child{
  border-bottom:0;
}

.popular-widget__rank{
  color:var(--gold-500);
  font-size:16px;
  font-weight:700;
  line-height:1.2;
}

.popular-widget__thumb{
  width:60px;
  height:45px;
}

.popular-widget__body{
  min-width:0;
}

.popular-widget__title{
  display:-webkit-box;
  margin:0 0 3px;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  font-size:13px;
  font-weight:700;
  line-height:1.45;
}

.popular-widget__meta{
  display:block;
  margin:0;
  color:#666;
  font-size:11px;
  line-height:1.4;
}

/* ===== section headings ===== */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
  border-bottom:3px solid var(--navy-700);
}

.section-head__title{
  margin:0;
  padding-bottom:8px;
  font-size:20px;
  font-weight:700;
  line-height:1.35;
}

.section-head__more{
  padding-bottom:9px;
  color:var(--navy-700);
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

/* ===== top advertisement ===== */
.top-ad{
  margin-bottom:34px;
}

.top-main{
  min-width:0;
}

.top-ad a{
  display:block;
}

.top-ad img{
  width:100%;
  border-radius:6px;
}

/* ===== review cards ===== */
.review-section{
  margin-bottom:42px;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.review-card{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:6px;
  background:#fff;
}

.review-card__head{
  display:flex;
  min-height:48px;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 14px;
  background:var(--navy-900);
  color:#fff;
}

.review-card__site{
  display:flex;
  min-width:0;
  align-items:center;
  gap:9px;
}

.review-card__site-label{
  flex:0 0 auto;
  padding:2px 8px;
  border:1px solid rgba(255,255,255,.8);
  border-radius:3px;
  font-size:12px;
  line-height:1.4;
}

.review-card__site-name{
  overflow:hidden;
  font-size:16px;
  font-weight:700;
  line-height:1.35;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.review-card__rating{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:7px;
  font-weight:700;
  line-height:1;
}

.stars{
  display:inline-flex;
  align-items:center;
  gap:1px;
  color:#c3c7cc;
  font-size:15px;
  line-height:1;
}

.stars .is-filled{
  color:var(--star);
}

.review-card__body{
  padding:15px 16px 14px;
}

.review-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  margin-bottom:10px;
  font-size:13px;
  line-height:1.5;
}

.review-card__meta-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.review-card__tag{
  display:inline-flex;
  min-width:54px;
  align-items:center;
  justify-content:center;
  padding:2px 8px;
  border-radius:3px;
  background:var(--tag-gray);
  color:#fff;
  font-size:12px;
  line-height:1.35;
}

.review-card__text{
  display:-webkit-box;
  min-height:84px;
  margin:0 0 8px;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  font-size:13px;
  line-height:1.75;
}

.review-card--wide .review-card__text{
  min-height:auto;
  -webkit-line-clamp:2;
}

.review-card__more{
  display:block;
  color:var(--navy-700);
  font-size:13px;
  font-weight:700;
  text-align:right;
}

/* ===== article lists ===== */
.article-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:34px;
  margin-bottom:44px;
}

.article-list-col__head{
  margin-bottom:14px;
  border-bottom:3px solid var(--navy-700);
}

.article-list-col__head h2{
  margin:0;
  padding-bottom:8px;
  font-size:18px;
  line-height:1.35;
}

.article-list{
  display:grid;
  gap:0;
}

.article-list__item{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}

.article-list__thumb{
  width:96px;
  height:72px;
}

.article-list__title{
  display:-webkit-box;
  margin:0 0 6px;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  font-size:14px;
  font-weight:700;
  line-height:1.55;
}

.article-list__date{
  margin:0;
  color:#666;
  font-size:12px;
  line-height:1.4;
  text-align:right;
}

.article-list-col__button{
  width:100%;
  margin-top:16px;
}

/* ===== popular carousel ===== */
.popular-carousel{
  position:relative;
  margin-bottom:42px;
}

.popular-carousel__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
  border-bottom:3px solid var(--navy-700);
}

.popular-carousel__title{
  margin:0;
  padding-bottom:8px;
  font-size:18px;
  font-weight:700;
  line-height:1.35;
}

.popular-carousel__more{
  padding-bottom:9px;
  color:var(--navy-700);
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.popular-carousel__viewport{
  position:relative;
  padding:0 38px;
}

.popular-carousel__track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.popular-carousel__track::-webkit-scrollbar{
  display:none;
}

.popular-carousel__card{
  flex:0 0 218px;
  width:218px;
}

.popular-carousel__thumb{
  width:218px;
  height:120px;
  margin-bottom:8px;
}

.popular-carousel__card-title{
  display:-webkit-box;
  margin:0;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

.popular-carousel__button{
  position:absolute;
  top:44px;
  z-index:2;
  display:flex;
  width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:50%;
  background:var(--navy-900);
  color:#fff;
  font-size:22px;
  line-height:1;
}

.popular-carousel__button--prev{
  left:0;
}

.popular-carousel__button--next{
  right:0;
}

/* ===== pagination ===== */
.pagination{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:34px 0;
}

.pagination a,
.pagination span{
  display:inline-flex;
  min-width:39px;
  height:40px;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  background:#fff;
  color:#222;
  font-size:14px;
  line-height:1;
}

.pagination .is-current{
  border-color:var(--navy-900);
  background:var(--navy-900);
  color:#fff;
}

.pagination a:hover{
  background:var(--blue-050);
  color:var(--navy-700);
  text-decoration:none;
}

/* ===== cta banner ===== */
.cta-banner{
  display:block;
  width:100%;
  background:var(--navy-hero);
}

.cta-banner img{
  width:100%;
  height:auto;
}

.cta-banner:hover{
  filter:brightness(.98);
  text-decoration:none;
}

/* ===== footer ===== */
.site-footer{
  background:var(--navy-800);
  color:#fff;
}

.site-footer__inner{
  padding:28px 20px 24px;
}

.site-footer__nav{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin-bottom:22px;
  font-size:13px;
  line-height:1.6;
}

.site-footer__nav a{
  color:#fff;
}

.site-footer__nav span{
  color:rgba(255,255,255,.65);
}

.site-footer__disclaimer{
  max-width:1010px;
  margin:0 auto 22px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.8);
  color:#fff;
}

.site-footer__disclaimer-title{
  margin:0 0 7px;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

.site-footer__disclaimer-text{
  margin:0;
  font-size:12px;
  line-height:1.75;
}

.site-footer__links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom:14px;
  font-size:12px;
}

.site-footer__links a{
  color:#fff;
}

.site-footer__rule{
  width:min(100%,560px);
  height:1px;
  margin:0 auto 12px;
  background:rgba(255,255,255,.45);
}

.site-footer__copy{
  margin:0;
  font-size:11px;
  line-height:1.6;
  text-align:center;
}

/* ===== list and detail components ===== */
.intro-box{
  margin-bottom:24px;
  padding:24px;
  border-radius:6px;
  background:var(--bg-gray);
  font-size:14px;
  line-height:1.9;
}

.intro-box p{
  margin:0 0 1em;
}

.intro-box p:last-child{
  margin-bottom:0;
}

.control-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  font-size:14px;
}

.control-row select{
  min-width:118px;
  height:36px;
  padding:0 30px 0 10px;
  border:1px solid var(--border);
  border-radius:4px;
  background:#fff;
}

.kana-tabs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
}

.kana-tabs__label{
  margin-right:4px;
  font-weight:700;
}

.kana-tabs__item{
  display:inline-flex;
  min-width:45px;
  min-height:38px;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  border-radius:4px;
  background:#fff;
  color:#222;
  font-size:14px;
  line-height:1;
}

.kana-tabs__item.is-active{
  border-color:var(--navy-900);
  background:var(--navy-900);
  color:#fff;
}

.vendor-card{
  margin-bottom:24px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:6px;
  background:#fff;
}

.vendor-card__head{
  display:flex;
  min-height:56px;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 18px;
  background:var(--navy-900);
  color:#fff;
}

.vendor-card__title{
  margin:0;
  font-size:18px;
  font-weight:700;
  line-height:1.4;
}

.vendor-card__rating{
  font-size:13px;
  line-height:1.5;
  text-align:right;
}

.vendor-card__body{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:18px;
  padding:18px;
}

.vendor-card__image{
  width:260px;
  height:190px;
}

.vendor-table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  line-height:1.55;
}

.vendor-table th,
.vendor-table td{
  border:1px solid var(--border);
  padding:8px 10px;
  vertical-align:top;
}

.vendor-table th{
  width:110px;
  background:#eef2f6;
  font-weight:700;
  text-align:left;
}

.vendor-table a{
  color:var(--blue-600);
  text-decoration:underline;
}

.vendor-card__buttons{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  padding:0 18px 18px;
}

.column-row{
  position:relative;
  display:grid;
  grid-template-columns:140px 1fr 72px;
  gap:16px;
  padding:18px 30px 18px 0;
  border-bottom:1px solid var(--border);
}

.column-row__thumb{
  width:140px;
  height:100px;
}

.column-row__title{
  margin:0 0 6px;
  color:var(--navy-700);
  font-size:16px;
  font-weight:700;
  line-height:1.55;
}

.column-row__excerpt{
  margin:0;
  font-size:13px;
  line-height:1.7;
}

.column-row__date{
  color:#666;
  font-size:12px;
  line-height:1.5;
  text-align:right;
  white-space:nowrap;
}

.column-row__arrow{
  position:absolute;
  top:50%;
  right:2px;
  color:var(--navy-700);
  font-size:24px;
  line-height:1;
  transform:translateY(-50%);
}

.article-date{
  margin:0 0 6px;
  color:#666;
  font-size:13px;
  text-align:right;
}

.article-title{
  margin:0 0 22px;
  padding-bottom:14px;
  border-bottom:2px solid var(--border);
  font-size:24px;
  line-height:1.45;
}

.placeholder-hero{
  width:100%;
  height:360px;
  margin-bottom:24px;
}

.toc-box{
  margin:24px 0;
  padding:20px;
  border:1px solid #d9cbb8;
  border-radius:6px;
  background:#fcf9f7;
}

.toc-box__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.toc-box__title{
  margin:0;
  padding-left:10px;
  border-left:4px solid var(--navy-700);
  font-size:16px;
  font-weight:700;
  line-height:1.5;
}

.toc-box__toggle{
  border:0;
  background:transparent;
  color:var(--navy-700);
  font-size:13px;
  font-weight:700;
}

.toc-box__body{
  margin:0;
  padding-left:22px;
  font-size:13px;
  line-height:1.75;
}

.toc-box.is-collapsed .toc-box__body{
  display:none;
}

.article-h2{
  display:flex;
  align-items:center;
  gap:10px;
  margin:30px 0 16px;
  padding:14px 20px;
  background:var(--navy-700);
  color:#fff;
  font-size:17px;
  font-weight:700;
  line-height:1.5;
}

.article-h2__num{
  display:inline-flex;
  width:24px;
  height:24px;
  align-items:center;
  justify-content:center;
  border:1px solid #fff;
  font-size:13px;
  line-height:1;
}

.article-h3{
  margin:24px 0 12px;
  padding:10px 14px;
  border-left:4px solid var(--navy-700);
  background:var(--blue-300);
  color:var(--navy-700);
  font-size:15px;
  font-weight:700;
  line-height:1.55;
}

.quote-balloon{
  position:relative;
  margin:28px 0;
  padding:24px 28px 24px 92px;
  border:2px solid var(--navy-700);
  border-radius:12px;
  background:#fff;
}

.quote-balloon__icon{
  position:absolute;
  top:18px;
  left:18px;
  width:64px;
  height:64px;
  overflow:hidden;
  border-radius:50%;
}

.quote-balloon__text{
  position:relative;
  margin:0;
  font-size:14px;
  line-height:1.9;
}

.quote-balloon mark,
.line-box mark{
  background:#ffec8a;
  padding:0 .2em;
}

.opinion-box{
  margin:28px 0;
  padding:18px 20px;
  border:1px solid #c9b892;
  border-radius:8px;
  background:var(--gold-050);
}

.opinion-box__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.opinion-box__icon{
  width:48px;
  height:48px;
  overflow:hidden;
  border-radius:50%;
}

.opinion-box__title{
  flex:0 0 auto;
  font-size:17px;
  font-weight:700;
}

.opinion-box__line{
  flex:1 1 auto;
  height:1px;
  background:var(--gold-500);
}

.line-box{
  margin:28px 0;
  padding:20px;
  border:2px solid var(--line-green);
  border-radius:8px;
  background:var(--green-050);
  text-align:center;
}

.line-box__lead{
  margin:0 0 14px;
  padding:14px;
  border-radius:6px;
  background:#e8f8ef;
  font-weight:700;
}

.line-box__text{
  margin:0 0 12px;
  color:#128e4d;
  font-weight:700;
}

.line-box__btn{
  display:inline-flex;
  width:77%;
  min-height:56px;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:6px;
  background:var(--line-green);
  color:#fff;
  font-weight:700;
}

.line-box__btn img{
  width:26px;
  height:auto;
}

.line-box__btn:hover{
  color:#fff;
  filter:brightness(.9);
  text-decoration:none;
}

/* ===== forms and inputs ===== */
.review-form,
.contact-form{
  margin:30px 0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:6px;
  background:#fff;
}

.review-form__head,
.contact-form__head{
  min-height:48px;
  padding:11px 18px;
  background:var(--navy-900);
  color:#fff;
  font-size:17px;
  font-weight:700;
  line-height:1.5;
  text-align:center;
}

.contact-form__head{
  text-align:left;
}

.form-table{
  width:100%;
  border-collapse:collapse;
}

.form-table th,
.form-table td{
  border:1px solid var(--border);
  padding:12px 14px;
  vertical-align:middle;
}

.form-table th{
  width:130px;
  background:#eef2f6;
  text-align:left;
}

.form-input,
.form-textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:4px;
  background:#fff;
}

.form-input{
  max-width:360px;
  height:38px;
  padding:0 10px;
}

.form-textarea{
  min-height:150px;
  padding:10px;
  resize:vertical;
}

.review-form__actions,
.contact-form__actions{
  padding:20px;
  text-align:center;
}

.review-form__actions .btn-gold{
  width:min(100%,495px);
}

.contact-form__actions .btn-gold{
  width:100%;
  min-height:54px;
}

.review-form .comment-respond,
.review-form .comment-form,
.review-form .acf-fields,
.contact-form__body,
.contact-form .mw_wp_form{
  margin:0;
}

.review-form .comment-form > p{
  margin:0;
}

.review-form .comment-form > p:not(.form-submit):not(.comment-notes):not(.logged-in-as),
.review-form .acf-field{
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  border-top:1px solid var(--border);
}

.review-form .comment-form > p:not(.form-submit):not(.comment-notes):not(.logged-in-as) > label,
.review-form .acf-field > .acf-label{
  margin:0;
  padding:12px 14px;
  border-right:1px solid var(--border);
  background:#eef2f6;
  font-weight:700;
  text-align:left;
}

.review-form .comment-form > p:not(.form-submit):not(.comment-notes):not(.logged-in-as) > .review-form__field,
.review-form .acf-field > .acf-input{
  min-width:0;
  padding:12px 14px;
}

.review-form .acf-field .acf-label label{
  margin:0;
  font-weight:700;
}

.review-form .comment-form input[type="text"],
.review-form .comment-form textarea,
.review-form .acf-field input[type="text"],
.review-form .acf-field input[type="number"],
.review-form .acf-field input[type="email"],
.review-form .acf-field select,
.review-form .acf-field textarea,
.contact-form .mw_wp_form input[type="text"],
.contact-form .mw_wp_form input[type="email"],
.contact-form .mw_wp_form input[type="tel"],
.contact-form .mw_wp_form input[type="url"],
.contact-form .mw_wp_form input[type="number"],
.contact-form .mw_wp_form select,
.contact-form .mw_wp_form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:4px;
  background:#fff;
}

.review-form .comment-form input[type="text"],
.review-form .acf-field input[type="text"],
.review-form .acf-field input[type="number"],
.review-form .acf-field input[type="email"],
.review-form .acf-field select,
.contact-form .mw_wp_form input[type="text"],
.contact-form .mw_wp_form input[type="email"],
.contact-form .mw_wp_form input[type="tel"],
.contact-form .mw_wp_form input[type="url"],
.contact-form .mw_wp_form input[type="number"],
.contact-form .mw_wp_form select{
  max-width:360px;
  min-height:38px;
  padding:0 10px;
}

.review-form .comment-form textarea,
.review-form .acf-field textarea,
.contact-form .mw_wp_form textarea{
  min-height:150px;
  padding:10px;
  resize:vertical;
}

.review-form .acf-field input[type="checkbox"],
.contact-form .mw_wp_form input[type="checkbox"],
.contact-form .mw_wp_form input[type="radio"]{
  width:auto;
  margin-right:6px;
}

.review-form .required{
  color:#b3261e;
}

.contact-form__placeholder{
  margin:0;
  padding:20px;
  color:#555;
  font-size:14px;
}

.contact-form .mw_wp_form table{
  width:100%;
  border-collapse:collapse;
}

.contact-form .mw_wp_form th,
.contact-form .mw_wp_form td{
  border:1px solid var(--border);
  padding:12px 14px;
  vertical-align:middle;
}

.contact-form .mw_wp_form th{
  width:130px;
  background:#eef2f6;
  text-align:left;
}

.contact-form .mw_wp_form p{
  margin:0;
}

.contact-form .mw_wp_form input[type="submit"],
.contact-form .mw_wp_form button[type="submit"]{
  display:inline-flex;
  width:100%;
  min-height:54px;
  align-items:center;
  justify-content:center;
  margin:20px 0 0;
  padding:10px 24px;
  border:0;
  border-radius:4px;
  background:var(--gold-500);
  color:#fff;
  font-weight:700;
  line-height:1.4;
  text-align:center;
  cursor:pointer;
  transition:filter .2s ease;
}

.contact-form .mw_wp_form input[type="submit"]:hover,
.contact-form .mw_wp_form button[type="submit"]:hover{
  filter:brightness(.9);
}

.mw_wp_form .error{
  display:block;
  margin-top:6px;
  color:#b3261e;
  font-size:13px;
}

/* ===== responsive ===== */
@media (max-width: 767px){
  body{
    font-size:14px;
    line-height:1.8;
  }

  .site-container{
    padding:0 16px;
  }

  .site-header,
  .search-band{
    display:none;
  }

  .sp-header{
    display:block;
  }

  .top-layout,
  .two-column-layout{
    flex-direction:column;
    gap:28px;
    margin-top:22px;
    margin-bottom:36px;
  }

  .main-content{
    order:1;
    width:100%;
  }

  .sidebar{
    order:2;
    width:100%;
    flex-basis:auto;
  }

  .top-ad{
    margin-bottom:28px;
  }

  .top-ad img{
    width:100%;
    border-radius:6px;
  }

  .section-head,
  .popular-carousel__head{
    gap:12px;
    margin-bottom:14px;
  }

  .section-head__title{
    font-size:18px;
  }

  .section-head__more,
  .popular-carousel__more{
    font-size:12px;
  }

  .review-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .review-grid .review-card:nth-child(n+5){
    display:none;
  }

  .review-card__head{
    align-items:flex-start;
    min-height:48px;
  }

  .review-card__site{
    flex-wrap:wrap;
  }

  .review-card__site-name{
    white-space:normal;
  }

  .review-card__rating{
    padding-top:3px;
  }

  .article-columns{
    grid-template-columns:1fr;
    gap:30px;
    margin-bottom:36px;
  }

  .article-list__item{
    grid-template-columns:88px 1fr;
    gap:12px;
  }

  .article-list__thumb{
    width:88px;
    height:66px;
  }

  .popular-carousel{
    margin-bottom:34px;
  }

  .popular-carousel__viewport{
    padding:0;
  }

  .popular-carousel__track{
    gap:14px;
    padding-bottom:4px;
  }

  .popular-carousel__card{
    flex-basis:218px;
  }

  .popular-carousel__button{
    display:none;
  }

  .widget{
    margin-bottom:20px;
  }

  .profile-card__photo,
  .profile-card__photo img{
    height:150px;
  }

  .ranking-list__item{
    grid-template-columns:28px 1fr auto;
  }

  .popular-widget__item{
    grid-template-columns:24px 70px 1fr;
  }

  .popular-widget__thumb{
    width:70px;
    height:52px;
  }

  .site-footer__inner{
    padding:24px 16px 22px;
  }

  .site-footer__nav{
    align-items:flex-start;
    gap:5px;
  }

  .site-footer__disclaimer{
    padding:14px;
  }

  .control-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .kana-tabs{
    gap:7px;
  }

  .kana-tabs__label{
    width:100%;
  }

  .vendor-card__head{
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }

  .vendor-card__rating{
    text-align:left;
  }

  .vendor-card__body{
    grid-template-columns:1fr;
  }

  .vendor-card__image{
    width:100%;
    height:190px;
  }

  .vendor-card__buttons{
    grid-template-columns:1fr;
  }

  .column-row{
    grid-template-columns:100px 1fr;
    gap:12px;
    padding:16px 24px 16px 0;
  }

  .column-row__thumb{
    width:100px;
    height:72px;
  }

  .column-row__date{
    grid-column:2;
    text-align:left;
  }

  .article-title{
    font-size:21px;
  }

  .placeholder-hero{
    height:220px;
  }

  .toc-box{
    padding:16px;
  }

  .article-h2{
    padding:12px 14px;
    font-size:16px;
  }

  .quote-balloon{
    padding:88px 18px 20px;
  }

  .quote-balloon__icon{
    top:18px;
    left:18px;
  }

  .line-box__btn{
    width:100%;
  }

  .form-table,
  .form-table tbody,
  .form-table tr,
  .form-table th,
  .form-table td{
    display:block;
    width:100%;
  }

  .form-table th{
    border-bottom:0;
  }

  .form-input{
    max-width:none;
  }

  .review-form .comment-form > p:not(.form-submit):not(.comment-notes):not(.logged-in-as),
  .review-form .acf-field{
    display:block;
  }

  .review-form .comment-form > p:not(.form-submit):not(.comment-notes):not(.logged-in-as) > label,
  .review-form .acf-field > .acf-label{
    display:block;
    border-right:0;
    border-bottom:1px solid var(--border);
  }

  .review-form .comment-form input[type="text"],
  .review-form .acf-field input[type="text"],
  .review-form .acf-field input[type="number"],
  .review-form .acf-field input[type="email"],
  .review-form .acf-field select,
  .contact-form .mw_wp_form input[type="text"],
  .contact-form .mw_wp_form input[type="email"],
  .contact-form .mw_wp_form input[type="tel"],
  .contact-form .mw_wp_form input[type="url"],
  .contact-form .mw_wp_form input[type="number"],
  .contact-form .mw_wp_form select{
    max-width:none;
  }

  .contact-form .mw_wp_form table,
  .contact-form .mw_wp_form tbody,
  .contact-form .mw_wp_form tr,
  .contact-form .mw_wp_form th,
  .contact-form .mw_wp_form td{
    display:block;
    width:100%;
  }

  .contact-form .mw_wp_form th{
    border-bottom:0;
  }

}

/* ===== page: list pages ===== */
.page-main{
  min-width:0;
}

.review-list{
  display:grid;
  gap:20px;
}

.vendor-list{
  display:grid;
  gap:24px;
}

.vendor-list .vendor-card{
  margin-bottom:0;
}

.column-list{
  margin-bottom:8px;
}

.control-row--right{
  justify-content:flex-end;
}

.page-investment-column .section-head{
  margin-bottom:14px;
}

/* ===== page: detail ===== */
.article-body{
  margin-bottom:30px;
}

.article-body p{
  margin:0 0 1em;
}

.article-summary-title{
  font-size:16px;
  text-decoration:underline;
  text-underline-offset:4px;
}

.quote-balloon__quote{
  position:absolute;
  color:var(--navy-700);
  font-family:serif;
  font-size:42px;
  font-weight:700;
  line-height:1;
  pointer-events:none;
}

.quote-balloon__quote--left{
  top:12px;
  left:92px;
}

.quote-balloon__quote--right{
  right:18px;
  bottom:10px;
}

.detail-action-buttons{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:0 0 30px;
}

.detail-action-buttons .btn-official,
.detail-action-buttons .btn-review{
  width:100%;
}

.vendor-card--detail{
  margin-bottom:16px;
}

/* ===== legacy article ===== */
.article-body{
  word-break:break-word;
}

.article-body table{
  width:100%;
  border-collapse:collapse;
  margin:18px 0;
  font-size:14px;
}

.article-body th,
.article-body td{
  border:1px solid var(--border);
  padding:10px 12px;
  vertical-align:top;
}

.article-body th{
  background:var(--blue-050);
  color:var(--navy-900);
  font-weight:700;
}

.article-body img,
.article-body video,
.article-body iframe{
  max-width:100%;
}

.article-body img{
  height:auto;
}

.article-body h2:not(.article-h2){
  margin:34px 0 18px;
  padding:12px 16px;
  background:var(--navy-700);
  color:#fff;
  font-size:22px;
  line-height:1.45;
}

.article-body h3:not(.article-h3){
  margin:28px 0 14px;
  padding:12px 16px;
  background:var(--blue-050);
  border-left:5px solid var(--blue-300);
  color:var(--navy-900);
  font-size:18px;
  line-height:1.5;
}

.article-body ul,
.article-body ol{
  margin:0 0 1.3em 1.6em;
}

.article-body blockquote{
  margin:22px 0;
  padding:16px 18px;
  background:var(--gold-050);
  border-left:5px solid var(--gold-500);
}

.article-body .wp-caption{
  max-width:100%;
}

.article-body .wp-caption-text{
  margin-top:6px;
  color:#666;
  font-size:12px;
  text-align:center;
}

.article-body .aligncenter{
  display:block;
  margin-right:auto;
  margin-left:auto;
}

.article-body .alignright{
  float:right;
  margin:0 0 16px 20px;
}

.article-body .alignleft{
  float:left;
  margin:0 20px 16px 0;
}

.vendor-card__image img,
.popular-carousel__thumb img,
.popular-widget__thumb img,
.article-list__thumb img,
.column-row__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.no-results{
  padding:22px;
  border:1px solid var(--border);
  background:#fff;
  color:#555;
  font-size:14px;
}

.pagination .page-numbers.current{
  background:var(--navy-900);
  color:#fff;
  border-color:var(--navy-900);
}

/* ===== page: contact ===== */
.contact-layout{
  margin-top:32px;
  margin-bottom:48px;
}

.contact-lead{
  margin:0 0 18px;
  font-size:14px;
}

.contact-form .form-input{
  max-width:100%;
}

.contact-form__icon{
  display:inline-block;
  margin-right:6px;
}

@media (max-width: 767px){
  .detail-action-buttons{
    grid-template-columns:1fr;
  }

  .quote-balloon__quote--left{
    top:72px;
    left:18px;
  }

  .contact-layout{
    margin-top:22px;
    margin-bottom:36px;
  }
}
