  <style>

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
 font-family: sans-serif; 
 line-height: 1.6; 
 color: #333; 
 padding: 20px; 
}

/* FutureShop 標準のページ見出しを非表示に */
h1.fs-c-heading.fs-c-heading--page {
  display: none !important;
}


.eyecatch img {
  display: block;
  width: 100%;
  height: auto;
}

h1 { 
 font-size: 3rem;
 margin-bottom: 0.5em;
 font-weight: 600;
}

.h1-01 {
 font-size: 1.5rem; 
 color: #666; 
 margin-bottom: 1em; 
}





/* フィルターナビ */
.filter-bar {
  background-color: #362b5c;
  padding: 0.5rem 1rem;
}
.filter-list {
  display: flex;
  justify-content: center;
  gap: 8rem;
  list-style: none;
}
.filter-item a {
  position: relative;
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 0.25rem 0;
  display: inline-block;
}
/* ▼ アイコンを追加 */
.filter-item a::after {
  content: "▼";
  font-size: 1rem;
  margin-left: 0.4em;
  vertical-align: middle;
}
/* ホバー時の色変化 */
.filter-item a:hover {
  opacity: 0.8;
}
/* スムーズな移動 */
html {
  scroll-behavior: smooth;
}



/* ランキングタイトル */
.ranking-header {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  justify-content: center;

}

.ranking-header__icon {
  width: 50px; 
  height: 40px;
  margin-right: 0.5em;
  vertical-align: middle;
}

.ranking-header__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}




/* ランキング商品 */
.ranking-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2em 0;
}

/* カード本体 */
.item {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.item:hover {
  background-color: #f5f5f5;
}

/* リンク全体を Flexbox に */
.item-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* 画像 */
.item-image img {
  display: block;
  width: 100%;
  height: auto;
  border: none !important;
}

/* 本文部分を縦Flexコンテナに */
.item-body {
  display: flex;
  flex-direction: column;
  flex: 1;       /* 残り高さを占有 */
  padding: 10px;
}

/* タイトル */
.item-title {
  font-size: 1.2rem;
  margin: 0 0 8px;
  line-height: 1.3;
}

/* 配送マークを底部に横並び */
.item-delivery {
  /* 上部のすき間を自動で埋めて下寄せ */
  margin-top: auto;

  /* 横並びに */
  display: inline-block;
  white-space: nowrap;
  align-self: flex-start;
  margin-right: 8px;
  margin-bottom: 4px;

  /* 見た目 */
  font-size: 0.9rem;
  color: #e53935;
  border: 1px solid #e53935;
  padding: 2px 6px;
  border-radius: 3px;
}

/* 価格 */
.item-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d32f2f;
  margin: 0;
}

/* 順位バッジ */
.badge.rank {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 3px;
}
.badge.rank-1 { background: #cfa937; }
.badge.rank-2 { background: #b0b0b0; }
.badge.rank-3 { background: #e5a442; }






/* スタイルで選ぶ */
.style-erabu-banner {
  background-color: #3572b0;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 6rem;
}

.style-erabu-banner__subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.style-erabu-banner__title {
  font-size: 2rem;
  color: #fff;
  margin: 0.25rem 0 0;
  font-weight: bold;
}


/* スタイル一覧 */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin: 2em 0;
}

.style-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.style-card,
.style-card:link,
.style-card:visited,
.style-card:hover,
.style-card:active,
.style-card:focus {
  text-decoration: none;
  color: inherit;          /* 親要素の文字色を継承 */
}

.style-card * {
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}

.style-card:hover {
  background-color: #f5f5f5;
}

.style-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.style-card-content {
  position: relative;
  padding: 1em;
  flex: 1;
}

.style-card-title {
  font-size: 1.3rem;
  margin: 0 0 0.25em;
  display: flex;
  align-items: center;
  gap: 0.5ch;
}

.style-card-desc {
  font-size: 1rem;
  color: #666;
  margin: 0 0 1em;
  line-height: 1.4;
}

.style-icon-arrow {
  position: absolute;
  bottom: 1em;
  right: 1em;
  font-size: 1.5rem;
  color: #0073aa;
}






/* 予算で選ぶ */
.yosan-erabu-banner {
  background-color: #3572b0;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 6rem;
}

.yosan-erabu-banner__subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.yosan-erabu-banner__title {
  font-size: 2rem;
  color: #fff;
  margin: 0.25rem 0 0;
  font-weight: bold;
}


/* 予算一覧 */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 2em 0;
}

.budget-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 0px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.budget-card:hover {
  background-color: #f5f5f5; /* お好みで微調整してください */
}

.budget-image img {
  display: block;
  width: 80px;
  height: auto;
  border-radius: 6px;
}

.budget-content {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
  flex: 1;
}

.budget-price {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #d32f2f;
}

.budget-desc {
  font-size: 1.2rem;
  color: #666666;
  margin: 0 0 8px;
  line-height: 1.4;
}

.budget-arrow {
  margin-top: auto;
  margin-right: 0.5rem;
  align-self: flex-end;
  font-size: 1.5rem;
  color: #0073aa;
}

/* リンク装飾リセット */
.budget-card,
.budget-card:link,
.budget-card:visited,
.budget-card:hover,
.budget-card:active,
.budget-card:focus {
  text-decoration: none;
  outline: none;
  color: inherit;
}








/* 目的で選ぶ */
.scene-erabu-banner {
  background-color: #3572b0;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 6rem;
}

.scene-erabu-banner__subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.scene-erabu-banner__title {
  font-size: 2rem;
  color: #fff;
  margin: 0.25rem 0 0;
  font-weight: bold;
}


/* 目的一覧 */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin: 2em 0;
}

.scene-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.scene-card,
.scene-card:link,
.scene-card:visited,
.scene-card:hover,
.scene-card:active,
.scene-card:focus {
  text-decoration: none;
  color: inherit;          /* 親要素の文字色を継承 */
}

.scene-card * {
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}

.scene-card:hover {
  background-color: #f5f5f5;
}

.scene-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.scene-card-content {
  position: relative;
  padding: 1em;
  flex: 1;
}

.scene-card-title {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5ch;
}

.scene-icon-arrow {
  position: absolute;
  bottom: 0.5em;
  right: 1em;
  font-size: 1.5rem;
  color: #0073aa;
}




/* 種類で選ぶ */
.kinds-erabu-banner {
  background-color: #3572b0;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 6rem;
}

.kinds-erabu-banner__subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.kinds-erabu-banner__title {
  font-size: 2rem;
  color: #fff;
  margin: 0.25rem 0 0;
  font-weight: bold;
}

/*バナー */
body {
  background-color: #ffffff;
  padding: 40px;
  margin: 0;
}

#banner {
  background-color: #ffffff;
  border: 10px solid #d0e3f0; /* 枠線：淡いブルー */
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  color: #333;
}

.banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.banner__text-block {
  flex: 1;
}

.banner__title {
  font-size: 24px;
  color: #1f355e;
  margin-bottom: 16px;
}

.banner__description {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.banner__dates {
  list-style: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.7;
}

.banner__dates li {
  margin-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
}

.note {
  display: block;
  font-size: 13px;
  color: #555;
  margin-left: 1.5em;
}

.banner__image img {
  width: 100px;
  height: auto;
}

@media (max-width: 700px) {
  .banner__inner {
    flex-direction: column;
    align-items: center;
  }

  .banner__image {
    margin-top: 20px;
  }

  .banner__title {
    font-size: 20px;
  }

  .banner__description,
  .banner__dates {
    font-size: 14px;
  }
}




</style>
