@charset "utf-8";

/* =========================================================
   marka EXCLUSIVE for ARKnets
   complete adjusted version
   - .mkexv1 以下のみ適用
   - hero logo中央配置 / intro余白強化 / portrait中央配置 修正済み
   - grid gap は section下余白と同値
   - look sequence は 左 → 右 → 中央
========================================================= */

.mkexv1 {
  --mkexv1-bg: #ececec;
  --mkexv1-text: #111111;
  --mkexv1-sub: #555555;

  background: var(--mkexv1-bg);
  color: var(--mkexv1-text);
  overflow: hidden;
  font-family: "futura-pt", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.mkexv1 *,
.mkexv1 *::before,
.mkexv1 *::after {
  box-sizing: border-box;
}

.mkexv1 figure,
.mkexv1 img,
.mkexv1 p,
.mkexv1 h1,
.mkexv1 h2,
.mkexv1 h3 {
  margin: 0;
}

.mkexv1 img {
  display: block;
  width: 100%;
  height: auto;
}

.mkexv1 a {
  color: inherit;
  text-decoration: none;
}

.mkexv1-container {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* portrait系は flex中央寄せ */
.mkexv1-container--portrait {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom:16px;
  display: flex;
  justify-content: center;
}

.mkexv1-container--grid {
  max-width: 780px;
}

.mkexv1-container--mood {
  max-width: 780px;
}

.mkexv1-container--sequence {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */
.mkexv1-hero {
  position: relative;
}

.mkexv1-hero__inner {
  position: relative;
}

.mkexv1-hero__visual {
  position: relative;
  z-index: 1;
}

.mkexv1-hero__visual img {
  width: 100%;
  aspect-ratio: 3 / 2.65;
  object-fit: cover;
  object-position: center center;
}

.mkexv1-hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: auto;
  min-width: 120px;
  min-height: 40px;
  padding: 0;
  text-align: center;
}

.mkexv1-hero__logo img {
  display: block;
  width: 45vw;
  max-width: 320px;
  min-width: 140px;
  height: auto;
  margin: 0 auto;
}

.mkexv1-hero__logoText {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */
.mkexv1-intro {
  padding: 100px 0 100px;
}

.mkexv1-intro__inner {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.mkexv1-intro__eyebrow {
  margin-bottom: 36px;
  font-family: "EB Garamond", serif;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
}

.mkexv1-intro__title {
  margin-bottom: 40px;
  font-family: "EB Garamond", serif;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.mkexv1-intro__lead {
  font-size: 11px;
  line-height: 3.2;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.45);
}

/* ---------------------------------------------------------
   SECTION / SPACING
--------------------------------------------------------- */
.mkexv1-section {
  padding-bottom: 10px;
}

.mkexv1-section--first {
  padding: 0;
  text-align: center;
}

.mkexv1-section--spacious {
  padding-top: 8px;
  padding-bottom: 16px;
}

.mkexv1-section--mood {
  padding-top: 28px;
  padding-bottom: 30px;
}

.mkexv1-section--last {
  padding-bottom: 56px;
}

/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */
.mkexv1-card {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.mkexv1-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mkexv1-card--portrait-lg {
  width: min(100%, 390px);
  max-width: 390px;
  margin: 0;
}

.mkexv1-card--portrait-lg img {
  aspect-ratio: 3 / 4;
}

.mkexv1-card--portrait img {
  aspect-ratio: 3 / 4;
}

.mkexv1-card--moodA {
  width: 52%;
  max-width: 260px;
  margin: 0 auto 26px;
}

.mkexv1-card--moodA img {
  aspect-ratio: 1 / 1.18;
}

.mkexv1-card--moodB {
  width: 56%;
  max-width: 300px;
  margin-left: auto;
}

.mkexv1-card--moodB img {
  aspect-ratio: 1 / 1.08;
}

/* firstだけ少し大きめ */
.mkexv1-section--first .mkexv1-card--portrait-lg {
  width: min(100%, 520px);
  max-width: 520px;
}

/* ---------------------------------------------------------
   GRID
   gap = section下余白と同値
--------------------------------------------------------- */
.mkexv1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ---------------------------------------------------------
   FADE
--------------------------------------------------------- */
.mkexv1-fade {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1.1s cubic-bezier(.22, 1, .36, 1),
    transform 1.1s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.mkexv1-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mkexv1-hero__logo.mkexv1-fade {
  transform: translate(-50%, calc(-50% + 22px));
}

.mkexv1-hero__logo.mkexv1-fade.is-visible {
  transform: translate(-50%, -50%);
}

/* ---------------------------------------------------------
   PRODUCT INFO
--------------------------------------------------------- */
.mkexv1-product {
  padding: 40px 0 24px;
}

.mkexv1-product__inner {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 20px;
}

.mkexv1-product__block {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.mkexv1-product__block:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.mkexv1-product__name {
  margin-bottom: 6px;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.mkexv1-product__meta {
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #444;
}

.mkexv1-product__link {
  display: inline-block;
  position: relative;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.mkexv1-product__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #111;
  margin-top: 4px;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform .4s ease;
}

@media (hover: hover) {
  .mkexv1-product__link:hover::after {
    transform: scaleX(1);
  }
}

/* ---------------------------------------------------------
   SHOP INFO
--------------------------------------------------------- */
.mkexv1-shop {
  padding: 32px 0 80px;
}

.mkexv1-shop__inner {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.mkexv1-shop__title {
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: #555;
}

.mkexv1-shop__list {
  margin-bottom: 14px;
  font-size: 11px;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-bottom:14px;
}

.mkexv1-shop__link {
  display: inline-block;
  position: relative;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.mkexv1-shop__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #111;
  margin-top: 4px;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: transform .4s ease;
}

@media (hover: hover) {
  .mkexv1-shop__link:hover::after {
    transform: scaleX(1);
  }
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .mkexv1-container {
    padding-left: 26px;
    padding-right: 26px;
  }

  .mkexv1-container--portrait {
    padding-left: 26px;
    padding-right: 26px;
  }

  .mkexv1-container--grid,
  .mkexv1-container--mood {
    max-width: 900px;
  }

  .mkexv1-container--sequence {
    padding-left: 26px;
    padding-right: 26px;
  }

  .mkexv1-hero__visual img {
    aspect-ratio: 16 / 10;
  }

  .mkexv1-hero__logo img {
    width: 34vw;
    max-width: 320px;
  }

  .mkexv1-intro {
    padding: 100px 0 100px;
  }

  .mkexv1-intro__inner {
    max-width: 800px;
  }

  .mkexv1-intro__eyebrow {
    font-size: 9px;
  }

  .mkexv1-intro__title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .mkexv1-intro__lead {
    font-size: 11px;
    line-height: 3.4;
  }

  .mkexv1-section {
    padding-bottom: 18px;
  }

  .mkexv1-grid {
    gap: 18px;
  }

  .mkexv1-section--mood {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .mkexv1-section--last {
    padding-bottom: 78px;
  }

  .mkexv1-card--portrait-lg {
    width: min(100%, 470px);
    max-width: 470px;
  }

  .mkexv1-section--first .mkexv1-card--portrait-lg {
    width: min(100%, 520px);
    max-width: 520px;
  }

  .mkexv1-card--moodA {
    width: 34%;
    max-width: 300px;
    margin-bottom: 34px;
  }

  .mkexv1-card--moodB {
    width: 38%;
    max-width: 350px;
  }
}

/* ---------------------------------------------------------
   PC
--------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .mkexv1 {
    background: #e8e8e8;
  }

  .mkexv1-container {
    padding-left: 34px;
    padding-right: 34px;
  }

  .mkexv1-container--portrait {
    padding-left: 34px;
    padding-right: 34px;
  }

  .mkexv1-container--grid,
  .mkexv1-container--mood,
  .mkexv1-container--sequence {
    max-width: 980px;
  }

  .mkexv1-container--sequence {
    padding-left: 34px;
    padding-right: 34px;
  }

  .mkexv1-hero__visual img {
    aspect-ratio: 16 / 10;
  }

  .mkexv1-hero__logo img {
    width: 320px;
    max-width: 320px;
  }

  .mkexv1-intro {
    padding: 100px 0 100px;
  }

  .mkexv1-intro__inner {
    max-width: 800px;
  }

  .mkexv1-intro__title {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: 0.06em;
  }

  .mkexv1-intro__lead {
    font-size: 12px;
    line-height: 3.6;
    letter-spacing: 0.14em;
    color: rgba(0, 0, 0, 0.45);
  }

  .mkexv1-section {
    padding-bottom: 22px;
  }

  .mkexv1-section--first {
    padding-bottom: 22px;
  }

  .mkexv1-section--spacious {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .mkexv1-section--mood {
    padding-top: 56px;
    padding-bottom: 30px;
  }

  .mkexv1-section--last {
    padding-bottom: 110px;
  }

  .mkexv1-grid {
    gap: 22px;
  }

  .mkexv1-card--portrait-lg {
    width: min(100%, 520px);
    max-width: 520px;
  }

  .mkexv1-section--first .mkexv1-card--portrait-lg {
    width: min(100%, 520px);
    max-width: 520px;
  }

  .mkexv1-card--moodA {
    width: 28%;
    max-width: 280px;
    margin-bottom: 42px;
  }

  .mkexv1-card--moodB {
    width: 31%;
    max-width: 320px;
  }

  .mkexv1-fade {
    transform: translateY(28px);
  }

  .mkexv1-hero__logo.mkexv1-fade {
    transform: translate(-50%, calc(-50% + 28px));
  }

  .mkexv1-hero__logo.mkexv1-fade.is-visible {
    transform: translate(-50%, -50%);
  }

  .mkexv1-product {
    padding: 60px 0 32px;
  }

  .mkexv1-product__inner {
    max-width: 480px;
  }

  .mkexv1-product__name {
    font-size: 16px;
  }

  .mkexv1-product__meta {
    font-size: 12px;
  }

  .mkexv1-shop {
    padding: 40px 0 120px;
  }

  .mkexv1-shop__inner {
    max-width: 480px;
  }

  .mkexv1-shop__list {
    font-size: 12px;
  }
}

/* =========================================================
   FORCE OVERRIDE: LOOK SEQUENCE（強制適用版）
========================================================= */

.mkexv1-container.mkexv1-container--sequence {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 34px;
}

.mkexv1-sequence {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

/* 共通 */
.mkexv1-card.mkexv1-card--sequence {
  display: block !important;
}

.mkexv1-card.mkexv1-card--sequence img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}

/* 1枚目：左 */
.mkexv1-card--sequence-01 {
  width: 420px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* 2枚目：右 */
.mkexv1-card--sequence-02 {
  width: 520px !important;
  margin-left: auto !important;
margin-right: 100px; /* +20px */
}

/* 3枚目：中央 */
.mkexv1-card--sequence-03 {
  width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* SP */
@media screen and (max-width: 767px) {
  .mkexv1-card--sequence-01,
  .mkexv1-card--sequence-02,
  .mkexv1-card--sequence-03 {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* =========================================================
   TYPOGRAPHY REFINEMENT
   - Introだけ調整
   - 他は変更しない
========================================================= */

/* タイトル全体 */
.mkexv1-intro__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: "EB Garamond", serif;
}

/* 上段（ラベル） */
.mkexv1-intro__title-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  /*text-transform: uppercase;*/
  color: rgba(0,0,0,0.4);
}

/* 下段（メイン） */
.mkexv1-intro__title-main {
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #111;
}

/* 本文 */
.mkexv1-intro__lead {
  max-width: 720px;
  margin: 8px auto 0;
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.75);
  padding-top:14px;
}

/* tablet */
@media screen and (min-width: 768px) {

  .mkexv1-intro__title {
    gap: 12px;
    margin-bottom: 32px;
  }

  .mkexv1-intro__title-sub {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .mkexv1-intro__title-main {
    font-size: 34px;
    letter-spacing: 0.035em;
  }

  .mkexv1-intro__lead {
    font-size: 13px;
    line-height: 2.1;
  }
}

/* pc */
@media screen and (min-width: 1024px) {

  .mkexv1-intro__title {
    gap: 14px;
    margin-bottom: 36px;
  }

  .mkexv1-intro__title-sub {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .mkexv1-intro__title-main {
    font-size: 34px;
    letter-spacing: 0.02em;
    line-height: 1.05;
  }

  .mkexv1-intro__lead {
    max-width: 820px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
    padding-top:14px;
  }
}
