@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {
}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {
}

/* タブレット以下 */
@media only screen and (max-width: 991px) {
}

/* スマホ */
@media only screen and (max-width: 767px) {
}

/*-----------------------------------------------------
Bootstrap上書き
-------------------------------------------------------*/

/*フォント
-------------------------------------------------------*/
p {
  margin-bottom: 0.85em;
  line-height: 1.8;
}
@media (max-width: 767px){
p {
  font-size: 14px;
}}


/*container
-------------------------------------------------------*/
.container{
  max-width: 900px;
}

@media only screen and (min-width: 576px) {
  .container{
  max-width: 540px;
}}

@media only screen and (min-width: 768px) {
  .container{
  max-width: 720px;
}}

@media only screen and (min-width: 992px) {
  .container{
  max-width: 900px;
}}

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

section {
  padding: 5rem 0;
}

main{
  background-color: #fff;
}

a {
  text-decoration-line: none;
}

.alpha {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.alpha:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
a.alpha {
  display: inline-block;
  width: 100%;
}
.Page-top {
    position: fixed;
    right: 0;
    bottom: 5%;
    right: 1%;
}
small{
  line-height: 1em !important;
}
.bullet-text{
  padding-left: 1em;
  text-indent: -1em;
}

span.yellow-bg {
  background: linear-gradient(transparent 60%, #ffeadd 60%);
  font-weight: bold;
}

@media only screen and (max-width: 767px){
section {
  padding: 3rem 0;
}}

/* ランキング遷移1位ボタン */
.button-container {
  text-align: center;
}

.rank01-transition-button {
    background: linear-gradient(90deg, 
    #1e3c98 0%,   /* 濃いブルー */
    #2c5fce 30%, /* 中間ブルー */
    #569dfd 70%, /* 明るめブルー */
    #5ba9ff 100% /* 淡いブルー */
  );
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  overflow: hidden;
  padding: 20px 40px;
  text-decoration: none;
  position: relative; /* 追加 */
  font-weight: 900;
  font-size: 1.3em;
}

/* 光るアニメーション */
.rank01-transition-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
  rgba(0, 100, 255, 0) 25%,
  rgba(0, 180, 255, 0.6) 50%,
  rgba(0, 100, 255, 0) 75%
  );
  transform: skewX(-15deg);
  animation: shine 2s linear infinite;
}

/* 光るアニメーション定義 */
.rank01-transition-button:hover {
  color: #fff;
}
@keyframes shine {
	20% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold{
  font-weight: bold;
}

.text-big{
  font-weight:bold;
  font-size: 1.5em;
}

.text-big2{
  font-weight:800;
  font-size: 1.5em;
}

.text-middle{
  font-weight:bold;
  font-size: 1.2em;
}

.text-small{
  font-size: 0.65em !important;
}

@media only screen and (max-width: 767px){
.text-big2{
  font-weight:800;
  font-size: 1.2em;
}

.text-middle{
  font-weight:bold;
  font-size: 1.1em;
}
}


/*-----------------------------------------------------
ヘッダー
-------------------------------------------------------*/
#Header{
  background-color: #ffccae;
}

.h_cta_img {
    width: 20em;
    padding: 0.2em;
}

@media screen and (max-width: 640px) {
header img{
    width: 75%;
    margin: 0 auto;
}}

/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv {
  background-image: url(../images/mv_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 50px;
}


@media only screen and (max-width: 767px){
  .fv {
  background-image: none;
  padding: 0;
}}



/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold{
  font-weight: bold;
}
.date-text{
  margin-bottom: 0rem !important;
}
/*-----------------------------------------------------
比較表共通
-------------------------------------------------------*/

/*----------------比較フォント-------------------------*/
.hikaku_red {
  color: #ff0000; /* 点数の赤色 */
}
.score_text{
  font-size: 1.8rem; /* 点数 */
}
.score_text_small { /* 点数の点と/00点 */
  font-size: 1rem;
}
.hikaku_text { /* 点数の説明 */
  font-size: 0.8rem;
  line-height: 1rem;
  margin-top: -5px; /* 上のテキストに少し食い込ませる */
}
.rank-pic{ /* サイトのスクショ */
  width: 65%;
}

@media only screen and (max-width: 767px){
.rank_name{ /* サイトのスクショ下のサイト名 */
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.25em;
}
.score_text{
  font-size: 1.3rem;
}
.score_text_small{
  font-size: 0.8rem;
}
.hikaku_text p{
  font-size: 0.65rem !important;
  font-weight: bold;
  line-height: 0.8rem;
  margin-top: -5px; 
}
.rank-pic{
  width: 90%;
}}

/*----------------公式遷移　CTA-------------------------*/
.hikaku_btn {
  display: inline-block;
  color: #fff;
  background: linear-gradient(90deg, 
    #e6001e 0%,   /* 鮮やかで赤寄り */
    #ff3344 40%,  /* 明るめ赤で柔らかさも少し */
    #ff5a5a 60%,  /* 温かみのある赤オレンジ寄せ */
    #e6001e 100%  /* 端も赤寄せ */
  );
  border-bottom: 5px solid #990000; /* 濃い赤で押された感 */
  border-radius: 5px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.1s ease;
  font-weight: bold;
}

.hikaku_btn:hover {
  background: #ff3344;            /* ホバーで少し明るめ赤 */
  transform: translateY(3px);     
  border-bottom: 2px solid #990000;
}

/*----------------【スマホ】中央のスクロールヒントアイコン　jsでも管理 -------------------------*/
.scroll_area {
  position: relative;
  overflow-x: auto; /* PCは横スクロール */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.scroll_hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important; /* ← 中央寄せの基本 */
  z-index: 10;
  pointer-events: none; /* 操作を邪魔しない */
  pacity: 1;
  transition: opacity 0.8s ease; /* 0.8秒かけて消える */
}
.scroll_hint.fade-out {
  opacity: 0;
}
.scroll_hint img {
  width: 4rem;
  opacity: 0.7;
  display: block; /* imgの余白をリセット */
  margin: 0 auto; /* 念のため中央寄せ */
}

/*-----------------------------------------------------
比較表PC
-------------------------------------------------------*/
#Hikaku-pc{
  background-color: #fff0e8;
}

@media only screen and (max-width: 767px){
  #Hikaku-pc{
  padding:1em 0 0 0 !important;
}
}

 /* scrollさせる */
.scroll_area{
  width: 100%;
  overflow-x: auto;
  cursor: grab;  /* ドラッグ感を出す */
  user-select: none; /* ドラッグ中に文字が選択されないようにする */
  -webkit-user-drag: none;
}
.scroll_area:active {
  cursor: grabbing;
}

 /* 票の項目 */
.hikaku-pc th {
    border: solid 1px #898989;
    padding: 15px 10px;
    width: 10em;
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 12rem;
    max-width: 12rem;
    box-sizing: border-box;
}
.hikaku-pc .th_bg{
  color: #333 !important;
  font-weight: bold;
  text-align: center;
  background-color: #e5e5e5;
}

 /* 票の内容 */
.hikaku-pc td {
  border: solid 1px #898989;
  padding: 3px 10px;
  min-width: 12rem;
  max-width: 12rem;
  box-sizing: border-box;
}

 /* 2位の票の内容 */
.hikaku-pc .td_bg{
  color: #333;
  font-weight: bold;
  background-color: #fff;
}


/*1位
-------------------------------------------------------*/
 /* 票の横幅と細いボーダー線 */
.hikaku-pc .td_rank01{
  min-width: 15rem;
  max-width: 15rem;
  box-sizing: border-box;
}

 /* 1位の背景と太いボーダー線 */
.hikaku-pc .td_bg_rank01_top {
  font-weight: bold;
  background-color: #fbffdc;
}
.hikaku-pc .td_bg_rank01{
  color: #333;
  font-weight: bold;
  background-color: #fbffdc;
  padding: 0.25rem;
  line-height: 1.25em;
}
.td_bg_rank01_text {
  line-height: 1.25em;
}
.hikaku-pc .td_bg_rank01_bottom{
  color: #333;
  font-weight: bold;
  background-color: #fbffdc;
  padding: 0.25rem;
}

/*-----------------------------------------------------
比較表スマホ
-------------------------------------------------------*/
#Hikaku-sp{
  padding: 2rem 0 0 0 !important;
  background-color: #fff0e8;
}

.promotion-text {
    margin-top: 0;
    margin-bottom: 0rem;
}
@media only screen and (max-width: 767px){
  #Hikaku-sp{
  padding:3rem 0 0 0 !important;
}

  .promotion-text {
    margin-top: 0;
    margin-bottom: 0rem;
}}

 /* 【スマホ】項目の横幅の割合 */
.td_rank_left{
  width: 40%;
}
.td_rank_center{
  width: 20%;
  border: solid 1px #898989;
  box-sizing: border-box;
}
.td_rank_right{
  width: 20%;
}


/*【スマホ】タブ
-------------------------------------------------------*/
.rank-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.25rem;
}
.rank-tab > label {
    flex: 1 1;
    order: -1;
    min-width: 5rem;
    padding: 0.25rem;
    border-radius: 5px 5px 0 0;
    background-color: #b3b0a6; /* 選択していないタブの背景色 */
    color: #fff; /* 選択していないタブの文字色 */
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1rem;
    text-align: center;
    cursor: pointer;
}
.rank-tab > label:hover {
    opacity: .8;
}
.rank-tab input {
    display: none;
}
.rank-tab > div {
    display: none;
    width: 100%;
    padding: 0;
    background-color: #fff;
}
.rank-tab label:has(:checked) {
    background-color: #f56235;; /* 選択しているタブの背景色 */
    color: #FFF; /* 選択しているタブの文字色 */
}
.rank-tab label:has(:checked) + div {
    display: block;
}


/*【スマホ】タブ下項目
-------------------------------------------------------*/
.hikaku_box_sp{
  background-color: #e5e5e5 !important;
  overflow-x: hidden; /* 横スクロールは無効 */
  position: relative; /* スクロールヒントのアイコンを出すため */
}

/*【スマホ】縦スクロールの設定 */
.hikaku_scroll_wrap {
  /*overflow-x: auto;*/
  -webkit-overflow-scrolling: touch; /* スマホで慣性スクロール */
  position: relative;
}
.hikaku-sp_ttl {
  position: sticky;
  top: 0;
  background: #fff; /* 背景つけないと下の行が透ける */
  z-index: 2;
}
/* 【スマホ】スクロールバーを隠す（iOS/Android） */
.hikaku_scroll_wrap::-webkit-scrollbar {
  display: none;
}

.hikaku-sp_ttl_td{
  color: #FFF;
  background-color: #f56235;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 0.2rem;
  font-size: 0.75rem;
  font-weight: bold;
  height: 5rem;
}
.hikaku-sp table{
  width: 100%;
}

/*【スマホ】票の内容 */
.hikaku-sp .crown_pic{
  width: 2.5rem; /* 順位のアイコン */　
}
/*【スマホ】2位以降の票の内容 */
.td_bg_rank_sp{
  background-color: #fff;
  border: solid 1px #898989;
  box-sizing: border-box;
  padding-bottom: 0.5rem;
}

/*スマホ1位
-------------------------------------------------------*/
/* 【スマホ】1位の背景と太いボーダー線 */
.td_bg_rank01_top_sp {
  background-color: #fbffdc;
  padding-bottom: 0.5rem;
}
.td_bg_rank01_sp {
  color: #333;
  background-color: #fbffdc;
}
.td_bg_rank01_bottom_sp {
  color: #333;
  font-weight: bold;
  background-color: #fbffdc;
}


/*-----------------------------------------------------
メインコンテンツ
-------------------------------------------------------*/
/*見出し*/
.gold-heading {
  color: #f56235;
  font-weight: 800;
  text-align: center;
  margin: 0 0 1.5rem;
  padding: 0.5em;
  border-top: solid 2px #F76B42;
  border-bottom: solid 2px #F76B42e4;
  background: -webkit-repeating-linear-gradient(
      -45deg, 
      #fff8f0,  /* とても薄いオレンジ */
      #fff8f0 3px,
      #ffeacc 3px, /* 薄めのオレンジ */
      #ffeacc 7px
  );
  background: repeating-linear-gradient(
      -45deg, 
      #fff8f0,
      #fff8f0 3px,
      #ffeacc 3px,
      #ffeacc 7px
  );
}

@media only screen and (max-width: 767px){
  .gold-heading {
    font-size: 1.3em;
  }
}

/*CTAボタン*/
a.btn_12 {
  display: flex; 
  justify-content: center;
  align-items: center;
  width: 97%;
  margin: auto;
  padding: 12px 36px;
  position: relative;

  font-weight: bold;
  color: #fff; /* 白文字 */
  text-align: center;
  text-decoration: none;

  border: none;
  border-right: 4px solid #cc001a; 
  border-bottom: 10px solid #990014;
  border-left: 4px solid #ff4d4d;
  border-radius: 9999px;

  background: linear-gradient(90deg, 
    #e6001e 0%,   /* 鮮やか赤 */
    #ff3344 30%,  /* 明るめ赤 */
    #ff5a5a 70%,  /* 温かみある赤オレンジ寄せ */
    #e6001e 100%  /* 端も赤寄せ */
  );
}

a.btn_12:hover {
}
.mocchiri {
    animation: mocchiri 2s infinite;
}
@keyframes mocchiri {
    0% {
        transform: scale(1, 0.8);
    }
    20% {
        transform: scale(0.8, 1.1);
    }
    95% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 0.8);
    }
}

.main{
  float: none;
    width: 71%;
    font-size: 15px;
    letter-spacing: .01em;
}
.side{
  float: none;
}


.highlight {
  background-color: #fff2cc;
  padding: 2px 4px;
  border-radius: 4px;
}

.list-style-circle {
  list-style-type: disc;
  padding-left: 1rem;
  text-align: left;
  display: inline-block; /* 中央寄せ */
}


/* 期待値 */

.reasonbox{
  display: flex;
}

.reasonbox li img {
  max-width: 90%; /* デフォルトは100%で親にフィット */
  height: auto;   /* アスペクト比を維持 */
  display: block;
  margin: 0 auto; /* 中央寄せ */
}

ul.reasonbox {
    list-style: none;
    padding: 0 !important; /* 左パディングをなくす */
}

/*-----------------------------------------------------
ランキング
-------------------------------------------------------*/
.box01 h2{
    background: #ff8c62;
    position: relative;
    margin-top: 1rem 0;
    padding: 15px 20px; /* ← 左側の余白を増やす */
    color: #fff;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px 6px 0 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    font-weight: 700;
    font-size: 20px;
}


h2 img {
  position: static; /* ← 絶対配置を解除 */
  margin-right: 10px; /* 文字との間隔 */
  width: 50px; /* 必要に応じてサイズ調整 */
  height: auto;
}

.box01 h2 img {
  position: absolute;
  left: 5px; /* ← 左からの距離 */
  width: 50px;
  height: auto;
}

.box01{
    border: 3px solid #ff8c62;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 40px;
}
.box01-end{
    margin-bottom: 0;
}

/* 👑付き見出しだけ余白を増やす */
.box01 h2.has-crown {
  padding-left: 4.25rem; /* 👑の分だけスペース */
}

/* 👑画像の位置設定 */
.box01 h2.has-crown img {
  position: absolute;
  left: 5px;
  width: 50px;
  height: auto;
}

.box02{
  padding:20px ;
}
h2 img{
  position: absolute;
  left: 0;
}

.rankingRating{
    border: 1px solid #d8d8d8;
    padding: 17px;
    line-height: 1.8em;
    font-weight: bold;
}
.rankingRatingItem {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #d8d8d8;
}

.rankingRatingItem:after {
    content: "";
    width: 100%;
    position: absolute;
}

.rankingRatingItem dt,
.rankingRatingItem dd{
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    font-size: 0.9em;
}

dl {
    margin-top: 0;
    margin-bottom: 0.5em !important;
}

.txt_bold-total{
  font-size: 1.3em;
}

.ratingStar-total{
  font-size: 1.3em;
}

@media screen and (max-width: 767px){
  .rankingRatingItem div {
  line-height: 1.3em;
}
  .rankingRating {
  margin-top: 0.5em;
}
}

.rankingTotal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #d8d8d8;
    margin-top: 15px;
    padding: 19px 10px 0;
}

.introduction-text{
  padding: 0 1em 0 1em;
}

.red{
      color: red;
}
.rankingTotal .rating, .rankingTotal2 .rating, .rankingTotal-sm .rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rankingTotal .ratingPoint span {
    font-size: 26px;
}
.ratingPoint .red {
    font-size: 16px;
    color: red;
    padding: 0 5px;
}
.ratingStar  svg{
    color: #fc0;
}
.ratingStar i.fa-empty {
    color: #ccc;
}

/*星*/
.star{
  font-size: 20px;
  color: #ffcc00;
}

.gray-harf-star {
  font-size: 20px;
  background: linear-gradient(90deg, gold 50%, lightgray 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*特典をチェック*/

h3.ranking_benefitst{
    color: #333;
    background: #ff8c62;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c0f9',endColorstr='#0358e6',GradientType=1);
    position: relative;
}
h3.ranking_benefitst{
    font-size: 18px;
    text-align: left;
    padding: 15px 15px 15px 100px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px){
  h3.ranking_benefitst{
    font-size: 16px;
    text-align: left;
    padding: 15px 15px 15px 100px;
    margin-bottom: 20px;
}
}

.ribbon_benefitst {
    display: inline-block;
    position: absolute;
    top: -10px;
    left: 15px;
    margin: 0;
    padding: 10px 0;
    z-index: 2;
    width: 60px;
    text-align: center;
    color: #334667;
    font-size: 13px;
    background: #ffe1e1;
    border-radius: 2px 0 0 0;
}
.ribbon_benefitst:before {
    position: absolute;
    content: '';
    top: 0;
    right: -7px;
    border: none;
    border-bottom: solid 10px #19364e;
    border-right: solid 7px transparent;
}
.ribbon_benefitst:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 30px solid #ffe1e1;
    border-right: 30px solid #ffe1e1;
    border-bottom: 10px solid transparent;
}

/*おすすめポイント*/

h3.ranking_point{
    color: #333;
    background: #FFCCAE;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c0f9',endColorstr='#0358e6',GradientType=1);
    position: relative;
}
h3.ranking_point{
    font-size: 18px;
    text-align: left;
    padding: 15px 15px 15px 100px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px){
  h3.ranking_point{
    font-size: 16px;
    text-align: left;
    padding: 15px 15px 15px 100px;
    margin-bottom: 20px;
}}
.ribbon_point {
    display: inline-block;
    position: absolute;
    top: -10px;
    left: 15px;
    margin: 0;
    padding: 10px 0;
    z-index: 2;
    width: 60px;
    text-align: center;
    color: #334667;
    font-size: 13px;
    background: #ffe1e1;
    border-radius: 2px 0 0 0;
}
.ribbon_point:before {
    position: absolute;
    content: '';
    top: 0;
    right: -7px;
    border: none;
    border-bottom: solid 10px #19364e;
    border-right: solid 7px transparent;
}
.ribbon_point:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 30px solid #ffe1e1;
    border-right: 30px solid #ffe1e1;
    border-bottom: 10px solid transparent;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  color: #FA6031;
}

/*TIPS
-------------------------------------------------------*/
/* ボックス全体 */
.box-019 {
    position: relative;
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2em 1.5em 1em 1.5em;
    border: 2px solid #FFCCAE;
    border-radius: 8px;
    background-color: #fff;
}

/* 吹き出しラベル */
.tips-label {
    position: absolute;
    top: -1.2em;
    left: 1em;
    padding: 0.4em 1.2em;
    border-radius: 25px;
    background-color: #FFCCAE;
    color: #333;
    font-size: 0.9em;
    font-weight: bold;
}

/* 吹き出し三角 */
.tips-label::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-color: #FFCCAE;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* 吹き出し本文 */
.tips-text {
    margin: 0;
    font-weight: bold;
}

/* PC画像のfigure余白リセット */
.box-019 .row figure {
    margin: 0;
}

/* SPスライダー li 余白調整（必要に応じて） */
.slide-items0624 {
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;     /* 縦中央 */
}

.slide-items0624 img {
  display: block;
  margin: 0 auto; /* 画像の左右中央寄せ */
  height: auto;
}

.slide-items{
  padding: 0 !important;
}

.slick-next:before {
    background: url(../images/slick-next.png) !important;
    background-size: contain !important;
}

.slick-prev:before {
    background: url(../images/slick-prev.png) !important;
    background-size: contain !important;
}

@media (max-width: 767px) {
  .slick-prev:before, .slick-next:before {
      color: #fff !important;
      opacity: 0.75 !important;
      font-size: 10px !important;
      background: #828282;
      border-radius: 50%;
      font-weight: bold;
      padding: 0.5em 0.8em;
  }
  .slick-arrow:before {
      content: "" !important;
      width: 50px !important;
      height: 50px !important;
      position: absolute;
      top: 0;
      left: -12px;
  }
}

@media (max-width:767px) {
  main.inner {
    display: block;
    line-height: 2;
}
.main {
    width: 100%;
    padding: 0 15px;
}
a.btn_12 {
    padding: 1rem 2rem 1rem 2rem;
    line-height: 1.3em;
}

.box02 {
    padding: 20px 10px;
}
.side {
    width: 100%;
}
.inner {
    padding: 0px;
}
}

/*-----------------------------------------------------
ネットスーパー（宅配）とは
-------------------------------------------------------*/
#About{
  background-color: #FFF;
}

.main-box{
  background-color: #FFF;
  margin: 1em auto;
  max-width: 900px;
}

.about_main{
  background-color: #FFF;
}

.about-img{
  margin: auto;
}

.about-main-img img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* 中央寄せ */
}

/* チェックリスト */
.check-list {
  list-style: none;
  padding: 25px 25px 25px 0 !important;
  margin: 20px 0;
  background: #fff8e7; /* ボックスの背景色 */
}


.check-list li {
  position: relative;
  padding-left: 35px; /* チェックマーク用のスペース */
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #FF0042;
  font-weight: bold;
  font-size: 1.2em; /* チェックのサイズを大きく */
}

/*-----------------------------------------------------
ネットスーパー（宅配）を利用するメリット
-------------------------------------------------------*/
#Method {
  background-color: #FFF;
  padding: 0 0 5rem;
}

.ttl_background1 {
  position: relative;
  display: inline-block;
  background: #FF7038;
  border-radius: 30px;
  padding: 16px 20px;
  font-weight: bold;
  color: #fff;
  margin: 0.5em 0 1em 0;
}

.ttl_background1::before {
  content: "";
  /* borderで三角形を作る */
  border-width: 10px;
  border-style: solid;
  border-color: #FF7038 transparent transparent transparent;
  /* 配置する */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* ←追加 */
}

.point-color {
  font-weight: bold;
  color: #FF7038;
  display: flex;           /* 横並びにする */
  align-items: center;     /* 縦中央揃え */
  gap: 10px;               /* 数字と文字の間のスペース */
}

.circle_number {
  width: 50px;
  height: 50px;
  line-height: 50px;       /* 縦中央揃え用 */
  background-color: #FF7038;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  color: #FFF;
  flex-shrink: 0;          /* 小さくならないように */
}

@media (max-width: 767px) {
  #Method {
  padding: 0 0 3rem;
}
  .ttl_background1{
    font-size: 1.3em;
  }
}

/*-----------------------------------------------------
ネットスーパー（宅配）を選ぶときのポイント
-------------------------------------------------------*/
#Strategy {
  background-color: #FFF;
}

/* 期待値 */
.flex-container {
    display: flex;
    justify-content: center;
}
.reason-ttl-img{
  display: block;
  margin: 0 auto;
  width: 9em;
  max-width: 100%; /* レスポンシブ対応 */
  height: auto;
}
.reason_box{
  display: flex;
  justify-content: center;
  align-items: center;
}
.reason_content{
  background-color: #ff8a00;
}
.reason-bg01{
  background-color: #fffdf2;
  padding: 30px 0;
}
.reason-bg02{
  background-color: #fff;
  padding: 30px 0;
}
.reason-ttl{
  font-weight: bold;
  color: #ff7038;
}

.reason-text{
  font-weight: bold;
}
.reason_pic{
   padding: 1.5rem 0;
   width: 25em;
  }

@media only screen and (max-width: 1199px){
  .reason_bg{
  font-size: 1.3rem;
}}
@media only screen and (max-width: 991px){
  .reason_bg{
  font-size: 1rem;
}}
@media only screen and (max-width: 767px){
  .reason_box{
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
}
.reason_bg{
  padding: 0.5em 1em;
  font-size: 1.3rem;
}
.reason_pic{
   padding: 2rem 0;
   width: 15em;
  }}

/*-----------------------------------------------------
目次
-------------------------------------------------------*/
#Contents{
  background-color: #fff0e8;
}

.side{
  float: none;
  margin:0 auto;
}

.side h2{
    background-color: #ff8c62;
    position: relative;
    margin-top: 0;
    padding: 15px 20px 15px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 1.25em;
}

.mokuji-text{
  font-weight: bold;
  font-size: 1em;
}

@media (max-width:767px) {
.side {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}
.side h2{
    font-size: 1em;
}
}

.list_w1{
  background:#fff;
}

.list_w{
  background:#fff;
}

.rank-item {
  display: flex;
  align-items: center; /* 縦位置を中央揃え */
  gap: 10px; /* 画像と文字の間隔 */
  align-items: center; /* ← これで上下中央にピッタリ */
}

.rank-img img {
  width: 45px; /* 好みのサイズに調整 */
  height: auto;
  display: block; /* ブラウザによっては微ズレ防止 */
  margin-left: 10px; /* 左に10pxスペース */
}

.rank-text {
  flex: 1; /* 残り幅いっぱいにテキストを配置 */
  color: #333;
  font-weight: 500;
  line-height: 1.4; /* 行間を少し整えるとさらに美しい */
  padding-right: 0.5em;
}

.main-box2{
  margin: 1em auto;
  max-width: 900px;
}


/*-----------------------------------------------------
ランキング
-------------------------------------------------------*/
#ranking{
  background-color: #fff0e8;
}


  /* リスト */

.search_list_area .list{
  min-height:4em;
  border:none;
  box-shadow:none;
  position:relative;
}
.search_list_area .list .list_item{
  background-color:#fff;
  position:relative;
  z-index:1;
  margin: 2rem 0 5rem;
}
.search_list_area .list .list_item.rank06{
  margin-top:5rem;
}

.list_item p.catch{
  font-size:2rem;
  font-weight:bold;

}
.list_item .sarvice_name{
  background-color:#F29BA6;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin:1rem 0;
  padding:0.5rem 1rem;
  position:relative;
}
.list_item .sarvice_name p{
  font-weight:bold;
  position:absolute;
  line-height:1;
  text-align:center;
}
.list_item .sarvice_name p span{
  color:#f1ff16;
}
.list_item .hyoka .sarvice_name h2{
  padding-left:5rem;
  font-size:2rem;
  font-weight:bold;
  color:#fff;
}
.list_item.rank01 .sarvice_name h2,
.list_item.rank02 .sarvice_name h2,
.list_item.rank03 .sarvice_name h2{
  padding-left:8rem;
}
.list_item .sarvice_name p img{
  width:50px;
}
.list_item .cap{
  padding-top: 15px;
}
.list_item .cap .img{
  width:calc(50% - 0.5rem);
}
.list_item .cap .txt .lead{
  font-weight:bold;
  color:#ff00ca;
  line-height:1.2;
  margin:0 0 1rem;
  transform:rotate(-4deg);
}
.list_item .point{
  width:100%;
  background-color: #ebfaff;
  border-radius:10px;
   background-image:
   repeating-linear-gradient(-45deg,#fff, #fff 7px,transparent 0, transparent 13px);
  padding:18px 10px 10px 10px;
  margin:1rem 0;
  font-size: 15px;
}
.list_item .hyoka .point h3{
  margin-top:0;
}
.list_item .hyoka .cap .point ul li{
  display: -webkit-flex;
  display: flex;
}
.list_item .cap .point ul li::before{
  content:url(../img/icon_check.png);
  transform: scale(0.5);
  display:inline-block;
}

.list_item .service_list{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left:1px solid #4f4f4f;
  border-top:1px solid #4f4f4f;
  margin:0 auto;
}
.list_item .service_list h4{
  width:10rem;
  text-align:center;
  font-size:1rem;
  line-height:1.2;
  background-color:#c5f6f7;
  font-weight:bold;
  color:#189da0;
  padding:1rem 0;
  border-right:1px solid #4f4f4f;
  border-bottom:1px solid #4f4f4f;
}
.tabele220520{
  overflow-x: scroll;
}
.tabele220520 table{
  width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}
.list_item .service_list p{
  width:calc(50% - 10rem);
  text-align:center;
  font-size:1rem;
  border-right:1px solid #4f4f4f;
  border-bottom:1px solid #4f4f4f;
  margin:0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content:         center;
}
.list_item .hyoka{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left:1px solid #4f4f4f;
  border-top:1px solid #4f4f4f;
  width:calc(100% - 2rem);
  margin:1rem auto;
}
.list_item .hyoka h3{
  width:100%;
  text-align:center;
  color:#fff;
  font-size:24px;
  font-weight:bold;
  background-color:#2a5772;
  border-right:1px solid #2a5772;
  border-bottom:1px solid #2a5772;
}
.list_item .hyoka h4{
  width:10rem;
  text-align:center;
  font-size:1.25rem;
  line-height:1.2;
  background-color:#b0d7d5;
  font-weight:bold;
  color:#2a5772;
  padding:1rem 0;
  border-right:1px solid #2a5772;
  border-bottom:1px solid #2a5772;
}
.list_item .hyoka p{
  width:calc(50% - 10rem);
  text-align:center;
  font-size:2rem;
  font-weight:bold;
  border-right:1px solid #2a5772;
  border-bottom:1px solid #2a5772;
  margin:0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content:         center;
  color:#e8cf1d;
}

@media screen and (max-width: 640px) {
  .hikaku_sec h2{
    text-align:left;
    padding:0 6rem 2rem .5rem;
    font-size:1.5rem;
  }
  .hikaku table{
    font-size: 0.8rem;
  }
  .hikaku table th{
    font-size: 14px;
    width: 2em;
    padding:0.5em;
    line-height: 1.3em;
    text-align: center;
  }
  .hikaku table td{
    width: 100px;
    padding:0.8em 1em;
  }
  .hikaku table td span{
    font-size:14px;
  }
}

/*-----------------------------------------------------
評価基準
-------------------------------------------------------*/
#Hyoukakizyun{
  background-color: #FFF;
}
.hyoukakizyun_text {
  font-size: 0.8rem;
  line-height: 1.25em;
}
.hyoukakizyun table {
  width: 100%;
  border-collapse: collapse; /* テーブルの線をきれいに見せるため追加 */
}
.hyoukakizyun_score{
  font-size: 1.5rem;
  padding-top: 0;
  margin-top: auto; /* 上の余白を自動で調整して下へ寄せる */
}
.hyoukakizyun th {
    font-size: 1rem;
    padding: 1.5rem 0.5rem;
    width: 12rem;
}
.hyoukakizyun_th_bg01{
  background-color: #EAEAEA;
  border: 1px solid #333;
}
.hyoukakizyun td{
  background-color: #fff;
  border: 1px solid #333;
  font-size: 0.9rem;
  width: 11rem;
  padding: 0.5rem 0;
  line-height: 1.05rem;
  vertical-align: bottom; /* セル内の内容を下揃えに */
  text-align: center;     /* 横方向は中央 */
  height: 80px;           /* 高さを固定すると揃いやすい */
}

.hyoukakizyun_small{
  font-size: 0.75rem;
}

@media only screen and (max-width: 767px){
.hyoukakizyun_text {
  font-size: 0.5rem;
  margin: 0;
}
.hyoukakizyun_small{
  font-size: 0.6rem;
}
.hyoukakizyun tr {
  display: block;
  margin-bottom: 0.5rem;
 }
.hyoukakizyun th {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    width: auto;
}

.hyoukakizyun td{
  border: 1px solid #333;
  font-size: 0.65rem;
    vertical-align: bottom; /* セル内の内容を下揃えに */
  text-align: center;     /* 横方向は中央 */
  height: 80px;           /* 高さを固定すると揃いやすい */
}

.hyoukakizyun_score{
  padding-top: 0;
  margin-top: auto; /* 上の余白を自動で調整して下へ寄せる */
}
}

/* 評価基準表 */
#Bosyu{
  background-color: #FFF;
  padding: 0.2em 0 !important;
}

.bosyu table {
  width: 100%;
}

.bosyu td {
  padding: 0.5em 2em;
  font-size: 1rem;
  color: #333;
}
.bosyu_bg_black {
  background-color: #EAEAEA;
  color: #333;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

.bosyu_bg_white {
  background-color: #FFF;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

/* アコーディオン */
/* アコーディオンのヘッダー部分 */
.accordion-button {
  background-color: #f5f5f5; /* 背景色 */
  color: #333; /* 文字色 */
  font-weight: bold; /* 太字 */
  border: 1px solid #333;
}

/* アコーディオン開閉時の色（展開されている時） */
.accordion-button:not(.collapsed) {
  background-color: #EAEAEA; /* 展開中の背景色 */
  color: #333; /* 展開中の文字色 */
}

/* アコーディオン本体（中身） */
.accordion-body {
  background-color: #fff; /* 内側の背景色 */
  border: 1px solid #333;
  padding: 1.5em;
}


@media only screen and (max-width: 767px) {
  .bosyu tr, .bosyu th, .bosyu td {
      display: block;
  }
}
@media only screen and (max-width: 767px) {
  .bosyu td {
      font-size: 0.9em;
  }
}

/*-----------------------------------------------------
フッター
-------------------------------------------------------*/
.footer {
  background-color: #ffccae !important;
  color:#333;
  padding: 14px 0 90px 0;
}

.precautions{
  padding-left: 2em;
}

ul {
  list-style: none;
  padding: 0 0 0 2em !important;
}

@media (max-width:991px) {
  footer {
    font-size: 12px;
    padding: 14px 0 90px 0;
  }
  
}
@media (max-width:480px) {
  footer {
    font-size: 10px;
    padding: 14px 0 90px 0;
  }
}
.footer_m a{
  color: #333 !important;
  text-decoration: none;
  text-align:center;
}
.footer_m a:hover{
  color: #000!important;
}

/*-----------------------------------------------------
ページトップへ移動
-------------------------------------------------------*/
.Page-top {
    position: fixed;
    right: 0;
    bottom: 5%;
    right: 1%;
}

@media (max-width: 767px) {
    .Page-top {
        bottom: 15% !important;
    }
}

/*-----------------------------------------------------
1位のネットスーパーはこちら
-------------------------------------------------------*/
.fix-btn {
    position: fixed;
    right: 0;
    bottom: 40%; /* 調整可 */
    z-index: 9999;
    width: auto;   /* 幅を画像に合わせる */
    text-align: right; /* 右端寄せ */
}

.fix-btn img.d-md-block {
    width: 80px;   /* お好みのサイズ */
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .fix-btn {
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100%; /* スマホサイズに応じて調整 */
    }
}

