@charset "utf-8";

/* ==========================================================================
   Foundation
   ========================================================================== */

/* Font Sizing Utilities */
.u-fz-xs { font-size: 1.0rem; }
.u-fz-s  { font-size: 1.3rem; }
.u-fz-m  { font-size: 1.6rem; }
.u-fz-l  { font-size: 2.4rem; }
.u-fz-xl { font-size: 3.6rem; }
.u-fz-xxl{ font-size: 5.0rem; }

/* Clearfix */
.u-clearfix::before,
.u-clearfix::after {
  content: "";
  display: table;
}
.u-clearfix::after {
  clear: both;
}

/* Display Utilities */
.u-hide { display: none; }
.u-block { display: block; }
.u-inline-block { display: inline-block; }

/* Responsive Visibility */
@media screen and (min-width: 960px) {
  .u-sp-only { display: none !important; }
}
@media screen and (max-width: 959px) {
  .u-pc-only { display: none !important; }
}

/* Flexbox Utilities */
.u-flex {
  display: flex;
}
.u-flex--justify-between {
  justify-content: space-between;
}
.u-flex--justify-center {
  justify-content: center;
}
.u-flex--wrap {
  flex-wrap: wrap;
}
.u-flex--align-center {
  align-items: center;
}

/* Text Align */
.u-text-right { text-align: right; }
.u-text-center { text-align: center; }
.u-text-left { text-align: left; }

/* Margin / Padding Utilities */
.u-mb-10 { margin-bottom: 10px; }
.u-mb-20 { margin-bottom: 20px; }
.u-mb-30 { margin-bottom: 30px; }
.u-mb-40 { margin-bottom: 40px; }
.u-pt-60 { padding-top: 60px; }
.u-text-red { color: #ef0892; }

/* ==========================================================================
   Base
   ========================================================================== */

html {
  font-size: 62.5%; /* 10px base */
}

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:link,
a:visited {
  color: #333;
}

a:hover,
a:active {
  color: #ef0892;
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    padding-right: 2% !important;
    padding-left: 2% !important;
  }
}

/* ==========================================================================
   Component: Buttons
   ========================================================================== */

.c-btn {
  display: inline-block;
  width: 10rem;
  padding: 14px 0.5rem;
  border: 1px solid #005dad;
  background: #005dad;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.c-btn:hover {
  background: #fff;
  color: #005dad;
}

.c-btn--white {
  background: #fff;
  color: #005dad;
}

.c-btn--white:hover {
  background: #005dad;
  color: #fff;
}

.c-btn--large {
  min-width: 40%;
  padding: 20px 0.5rem;
  font-size: 1.25rem;
}

/* BCart Default Button Overwrite */
.search .c-button,
.search .c-button-submit,
.f_search .c-button,
.f_search .c-button-submit,
.p-footer-search .c-button,
.p-top-search .c-button {
  border-radius: 24px;
  background: #000;
  color: #fff;
}

/* ==========================================================================
   Utility: Headlines
   ========================================================================== */

.c-heading-main,
.c-h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

.c-h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

.site-headline {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

/* c-heading-main style fix */
.c-heading-main {
  margin-bottom: 20px;
  padding: 10px 0;
  background-color: transparent !important;
  border-bottom: 2px solid #333;
  color: #333;
  font-size: 2.0rem;
  line-height: 1.4;
}

/* c-heading-aside style fix */
.c-heading-aside {
  margin: 0;
  padding: 0.5em 0;
  background-color: transparent !important;
  border-bottom: 2px solid #333;
  color: #333;
  font-size: 1.15em;
  font-weight: bold;
}

/* ==========================================================================
   Layout: Wrapper (Home SP)
   ========================================================================== */

@media screen and (max-width: 598px) {
  .wrapper.wrapper--home {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   Layout: Header (PC)
   ========================================================================== */

.p-header-pc {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .p-header-pc {
    display: none;
  }
}

/* Top Bar (Obi) */
.p-header-pc__bar {
  padding: 6px 2%;
  background: #f4f4f4;
}

.p-header-pc__site-desc a {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
}

/* Sub Nav */
.p-header-pc__sub-nav {
  list-style: none !important;
  padding: 0;
  margin: 0;
  display: flex;
}

.p-header-pc__sub-nav li {
  list-style: none !important;
  margin-right: 1em;
}

@media screen and (min-width: 960px) and (max-width: 1279px) {
  .p-header-pc__sub-nav li {
    margin-right: 0.8em;
    font-size: 1.2rem;
  }
  .p-header-pc__sub-nav li:first-child {
    display: none;
  }
}

.p-header-pc__sub-nav a {
  display: block;
  color: #333;
  font-weight: bold;
}

.p-header-pc__sub-nav a i {
  color: #c7c7c7;
}

/* Main Header Area */
.p-header-pc__main {
  padding: 20px 0 14px;
  text-align: center;
}

.p-header-pc__logo {
  display: inline-block;
  margin: 0 auto;
}

/* Login/Logout Switch */
.p-header-pc__icons li.is-logout-btn {
  display: none;
}
.__is-member .p-header-pc__icons li.is-logout-btn {
  display: block;
}
.__is-member .p-header-pc__icons li.is-login-btn {
  display: none;
}

.p-header-pc__icons a {
  position: relative;
}

.p-header-pc__icons .js-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}

.p-header-pc__icons a:hover .js-hover-img {
  opacity: 1;
}

/* ==========================================================================
   Layout: Header (SP)
   ========================================================================== */

.p-header-sp {
  display: none;
}

@media screen and (max-width: 959px) {
  .p-header-sp {
    display: block;
  }
}

/* SP Top Bar */
.p-header-sp__bar {
  display: none;
  padding: 5px 4%;
  background: #f4f4f4;
}

.p-header-sp__bar a {
  color: #333;
  font-weight: bold;
}

/* SP Main Header */
.p-header-sp__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2%;
}

.p-header-sp__trigger {
  display: flex;
  align-items: center;
}

/* 左側エリア（メニューボタン） */
.p-header-sp__trigger:first-child {
  width: 20%;
  justify-content: flex-start;
}

/* 右側エリア（商品一覧・カートボタン） */
.p-header-sp__trigger:last-child {
  width: 25%;
  justify-content: flex-end;
}

.p-header-sp__trigger span {
  display: inline-block;
  width: auto;
  max-width: 44px;
  padding: 4px;
  cursor: pointer;
}

.p-header-sp__trigger span img {
  width: 100%;
  height: auto;
}

/* ロゴエリア */
.p-header-sp__logo {
  width: 55%;
  max-width: none;
  padding: 0 5px;
  text-align: center;
}

.p-header-sp__logo a {
  display: block;
}

.p-header-sp__logo img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  vertical-align: middle;
}

.p-header-sp__cart {
  display: block;
  padding: 0;
}

.p-header-sp__cart a {
  display: block;
}

/* Search Box (SP) */
.p-header-sp__search {
  padding: 8px 1% 8px 4%;
}

.p-header-sp__search input[type="text"] {
  width: calc(100% - 7.2em);
  height: 36px;
  padding: 6px 1.5em;
  border: 2px solid #000;
  border-radius: 6px 0 0 6px;
}

.p-header-sp__search input[type="text"]::placeholder {
  color: #ccc;
}

.p-header-sp__search button {
  width: 7.2em;
  height: 36px;
  margin-top: 0;
  margin-left: -4px;
  padding: 6px 0;
  border: none;
  border-radius: 0 6px 6px 0;
  background: #000;
  color: #fff;
  box-shadow: none;
}

/* Info Bar (SP) */
.p-header-sp__info {
  padding: 6px 4%;
  background: #f4f4f4;
  color: #333;
  font-size: 1.2rem;
}

.p-header-sp__info a {
  color: #333;
}

/* Icon Links (SP) */
.p-header-sp__icons {
  padding: 0;
}

.p-header-sp__icons ul {
  padding: 20px 6%;
  list-style: none;
}

.p-header-sp__icons li {
  width: 30%;
}

.p-header-sp__icons li:nth-child(2) {
  border-right: 1px solid #f4f4f4;
  border-left: 1px solid #f4f4f4;
}

/* Drawer Menu (Overlay) */
.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: scroll;
}

.p-drawer__header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3001;
  width: 100%;
  padding: 14px 4%;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.p-drawer__header img {
  width: 55%;       /* 40% -> 55% */
  max-width: none;
  max-height: 60px;
  object-fit: contain;
  vertical-align: middle;
}

/* ドロワー内の検索ボックスに余白を追加 */
.p-drawer .p-header-sp__search {
  margin-top: 20px; 
  padding: 0;
}

.p-drawer__close {
  position: absolute;
  top: 16px;
  left: 10px;
  cursor: pointer;
}

.p-drawer__close img {
  width: 36px;
}

.p-drawer__body {
  padding-top: 80px;
}

.p-drawer-list__header {
  min-height: auto;
  padding-bottom: 20px;
}

.p-drawer-list__body {
  padding-top: 170px;
}

.p-drawer__appeal {
  padding: 10px 4%;
  text-align: center;
}

.p-drawer__appeal p {
  padding: 8px 1em;
  background: #f4f4f4;
  font-weight: bold;
}

.p-drawer__appeal span {
  color: #ef0892;
}

.p-drawer__icons {
  padding: 20px 6%;
  list-style: none;
}

.p-drawer__icons li {
  width: 30%;
  margin-bottom: 10px;
}

.p-drawer__icons li:nth-child(2),
.p-drawer__icons li:nth-child(5) {
  border-right: 1px solid #f4f4f4;
  border-left: 1px solid #f4f4f4;
}

.p-drawer__login {
  margin-bottom: 20px;
  padding: 0 4%;
  text-align: center;
}

.p-drawer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-drawer__nav li {
  border-bottom: 2px solid #eff0e7;
}

.p-drawer__nav li:first-child {
  border-top: 2px solid #eff0e7;
}

.p-drawer__nav a {
  position: relative;
  display: block;
  padding: 17px 1em;
  color: #333;
  font-weight: bold;
}

.p-drawer__nav a::after {
  content: ">";
  position: absolute;
  top: 17px;
  right: 1em;
  color: #afa178;
  transform: scale(0.5, 1.4);
}

/* Accordion UI for Product List */
.p-drawer-accordion__heading {
  padding: 15px 4%;
  background: #f4f4f4;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #ddd;
}

.p-drawer-accordion__list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.p-drawer-accordion__item {
  border-bottom: 1px solid #eee;
}

/* Parent Trigger */
.p-drawer-accordion__trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 4%;
  background: #fff;
  color: #333;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
}

.p-drawer-accordion__trigger:hover {
  background-color: #fafafa;
}

/* Icon (+/-) */
.p-drawer-accordion__trigger::after {
  content: '\f067'; /* Plus icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5%;
  color: #ccc;
  transition: transform 0.3s;
}

.p-drawer-accordion__trigger.is-active::after {
  content: '\f068'; /* Minus icon */
  color: #ef0892;
}

.p-drawer-accordion__content {
  display: none; /* JS toggles this */
  background: #f9f9f9;
  padding: 0;
}

.p-drawer-accordion__sub-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.p-drawer-accordion__sub-item {
  border-bottom: 1px solid #eee;
}

.p-drawer-accordion__sub-item:last-child {
  border-bottom: none;
}

.p-drawer-accordion__sub-link {
  display: block;
  padding: 12px 4% 12px 8%; /* Indented */
  color: #666;
  font-size: 1.3rem;
  text-decoration: none;
}

.p-drawer-accordion__sub-link:hover {
  background-color: #f0f0f0;
  color: #ef0892;
}

.p-drawer-accordion__sub-link--all {
  color: #ef0892;
  font-weight: bold;
}

.p-drawer-brand-list {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  list-style: none !important;
}

.p-drawer-brand-list li {
  width: 50%;
  padding: 5px;
  box-sizing: border-box;
}

.p-drawer-brand-list a {
  display: block;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 4px;
}

/* ==========================================================================
   Project: Search Box (Header)
   ========================================================================== */

.p-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.p-search-box {
  width: 90%;
  max-width: 500px;
  padding: 20px;
  border-radius: 10px;
  background: white;
  text-align: center;
}

.p-search-box__input {
  width: 90%;
  padding: 10px;
  margin-top: 10px;
  font-size: 16px;
}

.p-search-box__submit {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
}

.p-search-box__close {
  display: inline-block;
  margin-top: 15px;
  color: #555;
  cursor: pointer;
}

.p-header-pc__search .search input#keyword {
  width: calc(100% - 8em);
  padding: 10px 1.5em;
  border: 2px solid #000;
  border-radius: 24px;
}

.p-header-pc__search .search input#keyword::placeholder {
  color: #ccc;
}

.p-header-pc__search .search button.__button {
  width: 7em;
  padding: 12px 0;
  border: none;
  border-radius: 15px;
  background: #000;
  color: #fff;
  box-shadow: none;
}

/* ==========================================================================
   Layout: Sidebar
   ========================================================================== */

/* Hide Default Login Heading */
.aside section.__block.__block--login .__heading {
  display: none !important;
}

/* Sidebar Block Container */
.p-sidebar-block {
  margin-bottom: 20px;
}

@media screen and (max-width: 959px) {
  .p-sidebar-free-3,
  .p-sidebar-free-1 .p-sidebar-info {
    display: none !important;
  }
}


/* Sidebar Heading */
.p-sidebar-heading {
  margin: 0;
  padding: 0.5em 0;
  border-bottom: 2px solid #333;
  background: #fff;
  color: #333;
  font-size: 1.15em;
  font-weight: bold;
}

.p-sidebar-auth {
  padding: 0.5em 0;
  text-align: right;
}

.p-sidebar-auth__link {
  font-size: 0.9em;
  text-decoration: underline;
}

.p-sidebar-banner {
  margin: 20px 0;
  padding: 10px;
  background-color: #f4f4f4;
  list-style: none !important;
}

.p-sidebar-banner__item {
  margin-bottom: 8px;
}

.p-sidebar-banner__item:last-child {
  margin-bottom: 0;
}

.p-sidebar-banner__item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.p-sidebar-info {
  margin-top: 20px;
}

.p-sidebar-info__content {
  padding: 10px 0;
  font-size: 1.2rem;
}

.p-sidebar-info__content a {
  color: #333;
  text-decoration: underline;
}

.p-sidebar-free-2 .p-sidebar-banner {
  background-color: transparent;
  padding: 0;
  margin-bottom: 30px;
}

.p-sidebar-nav {
  padding: 10px 0;
}

.p-sidebar-nav__list {
  padding: 0;
  margin: 0;
  list-style: none !important;
}

.p-sidebar-nav__item {
  margin-bottom: 1px;
}

.p-sidebar-nav__link {
  display: block;
  padding: 10px 15px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
  border-bottom: 1px solid #eee;
}

.p-sidebar-nav__link:hover {
  background-color: #f4f4f4;
  color: #000;
}

.p-sidebar-nav__link span {
  display: inline-block;
  vertical-align: middle;
}

/* -----------------------------------------------------------
   カテゴリリスト（.category-list）
   ※JSアコーディオン用
   ----------------------------------------------------------- */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}

/* 親カテゴリ */
.category-list > li {
    border-bottom: 1px solid #eee;
    position: relative;
}
.category-list > li:last-child {
    border-bottom: none;
}
.category-list > li > a {
    display: block;
    padding: 15px 50px 15px 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}
.category-list > li > a:hover {
    background-color: #f9f9f9;
}

/* 開閉ボタン */
.category-list .toggle-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    cursor: pointer;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.category-list .toggle-btn::before,
.category-list .toggle-btn::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #666;
    transition: transform 0.3s;
}
.category-list .toggle-btn::after {
    transform: rotate(90deg);
}
/* 開いた状態 */
.category-list .toggle-btn.active::after {
    transform: rotate(0deg);
}

/* サブカテゴリ */
.category-list ul {
    display: none;
    list-style: none;
    padding: 0;
    background-color: #f4f4f4;
}
.category-list ul li a {
    display: block;
    padding: 12px 15px 12px 30px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px dotted #ccc;
}
.category-list ul li:last-child a {
    border-bottom: none;
}
.category-list ul li a:hover {
    color: #000;
    background-color: #ebebeb;
}



.aside section.__block.__block--category .__body ul.__tree {
padding-top:0.5em;
}
.aside section.__block.__block--category .__body ul.__tree > li.__item {
  position: relative !important;
  border-bottom: 1px solid #eee;
}

.aside section.__block.__block--category .__body ul.__tree > li.__item > a {
  font-weight: bold;
  display: block;
  padding: 10px 0;
}

/* Category Icons (PC/SP Common) */
.aside section.__block.__block--category .__body ul.__tree > li.__item.__item--has-children > a::after {
  content: none !important;
}

.aside section.__block.__block--category .__body ul.__tree > li.__item.__item--has-children > a::before {
  content: "\f138";
  margin-right: 0.5em;
  color: #ffd900;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}

.aside section.__block.__block--category .__body ul.__tree > li.__item.__item--27 > a::before,
.aside section.__block.__block--category .__body ul.__tree > li.__item.__item--41 > a::before {
  content: "\f138";
  margin-right: 0.5em;
  color: #ffd900;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}

/* PC Only Styles (Hover Menu) */
@media screen and (min-width: 960px) {
  .aside section.__block.__block--category .__body ul.__tree > li.__item.__item--has-children span.__js-toggle {
    display: none !important;
  }
  .aside section.__block.__block--category .__body ul.__tree > li.__item > ul {
    display: none !important;
    position: absolute;
    top: 0;
    left: 100%;
    width: 20em;
    padding-left: 0;
    background: #fff;
    box-shadow: 2px 2px 6px #ccc;
    z-index: 100;
  }
  .aside section.__block.__block--category .__body ul.__tree > li.__item > ul > li a {
    padding: 10px 3em 10px 1.2em;
  }
  .aside section.__block.__block--category .__body ul.__tree > li.__item > ul > li > ul {
    display: none !important;
    position: absolute;
    top: 0;
    left: 100%;
    width: 20em;
    padding-left: 0;
    background: #fff;
    box-shadow: 2px 2px 6px #ccc;
    z-index: 100;
  }
  .aside section.__block.__block--category .__body ul.__tree > li.__item:hover > ul,
  .aside section.__block.__block--category .__body ul.__tree > li.__item > ul > li:hover > ul {
    display: block !important;
  }
}

/* SP Only Styles (Accordion) */
@media screen and (max-width: 959px) {
  .aside section.__block.__block--category .__body ul.__tree > li.__item > ul {
    display: none;
    position: static;
    width: 100%;
    padding: 0;
    background: #f9f9f9;
    box-shadow: none;
    border-top: 1px solid #eee;
  }
  .aside section.__block.__block--category .__body ul.__tree > li.__item > ul > li {
    border-bottom: 1px solid #eee;
  }
  .aside section.__block.__block--category .__body ul.__tree > li.__item > ul > li a {
    padding: 12px 10px 12px 30px;
    font-size: 1.3rem;
  }
  .aside section.__block.__block--category .__body ul.__tree > li.__item.__item--has-children span.__js-toggle {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 44px;
    cursor: pointer;
    z-index: 10;
  }
}

/* ==========================================================================
   Layout: Top Page
   ========================================================================== */

/* Top Free 1 (Search) */
.p-top-search {
  padding: 24px 0 14px;
}

@media screen and (max-width: 598px) {
  .p-top-search {
    display: none;
  }
}

.p-top-search__inner {
  display: flex;
  justify-content: center;
}

.p-top-search__form {
  width: 88%;
  text-align: center;
}

.p-top-search__form input[type="text"] {
  width: calc(100% - 8em);
  padding: 10px 1.5em;
  border: 2px solid #000;
  border-radius: 24px;
}

.p-top-search__form input[type="text"]::placeholder {
  color: #ccc;
}

.p-top-search__form button {
  width: 7em;
  padding: 12px 0;
  border: none;
  border-radius: 15px;
  background: #000;
  color: #fff;
  box-shadow: none;
  font-weight: bold;
  cursor: pointer;
}

/* Top Free 2 (Brand/Maker) */
.p-top-brand {
  margin-bottom: 20px;
}

.p-top-brand__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.p-top-brand__item {
  width: auto;
}

@media screen and (max-width: 598px) {
  .p-top-brand__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.p-top-brand__link {
  display: block;
  color: #333;
  text-decoration: none;
}

.p-top-brand__link:hover {
  opacity: 0.7;
}

.p-top-brand__img {
  display: block;
  margin-bottom: 4px;
}

.p-top-brand__img img {
  width: 100%;
  height: auto;
}

/* Top Free 3 (Category) */
.p-top-category {
  margin-bottom: 40px;
}

@media screen and (max-width: 598px) {
  .p-top-category {
    display: none;
  }
}

.p-top-category__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none !important;
  padding: 1em 2.5rem;
  margin: 0;
  border: 2px solid #f4f4f4;
}

.p-top-category__item {
  width: calc(33.333% - 20px);
  margin-bottom: 30px;
  box-sizing: border-box;
}

.p-top-category__main-link {
  display: block;
  margin-bottom: 10px;
  padding: 0.5em 1rem;
  border-bottom: 2px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15em;
}

.p-top-category__main-link img {
  vertical-align: middle;
  margin-right: 5px;
}

.p-top-category__sub-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.p-top-category__sub-item {
  padding-top: 1em;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1rem;
}

.p-top-category__sub-item a {
  display: block;
  color: #333;
  text-decoration: none;
}

/* Icon style fix (L-shape arrow) */
.p-top-category__sub-item a::before {
  content: "┗";
  margin-right: 5px;
  color: #c7c7c7;
  font-weight: bold;
}

.p-top-category__sub-item a:hover {
  color: #666;
}

/* ==========================================================================
   Layout: B-Cart System Blocks (Ranking, Viewed, etc.)
   ========================================================================== */

/* Fix for Layout Collapse in Ranking/Viewed Items */
.wrapper .main .p-product-block ul.__product {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  list-style: none !important;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 598px) {
  .wrapper .main .p-product-block ul.__product {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px 10px;
  }
}

.wrapper .main .p-product-block ul.__product li.__item {
  width: auto !important;
  border: none;
}

.wrapper .main .p-product-block ul.__product li.__item a .__photo {
  height: 12em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper .main .p-product-block ul.__product li.__item a .__photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Ranking Number Icon Style Fix */
.p-product-block .__rank .__icon {
}

/* Description Text Style */
.p-product-block .__title {
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 10px;
  line-height: 1.4;
}

/* ==========================================================================
   Layout: Footer
   ========================================================================== */

/* Footer Background & Search */
footer,
.top_cat_list_sp {
  background-color: #fff !important;
}

.p-footer-search {
  padding: 30px 0;
  background-color: #e5e5e5;
}

.p-footer-search__title {
  padding-bottom: 15px;
  text-align: center;
}

.p-footer-search__form {
  text-align: center;
}

.p-footer-search__form input[type="text"] {
  width: 100%;
  max-width: 350px;
  height: 40px;
  padding: 10px 1.5rem;
  border: 2px solid #000;
  border-radius: 24px;
}

@media screen and (max-width: 598px) {
  .p-footer-search__form input[type="text"] {
    width: 75%;
  }
}

.p-footer-search__form button {
  padding: 9px 7px;
  margin-top: 2px;
  background-color: #967569;
  color: #fff;
  font-weight: bold;
}

.p-footer-search__form button:hover {
  cursor: pointer;
}

/* Footer Category Menu (PC/Tablet) */
.p-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  max-width: 1330px;
  margin: 30px auto 5px;
  padding: 0;
  list-style: none !important;
}

.p-footer-menu li {
  width: calc(100% / 7);
  padding: 5px;
  box-sizing: border-box;
  list-style: none !important;
  text-align: center;
}

@media screen and (min-width: 600px) and (max-width: 1279px) {
  .p-footer-menu li {
    width: calc(100% / 4);
  }
}

@media screen and (max-width: 598px) {
  .p-footer-menu li {
    width: calc(100% / 2);
  }
}

.p-footer-menu a {
  display: inline-block;
  padding: 5px 10px;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.p-footer-menu a::before {
  content: "#";
  margin-right: 2px;
  color: #000;
  font-weight: normal;
}

.p-footer-menu a:hover {
  color: #ef0892;
  text-decoration: underline;
}

.p-footer-menu a:hover::before {
  color: #ef0892;
}

/* Footer Info Area (Payment, Shipping, etc.) */
.p-footer-info {
  padding: 50px 2% 0;
  background-color: #f4f4f4;
}

@media screen and (max-width: 598px) {
  .p-footer-info {
    display: none;
  }
}

/* Guide Links (PC) */
.p-footer-guide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.p-footer-guide__item {
  width: calc((100% - 60px) / 4);
}

@media screen and (min-width: 600px) and (max-width: 1279px) {
  .p-footer-guide__item {
    width: calc((100% - 20px) / 2);
    margin-bottom: 2rem;
  }
}

.p-footer-guide__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-footer-guide__more {
  margin-top: 10px;
  text-align: right;
}

.p-footer-guide__more a {
  padding-left: 3px;
  color: #f67432;
  text-decoration: underline;
}

.p-footer-guide__more::before {
  margin-right: 3px;
  color: #c7c7c7;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

/* Footer SP Nav */
.p-footer-sp-nav {
  display: none;
}

@media screen and (max-width: 598px) {
  .p-footer-sp-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none !important;
  }

  .p-footer-sp-nav li {
    width: 50%;
    height: 57px;
    border-right: 1px solid #eff0e7;
    border-bottom: 1px solid #eff0e7;
    box-sizing: border-box;
    list-style: none !important;
  }

  .p-footer-sp-nav li:nth-child(1),
  .p-footer-sp-nav li:nth-child(2) {
    border-top: 1px solid #eff0e7;
  }

  .p-footer-sp-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 4%;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
  }

  .p-footer-sp-nav a:hover {
    color: #333;
  }
}

/* Footer Bottom (Legal Links) */
.p-footer-legal {
  position: relative;
  padding: 30px 10px;
  background: #000;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) and (max-width: 1279px) {
  .p-footer-legal {
    padding-bottom: 160px;
  }
}

.p-footer-legal__list {
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none !important;
}

@media screen and (min-width: 600px) and (max-width: 1279px) {
  .p-footer-legal__list {
    position: relative;
    z-index: 2;
  }
}

.p-footer-legal__list li {
  display: inline-block;
  margin-right: 0.5rem;
  list-style: none !important;
}

.p-footer-legal__list a {
  color: #fff;
  text-decoration: none;
}

.p-footer-legal__list a:hover {
  color: #f7f7f7;
  text-decoration: underline;
}

/* Copyright */
.p-footer-copyright {
  padding: 40px 2%;
  background-color: #000;
  text-align: center;
}

@media screen and (max-width: 598px) {
  .p-footer-copyright {
    padding-top: 15px;
  }
}

.p-footer-copyright small {
  color: #fff;
  font-size: 1.2rem;
}

/* ==========================================================================
   Layout: Pages (Howto, About, FAQ)
   ========================================================================== */

/* Page: Howto */
.p-howto-section {
  margin-bottom: 40px;
}

.p-howto-heading {
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 2px solid #333;
  font-size: 2.0rem;
  font-weight: bold;
}

.p-howto-sub-heading {
  margin-top: 25px;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 3px solid #9a9a9a;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-howto-content {
  margin-bottom: 15px;
}

.p-howto-table {
  width: 100%;
  border-collapse: collapse;
}

.p-howto-table th, .p-howto-table td {
  padding: 0.75em 1em;
  border: 1px solid #ddd;
}

.p-howto-table th {
  background-color: #f2f2f2;
  font-weight: normal;
  width: 30%;
}

.p-howto-table td {
  width: 70%;
}

@media screen and (max-width: 598px) {
  .p-howto-table, .p-howto-table tbody, .p-howto-table tr, .p-howto-table th, .p-howto-table td {
    display: block;
    width: 100%;
  }
  .p-howto-table th {
    font-weight: bold;
  }
}

.p-howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 25px;
}

@media screen and (max-width: 598px) {
  .p-howto-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Page: About Us */
.p-about {
  margin-bottom: 40px;
}

.p-about-heading {
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 2px solid #333;
  font-size: 2.2rem;
  font-weight: bold;
}

.p-about-register, .p-about-special {
  text-align: center;
  margin-top: 30px;
}

.p-about-feature {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-top: 25px;
  align-items: center;
}

@media screen and (max-width: 598px) {
  .p-about-feature {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.p-about-feature__img {
  text-align: center;
}

.p-about-sub-heading {
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 3px solid #9a9a9a;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-about-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 25px;
}

@media screen and (max-width: 598px) {
  .p-about-flow {
    grid-template-columns: 1fr;
  }
}

/* Page: FAQ */
.p-faq-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

@media screen and (max-width: 598px) {
  .p-faq-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-faq-nav a {
  display: block;
  padding: 10px;
  background: #f4f4f4;
  border-radius: 24px;
  text-align: center;
  font-weight: bold;
  color: #333;
}

.p-faq-nav a:hover {
  opacity: 0.7;
}

.p-faq-heading {
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 2px solid #333;
  font-size: 2.2rem;
  font-weight: bold;
}

.p-faq-item {
  margin-bottom: 35px;
}

.p-faq-q {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}

.p-faq-q::before {
  content: "Q. ";
  color: #ef0892;
}

/* 
.p-faq-a {
  font-size: 1.4rem;
  line-height: 1.6;
}

.p-faq-a::before {
  content: "A. ";
  color: #ef0892;
  font-weight: bold;
}
*/

.p-faq-sub-q {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

.p-faq-note {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Page: Large Scale Orders */
.p-large-scale-orders-onayami {
    text-align:center;
}
.p-large-scale-orders-flow {
    text-align:center;
}
.p-large-scale-orders-flow p {
  font-size: 1.6rem;
  font-weight:bold;
}
.p-large-scale-orders-flow p.note {
  margin-top:2em;
  margin-bottom:0;
  color:#F67332;
}
.p-large-scale-orders-heading {
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 2px solid #333;
  font-size: 2.2rem;
  font-weight: bold;
}




/* ==========================================================================
   Old Styles (Preserved)
   ========================================================================== */

/* --- Top Page Concept --- */
.top_concept { display: none; border-radius: 10px; background: #fcfaf4; padding: 80px 4%; margin-bottom: 40px; max-width: 1300px; }
body.body-home .top_concept { display: block; }
.top_concept .flex { margin-bottom: 40px; }
.top_concept .flex .left { width: 48%; }
.top_concept .flex .left .title { margin-bottom: 20px; }
.top_concept .flex .left h2 { font-weight: bold; font-size: 2.8rem; line-height: 1.6; margin-bottom: 30px; }
.top_concept .flex .left .bt a { border-radius: 50px; box-shadow: 0 0 10px #ccc; display: inline-block; padding: 28px 2em; background: #fff; font-weight: bold; font-size: 120%; text-align: center; min-width: 60%; }
.top_concept .flex .right { width: 50%; font-size: 1.6rem; font-weight: bold; line-height: 1.8; }
.top_concept .image img { width: 100%; }

/* --- ★修正★ 新着情報（News）スタイル --- */
.wrapper .main.main--home section.__block.__block--news {
    margin-bottom: 60px; 
}
.wrapper .main.main--home section.__block.__block--news .__body ul li {
    font-size: 1em;
    border-bottom: 1px solid #eee;
    display: block;
    padding: 10px 0;
}
.wrapper .main.main--home section.__block.__block--news .__body ul li a {
    display: block;
    text-decoration: none;
}
.wrapper .main.main--home section.__block.__block--news .__body ul li a .__date {
    color: #666;
    display: inline-block;
    padding: 0;
    margin-right: 20px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    width:auto;
}
.wrapper .main.main--home section.__block.__block--news .__body ul li a .__title {
    color: #333;
    display: inline-block;
    padding: 0;
    font-size: 15px;
    line-height: 1.5;
}

@media screen and (max-width: 598px) {
    .wrapper .main.main--home section.__block.__block--news .__body ul li a .__date {
        display: block;
        margin-bottom: 5px;
        font-size: 12px;
    }
    .wrapper .main.main--home section.__block.__block--news .__body ul li a .__title {
        display: block;
        font-size: 14px;
    }
}

h2.__heading {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 2px solid #333;
    font-size: 2.0rem;
    font-weight: bold;
}
h3.__title {
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid #9a9a9a;
    font-size: 1.6rem;
    font-weight: bold;
}
.wrapper .main .p-product-block ul.__product h3.__title  {
border:none;
padding-left:0;
padding-top:10px;
}
.main.main--page-detail-1column section.__to-home,
.main.main--page-detail-2column section.__to-home {
text-align:right;
}
.footer {
	margin-top:55px;
}
.p-product-block ul.__product li.__item a .__title {
	font-size:1em;
	font-weight:normal;
	padding-top:10px;
}
.p-product-block ul.__product li.__item a .__description dl.__price dd {
	font-size:1.5em;
	color:#d70e19;
	font-weight:bold;
}

.__control {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.__sort-control {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.__view-control {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set {
	font-size:1em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set .c-tax-price {
	color:#d70e19;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set .c-tax-sub-price {
	color:#d70e19;
}
.p-product-set table tbody tr td.__price .__body .__total {
	color:#d70e19;
}
.main.main--product-list section:not(:first-child):not(.__list) {
	margin-top:2em;
}

@media screen and (max-width: 959px) {
.wrapper.wrapper--column-2 .__inner .aside {
	padding-left:15px;
	padding-right:15px;
}
}

.aside .__block--cart {
	border:2px solid #111;
}

.__child ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.__child ul li {
  flex-shrink: 0;
}

.__child a {
  display: inline-block;
  padding: 4px 10px;
  
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  
  color: #333;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  
  white-space: nowrap;
  
  transition: all 0.2s;
}

.__child a:hover {
  background-color: #f4f4f4;
  border-color: #999;
  color: #000;
}

.main.main--product-list section.__child ul li {
padding:0;
}
.main.main--product-list section.__child ul li a {
	margin-right:0;
}
.main.main--product-list section.__child ul li:last-child a {
    padding-right:10px;
     border: 1px solid #ccc;
}





/* --- Sliders / Recommendation --- */
/*.wrapper .main #top_slider_new2024 ul.top_slide { display: flex; flex-wrap: wrap; column-gap: 2%; }
.wrapper .main #top_slider_new2024 ul.top_slide li { width: 32%; margin-bottom: 24px; }
.wrapper .main .reco_items .reco_list li { width: 31.6%; margin-bottom: 20px; }
.wrapper .main .reco_items .reco_list li a span.img img { border-radius: 10px; box-shadow: 0 0 6px rgba(91, 37, 0, 0.2); width: 100%; }
.wrapper .main .reco_items .reco_list li a span.tit { font-size: 1.7rem; font-weight: bold; margin-bottom: 4px; }*/

/* --- Other Pages --- */
/*.sct_nituite .main_catch { background: #f4f4f4; padding: 20px 1%; }
.sct_nituite .tsuyomi .btn { border-radius: 32px; box-shadow: 0 0 6px rgba(91, 37, 0, 0.3); width: 266px; border: none; margin-right: 20px; background-color: #fff; color: #000; font-weight: bold; }
.body-howto .__content-bottom .grid { display: grid; grid-template-rows: auto; grid-template-columns: repeat(2, 1fr); grid-gap: 40px 40px; margin-top: 25px; }
.aboutusPage .grid-1_2 { display: grid; grid-template-rows: auto; grid-template-columns: 1fr 2fr; grid-gap: 30px 30px; margin-top: 25px; }
.faqPage .grid { display: grid; grid-template-rows: auto; grid-template-columns: repeat(4, 1fr); grid-gap: 20px 20px; margin-top: 50px; }
.faqPage .grid > div { background: #f4f4f4; border-radius: 24px; padding: 10px 20px; position: relative; }
.faqPage .grid > div::after { font-family: "Font Awesome 5 Free"; content: "\f13a"; color: #ffd900; font-weight: bold; position: absolute; right: 15px; }*/