@charset "UTF-8";
/* =====================================================
   FRAY I.D 2026 AW OFFICE, REFINED  style.css
   - SP特化型 + PC2カラム(左:FV固定 / 右:SP本文460px列) = coding-guidelines §4 パターンA変則
   - 単位・命名は coding-guidelines.md 準拠
   - フォントは近似スタックで暫定実装(後日 Adobe Fonts kitId 反映は --font-* 差し替えのみ)
   ===================================================== */

/* ▼ -----------可変設定---------- ▼ */
.lp_variable {
  --pc-width: 1400;
  /* PCデザイン幅 */
  --sp-width: 750;
  /* SPデザイン幅 */
  --pc-artboard-width: 460;
  /* PC時の本文(右カラム)幅 ＝ 1400px時 460px */
  --sp-artboard-width: 750;
  /* SP本文アートボード幅 */
  --formula: calc(var(--variable) * var(--ratio));
  /* SP/PC共通箇所の可変割合 */
  --formula_pc: calc(var(--variable) * 1);
  /* PCデザイン基準の可変割合 */
}

/* PC 1401px以上 固定 */
@media (min-width: 1401px) {
  .lp_variable {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: 1px;
  }
}

/* PC 768〜1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  .lp_variable {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: calc(100vw / var(--pc-width));
  }
}

/* SP 767px以下 可変 */
@media (max-width: 767px) {
  .lp_variable {
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width));
  }
}

/* ▲ -----------可変設定---------- ▲ */

/* ▼ -----------カスタムプロパティ---------- ▼ */
.lp-page {
  --color-text: #000;
  --color-bg: #ede9e6;
  /* コンテンツ全面の地色(beige) */
  --color-sub: #58595b;

  /* フォント(近似・暫定)。将来 Adobe Fonts 反映時はここだけ差し替える。
     CoFo Raffine → 高コントラストDidone系 / Neue Haas Grotesk → Helvetica系 / しっぽり明朝(Google Fonts) */
  --font-en: "neue-haas-grotesk-display", sans-serif;
  --font-display: "cofo-raffine", sans-serif;
  --font-mincho: shippori-mincho, sans-serif;

  --ease-base: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration-base: 0.9s;
  --lp-header-offset: 0px;
  overflow: clip;
}

/* ▲ -----------カスタムプロパティ---------- ▲ */

/* ▼ -----------LPスコープ リセット---------- ▼ */
.lp-page * {
  box-sizing: border-box;
  font: inherit;
  letter-spacing: inherit;
  font-feature-settings: "palt";
}

.lp-page img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  transition: unset;
}

.lp-page picture {
  display: block;
}

.lp-page a {
  color: inherit;
  text-decoration: none;
}

.lp-page button {
  padding: 0;
  cursor: pointer;
  appearance: none;
  color: inherit;
  background: unset;
  border: unset;
}

.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page p {
  margin: 0;
}

.lp-page figure {
  margin: 0;
}

@media (min-width: 768px) {
  .lp-page .is-hidden--desktop {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .lp-page .is-hidden--mobile {
    display: none !important;
  }
}

/* ▲ -----------LPスコープ リセット---------- ▲ */

/* ▼ -----------ベース---------- ▼ */
.lp-page {
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: var(--font-en);
  line-height: 1.5;
  letter-spacing: 0.04em;
  overflow-x: clip;
}

.font_en {
  font-family: "cofo-raffine", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font_en2 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font_en3 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* ▲ -----------ベース---------- ▲ */

/* ▼ -----------出現アニメーション(.js-inview)---------- ▼ */
.lp-page .js-inview {
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-base);
}

.lp-page .js-inview.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .lp-page .js-inview {
    opacity: 1;
    transition: none;
  }

  .lp-page .js-mv-line {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ▲ -----------出現アニメーション---------- ▲ */

/* =====================================================
   レイアウト(PC 2カラム : 左FV固定 / 右SP本文)
   ===================================================== */
@media (min-width: 768px) {
  .lp-page {
    --header-container-height: 120px;
    display: flex;
    width: 100%;
  }

  .lp-mv {
    grid-column: 1;
  }

  .js-inview.mvWrap {
    transition: all 1s ease !important;
  }

  .lp-mv__media .lp-mv__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
  }

  .lp-main {
    grid-column: 2;
    width: 50%;
    position: relative;
    overflow: clip;
  }

  .lp-main__inner {
    width: calc(750 * var(--formula));
    margin: auto;
  }
}

/* =====================================================
   FV(メインビジュアル)
   ===================================================== */
.lp-mv {
  position: relative;
  container-type: inline-size;
  background: #000;
  overflow: hidden;
}

.lp-mv__media {
  position: relative;
  width: 100%;
  height: 100%;
}

.lp-mv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}


@media (min-width: 768px) {
  .lp-mv {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    z-index: 1;
    overflow: clip;
  }
}

@media screen and (max-width: 767px) {

  .lp-mv__title {
    position: absolute;
    left: calc(181 * var(--formula));
    top: calc(617 * var(--formula));
    color: #fff;
    z-index: 2;
    line-height: 1;
    width: calc(404 * var(--formula));
    pointer-events: none;
  }
}


@media (min-width: 768px) {
  .lp-mv__title {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
  }

  .lp-mv__title__inner {
    position: absolute;
    left: calc(181 * (100vw / 1400));
    color: #fff;
    z-index: 2;
    line-height: 1;
    width: calc(338 * (100vw / 1400));
  }
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
  .lp-mv__title__inner {
    bottom: calc(190 * (100vw / 1400));
  }
}

@media (min-width: 1401px) {
  .lp-mv__title__inner {
    bottom: calc(120 * (100vw / 1400));
  }
}

/* FVタイトル 時差表示(緑枠指定) */
.lp-page .js-mv-line {
  opacity: 0;
  transition: opacity 1s var(--ease-base) 0.7s;
}

.lp-mv.is-active .js-mv-line {
  opacity: 1;
}


/* =====================================================
   本文カラム
   ===================================================== */
.lp-main {
  background: var(--color-bg);
  overflow-x: clip;
}

/* -----------リード文----------- */
.lp-lead {
  text-align: center;
  padding: calc(133 * var(--formula)) calc(14 * var(--formula)) calc(138 * var(--formula));
}

.lp-lead__label {
  font-family: var(--font-display);
  font-size: calc(32 * var(--formula));
  letter-spacing: 0.05em;
  margin-bottom: calc(30 * var(--formula));
}

.lp-lead__title {
  font-family: var(--font-display);
  font-size: calc(81 * var(--formula));
  font-weight: 400;
  letter-spacing: 0.001em;
  line-height: 1;
  padding-top: calc(9 * var(--formula));
}

.lp-lead__divider {
  display: block;
  width: 1px;
  height: calc(110 * var(--formula));
  margin: calc(42 * var(--formula)) auto;
  background: #000;
}

.lp-lead__text {
  font-family: var(--font-mincho);
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .lp-lead {
    text-align: center;
    padding: calc(137 * var(--formula)) calc(14 * var(--formula)) calc(138 * var(--formula));
  }
}

/* =====================================================
   コーデ(OFFICE STYLE)
   ===================================================== */
.lp-look {
  position: relative;
}

.lp-look__head {
  overflow: hidden;
  padding: calc(64 * var(--formula)) 0 calc(4 * var(--formula));
}

.lp-look:not(.sec1) .lp-look__head {
  padding: calc(195 * var(--formula)) 0 calc(9 * var(--formula));
}

.lp-look__num {
  text-align: center;
  font-family: var(--font-en);
  font-size: calc(22 * var(--formula));
  letter-spacing: 0.05em;
  padding-bottom: calc(14 * var(--formula));
  border-bottom: calc(2 * var(--formula)) solid #000;
}

.lp-look__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
  padding-top: calc(31 * var(--formula));
  left: calc(0 * var(--formula));
  gap: calc(13 * var(--formula));
}

.lp-look__title-pre {
  font-family: var(--font-display);
  font-size: calc(48 * var(--formula));
  letter-spacing: 0.03em;
  font-weight: 400;
}

.lp-look__title-main {
  font-family: var(--font-display);
  font-size: calc(84 * var(--formula));
  letter-spacing: 0;
}

/* JS(fitHeadings)で列幅に自動縮小する際の基準。縮小時も中央維持 */
.lp-look__title {
  transform-origin: center bottom;
  will-change: transform;
}


/* クレジット(共通) */
.lp-look__credit,
.lp-item__credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0 calc(9 * var(--formula));
  font-family: var(--font-en);
  font-size: calc(22 * var(--formula));
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: calc(24 * var(--formula)) calc(40 * var(--formula));
}

.lp-look__credit::after,
.lp-item__credit::after {
  content: '';
  width: 100%;
}

.lp-item__credit a,
.lp-look__credit a {
  white-space: nowrap;
  margin-bottom: calc(11 * var(--formula));
}

.lp-item__credit a:nth-last-child(-n+3),
.lp-look__credit a:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.lp-item__credit--left {
  justify-content: flex-start;
  padding-left: calc(105 * var(--formula));
  padding-top: calc(26 * var(--formula));
  padding-bottom: 0;
}

/* -----------写真(共通)----------- */
.lp-photo {
  position: relative;
  width: 100%;
}

.lp-photo img {
  width: 100%;
  height: auto;
}

.lp-photo--full {
  width: 100%;
}


/* ポラロイド(白フチ+影) */
.lp-look__sub.lp-photo--polaroid {
  background: #fff;
  padding: calc(10 * var(--formula));
  box-shadow: 0 calc(12 * var(--formula)) calc(34 * var(--formula)) rgba(0, 0, 0, 0.14);
  box-sizing: content-box;
  position: relative;
  z-index: 2;
  margin: calc(90 * var(--formula)) auto 0;
  width: calc(520 * var(--formula));
}

.lp-photo--polaroid img {
  display: block;
}

/* サブ写真ブロック(オーバーラップ演出の受け皿) */
.lp-look__sub {
  position: relative;
  z-index: 2;
}

/* =====================================================
   単品バナー(item)
   ===================================================== */
.lp-item {
  position: relative;
  padding-top: calc(160 * var(--formula));
}

.lp-item__media {
  position: relative;
  width: calc(var(--w, 540) * var(--formula));
  margin-left: calc(var(--x, 105) * var(--formula));
}

.lp-item__media .lp-slider--inset {
  width: 100%;
  margin-left: 0;
}

/* 白文字オーバーレイ見出し(横) */
.lp-item__title {
  position: absolute;
  left: calc(120.7 * var(--formula));
  top: calc(576 * var(--formula));
  z-index: 3;
  color: #fff;
  font-family: var(--font-display);
  font-size: calc(72 * var(--formula));
  line-height: 0.95;
  letter-spacing: 0.025em;
  /* text-shadow: 0 1px calc(10 * var(--formula)) rgba(0, 0, 0, 0.25); */
  pointer-events: none;
  text-indent: -0.95em;
}

/* 縦組みラベル(BUCKLE BELT=左 / LEATHER BAG=右) */
.lp-item__title--vl,
.lp-item__title--vr {
  writing-mode: vertical-rl;
  bottom: auto;
  top: calc(30 * var(--formula));
  font-size: calc(66 * var(--formula));
  color: #000;
  letter-spacing: 0.06em;
}

.lp-item__title--vl {
  left: calc(6 * var(--formula));
  right: auto;
}

.lp-item__title--vr {
  right: calc(6 * var(--formula));
  left: auto;
}

/* =====================================================
   スライダー(Swiper / 画像切替)
   ===================================================== */
.lp-slider {
  position: relative;
  overflow: hidden;
}

.swiper.js-slider {
  margin-left: initial;
  margin-right: initial;
}

/* スライドは 2:3 に揃えて高さブレ(CLS)を防ぐ */
.lp-slider .lp-photo {
  aspect-ratio: 2 / 3;
}

.lp-slider .lp-photo img {
  height: 100%;
  object-fit: cover;
}

/* ページャ(○ / ●) 右下 */
.lp-page .lp-slider .swiper-pagination {
  position: absolute;
  right: calc(20 * var(--formula));
  bottom: calc(20 * var(--formula));
  left: auto;
  width: auto;
  display: flex;
  gap: calc(35 * var(--formula));
  z-index: 4;
}

.lp-page .lp-slider .swiper-pagination-bullet {
  width: calc(14 * var(--formula));
  height: calc(14 * var(--formula));
  margin: 0 !important;
  background: #000;
  border: 1px solid #000;
  opacity: 1;
  transition: background-color 0.3s;
}

.lp-page .lp-slider .swiper-pagination-bullet-active {
  background: #fff;
}

/* 暗い(黒背景)写真上のページャは白。明スライドでも視認できるよう影を付与 */
.lp-page .lp-slider--ondark .swiper-pagination-bullet {
  border-color: #fff;
  box-shadow: 0 0 calc(4 * var(--formula)) rgba(0, 0, 0, 0.5);
}

.lp-page .lp-slider--ondark .swiper-pagination-bullet-active {
  background: #fff;
}

/* =====================================================
   ALL ITEMS ボタン
   ===================================================== */
.lp-allitems {
  display: flex;
  justify-content: center;
  padding: calc(120 * var(--formula)) 0 calc(160 * var(--formula));
}

.lp-allitems__btn {
  display: grid;
  place-items: center;
  width: calc(420 * var(--formula));
  height: calc(174 * var(--formula));
  border: calc(2 * var(--formula)) solid #000;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: calc(66 * var(--formula));
  letter-spacing: 0.06em;
  line-height: 1;
  padding-top: calc(13 * var(--formula));
}


/* ===============================================
* sticky *
=============================================== */
.lp-sticky {
  position: sticky;
  top: var(--header-height);
}

.lp-sticky__top {
  padding-bottom: calc(250 * var(--formula));
}

/* ===============================================
* section別調整 *
=============================================== */
.sec1 .lp-look__title {
  left: calc(-10 * var(--formula));
  gap: 1.68em;
}

.sec1 .lp-look__title-pre {
  letter-spacing: 0;
}

.sec2 .lp-look__sub.lp-photo--polaroid {
  margin: calc(94 * var(--formula)) auto 0;
}

.sec3 .lp-look__sub {
  width: calc(540 * var(--formula));
  margin: calc(90 * var(--formula)) 0 0 auto;
}

.lp-look.sec4 .lp-look__head {
  padding: calc(188 * var(--formula)) 0 calc(9 * var(--formula));
}

.sec4 .lp-look__sub {
  width: calc(540 * var(--formula));
  margin: calc(97 * var(--formula)) auto 0;
}

.sec5 .lp-look__title {
  left: calc(-10 * var(--formula));
}

.sec5 .lp-look__sub {
  width: calc(480 * var(--formula));
  margin: calc(91 * var(--formula)) 0 0 0;
}

.lp-item1 .lp-item__title {
  left: calc(69.7 * var(--formula));
  top: calc(721.2 * var(--formula));
  text-indent: 0;
}

.lp-item2 {
  position: relative;
  padding-top: calc(306 * var(--formula));
}

.lp-item2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(2 * var(--formula));
  background: #000;
  top: calc(186 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
}

.lp-item2 .lp-item__media {
  width: calc(500 * var(--formula));
  margin: auto;
}

.lp-item2 .lp-item__title {
  left: calc(122.7 * var(--formula));
  top: calc(604 * var(--formula));
  font-size: calc(68 * var(--formula));
  letter-spacing: 0em;
  text-indent: -1.4em;
  line-height: 0.93;
}

.lp-item3 {
  padding-top: calc(72 * var(--formula));
}

.lp-item3 .lp-item__media {
  width: calc(500 * var(--formula));
  margin: auto;
}

.lp-look.sec6 .lp-look__head {
  padding: calc(168 * var(--formula)) 0 calc(9 * var(--formula));
}

.sec6 .lp-look__sub {
  width: calc(540 * var(--formula));
  margin: calc(88 * var(--formula)) auto 0;
}

.lp-look__cross {
  padding: calc(6 * var(--formula));
}

.lp-item4 {
  position: relative;
  padding-top: calc(282 * var(--formula));
}

.lp-item4::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(2 * var(--formula));
  background: #000;
  top: calc(161 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
}

.lp-item4 .lp-item__title,
.lp-item5 .lp-item__title {
  text-indent: 0;
  writing-mode: vertical-lr;
  left: calc(1 * var(--formula));
  top: calc(19 * var(--formula));
  letter-spacing: 0.017em;
  color: #000;
}

.lp-item5 {
  padding-top: calc(94 * var(--formula));
}

.lp-item5 .lp-item__title {
  left: calc(452 * var(--formula));
  letter-spacing: 0.02em;
}

.lp-item4 .lp-item__credit,
.lp-item5 .lp-item__credit {
  width: calc(540 * var(--formula));
  margin: auto;
  padding: calc(24 * var(--formula)) 0;
  justify-content: left;
}


.lp-look.sec7 .lp-look__head {
  padding: calc(166 * var(--formula)) 0 calc(5 * var(--formula));
}

.sec7 .lp-look__sub {
  width: calc(540 * var(--formula));
  margin: calc(96 * var(--formula)) 0 0 0;
}


.lp-item6 {
  position: relative;
  padding-top: calc(284 * var(--formula));
}

.lp-item6::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(2 * var(--formula));
  background: #000;
  top: calc(161 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
}

.lp-item6 .lp-item__title {
  top: calc(722 * var(--formula));
  text-indent: 0;
  left: calc(66 * var(--formula));
  letter-spacing: 0.02em;
}

.lp-look.sec8 .lp-look__head {
  padding: calc(189 * var(--formula)) 0 calc(11 * var(--formula));
}

.sec8 .lp-look__title-pre {
  font-size: calc(44* var(--formula));
}

.sec8 .lp-look__title-main {
  font-size: calc(76 * var(--formula));
}

.sec8 .lp-look__sub,
.sec9 .lp-look__sub {
  width: calc(518 * var(--formula));
  margin: calc(96 * var(--formula)) 0 0 0;
}

.sec9 .lp-look__title {
  left: calc(-7 * var(--formula));
}

.sec8 .lp-look__cross,
.sec11 .lp-look__cross {
  padding: 0 calc(1 * var(--formula));
}

.sec8 .lp-look__sub.lp-photo--polaroid,
.sec9 .lp-look__sub.lp-photo--polaroid {
  margin: calc(94 * var(--formula)) auto 0;
}


.lp-item5 .lp-item__credit a:nth-child(n+3) {
  order: 1;
}

.sec9 .lp-look__credit a:nth-child(n+3) {
  order: 1;
}

.sec12 .lp-look__credit a:nth-child(n+6) {
  order: 1;
}



@media screen and (max-width: 767px) {
  .archive {
    border-top: none !important;
  }
}