/*
============================================================
  旧スマレジB2Bシステム出力を非表示にする
============================================================
*/
#header_wrap,
.slider_area,
#header_benefits,
.raku2_search_area {
  display: none !important;
}

#leftcolumn {
  display: none !important;
}

#container {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

#main_column {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  overflow: visible !important;
}

/* sticky効かない問題の対策 */
#contents,
#contents_inner {
  overflow: visible !important;
}

#footer_wrap {
  display: none !important;
}

.frame_outer {
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

/*
============================================================
  ヘッダー sticky対応
============================================================
*/
header {
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 500 !important;
  background: #fff !important;
  border-bottom: 1px solid #E0E0E0 !important;
}

/* 横スクロール防止 */
body {
  overflow-x: clip !important;
}

body {
  padding-top: 0 !important;
  min-width: 0 !important;
}

/*
============================================================
  正解デザインCSS
============================================================
*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2D7A4F;
  --green-light: #EAF4EE;
  --green-dark: #1E5C3A;
  --green-mid: #3A9060;
  --text: #1A1A1A;
  --sub: #666666;
  --border: #E0E0E0;
  --bg: #FFFFFF;
  --bg-gray: #F5F7F5;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 横幅を画面いっぱいに */
.container {
  max-width: 1280px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 80px !important;
  box-sizing: border-box !important;
}

/* ===== HEADER ===== */
.header-top {
  display: flex !important;
  align-items: center;
  gap: 32px;
  height: 76px;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

.header-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.search-category {
  padding: 0 12px;
  height: 40px;
  border: none;
  border-right: 1px solid var(--border);
  background: #f7f7f7;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  cursor: pointer;
  min-width: 0;
}

.header-search input {
  flex: 1;
  padding: 0 14px;
  height: 40px;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
}

.header-search input::placeholder {
  color: #aaa;
}

.search-btn {
  width: 44px;
  height: 40px;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cart-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.2s;
}

.cart-btn:hover {
  border-color: var(--green);
}

.btn-outline {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
  background: #fff;
  white-space: nowrap;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-solid {
  padding: 8px 20px;
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.btn-solid:hover {
  border-color: var(--green);
  color: var(--green);
}

.header-nav {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
}

.header-nav a {
  padding: 0 16px;
  font-size: 13px;
  color: var(--sub);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
  line-height: 44px;
}

.header-nav a:hover {
  color: var(--green);
}

/* ===== CATEGORY GRID ===== */
.categories {
  background: var(--bg-gray);
  padding: 24px 0 40px;
}

.categories .container,
.cta-buttons .container,
.strength .container {
  background: transparent !important;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 12px 20px;
  text-align: center;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.category-card:hover {
  box-shadow: 0 4px 16px rgba(45,122,79,0.12);
  border-color: var(--green);
  transform: translateY(-2px);
}

.category-illust {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-illust svg {
  width: 54px;
  height: 54px;
  transition: transform 0.3s;
}

.category-card:hover .category-illust svg {
  transform: scale(1.1);
}

.category-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.category-sub {
  font-size: 11px;
  color: var(--sub);
  margin-top: -8px;
}

/* ===== CTA BUTTONS ===== */

.cta-buttons {
  background: #F5F7F5;
  padding: 0 0 32px;   /* 下余白のみ（上はカテゴリ下paddingと繋げる） */
}

.cta-buttons-inner {
  display: flex !important;
  justify-content: center !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.cta-btn {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px !important;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  width: 340px !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
}

.cta-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.cta-btn .arrow {
  font-size: 18px;
  color: var(--green);
}

/* ===== SEARCH BLOCK ===== */
.search-block {
  padding: 56px 0;
  background: #fff;
}

.search-block-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-block-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--sub);
  letter-spacing: 0.05em;
}

.search-main {
  display: flex;
  gap: 12px;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: stretch;
  border: 2px solid var(--green);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.search-input-wrap .search-category {
  padding: 0 14px;
  border: none;
  border-right: 1.5px solid var(--border);
  background: #f7f7f7;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  cursor: pointer;
  min-width: 160px;
}

.search-input-wrap input {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  font-family: inherit;
  border: none;
  outline: none;
  color: var(--text);
}

.search-input-wrap input::placeholder {
  color: #aaa;
}

.search-input-wrap .search-submit {
  padding: 0 32px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.search-input-wrap .search-submit:hover {
  background: var(--green-dark);
}

.search-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-label {
  font-size: 12px;
  color: var(--sub);
  font-weight: 600;
  margin-right: 4px;
}

.filter-tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sub);
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
}

.filter-tag:hover, .filter-tag.active {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

/* ===== STRENGTH ===== */
.strength {
  padding: 64px 0;
  background: var(--bg-gray);
}

.strength-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.strength-image {
  flex: 0 0 460px;
}

.strength-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.strength-content {
  flex: 1;
}

.strength-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.strength-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

.strength-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 28px;
}

.btn-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--green);
  color: #fff !important;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-feature:hover {
  background: var(--green-dark);
  color: #fff !important;
}

/* ===== NEW ARRIVALS ===== */
.new-arrivals {
  padding: 64px 0;
  background: #fff;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-en {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
}

.section-link {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-link:hover {
  text-decoration: underline;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
  display: block;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.product-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #f0f0f0;
  display: block;
}

.product-body {
  padding: 14px;
}

.product-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.tag-used {
  background: #E8F0FE;
  color: #3b5cb8;
}

.tag-rebuilt {
  background: var(--green-light);
  color: var(--green);
}

.product-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.5;
}

.product-sub {
  font-size: 11px;
  color: var(--sub);
}

.product-price {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--green-light);
  border-radius: 50%;
  font-size: 9px;
  color: var(--green);
  flex-shrink: 0;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--green-dark);
}

/* ===== NEWS AREA（インフォメーション） ===== */
#news_area {
  display: block !important;
  padding: 64px 0 !important;
  background: var(--bg-gray) !important;
}

#news_area .raku2_theme01 {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

#news_area .block_outer {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

#news_area h2 {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 80px 32px !important;
  box-sizing: border-box !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  border: none !important;
  background: none !important;
}

#news_area h2::before {
  content: "INFORMATION" !important;
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--green) !important;
  letter-spacing: 0.15em !important;
  margin-bottom: 6px !important;
}

#news_area h2 span,
#news_area h2 .rss {
  display: none !important;
}

#news_area .block_body {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 80px !important;
  box-sizing: border-box !important;
  border: none !important;
  background: transparent !important;
}

#news_area .news_contents {
  overflow: hidden !important;
  height: auto !important;
  max-height: none !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

#news_area .block_body .news_contents dl.newslist {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 18px 24px !important;
  background: #fff !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  margin: 0 !important;
}

#news_area .block_body .news_contents dl.newslist:last-child {
  border-bottom: none !important;
}

#news_area .block_body .news_contents dl.newslist:hover {
  background: var(--bg-gray) !important;
}

#news_area .block_body .news_contents dl.newslist dt.mini {
  font-size: 12px !important;
  color: var(--sub) !important;
  white-space: nowrap !important;
  min-width: 90px !important;
  flex-shrink: 0 !important;
}

#news_area .block_body .news_contents dl.newslist dt:not(.mini) {
  flex: 1 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text) !important;
}

#news_area .block_body .news_contents dl.newslist dt:not(.mini) a {
  color: var(--text) !important;
  text-decoration: none !important;
}

#news_area .block_body .news_contents dl.newslist dt:not(.mini) a:hover {
  color: var(--green) !important;
  text-decoration: underline !important;
}

#news_area .block_body .news_contents dl.newslist dd.mini {
  display: none !important;
}

/* ===== INFO ===== */
.information {
  padding: 64px 0;
  background: var(--bg-gray);
}

.information .container {
  background: transparent !important;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item:hover {
  background: var(--bg-gray);
}

.info-date {
  font-size: 12px;
  color: var(--sub);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 90px;
}

.info-category {
  font-size: 11px;
  min-width: 80px;
  text-align: center;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 3px;
  background: var(--green-light);
  color: var(--green);
  white-space: nowrap;
}

.info-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.info-category.cat-maintenance {
  background: #FFF4E5;
  color: #B45309;
}

.info-category.cat-news {
  background: var(--green-light);
  color: var(--green);
}

/* ===== BANNER ===== */
.banner-section {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.banner-block {
  background: var(--green);
  border-radius: 10px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.banner-text .banner-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.banner-text .banner-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.btn-banner {
  display: inline-block;
  padding: 13px 32px;
  background: #fff;
  color: var(--green);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.btn-banner:hover {
  opacity: 0.9;
}

/* ===== FOOTER ===== */
body footer {
  background: #1C1C1C !important;
  color: #fff !important;
  padding: 56px 0 0 !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

footer .container {
  background: transparent !important;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.footer-logo-name {
  font-size: 14px;
  font-weight: 700;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-info-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
  text-align: left !important;
}

.footer-info-value {
  font-size: 13px;
  color: #ccc;
  text-align: left !important;
}

.footer-links-wrap {
  display: flex;
  gap: 64px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  text-align: left !important;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left !important;
}

.footer-link-list li {
  text-align: left !important;
}

.footer-link-list a {
  font-size: 13px;
  color: #999;
  transition: color 0.2s;
  text-align: left !important;
}

.footer-link-list a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: #666;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #666;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ===== 新着パーツ システムスタイル上書き ===== */
.raku2_theme01 .recommend_list {
  padding: 64px 40px !important;
  background: #fff !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.raku2_theme01 .recommend_list h2 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1A1A1A !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  margin-bottom: 32px !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}

.raku2_theme01 .recommend_list h2::before {
  content: "NEW ARRIVALS" !important;
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #2D7A4F !important;
  letter-spacing: 0.15em !important;
  margin-bottom: 6px !important;
}

.raku2_theme01 .recommend_list h2 span {
  display: contents !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1A1A1A !important;
}

.raku2_theme01 .recommend_list .price_label {
  display: none !important;
}

.raku2_theme01 .recommend_list .sale_price,
.raku2_theme01 .recommend_list .sale_price .price,
.raku2_theme01 .recommend_list .sale_price span {
  color: #666666 !important;
  font-size: 11px !important;
  font-weight: normal !important;
}

.raku2_theme01 .recommend_list .productContents h3 a {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1A1A1A !important;
  font-family: 'Noto Sans JP', sans-serif !important;
}

/* ===== ヘッダー ログイン時 ユーザー名表示 ===== */
.header-user-name {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.4;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.header-user-name p {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}


/* ============================================================
   TOPページ・強みページ以外のパンくず・メインコンテンツの
   左寄り崩れを修正
   ============================================================ */

/* #main_column直下のsystemパンくず（nav）を中央揃えに */
body:not(.LC_Page_Index) #main_column > nav:not(.breadcrumb):not(.anchor-nav) {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}

/* ご利用ガイド・会社概要等のメインコンテンツを中央揃えに */
body:not(.LC_Page_Index) #main_column > .custom_page,
body:not(.LC_Page_Index) #main_column > #undercolumn,
body:not(.LC_Page_Index) #main_column > .layout_uppertext,
body:not(.LC_Page_Index) #main_column > .layout_lowertext,
body:not(.LC_Page_Index) #main_column > #contentstitle {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}

/* 会社概要ページの.company-sectionも中央揃えに */
body:not(.LC_Page_Index) #main_column > .company-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 80px 60px;
  box-sizing: border-box;
}

/* ============================================================
  TOP・強みページ以外: #undercolumn の display を block に変更
  （design.css の display:inline-block を上書きして margin:0 auto を有効化）
============================================================ */
body:not(.LC_Page_Index) #main_column > #undercolumn {
  display: block !important;
}

/* ============================================================
   マイページサブページ（colnum2 right）の横幅修正
   ============================================================ */
#main_column.colnum2.right #mypagecolumn {
  width: 80% !important;
  max-width: 980px !important;
  margin: 20px auto !important;
}

/* ============================================================
   最近チェックした商品エリアの横幅・フォント修正
   ============================================================ */
.history_list {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 80px !important;
  box-sizing: border-box !important;
}

.history_list > h2 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  margin-bottom: 32px !important;
}

/* ===== フッター ロゴ下サブテキスト ===== */
.footer-logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  margin-top: 4px;
}

/* ===== フッター ロゴ：サブテキストを改行して左揃え ===== */
.footer-logo-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  margin-top: 0;
}

.layout_mainimage img {
  display: block;
  margin: 0 auto;
}

/* ===== オリジナルパーツバナー ===== */
.original-banner {
  margin: 24px 0;
}
.original-banner-link {
  display: block;
  line-height: 0; /* 画像下の余白を消す */
  transition: opacity 0.2s ease;
}
.original-banner-link:hover {
  opacity: 0.85;
}
.original-banner-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* 角丸が不要ならこの行を削除 */
}

/* ============================================================
   カテゴリ下階層 位置移動 & 緑系デザイン
============================================================ */

/* オリジナル位置のraku2_child_categoriesを非表示（JSで移動済み） */
.raku2_child_categories {
  display: none !important;
}

/* 移動後のカテゴリ下階層コンテナ */
.raku2_child_categories_moved {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 80px 24px;
  box-sizing: border-box;
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
}

/* 移動後の各カテゴリリンク */
.raku2_child_categories_moved a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #fff;
  border: 2px solid #2D7A4F;
  border-radius: 6px;
  color: #2D7A4F !important;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.raku2_child_categories_moved a:hover {
  background: #2D7A4F;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(45,122,79,0.2);
}

/* カゴの内容を更新するボタンを1行表示 */
#page_navi_bottom .btn_area.btn_type_def li a {
  white-space: nowrap;
  width: auto;
}

/* ============================================================
  車格チェックボックス位置調整
============================================================ */
.filter-tag input[type="checkbox"] {
  vertical-align: middle;
  position: relative;
  top: -1px;
}