@charset "UTF-8";


/* =========================================================
   ROOT
========================================================= */

:root {
  --denim-navy: #071d32;
  --denim-deep: #041525;

  --denim-blue: #5f86a5;
  --denim-mid: #7899b2;
  --denim-light: #eef4f8;

  --denim-base: #6f91ad;
  --denim-dark: #547994;
  --denim-pale: #9bb3c6;

  --stitch: #e4c58a;
  --stitch-dark: rgba(80, 57, 28, 0.30);

  --denim-text-gold: #d6a13d;
  --denim-text-gold-soft: #e0b15a;

  --pocket-line: #d6a13d;
  --pocket-stitch: #e0b15a;
  --pocket-text: #f2bd42;

  --mini-black: #111111;
  --mini-white: #ffffff;

  --text-main: #16222c;
  --text-sub: #56616a;

  --border: rgba(7, 29, 50, 0.16);

  --shadow:
    0 16px 42px rgba(7, 29, 50, 0.10);

  --mini-font:
    "MINI Serif Regular",
    "motoya w3",
    sans-serif;
}


/* =========================================================
   BASE
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;

  color: var(--text-main);
  background: #ffffff;

  font-family: var(--mini-font);

  line-height: 1.8;
  letter-spacing: 0.03em;
}

button,
input,
select,
textarea {
  font-family: var(--mini-font);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition:
    opacity 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

a:hover {
  opacity: 0.88;
}


/* =========================================================
   DENIM TEXTURE
========================================================= */

.denim-texture,
.denim-mid-cta,
.denim-limited {
  position: relative;

  background-color: var(--denim-base);

  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.24) 0px,
      rgba(255, 255, 255, 0.24) 1px,
      transparent 1px,
      transparent 3px
    ),

    repeating-linear-gradient(
      135deg,
      rgba(50, 84, 111, 0.18) 0px,
      rgba(50, 84, 111, 0.18) 1px,
      transparent 1px,
      transparent 5px
    ),

    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      rgba(0, 0, 0, 0.018) 1px,
      rgba(0, 0, 0, 0.018) 2px,
      transparent 2px,
      transparent 4px
    ),

    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 30%,
      rgba(63, 103, 134, 0.12) 60%,
      rgba(255, 255, 255, 0.08) 100%
    );

  background-blend-mode:
    screen,
    multiply,
    normal,
    normal;
}


/* =========================================================
   HEADER
========================================================= */

.denim-header {
  position: absolute;

  top: 0;
  left: 0;

  z-index: 50;

  width: 100%;

  background: transparent;

  pointer-events: auto;
}

.denim-header__inner {
  min-height: 112px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding:
    22px
    36px;
}


/* =========================================================
   MINI LOGO CLEAR SPACE
========================================================= */

.denim-header__brand {
  position: relative;

  z-index: 52;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  padding:
    18px
    20px;

  text-decoration: none;
}

.denim-header__logo {
  display: block;

  width: 140px;
  height: auto;
}


/* =========================================================
   NAVIGATION
========================================================= */

.denim-header__nav {
  position: relative;

  z-index: 52;

  display: flex;
  align-items: center;

  gap: 24px;

  padding-top: 22px;

  pointer-events: auto;
}

.denim-header__nav a {
  position: relative;

  display: block;

  padding:
    10px
    0;

  color: #ffffff;

  text-decoration: none;

  font-family: var(--mini-font);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.13em;

  pointer-events: auto;

  cursor: pointer;
}

.denim-header__nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 4px;

  width: 0;
  height: 1px;

  background: var(--stitch);

  transition: width 0.2s ease;
}

.denim-header__nav a:hover::after,
.denim-header__nav a:focus-visible::after {
  width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.denim-hero {
  position: relative;

  min-height: 780px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: #ffffff;

  background: var(--denim-deep);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.denim-hero__picture {
  position: absolute;

  inset: 0;

  z-index: 0;

  display: block;

  width: 100%;
  height: 100%;
}

.denim-hero__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;
}


/* =========================================================
   HERO GRADIENT
   現在は無効
========================================================= */

.denim-hero__shade {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background: transparent;
}


/*
.denim-hero__shade {
  background:
    linear-gradient(
      90deg,
      rgba(4, 21, 37, 0.78) 0%,
      rgba(4, 21, 37, 0.62) 25%,
      rgba(4, 21, 37, 0.28) 52%,
      rgba(4, 21, 37, 0.05) 78%,
      rgba(4, 21, 37, 0) 100%
    ),

    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.02) 60%,
      rgba(0, 0, 0, 0.24)
    );
}
*/


/* =========================================================
   HERO COPY
========================================================= */

.denim-hero__inner {
  position: relative;

  z-index: 10;

  width: 100%;

  padding-top: 150px;
  padding-bottom: 90px;

  pointer-events: none;
}

.denim-hero__content {
  max-width: 560px;
}

.denim-hero__label {
  margin:
    0 0 16px;

  color:
    var(--stitch);

  font-family: var(--mini-font);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.24em;
}

.denim-hero h1 {
  margin:
    0 0 22px;

  font-family: var(--mini-font);

  font-size:
    clamp(2.25rem, 3.1vw, 3.35rem);

  font-weight: 600;

  line-height: 1.08;

  letter-spacing: 0.01em;

  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.32);
}

.denim-hero__lead {
  margin:
    0 0 28px;

  font-family: var(--mini-font);

  font-size:
    clamp(0.95rem, 1.4vw, 1.2rem);

  font-weight: 600;

  letter-spacing: 0.06em;
}

.denim-hero__limited {
  display: inline-flex;
  flex-direction: column;

  gap: 4px;

  padding:
    16px
    20px;

  border:
    1px solid rgba(228, 197, 138, 0.80);

  background:
    rgba(4, 21, 37, 0.66);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.denim-hero__limited strong {
  color:
    var(--stitch);

  font-family: var(--mini-font);

  font-size: 1.08rem;

  letter-spacing: 0.12em;
}

.denim-hero__limited span {
  font-family: var(--mini-font);

  font-size: 0.88rem;
}


/* =========================================================
   FEATURES
========================================================= */

.denim-points {
  position: relative;

  z-index: 4;

  background: #ffffff;

  border-bottom:
    1px solid var(--border);

  box-shadow:
    0 12px 30px rgba(7, 29, 50, 0.06);
}

.denim-point {
  height: 100%;

  padding:
    34px
    24px;

  text-align: center;

  background: #ffffff;

  border-right:
    1px solid var(--border);
}

.denim-points .col-md-4:last-child .denim-point {
  border-right: 0;
}

.denim-point__icon {
  width: 58px;
  height: 58px;

  margin:
    0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.denim-point__icon img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.denim-point__icon svg {
  display: block;

  width: 100%;
  height: 100%;

  fill: none;

  stroke:
    var(--denim-dark);

  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.denim-point h2 {
  margin:
    0 0 8px;

  color:
    var(--denim-navy);

  font-family: var(--mini-font);

  font-size: 0.88rem;
  font-weight: 800;

  letter-spacing: 0.15em;
}

.denim-point p {
  margin: 0;

  color:
    var(--text-sub);

  font-family: var(--mini-font);

  font-size: 0.88rem;

  line-height: 1.7;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.denim-section {
  padding:
    96px 0;
}

.denim-concept,
.denim-details,
.denim-trims {
  background:
    #ffffff;
}

.denim-heading {
  max-width: 920px;

  margin:
    0 auto 50px;

  text-align: center;
}

.denim-heading__label {
  margin:
    0 0 12px;

  color:
    var(--denim-dark);

  font-family: var(--mini-font);

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.24em;
}

.denim-heading h2 {
  margin: 0;

  color:
    var(--denim-navy);

  font-family: var(--mini-font);

  font-size:
    clamp(2rem, 4vw, 3.5rem);

  font-weight: 600;

  line-height: 1.28;
}

.denim-heading > span {
  display: block;

  width: 66px;
  height: 3px;

  margin:
    24px auto 0;

  background:
    var(--stitch);
}

.denim-heading--light .denim-heading__label {
  color:
    var(--denim-text-gold);
}

.denim-heading--light h2 {
  color:
    var(--denim-text-gold);
}

.denim-heading--light > span {
  background:
    var(--denim-text-gold);
}

.denim-section__intro {
  max-width: 820px;

  margin:
    -20px auto 48px;

  color:
    var(--text-sub);

  text-align: center;

  font-family: var(--mini-font);

  font-size: 1rem;
}


/* =========================================================
   CONCEPT
========================================================= */

.denim-concept {
  position: relative;

  overflow: hidden;

  background:
    #ffffff;
}

.denim-concept::before,
.denim-concept::after {
  content: "";

  position: absolute;

  pointer-events: none;
}

.denim-concept::before {
  top: 34px;
  left: 3%;

  width: 140px;
  height: 2px;

  background-image:
    repeating-linear-gradient(
      90deg,
      var(--stitch) 0px,
      var(--stitch) 10px,
      transparent 10px,
      transparent 18px
    );

  transform:
    rotate(-4deg);
}

.denim-concept::after {
  right: 5%;
  bottom: 38px;

  width: 180px;
  height: 2px;

  background-image:
    repeating-linear-gradient(
      90deg,
      var(--stitch) 0px,
      var(--stitch) 10px,
      transparent 10px,
      transparent 18px
    );

  transform:
    rotate(4deg);
}

.denim-concept__copy {
  max-width: 850px;

  margin:
    0 auto;

  text-align: center;
}

.denim-concept__copy p {
  margin:
    0 0 24px;

  color:
    var(--text-sub);

  font-family: var(--mini-font);

  font-size: 1.02rem;

  line-height: 2;
}

.denim-concept__copy p:last-child {
  margin-bottom: 0;
}

.denim-concept__lead {
  color:
    var(--denim-navy) !important;

  font-family: var(--mini-font);

  font-size:
    clamp(1.25rem, 2.3vw, 1.7rem) !important;

  font-weight: 700;

  line-height:
    1.8 !important;
}


/* =========================================================
   DETAILS
========================================================= */

.denim-details {
  background:
    linear-gradient(
      180deg,
      #f8fafb 0%,
      #ffffff 100%
    );
}

.denim-detail-card {
  height: 100%;

  background:
    #ffffff;

  border:
    1px solid var(--border);

  box-shadow:
    var(--shadow);
}

.denim-detail-card__image {
  aspect-ratio:
    4 / 3;

  overflow: hidden;

  background:
    var(--denim-light);
}

.denim-detail-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.45s ease;
}

.denim-detail-card:hover img {
  transform:
    scale(1.035);
}

.denim-detail-card__body {
  padding:
    25px 24px 28px;
}

.denim-detail-card__body p {
  margin:
    0 0 8px;

  color:
    var(--denim-dark);

  font-family: var(--mini-font);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.18em;
}

.denim-detail-card h3 {
  margin: 0;

  color:
    var(--denim-navy);

  font-family: var(--mini-font);

  font-size: 1.25rem;

  line-height: 1.45;
}


/* =========================================================
   BUTTON
========================================================= */

.denim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  min-width: 280px;

  gap: 24px;

  padding:
    17px 24px;

  color:
    #ffffff;

  background:
    var(--denim-navy);

  border:
    1px solid var(--denim-navy);

  text-decoration: none;

  font-family: var(--mini-font);

  font-size: 0.92rem;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.denim-btn::after {
  content:
    "→";

  font-size: 1.25rem;

  font-weight: 400;
}

.denim-btn:hover {
  color:
    #ffffff;

  transform:
    translateY(-2px);
}

.denim-btn--white {
  color:
    var(--denim-navy);

  background:
    #ffffff;

  border-color:
    #ffffff;
}

.denim-btn--white:hover {
  color:
    var(--denim-navy);
}


/* =========================================================
   MID CTA
========================================================= */

.denim-mid-cta {
  padding:
    66px 0;

  color:
    var(--mini-black);
}

.denim-mid-cta::before,
.denim-mid-cta::after {
  content: "";

  position: absolute;

  left: 18px;
  right: 18px;

  height: 2px;

  pointer-events: none;

  background-image:
    repeating-linear-gradient(
      90deg,
      var(--stitch) 0px,
      var(--stitch) 11px,
      transparent 11px,
      transparent 19px
    );

  filter:
    drop-shadow(
      0 1px 0 var(--stitch-dark)
    );
}

.denim-mid-cta::before {
  top: 16px;
}

.denim-mid-cta::after {
  bottom: 16px;
}

.denim-mid-cta__inner {
  position: relative;

  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 36px;
}

.denim-mid-cta p {
  margin:
    0 0 6px;

  color:
    var(--mini-black);

  font-family: var(--mini-font);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.20em;

  text-shadow: none;
}

.denim-mid-cta h2 {
  margin: 0;

  color:
    var(--mini-black);

  font-family: var(--mini-font);

  font-size:
    clamp(1.7rem, 3vw, 2.7rem);

  font-weight: 600;

  text-shadow: none;
}


/* =========================================================
   TRIMS
========================================================= */

.denim-trims {
  background:
    #ffffff;
}

.denim-trim-card {
  height: 100%;

  background:
    #ffffff;

  border:
    1px solid rgba(7, 29, 50, 0.20);

  box-shadow:
    0 14px 38px rgba(7, 29, 50, 0.07);

  overflow: hidden;
}

.denim-trim-card__header {
  padding:
    34px 28px 26px;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fa 100%
    );
}

.denim-trim-card__header p {
  margin:
    0 0 8px;

  color:
    var(--denim-dark);

  font-family: var(--mini-font);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.18em;
}

.denim-trim-card__header h3 {
  margin:
    0 0 6px;

  color:
    var(--denim-navy);

  font-family: var(--mini-font);

  font-size:
    clamp(1.45rem, 2.5vw, 2rem);
}

.denim-trim-card__header span {
  color:
    var(--text-sub);

  font-family: var(--mini-font);

  font-size: 0.92rem;
}

.denim-trim-card__body {
  padding:
    30px 28px;

  border-top:
    1px solid var(--border);
}

.denim-trim-card__body p {
  color:
    var(--text-sub);

  font-family: var(--mini-font);
}

.denim-trim-card__body p:last-child {
  margin-bottom: 0;
}

.denim-trim-card__note {
  padding-top: 18px;

  border-top:
    2px dashed rgba(228, 197, 138, 0.82);

  font-size: 0.88rem;
}


/* =========================================================
   LIMITED
========================================================= */

.denim-limited {
  position: relative;

  color:
    var(--denim-text-gold);

  background-color:
    var(--denim-base);

  background-image:
    linear-gradient(
      90deg,
      rgba(76, 108, 134, 0) 0%,
      rgba(76, 108, 134, 0) 22.5%,
      rgba(63, 92, 118, 0.20) 31%,
      rgba(50, 77, 100, 0.34) 50%,
      rgba(63, 92, 118, 0.20) 69%,
      rgba(76, 108, 134, 0) 77.5%,
      rgba(76, 108, 134, 0) 100%
    ),

    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.24) 0px,
      rgba(255, 255, 255, 0.24) 1px,
      transparent 1px,
      transparent 3px
    ),

    repeating-linear-gradient(
      135deg,
      rgba(50, 84, 111, 0.18) 0px,
      rgba(50, 84, 111, 0.18) 1px,
      transparent 1px,
      transparent 5px
    ),

    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      rgba(0, 0, 0, 0.018) 1px,
      rgba(0, 0, 0, 0.018) 2px,
      transparent 2px,
      transparent 4px
    ),

    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 30%,
      rgba(63, 103, 134, 0.12) 60%,
      rgba(255, 255, 255, 0.08) 100%
    );

  background-blend-mode:
    multiply,
    screen,
    multiply,
    normal,
    normal;
}

.denim-limited::before,
.denim-limited::after {
  content: "";

  position: absolute;

  left: 18px;
  right: 18px;

  height: 2px;

  z-index: 2;

  pointer-events: none;

  background-image:
    repeating-linear-gradient(
      90deg,
      var(--stitch) 0px,
      var(--stitch) 11px,
      transparent 11px,
      transparent 19px
    );

  filter:
    drop-shadow(
      0 1px 0 var(--stitch-dark)
    );
}

.denim-limited::before {
  top: 18px;
}

.denim-limited::after {
  bottom: 18px;
}

.denim-limited .container {
  position: relative;

  z-index: 3;
}

.denim-limited .denim-heading__label {
  color:
    var(--denim-text-gold);

  text-shadow:
    0 1px 2px rgba(31, 47, 61, 0.12);
}

.denim-limited .denim-heading h2 {
  color:
    var(--denim-text-gold);

  text-shadow:
    0 1px 2px rgba(31, 47, 61, 0.14);
}

.denim-limited .denim-heading > span {
  background:
    var(--denim-text-gold);
}

.denim-limited__intro {
  max-width: 800px;

  margin:
    -16px auto 46px;

  color:
    var(--denim-text-gold);

  text-align: center;

  font-family: var(--mini-font);

  font-size: 1.05rem;
  font-weight: 600;

  line-height: 1.9;

  text-shadow:
    0 1px 2px rgba(31, 47, 61, 0.12);
}


/* =========================================================
   SHOP CARD
========================================================= */

.denim-shop-card {
  position: relative;

  height: 100%;
  min-height: 220px;

  padding:
    42px 26px 62px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  color:
    var(--pocket-text);

  background:
    linear-gradient(
      180deg,
      rgba(74, 103, 128, 0.42) 0%,
      rgba(57, 86, 111, 0.38) 100%
    );

  box-shadow:
    0 12px 28px rgba(39, 65, 86, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter:
    blur(2px);

  -webkit-backdrop-filter:
    blur(2px);

  overflow: hidden;

  clip-path:
    polygon(
      0 0,
      100% 0,
      100% 72%,
      50% 100%,
      0 72%
    );
}

.denim-shop-card::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='2.4,2.4 97.6,2.4 97.6,71.6 50,97.4 2.4,71.6' fill='none' stroke='%23d6a13d' stroke-width='1.15' stroke-linejoin='round' vector-effect='non-scaling-stroke'/%3E%3Cpolygon points='6.5,6.5 93.5,6.5 93.5,68.1 50,92.5 6.5,68.1' fill='none' stroke='%23e0b15a' stroke-width='1.55' stroke-dasharray='5 4' stroke-linecap='butt' stroke-linejoin='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");

  background-repeat:
    no-repeat;

  background-position:
    center;

  background-size:
    100% 100%;
}

.denim-shop-card::after {
  content:
    none;
}

.denim-shop-card p,
.denim-shop-card h3,
.denim-shop-card strong {
  position: relative;

  z-index: 2;

  color:
    var(--pocket-text);

  font-family: var(--mini-font);

  text-shadow:
    0 1px 2px rgba(31, 47, 61, 0.16);
}

.denim-shop-card p {
  margin:
    0 0 10px;

  font-size: 1.3rem;
  font-weight: 700;
}

.denim-shop-card h3 {
  margin:
    0 0 6px;

  font-size: 1.18rem;
  font-weight: 700;
}

.denim-shop-card strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.denim-limited__note {
  margin:
    42px auto 0;

  color:
    var(--denim-text-gold);

  text-align: center;

  font-family: var(--mini-font);

  font-size: 0.82rem;
  font-weight: 700;

  text-shadow:
    0 1px 2px rgba(31, 47, 61, 0.12);
}


/* =========================================================
   FORM
========================================================= */

.denim-form-section {
  padding:
    96px 0;

  background:
    #ffffff;
}

.denim-form-section__intro {
  max-width: 820px;

  margin:
    -20px auto 42px;

  color:
    var(--text-sub);

  text-align: center;

  font-family: var(--mini-font);

  line-height: 1.9;
}

.form-placeholder {
  padding:
    26px;

  background:
    #ffffff;

  border:
    1px solid var(--border);

  box-shadow:
    var(--shadow);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  color:
    #ffffff;

  background:
    #111111;

  font-family: var(--mini-font);

  font-size: 0.92rem;
}

.footer a {
  color:
    #ffffff;
}

.footer a[href^="tel:"] {
  color: #000000;
  text-decoration: none;
}

.footer-ttl {
  color:
    #ffffff;

  font-family: var(--mini-font);

  letter-spacing: 0.08em;
}

.soeicon {
  max-width: 260px;

  height: auto;
}


/* =========================================================
   TABLET LARGE
========================================================= */

@media (max-width: 1199.98px) {

  .denim-hero {
    min-height: 700px;
  }

  .denim-hero h1 {
    font-size:
      clamp(2.1rem, 3.6vw, 3rem);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .denim-header__inner {
    min-height: 96px;

    padding:
      18px
      22px;
  }

  .denim-header__brand {
    padding:
      16px
      18px;
  }

  .denim-header__logo {
    width: 126px;
  }

  .denim-header__nav {
    gap: 14px;

    padding-top: 18px;
  }

  .denim-header__nav a {
    font-size: 0.64rem;
  }

  .denim-hero {
    min-height: 650px;
  }

  .denim-hero__inner {
    padding-top: 130px;
    padding-bottom: 72px;
  }

  .denim-section {
    padding:
      78px 0;
  }

  .denim-mid-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .denim-shop-card {
    min-height: 210px;

    padding:
      38px 22px 58px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {


  html {
    scroll-padding-top: 20px;
  }


  /* =====================================================
     HERO SP
  ===================================================== */

  .denim-hero {
    min-height: 0;

    display: flex;
    flex-direction: column;

    overflow: visible;

    color: #ffffff;

    background:
      var(--denim-deep);
  }


  /* =====================================================
     SP HEADER
     ロゴのみ表示
     背景色なし
     メニュー非表示
  ===================================================== */

  .denim-header {
    position: absolute;

    top: 0;
    left: 0;

    z-index: 50;

    width: 100%;

    background:
      transparent;

    backdrop-filter:
      none;

    -webkit-backdrop-filter:
      none;

    pointer-events: none;
  }

  .denim-header__inner {
    min-height: 0;

    display: block;

    padding:
      12px
      12px;
  }

  .denim-header__brand {
    width: fit-content;

    padding:
      14px
      16px;

    margin: 0;

    pointer-events: auto;
  }

  .denim-header__logo {
    width: 96px;
  }

  .denim-header__nav {
    display: none;
  }


  /* =====================================================
     SP KV IMAGE
     main_img.jpg全体表示
     クロップ禁止
  ===================================================== */

  .denim-hero__picture {
    position: relative;

    inset: auto;

    z-index: 0;

    order: 1;

    display: block;

    width: 100%;
    height: auto;

    line-height: 0;

    background:
      #ffffff;
  }

  .denim-hero__image {
    position: relative;

    inset: auto;

    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;

    object-position: center;

    line-height: 0;
  }


  /* =====================================================
     SP COPY
     画像下へ配置
  ===================================================== */

  .denim-hero__inner {
    position: relative;

    z-index: 5;

    order: 2;

    width: 100%;

    padding:
      34px
      20px
      42px;

    background:
      var(--denim-deep);
  }

  .denim-hero__content {
    max-width: none;
  }

  .denim-hero__label {
    margin-bottom: 12px;

    font-size: 0.68rem;

    letter-spacing: 0.20em;
  }

  .denim-hero h1 {
    margin-bottom: 18px;

    font-size:
      clamp(1.6rem, 7vw, 2rem);

    line-height: 1.12;

    word-break: normal;
    overflow-wrap: normal;
  }

  .denim-hero__lead {
    margin-bottom: 24px;

    font-size: 0.95rem;

    line-height: 1.6;
  }

  .denim-hero__limited {
    width: 100%;

    padding:
      16px
      18px;
  }


  /* =====================================================
     FEATURES
  ===================================================== */

  .denim-point {
    padding:
      28px
      18px;

    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }

  .denim-points .col-md-4:last-child .denim-point {
    border-bottom: 0;
  }


  /* =====================================================
     SECTIONS
  ===================================================== */

  .denim-section,
  .denim-form-section {
    padding:
      62px 0;
  }

  .denim-heading {
    margin-bottom: 36px;
  }

  .denim-heading h2 {
    font-size:
      clamp(1.9rem, 9vw, 2.7rem);
  }

  .denim-section__intro {
    margin-top: -8px;

    text-align: left;
  }


  /* =====================================================
     CONCEPT
  ===================================================== */

  .denim-concept__copy {
    text-align: left;
  }

  .denim-concept__copy p {
    font-size: 0.96rem;

    line-height: 1.9;
  }

  .denim-concept__lead {
    font-size:
      1.25rem !important;

    line-height:
      1.7 !important;
  }


  /* =====================================================
     MID CTA
  ===================================================== */

  .denim-mid-cta {
    padding:
      56px 0;
  }

  .denim-mid-cta__inner {
    gap: 24px;
  }

  .denim-mid-cta p {
    color:
      var(--mini-black);
  }

  .denim-mid-cta h2 {
    color:
      var(--mini-black);

    font-size:
      clamp(1.55rem, 7vw, 2rem);
  }

  .denim-btn {
    width: 100%;

    min-width: 0;
  }


  /* =====================================================
     DETAIL CARDS
  ===================================================== */

  .denim-detail-card__body {
    padding:
      22px 20px;
  }


  /* =====================================================
     TRIM CARDS
  ===================================================== */

  .denim-trim-card__header,
  .denim-trim-card__body {
    padding:
      24px 20px;
  }


  /* =====================================================
     LIMITED
  ===================================================== */

  .denim-limited {
    background-image:
      linear-gradient(
        180deg,
        rgba(50, 77, 100, 0.18) 0%,
        rgba(50, 77, 100, 0.32) 34%,
        rgba(50, 77, 100, 0.32) 66%,
        rgba(50, 77, 100, 0.18) 100%
      ),

      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.24) 0px,
        rgba(255, 255, 255, 0.24) 1px,
        transparent 1px,
        transparent 3px
      ),

      repeating-linear-gradient(
        135deg,
        rgba(50, 84, 111, 0.18) 0px,
        rgba(50, 84, 111, 0.18) 1px,
        transparent 1px,
        transparent 5px
      ),

      repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.025) 0px,
        rgba(255, 255, 255, 0.025) 1px,
        rgba(0, 0, 0, 0.018) 1px,
        rgba(0, 0, 0, 0.018) 2px,
        transparent 2px,
        transparent 4px
      ),

      linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(63, 103, 134, 0.12) 60%,
        rgba(255, 255, 255, 0.08) 100%
      );
  }

  .denim-limited__intro {
    text-align: left;

    font-size: 0.96rem;
  }

  .denim-shop-card {
    min-height: 200px;

    padding:
      34px
      18px
      58px;

    clip-path:
      polygon(
        0 0,
        100% 0,
        100% 74%,
        50% 100%,
        0 74%
      );
  }


  /* =====================================================
     FORM
  ===================================================== */

  .denim-form-section__intro {
    margin-top: -8px;

    text-align: left;
  }

  .form-placeholder {
    padding:
      18px
      14px;
  }


  /* =====================================================
     FOOTER
  ===================================================== */

  .footer {
    font-size: 0.88rem;
  }

  .footer .px-4 {
    padding-right:
      16px !important;

    padding-left:
      16px !important;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

  .denim-header__logo {
    width: 90px;
  }

  .denim-hero h1 {
    font-size:
      clamp(1.55rem, 7.2vw, 1.95rem);
  }

  .soeicon {
    max-width: 220px;
  }

}