@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 150px 0 0;
}
@media (max-width: 500px) {
  body {
    padding: 60px 0 0;
  }
}
body * {
  font-family: "M PLUS 1p", sans-serif;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media (min-width: 500px) {
  .pc {
    display: block !important;
  }
}
@media (max-width: 500px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 500px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 500px) {
  .sp {
    display: block !important;
  }
}

@media (min-width: 500px) {
  .pci {
    display: inline !important;
  }
}
@media (max-width: 500px) {
  .pci {
    display: none !important;
  }
}

@media (min-width: 500px) {
  .spi {
    display: none !important;
  }
}
@media (max-width: 500px) {
  .spi {
    display: inline !important;
  }
}

/* ---------------------------
   レイアウト：左=商品、右=サイドバー
---------------------------- */
.container {
  width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* ---------------------------
       商品カード
    ---------------------------- */
}
@media (max-width: 500px) {
  .container {
    width: 100%;
    display: block;
  }
}
.container .items {
  width: 900px;
  margin: 0 20px 0 0;
  padding: 0px;
}
@media (max-width: 500px) {
  .container .items {
    width: 95%;
    margin: 0 auto;
  }
}
.container .items .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 500px) {
  .container .items .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
.container .items .card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  text-decoration: none;
  /* ===========================
    発売から1ヶ月以上バッジ
  =========================== */
}
@media (max-width: 500px) {
  .container .items .card {
    width: calc(100% - 20px);
    padding: 10px;
    display: block;
    margin: 10px auto;
  }
}
.container .items .card .image-wrap {
  position: relative;
  display: inline-block;
}
.container .items .card .image-wrap .old-badge {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
  display: inline-block;
  margin: 5px;
}
.container .items .card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-top: 5px;
}
@media (max-width: 500px) {
  .container .items .card img {
    width: 100%;
    height: auto;
  }
}
.container .items .card .title {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
  color: #0077cc;
}
.container .items .card .category {
  color: #ffffff;
  font-size: 12px;
  background: rgba(106, 144, 253, 0.8);
  display: inline-block;
  padding: 3px 7px;
  border-radius: 5px;
  margin: 5px;
}
.container .items .card .source {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 10px;
  padding: 0;
}
.container .items .card .source img.source-logo {
  height: 25px;
  width: auto;
}
.container .items .card .source p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}
.container .items .card .price,
.container .items .card .date {
  margin: 0px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 500px) {
  .container .items .card .price,
  .container .items .card .date {
    font-size: 14px;
  }
}
.container .items .card .link {
  margin-top: 10px;
}
.container .items .card .link a {
  color: #0066cc;
  text-decoration: none;
}

.category-top-search .submit-and-clear {
  width: 100%;
  display: flex;
  justify-content: center;
}
.category-top-search .submit-and-clear button {
  width: 200px;
  border: none;
  padding: 8px;
  color: #fff;
  border-radius: 4px;
  margin: 10px;
}
.category-top-search .submit-and-clear .top-search-btn {
  background: #0077cc;
}
.category-top-search .submit-and-clear .top-clear-btn {
  background: #888888;
}

.subtitle {
  font-family: "M PLUS 1p", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-weight: bold;
  font-style: normal;
  color: black;
  display: inline-block;
  padding: 0 10px;
  margin: 10px 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(104, 161, 218, 0.3) 50%);
}
@media (max-width: 500px) {
  .subtitle {
    margin: 30px 0 10px 10px;
    padding: 0;
  }
}

.mark_blue {
  background: linear-gradient(to bottom, transparent 60%, rgba(104, 161, 218, 0.3) 50%);
}

.lead {
  width: 100%;
  margin: 0 auto 30px;
}
@media (max-width: 500px) {
  .lead {
    width: 95%;
  }
}
.lead .flex {
  margin-top: 10px;
  display: flex;
}
@media (max-width: 500px) {
  .lead .flex {
    display: block;
  }
}
.lead .flex img {
  height: 30px;
  width: auto;
  padding: 10px;
}
@media (max-width: 500px) {
  .lead .flex img {
    padding: 0 0 10px 0;
    display: none;
  }
}
.lead p {
  font-size: 16px;
  line-height: 25px;
  padding: 0;
  margin: 0 0 0 20px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: normal;
}
@media (max-width: 500px) {
  .lead p {
    margin: 0;
  }
}

.main-area {
  width: 900px;
  margin: 0;
  /* ---------------------------
       上部カテゴリ検索エリア
    ---------------------------- */
}
@media (max-width: 500px) {
  .main-area {
    width: 100%;
  }
}
.main-area .category-top-search {
  width: 900px;
  margin: 0 20px 30px 0;
  padding: 0;
}
@media (max-width: 500px) {
  .main-area .category-top-search {
    width: 95%;
    margin: 0px auto;
  }
}

/* ---------------------------
   サイドバー
---------------------------- */
.sidebar {
  width: 250px;
  background: #f8f8f8;
  padding: 20px;
  border: 1px solid #ddd;
  position: sticky;
  top: 120px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 500px) {
  .sidebar {
    /* デフォルトは非表示（右に隠す） */
    display: block;
    position: fixed;
    top: 55px;
    right: -100%;
    /* ← 画面外に隠す */
    height: 100vh;
    overflow-y: auto;
    z-index: 3000;
    transition: right 0.3s ease;
  }
}
.sidebar.open {
  right: 0;
  /* ← 表示状態 */
}
.sidebar h3 {
  margin-top: 0;
}
.sidebar input[type=text],
.sidebar select {
  width: 100%;
  padding: 6px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.sidebar button {
  width: 100%;
  padding: 8px;
  background: #0077cc;
  color: #fff;
  border: none;
  border-radius: 4px;
}

/* ---------------------------
   ハンバーガーメニュー
---------------------------- */
.hamburger {
  display: none;
}
@media (max-width: 500px) {
  .hamburger {
    display: block;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 4000;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* --- カテゴリチェックボックス（ボタン化） --- */
.category-checkboxes,
.source-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 12px;
}

.checkbox-item {
  position: relative;
  cursor: pointer;
  border: 1px solid #0077cc;
  border-radius: 20px;
  padding: 3px 10px;
  background: #fff;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.25s;
  display: inline-block;
  margin: 1px;
  /* 隠しチェックボックス */
  /* 通常状態 */
  /* チェックされている状態 */
}
.checkbox-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox-item span {
  color: #0077cc;
}
.checkbox-item.checked {
  background: rgba(106, 144, 253, 0.2);
  background: rgb(104, 161, 218);
  border-color: rgb(106, 144, 253);
}
.checkbox-item.checked span {
  color: rgb(106, 144, 253);
  color: white;
}

.checkbox-item-top {
  padding: 5px 15px;
  background: #fff;
  font-size: 14px;
}

/* ---------------------------
   ページネーション
---------------------------- */
.pagination {
  margin: 40px auto;
  text-align: center;
}
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 12px;
  margin: 5px;
  border-radius: 4px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
}
.pagination .current {
  background: #0066cc;
  color: #fff;
  font-weight: bold;
}

/* ---------------------------
   ヘッダー
---------------------------- */
header {
  width: 100%;
  position: fixed;
  /* ← 固定 */
  top: 0;
  left: 0;
  z-index: 2000;
  background: #fff;
  /* 上段の背景 */
  border-bottom: 1px solid #ddd;
  /* 1段目（ロゴ） */
  /* 2段目（コンビニ4社のナビ） */
}
@media (max-width: 500px) {
  header {
    width: 100%;
  }
}
header .header-top {
  width: 1250px;
  margin: 0 auto;
  background: #fff;
  padding: 10px 0;
}
@media (max-width: 500px) {
  header .header-top {
    width: 100%;
    padding: 0;
    height: 50px;
  }
}
header .header-top .logo {
  display: block;
  margin: 0 auto;
}
@media (max-width: 500px) {
  header .header-top .logo {
    width: 230px;
    margin: 0;
  }
}
header .header-top .logo img {
  height: 30px;
  width: auto;
}
@media (max-width: 500px) {
  header .header-top .logo img {
    height: 30px;
    padding: 10px;
  }
}
header .header-bottom {
  width: 100%;
  background: rgb(104, 161, 218);
  /* ← 要望の色 */
  padding: 8px 0;
}
@media (max-width: 500px) {
  header .header-bottom {
    height: 5px;
    padding: 0;
  }
}
header .header-bottom .nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 500px) {
  header .header-bottom .nav {
    width: 100%;
    max-width: 100%;
    display: none;
  }
}
header .header-bottom .nav a {
  color: #fff;
  /* ← 白文字 */
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}
header .header-bottom .nav a:hover {
  text-decoration: underline;
}

body {
  color: #333;
}

.image {
  max-width: 400px;
  border-radius: 8px;
}

.title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
}

.category,
.source,
.date,
.price {
  margin-top: 5px;
  color: #555;
}

.desc {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 15px;
}

/* 戻るリンク */
.back {
  margin-top: 25px;
}
.back a {
  color: #007bff;
  text-decoration: none;
}
.back a:hover {
  text-decoration: underline;
}

/* 免責事項 */
.disclaimer-wrap {
  background: #f7f7f7;
  border: 4px solid #007bff;
  padding: 20px;
  margin-top: 50px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.7;
  width: 800px;
  margin: 50px auto 30px;
}
@media (max-width: 500px) {
  .disclaimer-wrap {
    width: 80%;
  }
}
.disclaimer-wrap .disclaimer-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
  color: #007bff;
}
.disclaimer-wrap ul {
  padding-left: 20px;
}
.disclaimer-wrap ul li {
  margin-bottom: 10px;
  color: #444;
}

.footer {
  background: rgb(104, 161, 218);
  color: #fff;
  padding: 30px 0;
  margin-top: 40px;
}
.footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 500px) {
  .footer .footer-inner {
    width: 95%;
    padding: 0;
  }
}
.footer .footer-intro {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer .footer-disclaimer {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 15px;
}
.footer .footer-links {
  margin-bottom: 15px;
}
.footer .footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}
.footer .footer-links a:hover {
  text-decoration: underline;
}
.footer .footer-copy {
  font-size: 12px;
  opacity: 0.8;
}

/* ---------------------
    商品詳細ページ
---------------------*/
#detail-page {
  padding-top: 150;
  width: 100%;
  margin: 0 auto;
}
#detail-page #item-and-related {
  display: flex;
  width: 900px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  #detail-page #item-and-related {
    display: block;
    width: 95%;
  }
}
#detail-page #item-and-related .item-area {
  width: 550px;
}
@media (max-width: 500px) {
  #detail-page #item-and-related .item-area {
    width: 100%;
  }
}
#detail-page #item-and-related .item-area .source {
  width: 100%;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
}
#detail-page #item-and-related .item-area .source img {
  width: auto;
  height: 40px;
  vertical-align: middle;
  margin-right: 5px;
}
#detail-page #item-and-related .item-area .image {
  display: block;
  width: 350px;
  height: auto;
  margin: 10px auto;
}
@media (max-width: 500px) {
  #detail-page #item-and-related .item-area .image {
    width: 100%;
  }
}
#detail-page #item-and-related .item-area p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
#detail-page #item-and-related .item-area .title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}
#detail-page #item-and-related .item-area .category {
  color: #ffffff;
  font-size: 14px;
  background: rgba(106, 144, 253, 0.8);
  display: inline-block;
  padding: 3px 7px;
  border-radius: 5px;
}
#detail-page #item-and-related .item-area .tag {
  width: 350px;
  margin: 20px auto 0;
  /* ===========================
    発売から1ヶ月以上バッジ
  =========================== */
}
@media (max-width: 500px) {
  #detail-page #item-and-related .item-area .tag {
    width: 100%;
  }
}
#detail-page #item-and-related .item-area .tag .image-wrap {
  position: relative;
  display: inline-block;
}
#detail-page #item-and-related .item-area .tag .image-wrap .old-badge {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 5;
  pointer-events: none;
  display: inline-block;
  margin: 5px;
}
#detail-page #item-and-related .item-area .tag .category {
  color: #ffffff;
  font-size: 14px;
  background: rgba(106, 144, 253, 0.8);
  display: inline-block;
  padding: 3px 7px;
  border-radius: 5px;
}
#detail-page #item-and-related .item-area .note {
  font-size: 12px;
  color: rgb(150, 150, 150);
}
#detail-page #item-and-related .related-wrap {
  width: 340px;
  margin-top: 50px;
}
@media (max-width: 500px) {
  #detail-page #item-and-related .related-wrap {
    width: 100%;
    margin: 50px auto;
  }
}
#detail-page #item-and-related .related-wrap .related-title {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
  width: 100%;
}
#detail-page #item-and-related .related-wrap .related-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
@media (max-width: 500px) {
  #detail-page #item-and-related .related-wrap .related-list {
    width: 100%;
  }
}
#detail-page #item-and-related .related-wrap .related-item {
  width: 130px;
  margin: 8px;
  transition: opacity 0.2s ease;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  text-decoration: none;
}
@media (max-width: 500px) {
  #detail-page #item-and-related .related-wrap .related-item {
    width: calc(100% - 40px);
  }
}
#detail-page #item-and-related .related-wrap .related-item * {
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
#detail-page #item-and-related .related-wrap .related-item:hover {
  opacity: 0.85;
}
#detail-page #item-and-related .related-wrap .related-item img {
  width: 100%;
  border-radius: 8px;
}
#detail-page #item-and-related .related-wrap .related-item .related-item-title {
  color: black;
  font-weight: bold;
}
#detail-page #item-and-related .related-wrap .related-item .related-item-source img {
  width: auto;
  height: 25px;
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 500px) {
  #detail-page #item-and-related .related-wrap .related-item .related-item-source img {
    margin-bottom: 5px;
  }
}
#detail-page #item-and-related .related-wrap .related-item .related-item-date,
#detail-page #item-and-related .related-wrap .related-item .related-item-price {
  color: #666;
}

.page-and-sort {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
@media (max-width: 500px) {
  .page-and-sort {
    display: block;
    margin: 10px auto 20px;
  }
}
.page-and-sort .page {
  display: inline-block;
  margin: 0;
}
@media (max-width: 500px) {
  .page-and-sort .page {
    margin-bottom: 5px;
  }
}

.sort-form {
  display: inline-block;
}
.sort-form select {
  background: rgba(200, 150, 200, 0.3);
}

#contact {
  width: 800px;
  margin: 0 auto;
  width: 90%;
}
#contact h1 {
  margin: 0px auto 40px;
  font-size: 28px;
  text-align: center;
}
@media (max-width: 500px) {
  #contact h1 {
    font-size: 20px;
    margin-top: 20px;
  }
}
#contact h2 {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 500px) {
  #contact h2 {
    font-size: 16px;
  }
}
#contact form {
  width: 800px;
  margin: 50px auto;
}
@media (max-width: 500px) {
  #contact form {
    width: 100%;
  }
}
#contact form span {
  color: red;
  font-weight: bold;
  padding-left: 5px;
}
#contact form input,
#contact form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 5px;
}
@media (max-width: 500px) {
  #contact form input,
  #contact form textarea {
    width: 90%;
  }
}
#contact form button {
  width: 300px;
  display: block;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  background: rgb(104, 161, 218);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 500px) {
  #contact form button {
    width: 200px;
  }
}

#confirm {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  #confirm {
    width: 95%;
  }
}
#confirm table {
  width: 700px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 500px) {
  #confirm table {
    width: 100%;
  }
}
#confirm table tr th {
  width: 250px;
}
#confirm table tr td {
  width: 400px;
}
#confirm .btn-area {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 500px) {
  #confirm .btn-area {
    display: block;
  }
}
#confirm button {
  width: 300px;
  display: block;
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  background: rgb(104, 161, 218);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  margin: 10px;
}
@media (max-width: 500px) {
  #confirm button {
    width: 250px;
    margin: 15px auto;
  }
}
#confirm .back {
  background: rgb(150, 150, 150);
}

#thanks {
  width: 600px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  #thanks {
    width: 95%;
  }
}
#thanks h1 {
  text-align: center;
}
@media (max-width: 500px) {
  #thanks h1 {
    font-size: 18px;
  }
}
#thanks p {
  text-align: center;
}

.weekly-title {
  font-size: 26px;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .weekly-title {
    width: 95%;
    margin: 10px auto 20px;
    font-size: 20px;
  }
}

.weekly-title-start-to-end {
  color: rgb(150, 150, 150);
  font-size: 20px;
  margin-top: 0;
  font-weight: normal;
}

.weekly-lead {
  font-size: 16px;
  width: 95%;
  margin: 0 auto;
}

.sp_header {
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 500px) {
  .sp_header {
    display: none;
  }
}
@media (max-width: 500px) {
  .sp_header {
    display: block;
  }
}
.sp_header nav {
  width: 100%;
}
.sp_header nav a {
  display: block;
  font-size: 18px;
  color: rgb(106, 144, 253);
  text-decoration: none;
  margin: 5px 0;
}/*# sourceMappingURL=style.css.map */