@charset "UTF-8";
/* ---------- Design Tokens ---------- */
:root {
  /* カラー名のキー色 */
  --c-brown: #bf8a3c;
  --c-gray: #9a9a9e;
  --c-green: #2f7d54;
  --c-navy: #2b3a67;
  --c-yellow: #ecc94b;
  --c-pink: #ef9ab8;
  --c-orange: #e3862e;
  --c-blue: #3d7fc4;
  /* レンズの色味（濃度比較スウォッチ用） */
  --lens-brown: #c79a5a;
  --lens-gray: #8f9296;
  --lens-green: #9aa84f;
  --lens-navy: #41557f;
  --lens-yellow: #ecd06a;
  --lens-pink: #eaa6c0;
  --lens-orange: #e0a05c;
  --lens-blue: #7fa6cf;
  --lens-auburn: #cca775;
  /* テキスト */
  --ink: #000;
  --ink-sub: #000;
  --ink-mute:#000;
  /* 面 */
  --bg: #ffffff;
  --bg-soft: #eef6fc;
  --bg-soft-2: #dcecf8;
  /* グラデーション（機能カード） */
  --grad-glare: linear-gradient(135deg, #f7cd55, #f6a623);
  --grad-blue: linear-gradient(135deg, #5aa0e0, #2f6fd6);
  --grad-contrast: linear-gradient(135deg, #8cc63f, #46b256);
  --grad-eye: linear-gradient(135deg, #b06ec4, #e5398b);
  /* レイアウト */
  --maxw: 1120px;
  --maxw-wide: 1300px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(60, 80, 120, .10);
  --font: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

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

/* サイズ変化をぬるっと（ブレイクポイント切り替え時など） */
*, *::before, *::after {
  transition: font-size 0.3s ease, width 0.3s ease, height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* 装飾（130vw の帯など）が画面外へはみ出すことによる横スワイプを防ぐ。
     body だけの overflow-x:hidden ではスマホで根本要素まで抑えられないため html にも指定。
     見た目・レイアウトには影響せず、画面外のはみ出し分を切るだけ。 */
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- 画像プレースホルダ（実画像差し替え前提） ---------- */
.photo-placeholder {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.35) 0 14px, rgba(255, 255, 255, 0) 14px 28px), linear-gradient(135deg, #d8e3ee, #eef2f6);
  background-color: #e3e9ef;
}

/* ---------- ページ幅 ---------- */
.page {
  width: 100%;
}

.colors, .showcase, .scenes,
.features__inner, .brand__inner, .ranking__inner,
.check {
  width: min(100% - 40px, var(--maxw-wide));
  margin-inline: auto;
}

/* ---------- バッジ ---------- */
.badge {
  display: inline-block;
  padding: 6px 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}
.badge--green {
  background: var(--c-green);
}
.badge--navy {
  background: var(--c-navy);
}
.badge--yellow {
  background: var(--c-yellow);
  color: #6b5300;
}
.badge--orange {
  background: var(--c-orange);
}
.badge--brown {
  background: var(--c-brown);
}
.badge--pink {
  background: var(--c-pink);
}
.badge--blue {
  background: var(--c-blue);
}

/* ---------- ボタン ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 48px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn::after {
  content: "";
  width: 1.7em;
  height: 1.7em;
  flex: 0 0 auto;
  background: url(assets/img/arrow02.svg) center/contain no-repeat;
  transition: transform 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(60, 80, 120, 0.18);
}
.btn:hover::after {
  transform: translateX(4px);
}
.btn--pink {
  background: #d4145a;
  color: #fff;
  white-space: nowrap;
  padding: 7px 12vw;
  box-shadow: none;
  font-size: clamp(0.9rem, 4.2vw, 1.2rem);
}
.btn--pink:hover {
  box-shadow: none;
  transform: none;
}
.btn--pink:hover::after {
  transform: translateY(-50%);
}
.btn--pink::after {
  background-image: url(assets/img/arrow02_pink.svg);
  width: 2.2em;
  height: 2.2em;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
@media (min-width: 768px) {
  .btn--pink {
    padding-left: 88px;
    padding-right: 88px;
  }
}
.btn--white {
  background: #fff;
  color: #e7558a;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  margin-bottom: 48px;
}
.hero__img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__strips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero__strip {
  aspect-ratio: 3/4;
}
.hero__strip--green {
  background: linear-gradient(160deg, #7fae6b, #5d8f57);
}
.hero__strip--orange {
  background: linear-gradient(160deg, #e89a52, #d98236);
}
.hero__strip--amber {
  background: linear-gradient(160deg, #e7b34d, #d99a36);
}
.hero__strip--gray {
  background: linear-gradient(160deg, #b9bcc0, #9aa0a6);
}
.hero__strip--navy {
  background: linear-gradient(160deg, #3f5f8c, #2c4368);
}
.hero__strip--beige {
  background: linear-gradient(160deg, #e7cdb0, #d8b48f);
}
.hero__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 100%;
  text-align: center;
}
.hero__title-img {
  width: 82vw;
  max-width: 480px;
  height: auto;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .hero {
    margin-bottom: 64px;
  }
  .hero__strips {
    grid-template-columns: repeat(6, 1fr);
  }
  .hero__strip {
    aspect-ratio: auto;
    height: 60vh;
    max-height: 560px;
  }
  .hero__title {
    top: 40px;
    transform: translateX(-50%);
  }
  .hero__title-img {
    width: 60vw;
    max-width: none;
  }
}

/* =========================================================
   INTRO
   ========================================================= */
.intro {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
  text-align: center;
  padding: 8px 0 56px;
}
.intro__copy {
  font-size: min(5vw, 2.875rem);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.04em;
}
.intro__logo {
  position: relative;
  margin: 10vw 0 8vw;
}
.intro__logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130vw;
  aspect-ratio: 3131/479;
  background: url(assets/img/color.png) center/contain no-repeat;
  z-index: 0;
}
.intro__logo-img {
  position: relative;
  z-index: 1;
  width: 60vw;
  max-width: 850px;
  height: auto;
  margin-inline: auto;
}
.intro__lead {
  color: var(--ink-sub);
  font-weight: 600;
  font-size: min(4vw, 2.125rem);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .intro__logo {
    margin: 6vw 0 4vw;
  }
  .intro__logo::before {
    width: 108vw;
  }
}
@media (min-width: 1440px) {
  .intro__copy {
    font-size: 3.125rem;
  }
  .intro__lead {
    font-size: 2.375rem;
  }
}
@media (min-width: 1920px) {
  .intro__copy {
    font-size: 3.625rem;
  }
  .intro__lead {
    font-size: 2.75rem;
  }
}

/* =========================================================
   カラー一覧グリッド
   ========================================================= */
.colors {
  padding-bottom: 64px;
}
.colors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 24px;
}
@media (min-width: 768px) {
  .colors__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
  }
}

.color-card {
  text-align: center;
}
.color-card__head {
  position: relative;
  border-radius: 30px;
  padding: 22px 40px;
  color: #fff;
}
.color-card__head::before, .color-card__head::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 86%;
  background: center/auto 100% no-repeat;
  pointer-events: none;
}
.color-card__head::before {
  left: 7px;
  background-image: url(assets/img/frame_l.svg);
}
.color-card__head::after {
  right: 7px;
  background-image: url(assets/img/frame_r.svg);
}
.color-card--brown .color-card__head {
  background: #cb8736;
}
.color-card--gray .color-card__head {
  background: #808085;
}
.color-card--green .color-card__head {
  background: #1a9d57;
}
.color-card--navy .color-card__head {
  background: #0671bd;
}
.color-card--yellow .color-card__head {
  background: #f3d345;
  color: #6b5300;
}
.color-card--pink .color-card__head {
  background: #f499ac;
}
.color-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
}
.color-card__name img {
  margin-inline: auto;
}
.color-card__sub {
  font-size: min(5vw, 1.25rem);
  font-weight: 600;
  margin-top: 14px;
  line-height: 1.4;
  white-space: nowrap;
  color: #fff;
  position: relative;
  top: 5px;
  left: 10px;
}
@media (min-width: 768px) {
  .color-card__sub {
    font-size: 1rem;
    top: 10px;
  }
}
@media (min-width: 1440px) {
  .color-card__sub {
    font-size: 1.25rem;
  }
}
@media (min-width: 1920px) {
  .color-card__sub {
    font-size: 1.375rem;
  }
}
.color-card__swatches {
  display: block;
  width: 100%;
  height: auto;
  margin: 18px 0 16px;
}
.color-card ul {
  display: flex;
  gap: 20px;
  margin: 18px 0 16px;
  justify-content: center;
}
.color-card ul li {
  flex: 0 1 20%;
}
.color-card__desc {
  font-size: clamp(1rem, 4vw, 1.25rem);
  color: var(--ink-sub);
  text-align: left;
}
@media (min-width: 768px) {
  .color-card__desc {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  .color-card__desc {
    font-size: 1.125rem;
  }
}
@media (min-width: 1920px) {
  .color-card__desc {
    font-size: 1.25rem;
  }
}

/* =========================================================
   カラー別ショーケース
   ========================================================= */
.showcase {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 80px;
}
.showcase__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .showcase__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "body figure" "density figure";
    align-items: start;
    column-gap: 48px;
  }
}
.showcase__body {
  order: 2;
}
@media (min-width: 768px) {
  .showcase__body {
    grid-area: body;
  }
}
.showcase__figure {
  order: 1;
  margin: 0;
  position: relative;
  transform: translateY(-25px);
}
@media (min-width: 768px) {
  .showcase__figure {
    grid-area: figure;
    align-self: stretch;
    transform: none;
  }
}
.showcase__title {
  font-size: clamp(1.4rem, 6.4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 10px;
  text-align: center;
  white-space: nowrap;
}
.showcase__title br {
  display: none;
}
@media (min-width: 768px) {
  .showcase__title {
    margin-top: 0;
    text-align: left;
    font-size: 2rem;
  }
}
@media (min-width: 1440px) {
  .showcase__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1920px) {
  .showcase__title {
    font-size: 2.5rem;
  }
}
.showcase__title--sp-break {
  white-space: normal;
  padding-left: 0.4em;
}
.showcase__title--sp-break br {
  display: inline;
}
@media (min-width: 768px) {
  .showcase__title--sp-break {
    white-space: nowrap;
    padding-left: 0;
  }
  .showcase__title--sp-break br {
    display: none;
  }
}
.showcase__lead {
  color: var(--ink-sub);
  font-size: clamp(1rem, 4vw, 1.5rem);
  padding-left: 1.2em;
  padding-top: 0.6em;
}
@media (min-width: 768px) {
  .showcase__lead {
    font-size: 1.125rem;
    padding-left: 0;
    padding-top: 0;
  }
}
@media (min-width: 1440px) {
  .showcase__lead {
    font-size: 1.25rem;
  }
}
@media (min-width: 1920px) {
  .showcase__lead {
    font-size: 1.5rem;
  }
}
.showcase__photo {
  aspect-ratio: 16/11;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.showcase__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(40, 46, 60, 0.78);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 0 12px 0 var(--radius);
}
.showcase__frame-mini {
  font-size: clamp(0.72rem, 2.5vw, 0.875rem);
  color: var(--ink-mute);
  text-align: right;
}
.showcase__frame-mini .sp-br {
  display: none;
}
@media (min-width: 768px) {
  .showcase__frame-mini {
    font-size: 0.75rem;
  }
}
@media (min-width: 1440px) {
  .showcase__frame-mini {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1920px) {
  .showcase__frame-mini {
    font-size: 0.875rem;
  }
}
.showcase {
  /* PC：ショーケース全体の余白・写真比率 */
}
@media (min-width: 768px) {
  .showcase {
    gap: 50px;
  }
  .showcase__photo {
    height: 100%;
    aspect-ratio: 4/5;
  }
  .showcase__item--rev {
    grid-template-areas: "figure body" "figure density";
  }
}

/* 濃度の比較 */
.density {
  order: 3;
}
@media (min-width: 768px) {
  .density {
    grid-area: density;
  }
}
.density__title {
  display: none;
}
@media (min-width: 768px) {
  .density__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 1440px) {
  .density__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1920px) {
  .density__title {
    font-size: 1.5rem;
  }
}
.density__series {
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .density__series {
    font-size: 1rem;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .density__series {
    font-size: 1.125rem;
  }
}
@media (min-width: 1920px) {
  .density__series {
    font-size: 1.375rem;
  }
}
.density__groups {
  display: flex;
  gap: 0;
}
@media (min-width: 768px) {
  .density__groups {
    max-width: min(26vw, 400px);
  }
}
@media (min-width: 768px) {
  .density__groups--wide {
    max-width: 100%;
  }
}
.density__group {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 3vw;
  text-align: center;
}
.density__group + .density__group {
  border-left: 1px solid #cfcfcf;
}
@media (min-width: 768px) {
  .density__group {
    padding: 0 12px;
  }
}
.density__label {
  display: block;
  font-size: clamp(0.72rem, 3vw, 1rem);
  color: var(--ink-mute);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .density__label {
    font-size: 0.8rem;
  }
}
@media (min-width: 1440px) {
  .density__label {
    font-size: 0.875rem;
  }
}
@media (min-width: 1920px) {
  .density__label {
    font-size: 1rem;
  }
}
.density__note {
  font-size: clamp(0.72rem, 2.5vw, 0.875rem);
  color: var(--ink-mute);
  margin-top: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  .density__note {
    font-size: 0.75rem;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .density__note {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1920px) {
  .density__note {
    font-size: 0.875rem;
  }
}
.density__frame {
  font-size: clamp(0.72rem, 2.5vw, 0.875rem);
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .density__frame {
    font-size: 0.75rem;
  }
}
@media (min-width: 1440px) {
  .density__frame {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1920px) {
  .density__frame {
    font-size: 0.875rem;
  }
}
.density {
  /* ネイビーSP：見本を大きく */
}
.density__groups--wide .swatch--img {
  max-width: 26vw;
}
.density__groups--wide .swatch--img img {
  max-width: 26vw;
}

.swatch-row {
  display: flex;
  gap: 5px;
  justify-content: center;
}
@media (min-width: 768px) {
  .swatch-row {
    gap: 12px;
  }
}

.swatch {
  flex: 1;
  max-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.6rem, 3vw, 1rem);
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.3;
}
.swatch::before {
  content: "";
  width: 100%;
  max-width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.swatch--full::before {
  background: color-mix(in srgb, var(--tint) calc(var(--d) * 1%), #fff);
}
.swatch--grad::before {
  background: linear-gradient(to bottom, #ffffff, color-mix(in srgb, var(--tint) calc(var(--d) * 1%), #fff));
}
.swatch--img::before {
  display: none;
}
.swatch--img {
  max-width: 62px;
}
.swatch--img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .swatch--img {
    max-width: 88px;
  }
}
@media (min-width: 1440px) {
  .swatch--img {
    max-width: 98px;
  }
}
@media (min-width: 1920px) {
  .swatch--img {
    max-width: 120px;
  }
}
@media (min-width: 768px) {
  .swatch {
    font-size: 0.75rem;
    max-width: 110px;
  }
}
@media (min-width: 1440px) {
  .swatch {
    font-size: 0.875rem;
  }
}
@media (min-width: 1920px) {
  .swatch {
    font-size: 1rem;
  }
}

/* ネイビー：SPのみ拡大、PCは通常 */
@media (min-width: 768px) {
  .density__groups--wide .swatch--img {
    max-width: 110px;
  }
}

@media (min-width: 768px) {
  .density__groups--wide .swatch--img img {
    max-width: 96px;
  }
}

.sp-br {
  display: inline;
}

.pc-br {
  display: none;
}

.u-pc {
  display: none;
}

.u-sp {
  display: inline;
}

@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
  .pc-br {
    display: inline;
  }
  .u-pc {
    display: inline;
  }
  .u-sp {
    display: none;
  }
}
/* BLUE / BROWN ミニ2カラム */
.showcase__pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.showcase__pair > .showcase__item {
  min-width: 0;
}
@media (min-width: 768px) {
  .showcase__pair {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.showcase__item--mini {
  gap: 5px;
  position: relative;
}
.showcase__item--mini .badge {
  order: 1;
  align-self: flex-start;
}
.showcase__item--mini .showcase__badge {
  order: 1;
  align-self: center;
  margin: 0 auto 4px;
}
.showcase__item--mini .showcase__figure {
  order: 2;
  transform: none;
}
.showcase__item--mini .showcase__frame-mini {
  order: 3;
}
.showcase__item--mini .density {
  order: 4;
}
@media (min-width: 768px) {
  .showcase__item--mini {
    display: flex;
  }
  .showcase__item--mini .showcase__photo {
    aspect-ratio: 16/11;
    height: auto;
  }
  .showcase__item--mini .showcase__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    margin: 0;
    align-self: auto;
    z-index: 2;
  }
  .showcase__item--mini .showcase__frame-mini {
    align-self: stretch;
    text-align: right;
  }
  .showcase__item--mini .density__groups {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================================================
   シーン
   ========================================================= */
.scenes {
  text-align: center;
  padding-bottom: 72px;
}
.scenes__title {
  position: relative;
  font-size: clamp(0.95rem, 4.6vw, 2.875rem);
  font-weight: 600;
  margin: 8vw 0;
  white-space: nowrap;
}
.scenes__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130vw;
  aspect-ratio: 3132/480;
  background: url(assets/img/color02.png) center/contain no-repeat;
  z-index: -1;
}
@media (min-width: 768px) {
  .scenes__title {
    font-size: 2rem;
    white-space: normal;
  }
  .scenes__title::before {
    width: 108vw;
  }
}
@media (min-width: 1440px) {
  .scenes__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1920px) {
  .scenes__title {
    font-size: 2.875rem;
  }
}
.scenes__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.scenes__list .scene:last-child {
  grid-column: 1/-1;
  width: calc(50% - 13px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .scenes__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .scenes__list .scene:last-child {
    grid-column: auto;
    width: auto;
    margin-inline: 0;
  }
}
.scenes__note {
  font-size: clamp(0.72rem, 2.5vw, 0.875rem);
  color: var(--ink-mute);
  margin-top: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .scenes__note {
    text-align: right;
    font-size: 0.75rem;
  }
}
@media (min-width: 1440px) {
  .scenes__note {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1920px) {
  .scenes__note {
    font-size: 0.875rem;
  }
}

.scene {
  display: flex;
  flex-direction: column;
}
.scene__photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.scene__img {
  width: 100%;
  aspect-ratio: 1.9/3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.scene__label {
  font-weight: 700;
  order: -1;
  margin: 0 0 14px;
  font-size: clamp(0.9rem, 4vw, 2.1875rem);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .scene__label {
    white-space: nowrap;
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .scene__label {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .scene__label {
    font-size: 2.1875rem;
  }
}

/* =========================================================
   機能（CAREER COLOR）
   ========================================================= */
.features {
  background: url(assets/img/bg.png) center top/cover no-repeat;
  padding: 8vw 0 0;
  border-radius: 36px;
  width: 90%;
  max-width: 1300px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .features {
    padding: 88px 0;
  }
}
.features__inner {
  text-align: center;
  width: 90%;
  position: relative;
}
.features__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.features__intro .features__logo-pic {
  width: 42%;
  max-width: 180px;
  height: auto;
  flex: 0 0 auto;
  margin-left: -9%;
}
@media (min-width: 768px) {
  .features__intro {
    display: block;
  }
}
.features__logobox {
  flex: 1;
  min-width: 0;
}
.features__logobox .features__logo-img {
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .features__logobox .features__logo-img {
    width: 360px;
    max-width: none;
  }
}
@media (min-width: 1440px) {
  .features__logobox .features__logo-img {
    width: 440px;
  }
}
@media (min-width: 1920px) {
  .features__logobox .features__logo-img {
    width: 500px;
  }
}
.features__gridwrap {
  position: relative;
  width: 100%;
  margin-inline: 0;
}
@media (min-width: 768px) {
  .features__gridwrap {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .features__gridwrap .features__logo-pic {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: clamp(160px, 16vw, 260px);
    z-index: 2;
  }
}
.features__lead {
  font-size: clamp(1rem, 5vw, 2.875rem);
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .features__lead {
    font-size: 2rem;
    white-space: normal;
  }
}
@media (min-width: 1440px) {
  .features__lead {
    font-size: 2.5rem;
  }
}
@media (min-width: 1920px) {
  .features__lead {
    font-size: 2.875rem;
  }
}
.features__logo {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 14px 0 6px;
  color: #f08a2c;
}
.features__logo span {
  color: #e7558a;
}
.features__logo small {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-mute);
  letter-spacing: 0.3em;
  font-family: var(--font);
}
.features__logo-img {
  width: clamp(220px, 40vw, 360px);
  height: auto;
  margin-inline: auto;
}
.features__sub {
  font-weight: 700;
  margin-bottom: 32px;
  /* SP：ロゴ（.features__logo-img）の幅内に収める。はみ出し防止に折り返しを許可し、
     文字を少し詰めて通常のスマホ幅では1行で収まるようにする（PCは下の指定で 1.5rem）。 */
  font-size: clamp(0.7rem, 3vw, 2.125rem);
  white-space: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .features__sub {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .features__sub {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .features__sub {
    font-size: 2.125rem;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
  margin-bottom: 56px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    width: 100%;
    max-width: none;
    margin-bottom: 72px;
    margin-inline: auto;
  }
}

.feature {
  position: relative;
  color: #fff;
  border-radius: var(--radius);
  padding: 3.5vw 3vw 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px 14px;
  text-align: center;
}
.feature--glare {
  background: var(--grad-glare);
}
.feature--blue {
  background: var(--grad-blue);
}
.feature--contrast {
  background: var(--grad-contrast);
}
.feature--eye {
  background: var(--grad-eye);
}
.feature__icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 44px;
}
.feature__icon img {
  width: auto;
  height: 40px;
  max-width: 56px;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .feature__icon {
    transform: translateX(-44px);
  }
}
.feature--blue .feature__icon img, .feature--contrast .feature__icon img, .feature--eye .feature__icon img {
  height: 30px;
}
.feature--eye .feature__icon img {
  height: 26px;
}
.feature__title {
  font-size: clamp(1rem, 4vw, 2.125rem);
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  line-height: 1.3;
}
.feature__title .u-pc {
  line-height: 1.25;
}
@media (min-width: 768px) {
  .feature__title {
    font-size: 1.5rem;
    white-space: normal;
    transform: translateX(-40px);
  }
}
@media (min-width: 1440px) {
  .feature__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .feature__title {
    font-size: 2.125rem;
  }
}
.feature__text {
  flex-basis: 100%;
  width: 100%;
  font-size: clamp(0.62rem, 2.8vw, 1.625rem);
  opacity: 0.95;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .feature__text {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  .feature__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 1920px) {
  .feature__text {
    font-size: 1.625rem;
  }
}
@media (min-width: 768px) {
  .feature {
    padding: 22px 24px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature--blue .feature__icon img, .feature--contrast .feature__icon img, .feature--eye .feature__icon img {
    height: 40px;
  }
  .feature--glare .feature__icon {
    height: 68px;
  }
  .feature--glare .feature__icon img {
    height: 64px;
    max-width: 88px;
  }
  .feature--blue .feature__icon {
    height: 52px;
  }
  .feature--blue .feature__icon img {
    height: 50px;
    max-width: 72px;
  }
}

/* 視界の比較 */
.compare {
  text-align: center;
}
.compare__title {
  font-size: clamp(1.2rem, 4.5vw, 2.875rem);
  font-weight: 600;
}
@media (min-width: 768px) {
  .compare__title {
    font-size: 2rem;
  }
}
@media (min-width: 1440px) {
  .compare__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1920px) {
  .compare__title {
    font-size: 2.875rem;
  }
}
.compare__sub {
  margin-bottom: 18px;
  font-size: clamp(1rem, 4vw, 2.125rem);
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .compare__sub {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}
@media (min-width: 1440px) {
  .compare__sub {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .compare__sub {
    font-size: 2.125rem;
  }
}
.compare__caption {
  font-weight: 700;
  color: #e7558a;
  margin-bottom: 0;
  font-size: clamp(1rem, 4vw, 2.25rem);
}
@media (min-width: 768px) {
  .compare__caption {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .compare__caption {
    font-size: 1.875rem;
  }
}
@media (min-width: 1920px) {
  .compare__caption {
    font-size: 2.25rem;
  }
}
.compare__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.compare__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.compare__tag {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 2;
  transform: translate(-100%, -50%);
  display: flex;
  align-items: center;
}
.compare__tag img {
  width: clamp(56px, 14vw, 170px);
  height: auto;
}
@media (min-width: 768px) {
  .compare__tag img {
    width: 110px;
  }
}
@media (min-width: 1440px) {
  .compare__tag img {
    width: 140px;
  }
}
@media (min-width: 1920px) {
  .compare__tag img {
    width: 170px;
  }
}
@media (min-width: 768px) {
  .compare__tag {
    left: -12px;
  }
}
.compare__shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}
.compare__shot {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.compare__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.compare__arrow {
  width: 18px;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .compare__arrow {
    width: 30px;
  }
}

/* =========================================================
   ブランド（arriate tr3s）
   ========================================================= */
.brand {
  padding: 56px 0;
}
.brand__inner {
  text-align: center;
}
.brand__logo {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 700;
  color: #5b8fc7;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.brand__logo span {
  font-style: italic;
}
.brand__logo small {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-mute);
  letter-spacing: 0.3em;
  font-family: var(--font);
}
.brand__logo-img {
  width: clamp(240px, 50vw, 420px);
  height: auto;
  margin-inline: auto;
}
.brand__title {
  font-size: clamp(0.63rem, 3.2vw, 2.125rem);
  font-weight: 600;
  margin: 18px 0 14px;
  white-space: nowrap;
  line-height: 1.9;
}
.brand__title::after {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background: var(--c-blue);
  border-radius: 999px;
  margin: 14px auto 0;
}
@media (min-width: 768px) {
  .brand__title {
    font-size: 1.5rem;
    white-space: normal;
    line-height: 1.9;
  }
}
@media (min-width: 1440px) {
  .brand__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .brand__title {
    font-size: 2.125rem;
  }
}
.brand__head {
  position: relative;
}
.brand__side {
  position: absolute;
  bottom: 0;
  width: 29%;
  max-width: 145px;
  height: auto;
  z-index: 1;
}
@media (min-width: 768px) {
  .brand__side {
    width: clamp(90px, 16vw, 270px);
    max-width: none;
    bottom: 0;
  }
}
.brand__side--l {
  left: -13%;
}
.brand__side--l.u-sp {
  width: 32%;
  max-width: 160px;
}
@media (min-width: 768px) {
  .brand__side--l {
    left: 0;
  }
}
.brand__side--r {
  right: -12%;
}
@media (min-width: 768px) {
  .brand__side--r {
    right: 0;
  }
}
.brand__text {
  color: var(--ink-sub);
  margin-bottom: 28px;
  font-size: clamp(0.7rem, 3.4vw, 1.5rem);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .brand__text {
    font-size: 1.25rem;
    white-space: normal;
    margin-top: 24px;
  }
}
@media (min-width: 1440px) {
  .brand__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 1920px) {
  .brand__text {
    font-size: 1.5rem;
  }
}

/* =========================================================
   ランキング
   ========================================================= */
.ranking {
  background: url(assets/img/bg02.png) center top/cover no-repeat;
  padding: 56px 0 72px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .ranking {
    padding-bottom: 0;
    margin-top: 96px;
  }
}
.ranking__inner {
  text-align: center;
}
.ranking__eyebrow {
  font-size: clamp(1.1rem, 5.2vw, 2.125rem);
  font-weight: 600;
}
@media (min-width: 768px) {
  .ranking__eyebrow {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .ranking__eyebrow {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .ranking__eyebrow {
    font-size: 2.125rem;
  }
}
.ranking__title {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .ranking__title {
    margin: 20px 0;
  }
}
.ranking__title-img {
  width: clamp(280px, 80vw, 720px);
  height: auto;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .ranking__title-img {
    width: 380px;
  }
}
@media (min-width: 1440px) {
  .ranking__title-img {
    width: 600px;
  }
}
@media (min-width: 1920px) {
  .ranking__title-img {
    width: 720px;
  }
}
.ranking__sub {
  font-weight: 700;
  margin-bottom: 28px;
  font-size: clamp(1rem, 4vw, 2.125rem);
}
@media (min-width: 768px) {
  .ranking__sub {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .ranking__sub {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .ranking__sub {
    font-size: 2.125rem;
  }
}
.ranking__board {
  background: transparent;
  padding: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .ranking__board {
    background: #fff;
    border-radius: 40px;
    box-shadow: none;
    padding: 36px 40px;
    margin-top: 0;
  }
}
.ranking__head {
  color: #fff;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: clamp(1rem, 4vw, 2.125rem);
  font-weight: 600;
  display: block;
  text-align: center;
  margin: 0 0 10px;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .ranking__head {
    display: block;
    margin: 8px 0 22px;
    box-shadow: none;
    padding: 5px 10px;
    z-index: auto;
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .ranking__head {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .ranking__head {
    font-size: 2.125rem;
  }
}
.ranking__head--men {
  background: linear-gradient(135deg, #1f7fc4, #2f93d6);
}
.ranking__head--women {
  background: linear-gradient(135deg, #e5388a, #ef5fa3);
  margin-top: 34px;
}
@media (min-width: 768px) {
  .ranking__head--women {
    margin-top: 36px;
  }
}
.ranking__cols {
  background: #fff;
  border-radius: 32px 0 0 32px;
  box-shadow: none;
  padding: 28px 0;
  margin-top: 0;
  margin-right: -20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 22px;
}
.ranking__cols > .rank-col {
  scroll-snap-align: start;
}
.ranking__cols > .rank-col:first-child {
  margin-left: 22px;
}
.ranking__cols > .rank-col:last-child {
  margin-right: 22px;
}
@media (min-width: 768px) {
  .ranking__cols {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: auto;
    overflow-x: visible;
    gap: 28px;
    padding-bottom: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    margin-right: 0;
  }
  .ranking__cols > .rank-col:first-child {
    margin-left: 0;
  }
  .ranking__cols > .rank-col:last-child {
    margin-right: 0;
  }
}
.ranking__cols--men .rank-col__age {
  border-radius: 18px;
  border-color: var(--c-blue);
}
.ranking__cols--women .rank-col__age {
  border-radius: 18px;
  border-color: var(--c-pink);
}
.ranking__cols--men .rank-list__item {
  border-bottom-color: var(--c-blue);
}
.ranking__cols--women .rank-list__item {
  border-bottom-color: var(--c-pink);
}
.ranking__note {
  font-size: clamp(0.72rem, 3vw, 1.25rem);
  color: var(--ink-sub);
  margin-top: 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .ranking__note {
    text-align: right;
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  .ranking__note {
    font-size: 1.125rem;
  }
}
@media (min-width: 1920px) {
  .ranking__note {
    font-size: 1.25rem;
  }
}

.rank-col__age {
  font-weight: 700;
  font-size: clamp(1rem, 4.6vw, 2rem);
  border: 1px solid #d8dde3;
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .rank-col__age {
    font-size: 1.25rem;
  }
}
@media (min-width: 1440px) {
  .rank-col__age {
    font-size: 1.625rem;
  }
}
@media (min-width: 1920px) {
  .rank-col__age {
    font-size: 2rem;
  }
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rank-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-size: clamp(0.92rem, 3.5vw, 1.375rem);
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
@media (min-width: 768px) {
  .rank-list__item {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  .rank-list__item {
    font-size: 1.125rem;
  }
}
@media (min-width: 1920px) {
  .rank-list__item {
    font-size: 1.375rem;
  }
}
.rank-list__no {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.rank-list__no img {
  width: clamp(32px, 12vw, 80px);
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .rank-list__no img {
    width: 48px;
  }
}
@media (min-width: 1440px) {
  .rank-list__no img {
    width: 64px;
  }
}
@media (min-width: 1920px) {
  .rank-list__no img {
    width: 80px;
  }
}
.rank-list__swatch {
  width: 48px;
  height: auto;
  margin-left: auto;
  display: block;
}
@media (min-width: 768px) {
  .rank-list__swatch {
    width: 72px;
  }
}

/* =========================================================
   カラーチェック CTA
   ========================================================= */
.check {
  text-align: center;
  padding: 64px 0 0;
}
.check__media {
  position: relative;
  display: block;
  width: 100%;
}
.check__img {
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}
.check__img--pc {
  display: none;
}
@media (min-width: 768px) {
  .check__img--pc {
    display: block;
  }
}
.check__img--sp {
  display: block;
}
@media (min-width: 768px) {
  .check__img--sp {
    display: none;
  }
}
.check__btn {
  position: relative;
  margin-top: 30px;
  white-space: nowrap;
  background: #fb9699;
  color: #fff;
  padding: 4px 76px;
  box-shadow: none;
  font-size: clamp(0.9rem, 4.2vw, 1.2rem);
}
.check__btn:hover {
  transform: none;
  box-shadow: none;
}
.check__btn::after {
  background-image: url(assets/img/arrow02_coral.svg);
  width: 2.2em;
  height: 2.2em;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.check__btn:hover::after {
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .check__btn {
    position: absolute;
    left: 66%;
    bottom: 18%;
    margin-top: 0;
    transform: translateX(-50%);
    padding: 6px 24px;
    width: 450px;
  }
  .check__btn:hover {
    transform: translateX(-50%);
  }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 56px 0 72px;
  text-align: center;
  background: #f7f7f7;
}
.faq__title {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  letter-spacing: 0.14em;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .faq__title {
    margin-top: 64px;
  }
}
.faq__title-img {
  width: clamp(90px, 18vw, 140px);
  height: auto;
  margin-inline: auto;
}
.faq__set {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .faq__set {
    max-width: 800px;
  }
}
@media (min-width: 1440px) {
  .faq__set {
    max-width: 1050px;
  }
}
@media (min-width: 1920px) {
  .faq__set {
    max-width: 1300px;
  }
}
.faq__sub {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: clamp(1rem, 4vw, 2rem);
}
@media (min-width: 768px) {
  .faq__sub {
    font-size: 1.5rem;
    margin-top: 24px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1440px) {
  .faq__sub {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  .faq__sub {
    font-size: 2rem;
  }
}
.faq__list {
  text-align: left;
  width: 90%;
  max-width: var(--maxw);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .faq__list {
    width: 80%;
  }
}

.faq-item {
  border-bottom: 1px solid #c4c4c4;
}
.faq-item__q {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 4px;
  font: inherit;
  text-align: left;
  color: var(--ink);
}
.faq-item__q[aria-expanded=true] .faq-item__toggle::after {
  transform: scaleY(0);
  opacity: 0;
}
.faq-item__mark {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #c9a14a;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}
.faq-item__mark img {
  width: clamp(22px, 8vw, 60px);
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .faq-item__mark img {
    width: 36px;
  }
}
@media (min-width: 1440px) {
  .faq-item__mark img {
    width: 48px;
  }
}
@media (min-width: 1920px) {
  .faq-item__mark img {
    width: 60px;
  }
}
.faq-item__mark--a {
  color: #000;
}
.faq-item__text {
  flex: 1;
  font-weight: 700;
  line-height: 1.6;
  font-size: clamp(1rem, 3.5vw, 1.6875rem);
}
@media (min-width: 768px) {
  .faq-item__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1440px) {
  .faq-item__text {
    font-size: 1.375rem;
  }
}
@media (min-width: 1920px) {
  .faq-item__text {
    font-size: 1.4rem;
  }
}
.faq-item__toggle {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}
.faq-item__toggle::before, .faq-item__toggle::after {
  content: "";
  position: absolute;
  background: #231815;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-item__toggle {
  /* 整数ピクセル位置に配置（半ピクセル回避でシャープに）。SP=30px → 中心15px */
}
.faq-item__toggle::before {
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
}
.faq-item__toggle::after {
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  transform-origin: center;
}
@media (min-width: 768px) {
  .faq-item__toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }
  .faq-item__toggle::before {
    top: 21px;
  }
  .faq-item__toggle::after {
    left: 21px;
  }
}
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}
.faq-item__a-inner {
  overflow: hidden;
  padding-left: 4px;
}
/* SP：A を独立行（左端）に置き、回答文は全幅1カラムで端から端まで使う */
.faq-item__a-inner .faq-item__mark--a {
  display: block;
  margin: 0 0 4px;
}
.faq-item__a-inner p {
  min-height: 0;
  color: var(--ink-sub);
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  overflow-wrap: break-word;
  word-break: break-word;
}
.faq-item__a-inner p a {
  color: var(--c-blue);
  text-decoration: underline;
  word-break: break-all; /* 長いURLを折り返す */
  overflow-wrap: anywhere;
}
/* PC：従来どおり A を左に並べる横レイアウト */
@media (min-width: 768px) {
  .faq-item__a-inner {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .faq-item__a-inner .faq-item__mark--a {
    display: inline-flex;
    margin: 0 8px 0 0;
  }
  .faq-item__a-inner p {
    min-width: 0;
    margin-top: 6px;
    font-size: 1.125rem;
  }
}
@media (min-width: 1440px) {
  .faq-item__a-inner p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1920px) {
  .faq-item__a-inner p {
    font-size: 1.3rem;
  }
}
.faq-item.is-open .faq-item__a-inner {
  padding-top: 20px;
  padding-bottom: 22px;
}

/* =========================================================
   フッターCTA
   ========================================================= */
.footer {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 56px 20px 64px;
  max-width: 1200px;
  margin-inline: auto;
}

.foot-cta {
  display: flex;
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
  min-height: 120px;
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .foot-cta {
    border-radius: 52px;
  }
}
.foot-cta:hover {
  transform: translateY(-3px);
}
.foot-cta__photo {
  flex: 1;
  min-height: 120px;
  background: center/cover no-repeat;
}
.foot-cta--store .foot-cta__photo {
  background-image: url(assets/img/bnr01_sp.jpg);
}
@media (min-width: 768px) {
  .foot-cta--store .foot-cta__photo {
    background-image: url(assets/img/bnr01.jpg);
  }
}
.foot-cta--store .foot-cta__body {
  background: #1b7fc9;
  flex-direction: row;
}
.foot-cta--insta .foot-cta__photo {
  background-image: url(assets/img/bnr02_sp.jpg);
}
@media (min-width: 768px) {
  .foot-cta--insta .foot-cta__photo {
    background-image: url(assets/img/bnr02.jpg);
  }
}
.foot-cta--insta .foot-cta__body {
  background: #f5a623;
}
.foot-cta--store, .foot-cta--insta {
  aspect-ratio: 2.5/1;
  min-height: 0;
}
@media (min-width: 768px) {
  .foot-cta--store, .foot-cta--insta {
    aspect-ratio: 4/1;
  }
}
.foot-cta__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  padding: 16px;
  text-align: center;
}
.foot-cta__note {
  font-size: clamp(0.6rem, 2.6vw, 1.5rem);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .foot-cta__note {
    font-size: 1.125rem;
  }
}
@media (min-width: 1440px) {
  .foot-cta__note {
    font-size: 1.3125rem;
  }
}
@media (min-width: 1920px) {
  .foot-cta__note {
    font-size: 1.5rem;
  }
}
.foot-cta__note-deco {
  width: clamp(10px, 3vw, 20px);
  height: auto;
  display: block;
}
.foot-cta__label {
  font-size: clamp(0.6rem, 3.4vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
.foot-cta__label img {
  width: clamp(22px, 9vw, 66px);
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .foot-cta__label {
    font-size: 1.125rem;
    flex-direction: row;
    gap: 8px;
  }
}
@media (min-width: 1440px) {
  .foot-cta__label {
    font-size: 1.3125rem;
  }
}
@media (min-width: 1920px) {
  .foot-cta__label {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .foot-cta__label img {
    width: 40px;
  }
}
@media (min-width: 1440px) {
  .foot-cta__label img {
    width: 53px;
  }
}
@media (min-width: 1920px) {
  .foot-cta__label img {
    width: 66px;
  }
}
.foot-cta__icon-top {
  width: clamp(22px, 9vw, 66px);
  height: auto;
  display: block;
}
.foot-cta__arrow {
  width: clamp(34px, 7vw, 55px);
  height: clamp(34px, 7vw, 55px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.foot-cta__arrow img, .foot-cta__arrow svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .foot-cta__arrow {
    width: 42px;
    height: 42px;
  }
}
@media (min-width: 1440px) {
  .foot-cta__arrow {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1920px) {
  .foot-cta__arrow {
    width: 55px;
    height: 55px;
  }
}
.foot-cta__line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* =========================================================
   GREEN ショーケース 専用レイアウト
   SP：ラッパーを解体し要素単位で並び替え
   GREEN → 見出し → メイン写真 → モデル写真 → リード → 濃度比較 → フレーム表記
   ========================================================= */
.showcase__photo-img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.showcase__models {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.showcase__models li {
  flex: 1;
}
.showcase__models li img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}
.showcase__models .showcase__deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  height: auto;
  width: auto;
  border-radius: 0;
}
.showcase__models {
  /* SP：bag=sub_green02の右上 / clothes=sub_green01の右下 */
}
.showcase__models .showcase__deco--bag {
  width: 40vw;
  bottom: -3vw;
  left: 44%;
  right: auto;
  transform: translate(-50%, 40%) rotate(-6deg);
}
.showcase__models .showcase__deco--clothes {
  width: 22vw;
  bottom: 0;
  left: 0;
  right: auto;
  transform: translate(-50%, 25%) rotate(5deg);
}
@media (min-width: 768px) {
  .showcase__models {
    gap: 18px;
    /* PC：装飾アイテムの位置・サイズ（画像はSPと共通） */
  }
  .showcase__models .showcase__deco--bag {
    width: clamp(140px, 20vw, 350px);
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translate(52%, -52%) rotate(-6deg);
  }
  .showcase__models .showcase__deco--clothes {
    width: min(8vw, 150px);
    left: auto;
    right: -39%;
    transform: translate(35%, 30%) rotate(5deg);
  }
}

.showcase__models--rev-sp {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .showcase__models--rev-sp {
    flex-direction: row;
  }
}

.showcase__model-bag,
.showcase__model-clothes {
  position: relative;
  overflow: visible;
}

.showcase__item--split {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.showcase__item--split .showcase__main,
.showcase__item--split .showcase__side,
.showcase__item--split .showcase__body {
  display: contents;
}
.showcase__item--split .showcase__badge {
  order: 1;
  align-self: center;
}
.showcase__item--split .showcase__title {
  order: 2;
  line-height: 1.5;
}
.showcase__item--split .showcase__figure {
  order: 3;
}
.showcase__item--split .density {
  order: 4;
}
.showcase__item--split .showcase__models {
  order: 5;
}
.showcase__item--split .density__frame {
  order: 6;
}
.showcase__item--split .showcase__lead {
  order: 7;
}
@media (min-width: 768px) {
  .showcase__item--split {
    /* PC：左カラム=メイン写真+濃度比較／右カラム=見出し+リード+モデル写真 */
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    grid-template-areas: none;
    column-gap: 48px;
    align-items: end;
  }
  .showcase__item--split .showcase__main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .showcase__item--split .showcase__side {
    display: flex;
    flex-direction: column;
  }
  .showcase__item--split .showcase__body {
    display: block;
    order: 0;
  }
  .showcase__item--split .showcase__badge,
  .showcase__item--split .showcase__title,
  .showcase__item--split .showcase__figure,
  .showcase__item--split .showcase__models,
  .showcase__item--split .showcase__lead,
  .showcase__item--split .density,
  .showcase__item--split .density__frame {
    order: 0;
  }
}

@media (min-width: 768px) {
  .showcase__item--split-rev {
    grid-template-columns: 1fr 0.82fr;
  }
  .showcase__item--split-rev .showcase__main {
    grid-column: 2;
    grid-row: 1;
  }
  .showcase__item--split-rev .showcase__side {
    grid-column: 1;
    grid-row: 1;
  }
}

.showcase__badge {
  display: block;
  width: min(34vw, 190px);
  height: auto;
}
@media (min-width: 768px) {
  .showcase__badge {
    width: 120px;
    margin-bottom: 18px;
  }
}
@media (min-width: 1440px) {
  .showcase__badge {
    width: 155px;
  }
}
@media (min-width: 1920px) {
  .showcase__badge {
    width: 190px;
  }
}

/* =========================================================
   ショーケース 各カラーの装飾アイテム（絶対配置）
   親 .showcase__item--split を基準に配置。SP→PC(768px〜)で位置切替
   width が SP/PC で異なるものは可変部の vw を --vw に切り出して統一
   ========================================================= */
/* NAVY */
.showcase__case {
  width: clamp(40px, 18vw, 190px);
  height: auto;
  position: absolute;
  bottom: 10%;
  right: 7%;
}
@media (min-width: 768px) {
  .showcase__case {
    right: -9vw;
    top: 55%;
    transform: translateY(-55%);
  }
}

.showcase__pc {
  width: clamp(50px, 18vw, 230px);
  position: absolute;
  bottom: 12%;
  left: 40%;
}
@media (min-width: 768px) {
  .showcase__pc {
    right: -5vw;
    top: 30%;
    left: inherit;
    transform: translateY(-30%);
  }
}

/* YELLOW */
/* SP：car/cap は models（＝sub_yellow02 の下端）を基準に配置。
   PC は models を static に戻し、従来どおり記事(.showcase__item--split)基準にする。 */
.showcase__item[data-showcase="yellow"] .showcase__models {
  position: relative;
}
@media (min-width: 768px) {
  .showcase__item[data-showcase="yellow"] .showcase__models {
    position: static;
  }
}
.showcase__car {
  width: clamp(50px, 25vw, 330px);
  height: auto;
  position: absolute;
  bottom: -40px; /* sub_yellow02 の下端からさらに40px下げる */
  right: 0%;
}
@media (min-width: 768px) {
  .showcase__car {
    right: 43%;
    top: 18%;
    bottom: auto;
    transform: translateY(-55%);
  }
}

.showcase__cap {
  width: clamp(50px, 10vw, 130px);
  height: auto;
  position: absolute;
  bottom: -20px; /* sub_yellow02 の下端からさらに20px下げる */
  right: 43%;
}
@media (min-width: 768px) {
  .showcase__cap {
    right: 47%;
    top: 44%;
    bottom: auto;
    transform: translateY(-55%);
  }
}

/* ORANGE */
.showcase__tento {
  width: clamp(50px, 25vw, 330px);
  height: auto;
  position: absolute;
  bottom: 24%;
  right: 38%;
}
@media (min-width: 768px) {
  .showcase__tento {
    right: 43%;
    top: 20%;
    transform: translateY(-55%);
  }
}

.showcase__ruck {
  --vw: 24vw;
  width: clamp(40px, var(--vw), 230px);
  height: auto;
  position: absolute;
  bottom: 10%;
  right: 0%;
}
@media (min-width: 768px) {
  .showcase__ruck {
    --vw: 15vw;
    right: 47%;
    top: 44%;
    transform: translateY(-55%);
  }
}

/* BROWN */
.showcase__dish {
  --vw: 34vw;
  width: clamp(50px, var(--vw), 370px);
  height: auto;
  position: absolute;
  bottom: 13%;
  right: 8%;
}
@media (min-width: 768px) {
  .showcase__dish {
    --vw: 25vw;
    right: 0%;
    top: -2%;
  }
}

.showcase__wine {
  --vw: 18vw;
  width: clamp(40px, var(--vw), 230px);
  height: auto;
  position: absolute;
  bottom: 27%;
  right: 40%;
}
@media (min-width: 768px) {
  .showcase__wine {
    --vw: 15vw;
    right: -13%;
    top: 35%;
    transform: translateY(-55%);
  }
}

/* PINK */
.showcase__flower01 {
  --vw: 20vw;
  width: clamp(50px, var(--vw), 220px);
  height: auto;
  position: absolute;
  bottom: 16%;
  right: 35%;
}
@media (min-width: 768px) {
  .showcase__flower01 {
    --vw: 25vw;
    right: -17%;
    top: 27%;
  }
}

.showcase__flower02 {
  width: clamp(40px, 25vw, 230px);
  height: auto;
  position: absolute;
  bottom: 14%;
  right: -1%;
}
@media (min-width: 768px) {
  .showcase__flower02 {
    width: clamp(40px, 20vw, 300px);
    right: 0%;
    top: 21%;
    transform: translateY(-55%);
  }
}

/* =========================================================
   モーション抑制
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
