@charset "UTF-8";
*, *::before, *::after { box-sizing: border-box; } html, body, h1, h2, h3, h4, h5, h6, p, a, ul, li, figure, dl, dd, dt, hr, table, tr, td, th { margin: 0; padding: 0; } a { text-decoration: none; } li { list-style: none; } img { width: 100%; height: auto; vertical-align: bottom; } textarea { width: 100%; } button:focus { outline: none; }
/* ========================================================
ベース設定
=========================================================*/
:root {
  /* カラー */
  --Text: #2a2a2a;
  --Text_blue: #1a0dab;
  --Text_sub: #666;
  --Text_light: #999;
  --Main: #db499e;
  --Sub: #77cadd;
  --Accent: #d40000;
  --Cta: #f75d2f;
  --Cta_shadow: #6b4712;
  --Back: #f6f6f6;
  --Back_strong: #e7f1f7;
  --Border: #ccc;
  /* ランキング */
  --Rank1: #d3a400;
  --Rank2: #8d9ea8;
  --Rank3: #d28548;
  --Rank1_bg: #fdf4d9;
  --Rank_bg: #dbf2fc;
  /* テーブル */
  --Table_th_bg: #f5f7f9;
  --Table_th_text: #3f4f5f;
  --Table_border: #505050;
  /* 強調 */
  --highlight-bg: #eef4f8;
  /* タグ */
  --Tag_off: #e0e0e0;
  /* 文字サイズ */
  --FontSizeSP: 10px;
  /* 375px 〜 768px */
  --FontSizeSP2: 4.2666666667vw;
  /* 〜　374px */
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Noto_Sans_JP_Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Noto_Sans_JP_Medium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Noto_Sans_JP_Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Zen Maru";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Zen_Maru_Medium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Zen Maru";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/Zen_Maru_Bold.woff") format("woff");
  font-display: swap;
}

html {
  font-family: "Noto Sans JP";
  line-height: 1.5;
  color: var(--Text);
  font-size: var(--FontSizeSP);
}

body {
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  background-color: #fff;
  color: var(--Text);
  padding: 0;
  margin: 0;
  line-height: 1.5;
  box-sizing: border-box;
  word-break: break-word;
  /* break-wordは非推奨のため、word-breakを使用 */
  font-feature-settings: "palt";
}

.forSP {
  display: none;
}

.forPC {
  display: block;
}

a {
  font-weight: bold;
  text-decoration: underline;
  color: var(--Text_blue);
  transition: all ease 0.3s;
}

a:hover {
  opacity: 0.6;
  text-decoration: none;
}

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

/* ========================================================
共通
=========================================================*/

body {
  background-color: var(--Back);
}

.lpSection {
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box;
}

.lpSection__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.lpSection__ttl{
  margin: 0 auto 40px;
  text-align: center;
}

.lpSection__ttl img{
  max-width: 100%;
  height: auto;
  vertical-align: text-bottom;
}



/* ========================================================
MV
=========================================================*/
  .header {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }

  .header__top {
    border-top:7px solid var(--Main);
    background-color:#fff;
    margin: 0;
    height: 45px;
    position: relative;
  }
  .header__logo{
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 140px;
    height: 28px;
    z-index: 100;
    width: 140px;
    height:28px ;
    left: 10px;
  }

  /* 広告表記 */
  .header__top .adTxt {
    top: 8px;
    right: 10px;
    position: absolute;
  }

  .adTxt span {
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--Text);
  padding: 2px 14px;
  background-color: #fff;
  }

/* ========================================================
ミニランキング
=========================================================*/
/* カード3列グリッド */
.miniRanking__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

/* カード共通 */
.miniRanking__card {
  background: #fff;
  border: 1px solid var(--Main);
  border-radius: var(--Radius-md, 4px);
  box-shadow: 2px 2px 0 0 rgba(133, 133, 133, 0.65);
  overflow: hidden;
  position: relative;
}

/* カード見出し帯 */
.miniRanking__card-heading {
  background: var(--Main);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 8px 4px;
  border-radius: 4px 4px 0 0;
}

.miniRanking__card-heading-color {
  font-weight: bold;
}

/* 1位カード: 見出しに装飾 */
.miniRanking__card-heading-rank1 {
  font-size: 16px;
}

/* カード本体 */
.miniRanking__card-body {
  padding: 12px;
}

/* 1位カード本体: 背景色 */
.miniRanking__card-body-rank1 {
  background-color: var(--Rank1_bg);
}

/* サービス名リンク */
.miniRanking__card-desc {
  margin-bottom: 8px;
}

.miniRanking__card-link {
  font-size: 16px;
  font-weight: bold;
  color: var(--Text_blue);
  text-decoration: underline;
}

.miniRanking__card-link:hover {
  opacity: 0.6;
}

/* バナー画像 */
.miniRanking__card-bnr {
  text-align: center;
  margin-bottom: 10px;
}

.miniRanking__card-bnr img {
  width: 100%;
  height: auto;
  display: block;
}

.miniRanking__card-bnr a {
  display: block;
  text-decoration: none;
}

/* アクセス情報 */
.miniRanking__card-txt {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ボタン */
.miniRanking__card-btn-wrap {
  text-align: center;
}

.miniRanking__card-btn-note {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.miniRanking__card-btn {
  display: block;
  background: var(--Sub);
  color: #00008b;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 10px 20px;
  border-radius: 4px;
  position: relative;
  transition: all ease 0.3s;
  margin-top:34px;
}


.miniRanking__card-btn::after {
  content: "";
  display: inline-block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.miniRanking__card-btn:hover {
  opacity: 0.6;
}

/* ========================================================
比較表
=========================================================*/
/* SP横スクロール */
.compareTable__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compareTable__table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #fff;
  font-size: 12px;
  line-height: 1.4;
  color: var(--Text);
  table-layout: fixed;
}

.compareTable__th {
  background: var(--Main);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 10px 4px;
  text-align: center;
  vertical-align: middle;
  height: 2.5rem;
  border: 1px solid #fff;
}

.compareTable__th-name {
  width: 16%;
}

.compareTable__th-feature {
  width: 22%;
}

.compareTable__th-cta {
  width: 14%;
}

.compareTable__row {
  background: #fff;
}

/* 強調行 */
.compareTable__row-highlight {
  background: var(--highlight-bg);
}

.compareTable__td {
  padding: 1.1rem 0.5rem 0.48rem;
  border-bottom: 1px solid var(--Table_border);
  vertical-align: top;
  color: var(--Text);
  text-align: center;
}

.compareTable__td:not(:last-child) {
  border-right: 1px solid var(--Table_border);
}

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

.compareTable__td-name {
  padding: 2rem 0.25rem 0.44rem;
  position: relative;
}

.compareTable__td-feature {
  padding: 0.48rem 0.5rem;
  vertical-align: middle;
  font-size: 0.75rem;
}

.compareTable__td-cta {
  padding: 0.48rem 0.5rem;
  vertical-align: middle;
}

/* バッジ（イチ押し等） */
.compareTable__badge {
  display: inline-block;
  background: var(--Main);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 6px;
}

/* ロゴ */
.compareTable__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 26px;
}

.compareTable__logo img {
  width: auto;
  max-width: 146px;
  height: auto;
}

/* リンク */
.compareTable__linkWrap {
  margin-top: 6px;
  text-align: center;
}

.compareTable__link {
  color: var(--Text_blue);
  font-size: 11px;
  text-decoration: none;
  transition: 0.3s;
}

.compareTable__link:hover {
  opacity: 0.6;
}

.compareTable__icon {
  width: 1.8rem;
  display: inline-block;
  margin-bottom: 2px;
}

.compareTable__icon img {
  width: 30px;
  height: 30px;
}

/* ラベル */
.compareTable__label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--Text);
}

.compareTable__label-bold {
  font-weight: bold;
}

.compareTable__label-sm {
  font-size: 10px;
}

.compareTable__feature {
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.compareTable__feature-bold {
  font-weight: bold;
}

.compareTable__marker {
  background: linear-gradient(transparent 50%, #fff59d 50%);
  font-weight: bold;
}

.compareTable__btnWrap {
  text-align: center;
}

.compareTable__ctaNote {
  font-size: 10px;
  font-weight: bold;
  color: var(--Text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.compareTable__btn {
  display: inline-block;
  background: var(--Sub);
  color: #00008b;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 20px 8px 14px;
  border-radius: 4px;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 0.2rem 0 #c4841a;
}

.compareTable__btn::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.compareTable__btn:hover {
  opacity: 0.6;
}

/* 強調行用ボタン */
.compareTable__btn-primary {
  background: var(--Main);
  color: #fff;
  box-shadow: 0 0.2rem 0 #2a6db8;
}

/* ========================================================
教育コンテンツ
=========================================================*/
.education__img{
  max-width: 100%;
  text-align: center;
  margin: 20px auto;
}

.education__img img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.education__txt{
  margin: 20px auto;
  line-height: 1.5;
}

.education__txt p + p{
  margin-top:20px;
}

.red_txt {
    color: var(--Accent);
    font-weight: bold;
}

.underline_txt {
    background: linear-gradient(transparent 60%, #f5f211 40%);
    display: inline;
    font-weight: bold;
    color: var(--Text);
}

/* ========================================================
ランキング
=========================================================*/

.ranking__inner {
  margin-top: 20px;
}

/* プロダクトボックス共通 */
.productBox {
  position: relative;
  border-radius: 10px;
  padding: 0 80px 30px;
  margin-top: 34px;
}

.productBox:first-child {
  margin-top: 0;
}

/* ランク別背景色 */
.productBox.rank1 {
  background: var(--Rank1_bg);
}

.productBox.rank2,
.productBox.rank3,
.productBox.rank4,
.productBox.rank5,
.productBox.rank0 {
  background: var(--Rank_bg);
}

/* ランクバッジ */
.productBox__rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 6px 0 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  z-index: 2;
}

.productBox__rank::before {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.rank1 .productBox__rank {
  background: var(--Rank1);
}

.rank1 .productBox__rank::before {
  content: "1";
}

.rank2 .productBox__rank {
  background: var(--Rank2);
}

.rank2 .productBox__rank::before {
  content: "2";
}

.rank3 .productBox__rank {
  background: var(--Rank3);
}

.rank3 .productBox__rank::before {
  content: "3";
}

.rank4 .productBox__rank {
  background: var(--Rank2);
}

.rank4 .productBox__rank::before {
  content: "4";
}

.rank5 .productBox__rank {
  background: var(--Rank2);
}

.rank5 .productBox__rank::before {
  content: "5";
}

.rank0 .productBox__rank,
.rank0 .productBox__rank::before {
  display: none;
}

/* ヘッダー部 */
.productBox__head {
  padding: 20px 0 10px 10px;
}

.productBox__head > a {
  font-size: 24px;
  font-weight: bold;
  color: var(--Text_blue);
  text-decoration: underline;
}

.productBox__head > a:hover {
  opacity: 0.6;
}

/* バナー部 */
.productBox__bnr {
  margin: 15px 0 0;
}

.productBox__bnr > a {
  display: block;
}

.productBox__bnr > a img {
  width: 100%;
  height: auto;
  border-radius: 4px 4px 0 0;
}

.productBox__bnr-catch {
  background: #fff;
  border: 1px solid var(--Border);
  border-top: none;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 14px;
  font-size: 14px;
  font-weight: bold;
  color: var(--Text);
  border-radius: 0 0 4px 4px;
}

.productBox__bnr-catch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--Cta);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  padding: 0 14px;
  height: 100%;
  border-radius: 0 0 4px 0;
  transition: opacity 0.3s;
}

.productBox__bnr-catch a:hover {
  opacity: 0.7;
}

/* アイコンタグ */
.productBox__icon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
}

.productBox__icon-item {
  display: inline-block;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 300px;
  line-height: 1.4;
  list-style: none;
}

.productBox__icon-item.on {
  background: #fff;
  color: var(--Text);
  font-weight: bold;
}

.productBox__icon-item.off {
  background: var(--Tag_off);
  color: var(--Text_light);
  text-decoration: line-through;
}

/* データテーブル */
.productBox__data {
  margin: 15px 0 0;
}

.productBox__data table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.productBox__data th {
  background: var(--Table_th_bg);
  color: var(--Table_th_text);
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  padding: 10px 12px;
  width: 160px;
  border: 1px solid var(--Table_border);
  vertical-align: middle;
}

.productBox__data td {
  background: #fff;
  padding: 10px 14px;
  border: 1px solid var(--Table_border);
  vertical-align: middle;
  line-height: 1.6;
}

.productBox__data td small {
  font-size: 12px;
  color: var(--Text_sub);
}

.productBox__data td a {
  font-weight: bold;
  color: var(--Text_blue);
  text-decoration: underline;
  font-size: 13px;
}

.productBox__data td a:hover {
  opacity: 0.6;
}

/* おすすめポイント */
.productBox__point {
  margin: 20px 0 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.productBox__point-ttl {
  background: var(--Main);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 14px;
}

.productBox__point-txt {
  font-size: 16px;
  font-weight: bold;
  color: var(--Text);
  padding: 14px 20px 10px;
  border-bottom: 2px solid var(--Main);
  margin: 0 20px;
}

.productBox__point-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--Text);
  padding: 14px 20px 20px;
}

/* CTA部 */
.productBox__cta01 {
  margin: 20px 0 0;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.productBox__cta01-txt {
  font-size: 14px;
  font-weight: bold;
  color: var(--Main);
  margin-bottom: 10px;
}

.productBox__cta01 > a {
  display: inline-block;
  margin-bottom: 16px;
}

.productBox__cta01 > a img {
  max-width: 300px;
  height: auto;
}

.productBox__cta01-btn a {
  display: block;
  max-width: 460px;
  margin: 0 auto;
  background: var(--Cta);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 300px;
  box-shadow: var(--Cta_shadow) 0 3px 0;
  transition: opacity 0.3s;
  position: relative;
}

.productBox__cta01-btn a::after {
  content: "";
  display: inline-block;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(-45deg);
}

.productBox__cta01-btn a:hover {
  opacity: 0.7;
}

/* ========================================================
まとめ
=========================================================*/

.matome__img{
  max-width: 100%;
  text-align: center;
  margin: 20px auto;
}

.matome__img img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.matome__txt{
  margin: 20px auto;
  line-height: 1.5;
}

.matome__txt p + p{
  margin-top:20px;
}

/* ========================================================
記事ページ（運営会社・調査概要など）
=========================================================*/
.article {
  margin: 40px auto;
  background-color: #fff;
  max-width: 1000px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.article__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* H1見出し */
.article__h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--Text);
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 3px solid var(--Main);
}

/* 見出し */
.article__inner h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--Text);
  border-left: 4px solid var(--Main);
  padding: 4px 0 4px 12px;
  margin: 32px 0 16px;
}

.article__inner h3:first-child {
  margin-top: 0;
}

.article__inner h3 .b {
  font-weight: 700;
}

/* 本文 */
.article__inner p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--Text);
  margin-bottom: 16px;
}

.article__inner p a {
  color: var(--Text_blue);
  text-decoration: underline;
  font-weight: bold;
}

.article__inner p a:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* テーブルラッパー */
.table-wrapper {
  margin-bottom: 24px;
}

.table-wrapper__ttl-wrap {
  background: var(--Main);
  padding: 10px 16px;
  border-radius: 4px 4px 0 0;
}

.table-wrapper__ttl {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.table-wrapper__sp-scroll {
  overflow-x: auto;
}

.table-wrapper__content {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-wrapper__content th {
  background-color: var(--Table_th_bg);
  color: var(--Table_th_text);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--Border);
  white-space: nowrap;
  width: 160px;
}

.table-wrapper__content td {
  padding: 12px 16px;
  border: 1px solid var(--Border);
  color: var(--Text);
  line-height: 1.6;
}

/* テーブル内アイコン */
.table__txt-center {
  text-align: center;
}

.table__icon {
  display: inline-block;
  width: 28px;
  height: 28px;
}

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

/* H2見出し */
.article__inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--Main);
  padding-bottom: 10px;
  margin: 48px 0 20px;
  border-bottom: 3px solid var(--Main);
}

/* H4見出し */
.article__inner h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--Text);
  margin: 20px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--Main);
}

/* 順序リスト */
.article__inner ol {
  counter-reset: ol-counter;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.article__inner ol li {
  counter-increment: ol-counter;
  position: relative;
  padding: 10px 10px 10px 40px;
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px dashed var(--Border);
}

.article__inner ol li:last-child {
  border-bottom: none;
}

.article__inner ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  background: var(--Main);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 非順序リスト */
.article__inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.article__inner ul li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14px;
  line-height: 1.7;
}

.article__inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--Main);
  border-radius: 50%;
}

/* コンテンツバナー画像 */
.content__bnr {
  margin: 20px 0;
  text-align: center;
}

.content__bnr img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* CTAボタン */
.cta-btn {
  margin: 30px 0;
  text-align: center;
}

.cta-btn__message {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--Text);
  margin-bottom: 8px;
}

.cta-btn__wrap {
  display: inline-block;
  width: 100%;
  max-width: 600px;
}

.cta-btn__wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--Cta);
  border-radius: 8px;
  box-shadow: var(--Cta_shadow) 0 4px 0;
  text-decoration: none;
  position: relative;
  transition: all ease 0.3s;
  box-sizing: border-box;
}

.cta-btn__wrap a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}

.cta-btn__wrap a:hover {
  opacity: 0.8;
}

/* 注釈テキスト */
.article__inner .note-txt {
  font-size: 12px;
  color: var(--Text_sub);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ========================================================
フッター
=========================================================*/
.footer {
  background-color: var(--Main);
  color: #fff;
  margin-top: 40px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
}

.footer a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* リンクエリア（上部） */
.footer__links-wrapper {
  padding: 40px 0 30px;
}

.footer__links-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 40px;
}

.footer__links-inner dl {
  flex: 1;
}

.footer__links-inner dt {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer__links-inner dd {
  margin: 0;
}

.footer__links-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.footer__links-inner li {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* 下部（コピーライト周辺） */
.footer__bottom {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 16px 0;
  text-align: center;
}

.footer__links.txt-sm ul {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 8px;
}

.footer__links.txt-sm li {
  font-size: 1.1rem;
}

.footer__links.txt-sm a {
  font-size: 1.1rem;
}

.footer__copy {
  font-size: 1.2rem;
  text-align: center;
}

/* ==========================================================================
   refineForm - 絞り込み検索
   ========================================================================== */

.refineForm {
  background-color: var(--Back_strong);
  padding: 0 0 40px;
}

.refineForm__ttl {
  text-align: center;
  padding: 45px 0 0;
}

.refineForm__ttl img {
  width: 517px;
  max-width: 90%;
  display: inline-block;
  vertical-align: bottom;
}

.refineForm__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

/* --- filterItem 共通 --- */

.refineForm__filterItem {
  margin-top: 30px;
}

.refineForm__filterItem dt {
  border-left: 3px solid var(--Main);
  padding-left: 10px;
  font-weight: bold;
  font-size: 1.4rem;
}

.refineForm__filterItem dt small {
  font-weight: normal;
  font-size: 1.2rem;
  margin-left: 3px;
}

.refineForm__filterItem dd {
  padding: 15px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.refineForm__filterItem dd label input {
  display: none;
}

.refineForm__filterItem dd label:hover {
  cursor: pointer;
  opacity: 0.6;
}

.refineForm__filterItem dd label.selected,
.refineForm__filterItem dd label.on {
  background-color: #fdf4d9;
}

/* --- checkbox_text --- */

.checkbox_text.multi {
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  min-height: 50px;
  line-height: 50px;
  border: 1px solid #050505;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0 10px 0 32px;
}

.checkbox_text.multi::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #ddd;
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: 10px;
}

.checkbox_text.multi.selected::before {
  background-color: var(--Main);
}

/* --- radiobtn_text --- */

.radiobtn_text {
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  min-height: 50px;
  line-height: 50px;
  border: 1px solid #050505;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0 10px;
}

.radiobtn_text .radiobox {
  display: none;
}

/* --- CTA（検索 / クリア） --- */

.Refine_Search_cta {
  margin: 30px auto 0;
  text-align: center;
}

.Refine_Search_reset {
  display: inline-block;
  background-color: #fff;
  line-height: 50px;
  max-height: 50px;
  border-radius: 5px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #505050;
  width: 80px;
  border: 1px solid #505050;
  cursor: pointer;
}

.Refine_Search_submit {
  width: 300px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-radius: 300px;
  background-color: var(--Cta);
  display: inline-block;
  margin-left: 30px;
  line-height: 50px;
  height: 50px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

.Refine_Search_reset:hover,
.Refine_Search_submit:hover {
  opacity: 0.6;
}

/* ==========================================================================
   result_page - 絞り込み検索 結果ページ
   ========================================================================== */

.result_page .header__inner {
  width: 100%;
  max-width: 1000px;
}

/* パンくず */
.pankuzu {
  max-width: 900px;
  margin: 0 auto 20px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  padding: 0 15px;
}

/* コラム・サービスページ用パンくず */
.header .pankuzu {
  max-width: 1000px;
  margin: 10px auto;
  padding: 0 10px;
}

.pankuzu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 12px;
}

.pankuzu__item {
  color: var(--Text_sub);
}

.pankuzu__item a {
  color: var(--Text_blue);
  text-decoration: none;
  font-weight: normal;
  font-size: 12px;
}

.pankuzu__item a:hover {
  text-decoration: underline;
}

.pankuzu__item a img {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-right: 2px;
}

.pankuzu__item::after {
  content: ">";
  margin-left: 4px;
  color: var(--Text_light);
}

.pankuzu__item:last-child::after {
  content: "";
}

/* 件数表示 */
.result_count {
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  color: var(--Accent);
  font-size: 3rem;
  font-weight: bold;
}

.result_count small {
  color: var(--Text);
  font-size: 1.4rem;
  margin-left: 5px;
  display: inline-block;
}

/* 検索条件表示 */
.searchConditions {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px 15px;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid var(--Main);
  text-align: left;
  position: relative;
}

.searchConditions__ttl {
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background-color: var(--Main);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 300px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.searchConditions__table {
  width: 100%;
  border-collapse: collapse;
}

.searchConditions__table th {
  color: #333;
  text-align: left;
  padding: 10px 0 5px;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
}

.searchConditions__table td {
  color: var(--Text);
  text-align: left;
  padding: 5px 0 10px;
  border: none;
  font-size: 1.2rem;
}

/* ソート（参考サイト準拠: グリッド2列ボタン） */
.result_sort_area {
  max-width: 900px;
  margin: 30px auto 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
}

.options_accordion_ul {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  padding: 10px;
  background-color: var(--Rank_bg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  border-radius: 6px;
}

.options_accordion_ul li a {
  border-radius: 4px;
  display: block;
  box-sizing: border-box;
  line-height: 40px;
  color: var(--Text_sub);
  text-decoration: none;
  font-size: 1.4rem;
  text-align: center;
  transition: all 0.2s;
}

.options_accordion_ul li.active a {
  background-color: #fff;
  color: var(--Main);
  font-weight: bold;
}

.options_accordion_ul li:hover {
  opacity: 0.8;
}

/* 結果カード */
.result_page .result {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.result_page .productBox {
  margin-top: 24px;
}

.result_page .productBox.rank0 {
  background: var(--Rank_bg);
}

/* 注釈テキスト */
.productBox__notes--result {
  display: block;
  font-size: 11px;
  color: var(--Text_sub);
  padding: 4px 0;
}

/* 再検索フォーム見出し */
.resultForm__ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: var(--Text);
  padding: 30px 0 0;
  margin-bottom: 0;
}

/* 再検索フォーム件数表示 */
.Refine_Search_number {
  line-height: 50px;
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  width: 60px;
  display: inline-block;
}

/* 検索不可時 */
.noSubmit {
  display: inline-block;
  width: 300px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fafafa;
  border-radius: 300px;
  background-color: #ccc;
  border: 1px solid #999;
  line-height: 50px;
  height: 50px;
  box-sizing: border-box;
  margin-left: 30px;
  cursor: not-allowed;
}

/* ========================================
   メリット・デメリット
======================================== */
.productBox__merit,
.productBox__demerit {
  margin: 20px 0 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.productBox__merit-ttl,
.productBox__demerit-ttl {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 14px;
  color: #fff;
}

.productBox__merit-ttl {
  background: var(--Main);
}

.productBox__demerit-ttl {
  background: #c44d4d;
}

.productBox__merit-list,
.productBox__demerit-list {
  list-style: none;
  padding: 14px 20px;
  margin: 0;
}

.productBox__merit-list li,
.productBox__demerit-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--Text);
  padding: 6px 0 6px 28px;
  position: relative;
  border-bottom: 1px dashed var(--Border);
}

.productBox__merit-list li:last-child,
.productBox__demerit-list li:last-child {
  border-bottom: none;
}

.productBox__merit-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--Main);
}

.productBox__merit-list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.productBox__demerit-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid #c44d4d;
}

.productBox__demerit-list li::after {
  content: "!";
  position: absolute;
  left: 10px;
  top: 16px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

/* ========================================
   基本情報テーブル
======================================== */
.productBox__basicInfo {
  margin: 20px 0 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.productBox__basicInfo-ttl {
  background: var(--Main);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 14px;
}

.productBox__basicInfo-table {
  padding: 0;
}

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

.productBox__basicInfo-table table th,
.productBox__basicInfo-table table td {
  font-size: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--Border);
  text-align: left;
  vertical-align: top;
}

.productBox__basicInfo-table table th {
  background: var(--Table_th_bg);
  color: var(--Table_th_text);
  font-weight: bold;
  width: 30%;
}

/* AngularJS ng-cloak */
[ng\:cloak], [ng-cloak], .ng-cloak {
  display: none !important;
}
