/* Red Carpet — park online store 準拠（ヘッダー・ヒーロー） */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --rc-bg: #fafafa;
  --rc-ink: #2b2b2b;
  --rc-muted: #888;
  --rc-line: #ebebeb;
  --rc-accent: #2f5864;
  --rc-card: #ffffff;
}
html { scroll-behavior: smooth; }
body.rc-store {
  margin: 0;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  background: var(--rc-bg);
  color: var(--rc-ink);
  font-size: 12px;
  line-height: 2.2;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.rc-subpage .site-main { padding-top: 90px; }
a { color: var(--rc-accent); text-decoration: none; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }

.nssg { font-weight: 300; letter-spacing: 0.02em; }
.nssg.use-thin { font-weight: 200; }

/* ===== Header (park .header) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9995;
  width: 100%;
  height: 90px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--rc-line);
  box-sizing: border-box;
}
.rc-home .site-header {
  background: transparent;
  border-bottom: none;
}
.rc-home .site-header.is-scrolled {
  background: #fff;
  border-bottom: 1px solid var(--rc-line);
}

.header-logo { margin: 0; line-height: 1; }
.header-logo a {
  display: flex;
  align-items: flex-end;
  color: var(--rc-ink);
  text-decoration: none;
}
.header-logo a:hover { opacity: 1; }
.header-logo-mark {
  font-family: "Allura", "Snell Roundhand", "Brush Script MT", cursive;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 2px;
  padding-right: 13px;
  color: var(--rc-ink);
}
.header-logo-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 3px;
  color: var(--rc-ink);
}

.rc-menu-checkbox { display: none; }

.site-menu-btn {
  display: none;
}

.site-gnav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-gnav .main-nav,
.site-gnav .account-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}
.site-header .site-gnav a {
  color: var(--rc-ink);
  text-decoration: none;
}
.site-header .site-gnav a:hover { opacity: 0.8; }
.main-nav {
  font-size: 11px;
  position: relative;
  margin-right: 15px;
  padding-right: 8px;
}
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 15px 17px;
}
.main-nav::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 23px;
  background: #aaa;
}
.account-nav {
  font-size: 12px;
  position: relative;
  padding-left: 8px;
}
.account-nav a {
  display: block;
  padding: 15px 11px;
}
.cart-count { margin-left: 2px; }

.nav-has-dropdown .dropdown-btn,
.nav-has-dropdown .dropdown-menu {
  display: none;
}

/* ===== Hero (park #heroSlider.mainvisual) ===== */
.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #e8e4df;
}
.hero-track { width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-img-wrap.is-placeholder {
  background: linear-gradient(135deg, #d9d2c8 0%, #b8c4c8 45%, #7f959c 100%);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide-txt {
  position: absolute;
  left: 30px;
  right: auto;
  bottom: 56px;
  z-index: 3;
  font-size: 14px;
  line-height: 1.8;
  pointer-events: none;
}
.hero-slide-txt p { margin: 0; }
.hero-slide-txt p + p { margin-top: 4px; }
.hero-slide-txt span { font-size: 1em; }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.hero-dot.is-active { background: #fff; }

.site-main { flex: 1; width: 100%; }
.site-footer {
  border-top: 1px solid var(--rc-line); padding: 36px 24px 48px; margin-top: 48px;
  font-size: 0.78rem; letter-spacing: 0.05em;
}
.footer-inner { max-width: 1120px; margin: 0 auto; text-align: center; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-bottom: 14px; }
.footer-nav a { text-decoration: none; color: var(--rc-muted); }
.footer-copy { color: var(--rc-muted); margin: 0; }

.section { max-width: 1120px; margin: 0 auto; padding: 0 24px 56px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 24px; border-bottom: 1px solid var(--rc-line); padding-bottom: 12px;
}
.section-head h2 { margin: 0; font-size: 1rem; font-weight: 500; letter-spacing: 0.12em; }
.section-head .en { font-size: 0.72rem; color: var(--rc-muted); letter-spacing: 0.2em; }
.section-head a { font-size: 0.78rem; color: var(--rc-muted); text-decoration: none; }
.arrow-link span {
  padding-left: 13px;
  position: relative;
}
.arrow-link span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 8px;
  margin-top: -4px;
  background: linear-gradient(to right, transparent 0, var(--rc-accent) 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.about-block {
  max-width: 720px; margin: 0 auto; text-align: center; padding: 12px 24px 40px;
}
.about-block h2 { font-size: 0.9rem; letter-spacing: 0.2em; margin: 0 0 16px; }
.about-block p { color: var(--rc-muted); font-size: 0.92rem; margin: 0; }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px 20px;
}
.product-card {
  text-decoration: none; color: inherit; display: block;
}
.product-thumb {
  aspect-ratio: 1; background: #efe9e2; border: 1px solid var(--rc-line);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  color: var(--rc-muted); font-size: 0.75rem; letter-spacing: 0.08em; overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .cat { font-size: 0.72rem; color: var(--rc-muted); margin: 0 0 4px; }
.product-card h3 {
  margin: 0 0 6px; font-size: 0.86rem; font-weight: 500; line-height: 1.55;
}
.product-card .price { font-size: 0.82rem; color: var(--rc-muted); margin: 0; }

.category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px;
}
.category-card {
  display: block; text-decoration: none; border: 1px solid var(--rc-line);
  background: var(--rc-card); padding: 28px 18px; text-align: center;
}

/* park .categoryListSection */
.category-list-section { padding: 0 0 107px; }
.category-list-head {
  position: relative;
  margin-bottom: 35px;
  padding: 0 97px;
}
.heading-secondary { margin: 0; font-size: 16px; letter-spacing: 0.08em; line-height: 1.3; }
.heading-secondary .sub-heading {
  display: block;
  font-size: 11px;
  color: var(--rc-muted);
  padding-top: 8px;
}
.category-list-head .arrow-link {
  position: absolute;
  right: 97px;
  bottom: 0;
  font-size: 11px;
  color: var(--rc-ink);
}
.category-list-component {
  position: relative;
  width: 100%;
  padding: 0;
}
.category-carousel {
  overflow: hidden;
  width: 100%;
}
.category-track {
  display: flex;
  gap: 0;
  transition: transform 0.35s ease;
}
.category-list-block {
  flex: 0 0 33.3333vw;
  width: 33.3333vw;
  height: 372px;
}
.category-list-block a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.category-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.category-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.3);
}
.category-block.is-fallback {
  background: linear-gradient(145deg, #8fa3a8 0%, #5f7378 100%);
}
.category-title-block {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1;
}
.category-en-title {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}
.category-title { display: block; font-size: 12px; }
.category-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 22px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.category-nav-btn:hover:not(:disabled) {
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}
.category-nav-btn:disabled {
  opacity: 0.2;
  cursor: default;
}
.category-nav-prev { left: 8px; }
.category-nav-next { right: 8px; }

/* park .recommendSection */
.recommend-section {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
.recommend-wrap {
  width: 50%;
  margin-left: 50%;
  padding: 0 95px;
  box-sizing: border-box;
  min-height: max(420px, min(50vw, 656px));
}
.recommend-section header {
  margin-bottom: 70px;
}
.recommend-img {
  width: 50%;
  height: 50vw;
  max-height: 656px;
  min-height: 420px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ece4dc;
}
.recommend-img img {
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  display: block;
}
.recommend-img-placeholder {
  color: var(--rc-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.recommend-info .product-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--rc-ink);
}
.recommend-info .product-vendor {
  margin: 0 0 0;
  font-size: 16px;
  color: var(--rc-accent);
  line-height: 1.4;
}
.recommend-info .product-price-dl {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 70px 0 35px;
}
.recommend-info .product-price-dl dt {
  font-size: 12px;
  margin: 0 44px 0 0;
  color: var(--rc-ink);
}
.recommend-info .product-price-dl dd {
  margin: 0;
  font-size: 20px;
  color: var(--rc-ink);
}
.btn.btn-primary.btn-with-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  background: var(--rc-accent);
  color: #fff;
  border: none;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.btn.btn-primary.btn-with-bg:hover {
  opacity: 0.75;
  color: #fff;
}

.btn-line {
  display: inline-block; text-decoration: none; font-size: 0.78rem; letter-spacing: 0.12em;
  border: 1px solid var(--rc-ink); padding: 10px 22px;
}
.btn-line:hover { background: var(--rc-ink); color: #fff; }

.newsletter {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  text-align: center;
  padding: 50px 24px;
  background: var(--rc-bg);
  border-top: 1px solid var(--rc-line);
}
.newsletter h2 { font-size: 0.9rem; letter-spacing: 0.16em; margin: 0 0 10px; }
.newsletter p { color: var(--rc-muted); font-size: 0.88rem; margin: 0 0 18px; }
.newsletter form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; }
.newsletter input[type=email] {
  flex: 1; border: 1px solid var(--rc-line); padding: 10px 12px; font: inherit; background: #fff;
}
.newsletter button {
  border: 1px solid var(--rc-ink); background: var(--rc-ink); color: #fff;
  padding: 10px 18px; font: inherit; cursor: pointer; letter-spacing: 0.08em;
}

.page-title { max-width: 1120px; margin: 0 auto; padding: 32px 24px 8px; }
.page-title h1 { margin: 0; font-size: 1.2rem; letter-spacing: 0.14em; font-weight: 500; }
.breadcrumb { font-size: 0.75rem; color: var(--rc-muted); margin-bottom: 8px; }
.breadcrumb a { color: var(--rc-muted); }

.find-lead {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--rc-muted);
  letter-spacing: 0.06em;
}
.find-result-note {
  margin: 10px 0 0;
  font-size: 0.82rem;
}
.find-result-note a { color: var(--rc-accent); }
.find-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 24px 56px;
}
.find-option-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.find-option-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--rc-line);
  text-decoration: none;
  color: var(--rc-ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.find-option-card:hover {
  border-color: var(--rc-accent);
  background: #fafafa;
}
.find-option-name {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.find-option-count {
  font-size: 0.78rem;
  color: var(--rc-muted);
}

/* park .productDetail */
.product-detail {
  max-width: none;
  margin: 0;
  padding: 40px 95px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 60px;
  align-items: start;
}
.product-detail-visual {
  aspect-ratio: 1;
  background: #ece8e3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-noimg {
  color: var(--rc-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.product-detail-info {
  padding-top: 8px;
}
.product-detail-crumb {
  margin: 0 0 28px;
  font-size: 10px;
  color: var(--rc-muted);
}
.product-detail-crumb a { color: var(--rc-muted); }
.product-detail-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--rc-ink);
}
.product-detail-vendor {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--rc-accent);
}
.product-detail-rule {
  border: none;
  border-top: 1px solid var(--rc-line);
  margin: 28px 0 0;
}
.product-detail-info .product-price-dl {
  margin: 28px 0 35px;
}
.product-detail-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 12px;
}
.product-detail-qty select {
  border: 1px solid var(--rc-line);
  padding: 6px 10px;
  font: inherit;
  background: #fff;
}
.product-detail-cart-btn {
  margin-top: 0;
}
.product-detail-soldout {
  margin: 0;
  padding: 16px 0;
  color: var(--rc-muted);
  font-size: 12px;
}
.product-detail-body {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--rc-line);
}
.product-detail-body-title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.product-detail-desc {
  color: var(--rc-ink);
  font-size: 12px;
  line-height: 2.2;
}

.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qty-row input { width: 72px; padding: 8px; border: 1px solid var(--rc-line); font: inherit; }
.btn-primary {
  display: inline-block; border: 1px solid var(--rc-ink); background: var(--rc-ink); color: #fff;
  padding: 12px 28px; font: inherit; cursor: pointer; letter-spacing: 0.08em; text-decoration: none;
}

.cart-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.cart-table th, .cart-table td { padding: 14px 10px; border-bottom: 1px solid var(--rc-line); text-align: left; }
.cart-summary { max-width: 360px; margin-left: auto; margin-top: 24px; font-size: 0.9rem; }
.cart-summary dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; }
.cart-summary dt { color: var(--rc-muted); }
.cart-summary .total { font-size: 1.05rem; border-top: 1px solid var(--rc-line); padding-top: 10px; margin-top: 6px; }

.form-panel {
  max-width: 640px; margin: 0 auto; padding: 0 24px 56px;
}
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.82rem; margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--rc-line); font: inherit; background: #fff;
}
.legal-doc, .text-page {
  max-width: 760px; margin: 0 auto; padding: 0 24px 56px; font-size: 0.92rem;
}
.legal-doc h2, .text-page h2 { font-size: 1rem; margin: 28px 0 10px; }
.legal-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.legal-table th, .legal-table td {
  border: 1px solid var(--rc-line); padding: 12px 14px; text-align: left; vertical-align: top;
}
.legal-table th { width: 28%; background: #f5f2ee; font-weight: 500; }

.flash { max-width: 1120px; margin: 16px auto 0; padding: 12px 24px; font-size: 0.88rem; }
.flash-success { background: #edf7f0; border: 1px solid #c5e6d0; }
.flash-error { background: #fdf0ee; border: 1px solid #efc5c0; }
.empty-note { text-align: center; color: var(--rc-muted); padding: 48px 0; }

@media (max-width: 767px) {
  .site-header { padding: 0 25px; border-bottom: none; }
  .rc-home .site-header.is-scrolled { border-bottom: 1px solid var(--rc-line); }

  .site-menu-btn {
    display: block;
    position: absolute;
    width: 45px;
    height: 45px;
    right: 20px;
    top: 25px;
    cursor: pointer;
  }
  .menuicon {
    width: 18px;
    height: 20px;
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 9999;
  }
  .menuicon span {
    width: 27px;
    height: 1px;
    display: block;
    background: var(--rc-ink);
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
  }
  .menuicon-animation-1 .top { transform: translateY(-7px); }
  .menuicon-animation-1 .bottom { transform: translateY(7px); }

  #rc-menu-toggle:checked ~ .site-menu-btn .menuicon-animation-1 .top {
    transform: rotate(-45deg) translateY(0);
  }
  #rc-menu-toggle:checked ~ .site-menu-btn .menuicon-animation-1 .middle { display: none; }
  #rc-menu-toggle:checked ~ .site-menu-btn .menuicon-animation-1 .bottom {
    transform: rotate(45deg) translateY(0);
  }
  /* ドロワー・オーバーレイより前面に固定（バツが押せない問題の修正） */
  #rc-menu-toggle:checked ~ .site-menu-btn {
    position: fixed;
    z-index: 10002;
    right: 20px;
    top: 25px;
  }
  body.gnav-open .site-header {
    z-index: 10000;
  }

  .site-gnav {
    position: fixed;
    top: 0;
    right: -271px;
    width: 271px;
    min-height: 100vh;
    overflow-y: auto;
    padding: 39px 30px 50px 20px;
    background: #fff;
    transition: right 0.3s ease-in;
    z-index: 9998;
    flex-direction: column;
    align-items: stretch;
  }
  #rc-menu-toggle:checked ~ .site-gnav { right: 0; }
  body.gnav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(43, 43, 43, 0.5);
    z-index: 9999;
    pointer-events: auto;
  }

  .site-gnav .main-nav,
  .site-gnav .account-nav { display: block; line-height: inherit; }
  .main-nav {
    display: block;
    order: 2;
    border-top: 1px solid var(--rc-line);
    margin: 0 0 0 11px;
    padding-right: 0;
  }
  .main-nav::after { display: none; }
  .main-nav > li {
    min-height: 60px;
    border-bottom: 1px solid var(--rc-line);
    position: relative;
  }
  .main-nav > li > a { padding: 18px 0; display: block; }

  .account-nav {
    order: 1;
    margin-bottom: 30px;
  }
  .account-nav a { padding: 15px 5px; }

  .nav-has-dropdown .dropdown-btn {
    display: block;
    position: absolute;
    width: 100px;
    height: 60px;
    right: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
  }
  .nav-has-dropdown .menuicon-animation-2 {
    right: 0;
    left: auto;
    top: 20px;
  }
  .nav-has-dropdown .menuicon-animation-2 span {
    width: 10px;
    background: var(--rc-accent);
    right: 0;
    left: auto;
  }
  .nav-has-dropdown .menuicon-animation-2 .top { transform: translateY(10px) rotate(90deg); }
  .nav-has-dropdown .menuicon-animation-2 .bottom { transform: translateY(10px); }
  #rc-dropdown-category:checked ~ .dropdown-btn .menuicon-animation-2 .top {
    transform: translateY(10px) rotate(0);
  }
  #rc-dropdown-category:checked ~ .dropdown-menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 12px 0 12px 20px;
    border-top: 1px solid var(--rc-line);
  }
  .dropdown-menu a {
    display: block;
    padding: 9px 0;
    font-size: 10px;
    color: var(--rc-ink);
  }
  .dropdown-menu a::before { content: "-"; padding-right: 10px; }

  .main-visual { height: 667px; }
  .hero-slide-txt { left: 30px; right: 30px; bottom: 48px; font-size: 14px; }

  .hero-slide, .product-detail { grid-template-columns: 1fr; }

  .product-detail {
    padding: 24px 25px 56px;
    gap: 24px 0;
  }
  .product-detail-info {
    padding-top: 0;
  }
  .product-detail-info .product-price-dl {
    margin: 24px 0 28px;
  }
  .product-detail-body {
    margin-top: 32px;
    padding-top: 28px;
  }

  .recommend-wrap {
    width: 100%;
    min-height: inherit;
    margin-left: 0;
    padding: 0 25px 64px;
  }
  .recommend-section header { margin-bottom: 25px; }
  .recommend-img {
    width: calc(100vw - 50px);
    height: calc(100vw - 50px);
    max-height: none;
    min-height: inherit;
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 20px;
  }
  .recommend-info .product-price-dl { margin: 25px 0 30px; }

  .category-list-head { padding: 0 25px; margin-bottom: 28px; }
  .category-list-head .arrow-link { right: 25px; bottom: -5px; }
  .category-list-component { padding: 0; }
  .category-list-block {
    flex: 0 0 100vw;
    width: 100vw;
    height: calc(100vw * 0.72);
    max-height: 320px;
  }
  .category-nav-prev { left: 4px; }
  .category-nav-next { right: 4px; }
}
