/******************************/
/* TOP HERO BLOCK (slider + logo + dots) */
/******************************/
.p-top-hero-block {
  position: relative;
  margin-top: 40px;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.p-top-hero-block.is-ready {
  opacity: 1;
}
/* 万が一JSが動かないときのフォールバック（一定時間後に強制表示） */
.p-top-hero-block:not(.is-ready) {
  animation: p-top-hero-fallback 5s linear forwards;
}
@keyframes p-top-hero-fallback {
  0%, 99% { opacity: 0; }
  100% { opacity: 1; }
}
.p-top-logomark {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}
.p-top-logomark img {
  width: 140px;
  height: 140px;
  display: block;
  animation: p-top-logomark-spin 20s linear infinite;
  transform-origin: center center;
  will-change: transform;
}
@keyframes p-top-logomark-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media screen and (max-width: 767px) {
  .p-top-hero-block {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .p-top-logomark {
    /* 画像下端（slider padding-bottom 40px の境界）にロゴ中央を合わせる */
    /* bottom = 40 - logoHeight/2 = 40 - 32 = 8 */
    bottom: 8px;
  }
  .p-top-logomark img {
    width: 64px;
    height: 64px;
  }
}
/******************************/
/* SLIDER */
/******************************/
.slider {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-bottom: 50px;
  width: 100vw;
  background: transparent;
  overflow: hidden;
}
@media screen and (max-width: 1030px) {
  .slider {
    padding-bottom: 40px;
  }
}
.p-top-swiper.swiper {
  position: relative;
  width: 100%;
  overflow: visible;
}
.p-top-swiper .swiper-wrapper {
  align-items: center;
}
.p-top-swiper .swiper-slide {
  position: relative;
  width: clamp(600px, 58vw, 820px);
  height: auto;
  box-sizing: content-box;
  transform-origin: center center;
  text-align: center;
  /* scale / opacity は JS (Swiper progress) がインラインで制御 */
}
.p-top-swiper .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.p-top-swiper .swiper-slide > *,
.p-top-swiper .swiper-slide a {
  display: block;
  width: 100%;
}
.p-top-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 840 / 560;
  object-fit: cover;
}
@media screen and (max-width: 1030px) {
  .p-top-swiper .swiper-slide {
    width: min(75vw, 720px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-swiper.swiper {
    overflow: hidden;
  }
  .p-top-swiper .swiper-slide {
    width: 100vw;
    opacity: 1;
    transform: none;
  }
  .p-top-swiper .swiper-slide img {
    aspect-ratio: 375 / 195;
  }
}
.p-top-hero-block__dots {
  position: absolute !important;
  right: 70px !important;
  bottom: 30px;
  left: auto !important;
  width: auto !important;
  top: auto !important;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  z-index: 6;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-top-hero-block__dots {
    right: 16px !important;
    left: auto !important;
    bottom: 14px;
    gap: 12px;
  }
}
.p-top-hero-block__dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #222222;
  border: 1px solid #222222;
  box-sizing: border-box;
  border-radius: 50%;
  opacity: 1;
}
.p-top-hero-block__dots .swiper-pagination-bullet-active {
  background: transparent;
}
/* 複製スライド用に生成される余剰ドットを非表示 */
.p-top-hero-block__dots .swiper-pagination-bullet--hidden {
  display: none;
}
/* 旧: スライド内のキャプション。新レイアウトでは外側 .p-top-hero-block__brand を使うため非表示 */
.p-top-hero__caption {
  display: none;
}
/* Hero左下にブランド名 - ドットの中央と視覚的に揃える */
.p-top-hero-block__brand {
  position: absolute;
  left: clamp(20px, 3vw, 60px);
  bottom: 28px;
  transform: translateY(50%);
  z-index: 4;
  margin: 0;
  padding: 0;
  color: transparent;
  -webkit-text-stroke: 1px #222222;
  text-stroke: 1px #222222;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  font-variation-settings: 'opsz' 14, 'wdth' 100;
  letter-spacing: 0.018em;
  line-height: 1.07;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.p-top-hero-block__brand.is-changing {
  opacity: 0;
}
@media screen and (max-width: 1030px) {
  .p-top-hero-block__brand {
    font-size: clamp(24px, 3.6vw, 36px);
    bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-hero-block__brand {
    position: absolute;
    left: 16px;
    right: auto;
    bottom: 18px;
    margin: 0;
    transform: translateY(50%);
    font-size: 20px;
    text-align: left;
    white-space: nowrap;
  }
}
.p-top-hero__lead {
  position: absolute;
  top: 50%;
  left: 64px;
  transform: translateY(-58%);
  color: #c85657;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(28px, 4.8vw, 54px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.p-top-hero__label {
  display: block;
  position: relative;
  padding: 0;
  background: transparent;
  color: #111111;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: clamp(36px, 4.8vw, 80px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
  /* progress に応じてJSが opacity / transform を制御 */
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
}
@media screen and (max-width: 1030px) {
  .p-top-hero__lead {
    left: 40px;
  }
  .p-top-hero__label {
    font-size: clamp(28px, 5vw, 48px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-hero__lead {
    display: none;
  }
  .p-top-hero__label {
    font-size: 26px;
    letter-spacing: 0.02em;
    /* SPは1枚表示なのでテキスト常時表示 */
    opacity: 1 !important;
    transform: none !important;
  }
}
.p-top-swiper.is-single-slide .p-top-hero__caption {
  display: block;
}
.p-top-swiper.is-single-slide .swiper-slide {
  opacity: 1;
  transform: none;
}
/******************************/
/* NEWS */
/******************************/
.p-line-informaiton {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
  width: 760px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton {
    display: block;
    width: auto;
  }
}
.p-line-informaiton ul {
  flex: 1;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton ul {
    font-size: 12px;
  }
}
.p-line-informaiton li {
  margin-bottom: 15px;
}
.p-line-informaiton__ttl {
  position: relative;
  margin: 0 40px 0 0;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton__ttl {
    margin: 0;
  }
}
.p-line-informaiton__ttl:before {
  content: "";
  position: absolute;
  top: 7px;
  right: -20px;
  width: 1px;
  height: 10px;
  background: #d2d2d2;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton__ttl:before {
    content: none;
  }
}
/***** お知らせ *****/
.p-top-news {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    display: block;
    margin-bottom: 45px;
  }
}
.p-top-news__ttl {
  box-sizing: border-box;
  margin-right: 25px;
  padding: 10px;
  width: 110px;
  border: 1px solid #b2b2b2;
  font-size: 18px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-news__ttl {
    margin-right: 0;
    margin-bottom: 10px;
    padding: 5px;
    width: 70px;
    border: 1px solid #b2b2b2;
    font-size: 12px;
  }
}
.p-top-news__body {
  flex: 1;
  margin-bottom: 0;
}
/******************************/
/* TOP RECOMMEND */
/******************************/
.p-recommend.u-container {
  padding-bottom: 0;
}
/******************************/
/* TOP BLOG (WordPress Event + Column) */
/******************************/
.p-top-blog.u-container {
  padding-top: 60px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-top-blog.u-container {
    padding-top: 40px;
  }
}
.p-top-blog__row {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-blog__row {
    flex-direction: column;
    gap: 40px;
  }
  .p-top-blog__divider {
    margin-top: 0;
    padding: 0;
  }
}
.p-top-blog__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-blog__col {
    flex: 0 0 auto;
    width: 100%;
    gap: 30px;
  }
}
.p-top-blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.p-top-blog__ttl {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.025em;
  color: #222;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-blog__ttl {
    font-size: 25px;
  }
}
.p-top-blog__card {
  width: 100%;
  min-height: 200px; /* ロード前の高さ確保 */
}
.p-top-blog__link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-blog__link {
    gap: 15px;
  }
}
.p-top-blog__link:hover .p-top-blog__img img {
  transform: scale(1.03);
}
.p-top-blog__img {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: #f4f4f4;
}
.p-top-blog__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-top-blog__img--empty {
  background: #f4f4f4;
}
.p-top-blog__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-top-blog__date {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #777;
}
.p-top-blog__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: inherit;
}

/******************************/
/* TOP MOVIE (Instagram Live + YouTube) */
/******************************/
.p-top-movie {
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-movie {
    padding: 20px 0 0;
  }
}
.p-top-movie__row {
  display: flex;
  gap: 10px;
  padding: 0 40px;
}
@media screen and (max-width: 1030px) {
  .p-top-movie__row {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-movie__row {
    flex-direction: column;
    gap: 2px;
    padding: 0;
  }
}
.p-top-movie__ig,
.p-top-movie__yt {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
/* Instagram Live block */
.p-top-movie__ig {
  display: block;
  aspect-ratio: 16 / 9;
  color: #fff;
  text-decoration: none;
  background: #222;
}
.p-top-movie__ig:hover,
.p-top-movie__ig:focus {
  color: #fff;
  text-decoration: none;
}
.p-top-movie__ig-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-top-movie__ig:hover .p-top-movie__ig-bg {
  transform: scale(1.03);
}
.p-top-movie__ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.p-top-movie__ig-body {
  position: absolute;
  left: 35px;
  right: 20px;
  bottom: 35px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-top-movie__ig-icon {
  display: block;
  width: 50px;
  height: 50px;
  color: #fff;
}
.p-top-movie__ig-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-movie__ig-ttl {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: #fff;
}
.p-top-movie__ig-desc {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: #fff;
}
/* YouTube block (標準16:9) */
.p-top-movie__yt {
  aspect-ratio: 16 / 9;
}
.p-top-movie__yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-top-movie__ig,
  .p-top-movie__yt {
    /* 縦積み時は flex:1 1 0 ではなくコンテンツ基準にサイズ決定 */
    flex: 0 0 auto;
    width: 100%;
  }
  .p-top-movie__ig {
    aspect-ratio: 3 / 2;
  }
  .p-top-movie__ig-body {
    left: 20px;
    right: 20px;
    bottom: 20px;
    gap: 8px;
  }
  .p-top-movie__ig-icon {
    width: 40px;
    height: 40px;
  }
  .p-top-movie__ig-ttl {
    font-size: 22px;
  }
  .p-top-movie__ig-desc {
    font-size: 13px;
  }
  .p-top-movie__yt {
    aspect-ratio: 16 / 9;
  }
}

/******************************/
/* NEW ARRIVAL */
/******************************/
.p-new-item.u-container {
  padding-top: 0;
  padding-bottom: 0;
}
.p-new-item .u-contents-s {
  padding-top: 48px;
  padding-bottom: 0;
  border-top: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .p-new-item .u-contents-s {
    padding-top: 32px;
  }
}
.p-new-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-new-item__head {
    margin-bottom: 30px;
  }
}
.p-new-item__ttl {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.025em;
  color: #222;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-new-item__ttl {
    font-size: 25px;
  }
}
.p-new-item__more {
  flex-shrink: 0;
}
/* __body: swiperと矢印を包むラッパー、相対配置の基準
   __body自身は u-container content内 (vp-80px幅) */
.p-new-item__body {
  position: relative;
  margin-bottom: 40px;
}
.p-new-item__body:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1030px) {
  .p-new-item__body {
    margin-bottom: 30px;
  }
}
/* Swiperラッパー: Swiper本体CSSがあとから読まれるため !important で確実に勝つ
   負のmarginで body 両端まで拡張、padding で内側の位置調整 */
.p-new-item__swiper {
  position: relative !important;
  margin-left: -40px !important;
  margin-right: -40px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
@media screen and (max-width: 1030px) {
  .p-new-item__swiper {
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.p-new-item__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-new-item__item {
  margin: 0;
  padding: 0;
  list-style: none;
  height: auto;
  box-sizing: border-box;
}
/* スライド幅: 100% は swiper-wrapper の content-box = swiper の content-box
   計算: (swiper content-box - spaceBetween合計) / visible_count
   これによりスクロールバーの影響を受けず正確に u-container 内に収まる */
.p-new-item__swiper .swiper-slide.p-new-item__item {
  width: calc((100% - 40px) / 5);
}
@media screen and (max-width: 1030px) {
  .p-new-item__swiper .swiper-slide.p-new-item__item {
    width: calc((100% - 30px) / 4);
  }
}
/* 矢印ボタン（Figma: 50px円形）__bodyの左右端からはみ出し配置 */
.p-new-item__arrow {
  position: absolute;
  top: 0;
  /* 画像中央: 商品カードの画像(232:275比)の半分高さ - 25px */
  margin-top: calc(((100vw - 80px - 40px) / 5) * 275 / 232 / 2 - 25px);
  z-index: 10;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  font-size: 0;
  line-height: 0;
  appearance: none;
}
.p-new-item__arrow:hover {
  background: #222;
  border-color: #222;
}
.p-new-item__arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #222;
  border-right: 1.5px solid #222;
  transition: border-color 0.3s ease;
}
.p-new-item__arrow:hover:before {
  border-color: #fff;
}
.p-new-item__arrow--prev {
  /* __body内部10pxインセット → 1件目左端を若干オーバーラップ、確実に画面内 */
  left: 10px;
}
.p-new-item__arrow--prev:before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.p-new-item__arrow--next {
  /* __body内部10pxインセット → 5件目右端を若干オーバーラップ、確実に画面内 */
  right: 10px;
}
.p-new-item__arrow--next:before {
  transform: translate(-70%, -50%) rotate(45deg);
}
.p-new-item__arrow.swiper-button-disabled {
  display: none;
}
@media screen and (max-width: 1030px) {
  .p-new-item__arrow {
    margin-top: calc(((100vw - 40px - 30px) / 4) * 275 / 232 / 2 - 25px);
  }
}
/* SP: Swiperを実質無効化し、2列グリッドで表示
   Swiper JSが inline で残すwidth/transform/margin を !important で確実に無効化 */
@media screen and (max-width: 767px) {
  .p-new-item__body {
    margin-bottom: 20px;
  }
  .p-new-item__swiper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }
  .p-new-item__list.swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 20px;
    width: 100% !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .p-new-item__item.swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
  .p-new-item__arrow {
    display: none;
  }
}
.p-new-item__item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-new-item__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-new-item__card {
    gap: 15px;
  }
}
.p-new-item__card:hover .p-new-item__img img {
  transform: scale(1.04);
}
.p-new-item__img {
  position: relative;
  width: 100%;
  aspect-ratio: 232 / 275;
  overflow: hidden;
  background: #f4f4f4;
}
.p-new-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-new-item__soldout {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 3px 8px;
  background: rgba(34, 34, 34, 0.8);
  color: #fff;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.p-new-item__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.p-new-item__category {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #777;
}
.p-new-item__name {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-new-item__name {
    font-size: 14px;
  }
}
.p-new-item__price {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: 0.045em;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-new-item__price {
    font-size: 14px;
  }
}
.p-new-item__price.is-discount {
  color: #c85657;
}
.p-new-item__off {
  display: inline-block;
  margin-left: 6px;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c85657;
}
.p-new-item__regular-price {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 13px;
  line-height: 14px;
  color: #999;
  text-decoration: line-through;
}
/******************************/
/* SHOP BLOG (WordPress tips, Swiper) */
/******************************/
.p-shop-blog.u-container {
  padding-top: 60px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-shop-blog.u-container {
    padding-top: 40px;
  }
}
.p-shop-blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-shop-blog__head {
    margin-bottom: 30px;
  }
}
.p-shop-blog__ttl {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.025em;
  color: #222;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-shop-blog__ttl {
    font-size: 25px;
  }
}
/* __body: swiperと矢印を包むラッパー */
.p-shop-blog__body {
  position: relative;
}
/* Swiperラッパー - NEW ARRIVAL と完全同一、!important で Swiper 本体CSS に勝つ */
.p-shop-blog__swiper {
  position: relative !important;
  margin-left: -40px !important;
  margin-right: -40px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
@media screen and (max-width: 1030px) {
  .p-shop-blog__swiper {
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.p-shop-blog__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-shop-blog__item {
  margin: 0;
  padding: 0;
  list-style: none;
  height: auto;
}
/* スライド幅: NEW ARRIVAL と同じ、100% = swiper content-box 基準 */
.p-shop-blog__swiper .swiper-slide.p-shop-blog__item {
  width: calc((100% - 40px) / 5);
}
@media screen and (max-width: 1030px) {
  .p-shop-blog__swiper .swiper-slide.p-shop-blog__item {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (max-width: 767px) {
  /* SP: 1.3件表示（1件フル+0.3件覗き） */
  .p-shop-blog__swiper .swiper-slide.p-shop-blog__item {
    width: calc((100% - 10px) / 1.3);
  }
}
.p-shop-blog__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: inherit;
  text-decoration: none;
}
.p-shop-blog__card:hover .p-shop-blog__img img {
  transform: scale(1.04);
}
.p-shop-blog__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f4f4;
}
.p-shop-blog__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-shop-blog__img--empty {
  background: #f4f4f4;
}
.p-shop-blog__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-shop-blog__date {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #777;
}
.p-shop-blog__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Shop Blog 矢印（Figma: 50px円形, 画像中央配置） */
.p-shop-blog__arrow {
  position: absolute;
  top: 0;
  /* 画像比率 4:5 → 画像高さの半分 - 25px */
  margin-top: calc(((100vw - 80px - 40px) / 5) * 5 / 4 / 2 - 25px);
  z-index: 10;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  font-size: 0;
  line-height: 0;
  appearance: none;
}
.p-shop-blog__arrow:hover {
  background: #222;
  border-color: #222;
}
.p-shop-blog__arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #222;
  border-right: 1.5px solid #222;
  transition: border-color 0.3s ease;
}
.p-shop-blog__arrow:hover:before {
  border-color: #fff;
}
.p-shop-blog__arrow--prev {
  left: 10px;
}
.p-shop-blog__arrow--prev:before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.p-shop-blog__arrow--next {
  right: 10px;
}
.p-shop-blog__arrow--next:before {
  transform: translate(-70%, -50%) rotate(45deg);
}
.p-shop-blog__arrow.swiper-button-disabled {
  display: none;
}
@media screen and (max-width: 1030px) {
  .p-shop-blog__arrow {
    margin-top: calc(((100vw - 40px - 30px) / 4) * 5 / 4 / 2 - 25px);
  }
}
@media screen and (max-width: 767px) {
  /* SP: NEW ARRIVAL と違い Swiper を解除せず横スクロール維持
     u-container padding 16px を相殺 */
  .p-shop-blog__swiper {
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .p-shop-blog__arrow {
    display: none;
  }
}

/******************************/
/* STAFF BLOG (Shop Blogと同仕様 + バッジ) */
/******************************/
.p-staff-blog.u-container {
  padding-top: 60px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-staff-blog.u-container {
    padding-top: 40px;
  }
}
.p-staff-blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-staff-blog__head {
    margin-bottom: 30px;
  }
}
.p-staff-blog__ttl {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.025em;
  color: #222;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-staff-blog__ttl {
    font-size: 25px;
  }
}
.p-staff-blog__body {
  position: relative;
}
.p-staff-blog__swiper {
  position: relative !important;
  margin-left: -40px !important;
  margin-right: -40px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
@media screen and (max-width: 1030px) {
  .p-staff-blog__swiper {
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.p-staff-blog__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-staff-blog__item {
  margin: 0;
  padding: 0;
  list-style: none;
  height: auto;
}
.p-staff-blog__swiper .swiper-slide.p-staff-blog__item {
  width: calc((100% - 40px) / 5);
}
@media screen and (max-width: 1030px) {
  .p-staff-blog__swiper .swiper-slide.p-staff-blog__item {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (max-width: 767px) {
  .p-staff-blog__swiper .swiper-slide.p-staff-blog__item {
    width: calc((100% - 10px) / 1.3);
  }
}
.p-staff-blog__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: inherit;
  text-decoration: none;
}
.p-staff-blog__card:hover .p-staff-blog__img img {
  transform: scale(1.04);
}
.p-staff-blog__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f4f4;
}
.p-staff-blog__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-staff-blog__img--empty {
  background: #f4f4f4;
}
.p-staff-blog__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-staff-blog__date {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #777;
}
.p-staff-blog__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-staff-blog__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border: 1px solid #d3d3d3;
  border-radius: 14px;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: #777;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-staff-blog__badge {
    padding: 5px 14px;
    font-size: 12px;
  }
}
/* Staff Blog 矢印（Shop Blog と同形） */
.p-staff-blog__arrow {
  position: absolute;
  top: 0;
  margin-top: calc(((100vw - 80px - 40px) / 5) * 5 / 4 / 2 - 25px);
  z-index: 10;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  font-size: 0;
  line-height: 0;
  appearance: none;
}
.p-staff-blog__arrow:hover {
  background: #222;
  border-color: #222;
}
.p-staff-blog__arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #222;
  border-right: 1.5px solid #222;
  transition: border-color 0.3s ease;
}
.p-staff-blog__arrow:hover:before {
  border-color: #fff;
}
.p-staff-blog__arrow--prev {
  left: 10px;
}
.p-staff-blog__arrow--prev:before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.p-staff-blog__arrow--next {
  right: 10px;
}
.p-staff-blog__arrow--next:before {
  transform: translate(-70%, -50%) rotate(45deg);
}
.p-staff-blog__arrow.swiper-button-disabled {
  display: none;
}
@media screen and (max-width: 1030px) {
  .p-staff-blog__arrow {
    margin-top: calc(((100vw - 40px - 30px) / 4) * 5 / 4 / 2 - 25px);
  }
}
@media screen and (max-width: 767px) {
  .p-staff-blog__swiper {
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .p-staff-blog__arrow {
    display: none;
  }
}

/******************************/
/* TOP CATEGORY LINKS (bg #e8e8e1, 2cols / SP 1col) */
/******************************/
.p-top-category {
  margin-top: 60px;
  background: #e8e8e1;
}
@media screen and (max-width: 767px) {
  .p-top-category {
    margin-top: 40px;
  }
}
.p-top-category__inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-category__inner {
    padding: 30px 20px 40px;
  }
}
.p-top-category__ttl {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.056em;
  color: #222;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-category__ttl {
    font-size: 16px;
  }
}
.p-top-category__cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
}
@media screen and (max-width: 1030px) {
  .p-top-category__cols {
    flex-direction: column;
    gap: 20px;
  }
}
.p-top-category__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .p-top-category__col {
    gap: 5px;
  }
}
.p-top-category__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-top-category__row {
    gap: 5px 2px;
  }
}
.p-top-category__item {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-top-category__item {
    font-size: 19px;
  }
}
.p-top-category__item a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}
.p-top-category__item a:hover {
  color: #652072;
}
/* 斜めのスラッシュ区切り（Figma: 24px × 1px 線を114.57deg回転） */
.p-top-category__item + .p-top-category__item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-right: 4px;
  background: #222;
  transform: rotate(114.57deg);
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .p-top-category__item + .p-top-category__item::before {
    width: 14px;
    margin-right: 2px;
  }
}

/******************************/
/* TOP BRAND (Category直下に同色背景で連結) */
/******************************/
.p-top-brand {
  background: #e8e8e1;
}
.p-top-brand__inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 40px 100px;
}
@media screen and (max-width: 767px) {
  .p-top-brand__inner {
    padding: 30px 20px 80px;
  }
}
.p-top-brand__ttl {
  margin: 0;
  font-family: "Bricolage Grotesque", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.056em;
  color: #222;
  line-height: 1;
}
.p-top-brand__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px 5px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-top-brand__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.p-top-brand__item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-top-brand__card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #222;
  text-decoration: none;
}
.p-top-brand__img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 800 / 400;
  background: #f4f4f4;
}
.p-top-brand__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-top-brand__card:hover .p-top-brand__img img {
  transform: scale(1.04);
}
.p-top-brand__name {
  display: block;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  color: #222;
  transition: color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-top-brand__name {
    font-size: 12px;
  }
}
.p-top-brand__card:hover .p-top-brand__name {
  color: #652072;
}

/******************************/
/* TOP RANKING */
/******************************/
.p-ranking-list .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.p-ranking-list .slick-prev, .p-ranking-list .slick-next {
  top: 80px;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
  z-index: 1;
  background: rgba(255,255,255,0.4);
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev, .p-ranking-list .slick-next {
    top: 110px;
    width: 45px;
    height: 45px;
  }
}
.p-ranking-list .slick-prev:before, .p-ranking-list .slick-next:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  transition: all 0.4s ease;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev:before, .p-ranking-list .slick-next:before {
    top: 15px;
  }
}
.p-ranking-list .slick-prev {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev {
    left: 0px;
  }
}
.p-ranking-list .slick-prev:before {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev:before {
    left: 17px;
  }
}
.p-ranking-list .slick-next {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-next {
    right: 0px;
  }
}
.p-ranking-list .slick-next:before {
  left: 4px;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-next:before {
    left: 13px;
  }
}
.p-ranking-list__item {
  position: relative;
  box-sizing: border-box;
  margin-right: 20px;
  margin-left: 20px;
  padding-bottom: 25px;
  word-break: break-all;
}
@media screen and (max-width: 1030px) {
  .p-ranking-list__item {
    margin-right: 5px;
    margin-left: 5px;
  }
}
.p-ranking-list__img {
  position: relative;
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__img {
    text-align: center;
  }
}
.p-ranking-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-ranking-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-ranking-list__img img {
  display: inline-block !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  text-align: center;
}
.p-ranking-list__num {
  position: absolute;
  top: 0;
  left: 1px;
  width: 24px;
  line-height: 24px;
  font-size: 12px;
  font-weight: bold;
  background: #000000;
  color: #ffffff;
  text-align: center;
}
.p-ranking-list__ttl img {
  vertical-align: middle;
}
.p-ranking-list__price {
  color: #909090;
  margin-top: 20px;
}
.p-ranking-list__btn {
  display: block;
  position: absolute;
  right: 0px;
  bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-ranking-list__btn.is-added {
  color: #000000;
}
.p-ranking-list__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/******************************/
/* TOP INFORMATION */
/******************************/
.p-information {
  padding-bottom: 0;
}
@media screen and (max-width: 1030px) {
  .p-information {
    padding-bottom: 45px;
  }
}
.p-information__body {
  margin-left: 60px;
  margin-right: 60px;
  line-height: 2;
}
@media screen and (max-width: 1030px) {
  .p-information__body {
    margin-left: 0;
    margin-right: 0;
  }
}
/******************************/
/* TOP FREE */
/******************************/
.p-free__body {
  margin-left: 60px;
  margin-right: 60px;
  line-height: 2;
}
@media screen and (max-width: 1030px) {
  .p-free__body {
    margin-left: 0;
    margin-right: 0;
  }
}
/******************************/
/* TOP BANNER */
/******************************/
.p-bnr {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1030px) {
  .p-bnr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-bnr-list {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-bnr-list {
    display: block;
  }
}
.p-bnr-list__item {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  width: 33.3333%;
}
@media screen and (max-width: 1030px) {
  .p-bnr-list__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-bnr-list__item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
    width: auto;
    text-align: center;
  }
}
