@charset "UTF-8";
/* freepage 共通css */
#tblLayout {
  width: 100%;
  margin: 0 auto 80px;
  padding: 0;
  list-style: none;
}

/* ==============================================
ベース設定 (スコープ化)
============================================== */
.tvc-allstylepants-wrap {
  --text-color: #333;
  --bg-ladies: #f8fbfb;
  --bg-mens: #f4f6f8;
  --accent-ladies: #5ccdc7;
  --accent-mens: #3d78ae;
  --btn-color: #333;
  --white: #fff;

  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-color);
  line-height: 1.8;
  letter-spacing: 0.04em;
  background-color: var(--bg-ladies);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.tvc-allstylepants-wrap a {
  text-decoration: none;
  color: inherit;
}

.tvc-allstylepants-wrap img {
  max-width: 100%;
  height: auto;
}

/* ==============================================
画像・アスペクト比
============================================== */
.tvc-allstylepants-wrap .ph-img {
  display: block;
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: #f0f0f0;
}
.tvc-allstylepants-wrap .ph-img.square {
  aspect-ratio: 1 / 1;
}
.tvc-allstylepants-wrap .ph-img.vertical {
  aspect-ratio: 3 / 4;
}
.tvc-allstylepants-wrap .ph-img.short-vertical {
  aspect-ratio: 4 / 5;
}
.tvc-allstylepants-wrap .ph-img.wide,
.tvc-allstylepants-wrap .ph-img.sm {
  aspect-ratio: 16 / 9;
}

.tvc-allstylepants-wrap .ph-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
}

@media (min-width: 768px) {
  .tvc-allstylepants-wrap .ph-img img {
    height: auto;
    object-fit: contain;
  }
}

/* ==============================================
共通レイアウト・タイトル
============================================== */
.tvc-allstylepants-wrap .container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.tvc-allstylepants-wrap .section-padding {
  padding: 60px 0;
}
.tvc-allstylepants-wrap .mt-large {
  margin-top: 50px;
}
.tvc-allstylepants-wrap .mt-small {
  margin-top: 20px;
}
.tvc-allstylepants-wrap .text-center {
  text-align: center;
}
.tvc-allstylepants-wrap .sp-only {
  display: block;
}

.tvc-allstylepants-wrap .section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  display: block;
}
.tvc-allstylepants-wrap .sub-title {
  font-size: 1.6rem;
  margin: 0 auto 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  display: table;
  text-align: center;
}
.tvc-allstylepants-wrap .section-title-sub {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #666;
  margin-top: 10px;
  line-height: 1.5;
}

/* ヘッダー */
.tvc-allstylepants-wrap .site-header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 100;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.tvc-allstylepants-wrap .site-header .logo {
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  position: static !important;
}
.tvc-allstylepants-wrap .site-header .logo img {
  height: 30px !important;
  width: auto !important;
  display: block !important;
  margin: 0 auto !important;
}

/* ==============================================
ボタン（全般）
============================================== */
.tvc-allstylepants-wrap .btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 16px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  border-radius: 4px;
  margin: 10px auto;
}
.tvc-allstylepants-wrap .btn:hover {
  opacity: 0.8;
}
.tvc-allstylepants-wrap .btn-main {
  background: var(--btn-color);
  color: #fff;
  border: 1px solid var(--btn-color);
}
.tvc-allstylepants-wrap .btn-main:hover {
  background: #fff;
  color: var(--btn-color);
}
.tvc-allstylepants-wrap .btn-sub {
  background: #eee;
  color: #333;
}
.tvc-allstylepants-wrap .btn-outline {
  border: 1px solid var(--btn-color);
  color: var(--btn-color);
  background: #fff;
}
.tvc-allstylepants-wrap .btn-outline:hover {
  background: var(--btn-color);
  color: #fff;
}
.tvc-allstylepants-wrap .btn-mini {
  display: block;
  background: #333;
  color: #fff;
  font-size: 1rem;
  padding: 5px;
  text-align: center;
  margin: 0 10px 10px;
}
.tvc-allstylepants-wrap .btn-area {
  text-align: center;
  margin-top: 20px;
}
.tvc-allstylepants-wrap .feature-btn-area {
  text-align: left;
  margin-top: 20px;
}
.tvc-allstylepants-wrap .btn.btn-sm {
  max-width: 250px;
  padding: 12px;
  font-size: 1.2rem;
}
.tvc-allstylepants-wrap .mens-color {
  background: var(--accent-mens);
  border-color: var(--accent-mens);
}
.tvc-allstylepants-wrap .mens-color:hover {
  color: var(--accent-mens);
}
.tvc-allstylepants-wrap .ladies-color {
  background: var(--accent-ladies) !important;
  border-color: var(--accent-ladies) !important;
}
.tvc-allstylepants-wrap .ladies-color:hover {
  background: #fff !important;
  color: var(--accent-ladies) !important;
}

/* アイテムリンク */
.tvc-allstylepants-wrap .item-link-area {
  text-align: center;
  margin: auto 15px 20px;
}
.tvc-allstylepants-wrap .item-link {
  display: block;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px 30px 10px 10px;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  transition: opacity 0.3s ease;
}
.tvc-allstylepants-wrap .item-link:hover {
  opacity: 0.8;
}
.tvc-allstylepants-wrap .item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: right 0.3s ease;
}
.tvc-allstylepants-wrap .item-link:hover::after {
  right: 10px;
}
.tvc-allstylepants-wrap .item-link-list-area {
  margin: auto 15px 20px;
  text-align: left;
  position: relative;
  z-index: 20;
}
.tvc-allstylepants-wrap .item-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tvc-allstylepants-wrap .text-link-item {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  text-decoration: underline;
  padding: 4px 0;
  transition: opacity 0.3s;
}
.tvc-allstylepants-wrap .text-link-item::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin-left: 8px;
}
.tvc-allstylepants-wrap .text-link-item:hover {
  opacity: 0.7;
}

/* ==============================================
FV & コンセプト
============================================== */
.tvc-allstylepants-wrap .fv-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
}
.tvc-allstylepants-wrap .fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 0;
  max-width: 1600px;
  margin: 0 auto;
  background-color: #fff;
}
.tvc-allstylepants-wrap .fv-bg-ladies {
  flex: 1;
  background: url("/Contents/ImagesPkg/fashion/f-tvc-allstylepants/img-mv-ladies.webp?20260514")
    center top / cover;
}
.tvc-allstylepants-wrap .fv-bg-mens {
  flex: 1;
  background: url("/Contents/ImagesPkg/fashion/f-tvc-allstylepants/img-mv-mens.webp?20260514")
    center top / cover;
}
.tvc-allstylepants-wrap .fv-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 50px 20px;
  box-sizing: border-box;
}

.tvc-allstylepants-wrap .fv-catch {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1.6;
  text-shadow:
    0 0 20px #fff,
    0 0 10px #fff,
    0 0 5px rgba(255, 255, 255, 0.8);
}
.tvc-allstylepants-wrap .fv-sub {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111;
  margin: 0 auto 20px;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 40px;
  display: inline-block;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}
.tvc-allstylepants-wrap .fv-logo-area {
  margin: 10px auto 15px;
  display: flex;
  justify-content: center;
}
.tvc-allstylepants-wrap .fv-logo-area img {
  max-width: 180px;
  width: 100%;
  height: auto;
}
.tvc-allstylepants-wrap .concept-section {
  background-color: #fff;
}
.tvc-allstylepants-wrap .concept-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tvc-allstylepants-wrap .check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.tvc-allstylepants-wrap .check-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
}
.tvc-allstylepants-wrap .check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-ladies);
}
.tvc-allstylepants-wrap .impact-number {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}

.tvc-allstylepants-wrap .impact-number strong {
  font-size: 4rem;
  color: #d4af37;
}
.tvc-allstylepants-wrap .impact-number small {
  display: block;
  font-size: 1rem;
  color: #999;
  margin-top: 5px;
}

/* セクション設定 */
.tvc-allstylepants-wrap .ladies-section {
  background-color: var(--bg-ladies);
}
.tvc-allstylepants-wrap .mens-section {
  background-color: var(--bg-mens);
}
.tvc-allstylepants-wrap .label-tag {
  background: var(--accent-ladies);
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  font-weight: bold;
  margin-bottom: 20px;
}
.tvc-allstylepants-wrap .label-tag.mens {
  background: var(--accent-mens);
}
.tvc-allstylepants-wrap .intro-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.tvc-allstylepants-wrap .col-2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.tvc-allstylepants-wrap .mens-inline-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

/* ==============================================
スクロール・カルーセル関連
============================================== */
.tvc-allstylepants-wrap .horizontal-scroll-sp {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 15px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 max(5vw, calc((100vw - 1000px) / 2));
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tvc-allstylepants-wrap .horizontal-scroll-sp::-webkit-scrollbar {
  display: none;
}
.tvc-allstylepants-wrap .horizontal-scroll-sp > * {
  flex: 0 0 80%;
  scroll-snap-align: center;
}

.tvc-allstylepants-wrap .wardrobe-sub {
  font-size: 1.3rem;
  font-weight: normal;
}
.tvc-allstylepants-wrap .carousel-container {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 max(5vw, calc((100vw - 1000px) / 2));
  box-sizing: border-box;
}
.tvc-allstylepants-wrap .carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  align-items: stretch;
}
.tvc-allstylepants-wrap .carousel-track:active {
  cursor: grabbing;
}
.tvc-allstylepants-wrap .carousel-track::-webkit-scrollbar {
  display: none;
}
.tvc-allstylepants-wrap .carousel-item {
  flex: 0 0 70%;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: auto !important;
}
.tvc-allstylepants-wrap .day-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #333;
  color: #fff;
  font-size: 0.98rem;
  padding: 2px 8px;
  z-index: 2;
}
.tvc-allstylepants-wrap .carousel-item .caption {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 10px;
  flex-grow: 1;
}

.tvc-allstylepants-wrap .carousel-btn,
.tvc-allstylepants-wrap .card-slider-btn {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid #ddd !important;
  border-radius: 50% !important;
  cursor: pointer;
  z-index: 10;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #333 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.tvc-allstylepants-wrap .carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px !important;
  height: 48px !important;
  font-size: 24px !important;
}
.tvc-allstylepants-wrap .carousel-btn.prev {
  left: 5px !important;
}
.tvc-allstylepants-wrap .carousel-btn.next {
  right: 5px !important;
}

/* ==============================================
カード・カード内スライダー
============================================== */
.tvc-allstylepants-wrap .card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: auto !important;
  width: 100%;
}
.tvc-allstylepants-wrap .card h4 {
  margin: 15px 15px 5px;
  font-size: 1.6rem;
}
.tvc-allstylepants-wrap .card p {
  font-size: 1.2rem;
  color: #666;
  margin: 0 15px 15px;
  flex-grow: 1;
}
.tvc-allstylepants-wrap .card .caption {
  text-align: center;
  margin: 10px;
  font-size: 1.3rem;
  color: #666;
  flex-grow: 1;
}

.tvc-allstylepants-wrap .card-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.tvc-allstylepants-wrap .card-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.tvc-allstylepants-wrap .card-slider-track:active {
  cursor: grabbing;
}
.tvc-allstylepants-wrap .card-slider-track::-webkit-scrollbar {
  display: none;
}
.tvc-allstylepants-wrap .card-slider-track > * {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  scroll-snap-align: center;
  pointer-events: none;
}

/* --- カード内スライダーの矢印 --- */
.tvc-allstylepants-wrap .card-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px !important;
  height: 36px !important;
  font-size: 18px !important;
}
.tvc-allstylepants-wrap .card-slider-btn.prev {
  left: 5px !important;
}
.tvc-allstylepants-wrap .card-slider-btn.next {
  right: 5px !important;
}

.tvc-allstylepants-wrap .card-slider-dots {
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.tvc-allstylepants-wrap .card-slider-dots .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.tvc-allstylepants-wrap .card-slider-dots .dot.active {
  background: #fff;
  transform: scale(1.1);
}

/* 素材バナー・機能ブロック・レビュー */
.tvc-allstylepants-wrap .material-banner {
  background: #e8f4f8;
  border-radius: 8px;
  padding: 20px;
  margin: 0 auto 20px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.tvc-allstylepants-wrap .material-logo img {
  height: 80px;
  width: auto;
}
.tvc-allstylepants-wrap .material-text p {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.6;
}
.tvc-allstylepants-wrap .material-text strong {
  color: #007cb0;
  font-size: 1.6rem;
  display: block;
  margin-bottom: 5px;
}
.tvc-allstylepants-wrap .feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 8px;
}
.tvc-allstylepants-wrap .feature-block.bg-white {
  background: #fff;
  padding: 30px 20px;
}
.tvc-allstylepants-wrap .feature-grid .icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  font-size: 1.2rem;
}
.tvc-allstylepants-wrap .memo-area {
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  color: #666;
}
.tvc-allstylepants-wrap .review-note {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 20px;
}
.tvc-allstylepants-wrap .review-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tvc-allstylepants-wrap .review-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.tvc-allstylepants-wrap .stars {
  color: #ffd700;
  margin-bottom: 5px;
}
.tvc-allstylepants-wrap .closing-section {
  background: var(--bg-ladies);
}
.tvc-allstylepants-wrap .closing-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* ==============================================
ラインナップ 
============================================== */
.tvc-allstylepants-wrap .tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.tvc-allstylepants-wrap .tab-btn {
  border: none;
  background: #eee;
  padding: 10px 30px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s;
}
.tvc-allstylepants-wrap .tab-btn.active {
  background: #333;
  color: #fff;
}
.tvc-allstylepants-wrap .product-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.tvc-allstylepants-wrap .product-grid.active {
  display: grid;
}

.tvc-allstylepants-wrap .product-card {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s;
}
.tvc-allstylepants-wrap .product-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.tvc-allstylepants-wrap .product-card .btn-mini::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.tvc-allstylepants-wrap .product-card .color-chips,
.tvc-allstylepants-wrap .product-card .tags-area {
  position: relative;
  z-index: 11;
  pointer-events: none;
}

.tvc-allstylepants-wrap .product-card .p-name {
  font-size: 1.2rem !important;
  line-height: 1.5 !important;
  margin: 10px 10px 5px !important;
  font-weight: bold;
}
.tvc-allstylepants-wrap .product-card .price {
  font-size: 1.4rem !important;
  font-weight: bold !important;
  margin: auto 10px 10px;
}

.tvc-allstylepants-wrap .tags-area {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 10px 5px;
}
.tvc-allstylepants-wrap .product-card .tag {
  font-size: 0.95rem;
  background: #f0f0f0;
  padding: 3px 6px;
  color: #666;
  border-radius: 2px;
  white-space: nowrap;
}

/* カラーチップ */
.tvc-allstylepants-wrap .color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 5px 10px 10px;
}
.tvc-allstylepants-wrap .color-chips .chip {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: inline-block;
  box-sizing: border-box;
}
.tvc-allstylepants-wrap .chip.black {
  background-color: #222;
}
.tvc-allstylepants-wrap .chip.navy {
  background-color: #2b364a;
}
.tvc-allstylepants-wrap .chip.beige {
  background-color: #d8c9b3;
}
.tvc-allstylepants-wrap .chip.khaki {
  background-color: #7d846b;
}
.tvc-allstylepants-wrap .chip.white {
  background-color: #fff;
}
.tvc-allstylepants-wrap .chip.blue {
  background-color: #6a8caf;
}
.tvc-allstylepants-wrap .chip.gray {
  background-color: #8c8c8c;
}
.tvc-allstylepants-wrap .chip.off {
  background-color: #f9f6eb;
}
.tvc-allstylepants-wrap .chip.pink {
  background-color: #f0ced6;
}
.tvc-allstylepants-wrap .chip.brown {
  background-color: #bfa38f;
}

/* 画像ホバー切り替え */
.tvc-allstylepants-wrap .img-switch {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.tvc-allstylepants-wrap .img-switch .img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.tvc-allstylepants-wrap .img-switch .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  z-index: 2;
  background-color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .tvc-allstylepants-wrap .product-card:hover .img-switch .img-hover {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* 追従ナビ＆フッター */
.tvc-allstylepants-wrap .sticky-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.tvc-allstylepants-wrap .sticky-nav.show {
  transform: translateY(0);
}
.tvc-allstylepants-wrap .sticky-nav a {
  flex: 1;
  text-align: center;
  border-right: 1px solid #eee;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px 0;
}
.tvc-allstylepants-wrap .sticky-nav a:last-child {
  border-right: none;
}
.tvc-allstylepants-wrap .site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 0;
}
.tvc-allstylepants-wrap .footer-top-btn {
  background: #444;
  padding: 20px;
  border-bottom: 1px solid #555;
}
.tvc-allstylepants-wrap .btn-top-aeon {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #333;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.48rem;
  transition: 0.3s;
}
.tvc-allstylepants-wrap .btn-top-aeon:hover {
  opacity: 0.8;
}
.tvc-allstylepants-wrap .copyright {
  padding: 20px;
  font-size: 1.1rem;
  color: #aaa;
  margin: 0;
}

/* フッター・SNSアイコン */
.tvc-allstylepants-wrap .footer-sns {
  padding: 30px 0 10px;
  background-color: #333;
}
.tvc-allstylepants-wrap .sns-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.tvc-allstylepants-wrap .sns-list a {
  display: block;
  transition: all 0.3s ease;
}
.tvc-allstylepants-wrap .sns-list img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}
.tvc-allstylepants-wrap .sns-list a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.tvc-allstylepants-wrap .price-note {
  font-size: 0.85rem;
  color: #666;
  text-align: right;
  margin-top: 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .tvc-allstylepants-wrap .price-note {
    margin-right: 5px;
  }
}

/* ==============================================
PC レイアウト（768px以上）
============================================== */
@media (min-width: 768px) {
  .tvc-allstylepants-wrap .sp-only {
    display: none;
  }

  .tvc-allstylepants-wrap .section-title {
    font-size: 2.65rem;
  }
  .tvc-allstylepants-wrap .sub-title {
    font-size: 2rem;
  }
  .tvc-allstylepants-wrap .fv-catch {
    font-size: 2.3rem;
  }
  .tvc-allstylepants-wrap .impact-number strong {
    font-size: 5rem;
  }
  .tvc-allstylepants-wrap .card h4 {
    font-size: 1.7rem;
  }

  .tvc-allstylepants-wrap .fv-section {
    min-height: max(85vh, 700px);
  }
  .tvc-allstylepants-wrap .fv-bg-ladies,
  .tvc-allstylepants-wrap .fv-bg-mens {
    background-position: center 55%;
  }
  .tvc-allstylepants-wrap .fv-content {
    max-width: 700px;
    padding: 60px 20px;
  }
  .tvc-allstylepants-wrap .fv-logo-area img {
    max-width: 250px;
  }
  .tvc-allstylepants-wrap .fv-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }
  .tvc-allstylepants-wrap .fv-btns .btn {
    width: auto;
    min-width: 160px;
    padding: 15px 30px;
    font-size: 1.6rem;
    margin: 0;
  }
  .tvc-allstylepants-wrap .concept-grid {
    flex-direction: row;
    align-items: center;
  }
  .tvc-allstylepants-wrap .concept-text,
  .tvc-allstylepants-wrap .concept-visual {
    width: 50%;
  }
  .tvc-allstylepants-wrap .intro-grid {
    flex-direction: row;
    align-items: center;
  }
  .tvc-allstylepants-wrap .intro-grid > * {
    width: 50%;
  }
  .tvc-allstylepants-wrap .col-2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .tvc-allstylepants-wrap .horizontal-scroll-sp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: visible;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .tvc-allstylepants-wrap .horizontal-scroll-sp > * {
    flex: none;
    width: auto;
  }
  .tvc-allstylepants-wrap .horizontal-scroll-sp.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }
  .tvc-allstylepants-wrap .horizontal-scroll-sp.grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tvc-allstylepants-wrap .feature-grid {
    flex-direction: row;
    align-items: center;
  }
  .tvc-allstylepants-wrap .feature-grid.reverse {
    flex-direction: row-reverse;
  }
  .tvc-allstylepants-wrap .feature-grid > * {
    width: 50%;
  }

  .tvc-allstylepants-wrap .carousel-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .tvc-allstylepants-wrap .carousel-track {
    cursor: grab;
  }
  .tvc-allstylepants-wrap .carousel-item {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  .tvc-allstylepants-wrap .carousel-btn {
    display: flex !important;
  }
  .tvc-allstylepants-wrap .carousel-btn.prev {
    left: -24px !important;
  }
  .tvc-allstylepants-wrap .carousel-btn.next {
    right: -24px !important;
  }

  .tvc-allstylepants-wrap .review-list {
    flex-direction: row;
  }
  .tvc-allstylepants-wrap .review-item {
    flex: 1;
  }
  .tvc-allstylepants-wrap .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .tvc-allstylepants-wrap .closing-btns {
    flex-direction: row;
    justify-content: center;
  }
  .tvc-allstylepants-wrap .closing-btns .btn {
    width: auto;
    min-width: 240px;
    margin: 0;
  }
}
