.ccl-about-page {
  min-height: 100vh;
  padding-left: var(--ccl-side);
  background: radial-gradient(circle at 88% 0%, rgba(182,154,82,.12), transparent 34%), var(--ccl-bg);
  color: var(--ccl-ink);
  font-family: var(--ccl-sans);
}

.ccl-about-hero {
  position: relative;
  min-height: clamp(520px, 82vh, 820px);
  border-bottom: 1px solid var(--ccl-line);
  overflow: hidden;
}

.ccl-about-hero-text {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(760px, 58vw);
  padding: clamp(92px, 9vw, 150px) clamp(36px, 6vw, 92px) clamp(54px, 7vw, 96px);
  box-sizing: border-box;
  pointer-events: none;
}

.ccl-about-kicker {
  display: inline-block;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--ccl-serif);
  font-size: 15px;
  letter-spacing: .22em;
}

.ccl-about-hero h1 {
  margin: 0;
  font-family: var(--ccl-serif);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .08em;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}

.ccl-about-hero-image {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  min-width: 0;
  height: clamp(520px, 82vh, 820px);
  overflow: hidden;
}

.ccl-about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ccl-about-content {
  padding: clamp(72px, 9vw, 130px) clamp(28px, 8vw, 120px) clamp(96px, 11vw, 160px);
}

.ccl-about-content-inner {
  max-width: 880px;
  margin: 0 auto;
}

/* About本文左上の見出しブロックは非表示 */
.ccl-about-lead,
.ccl-about-section-no {
  display: none !important;
}

.ccl-about-body {
  max-width: none;
  font-size: 15px;
  line-height: 2.35;
  letter-spacing: .07em;
}

.ccl-about-body p {
  margin: 0 0 2em;
}

.ccl-about-store-title {
  margin: 0 0 2.2em;
  font-family: var(--ccl-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .12em;
}

.ccl-about-signature {
  margin-top: 3.2em !important;
  text-align: right;
  font-family: var(--ccl-serif);
  color: var(--ccl-ink);
}

.ccl-about-store-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 38px);
  margin-top: clamp(54px, 7vw, 84px);
}

.ccl-about-store-images figure {
  margin: 0;
}

.ccl-about-store-images img {
  display: block;
  width: 100%;
  height: auto;
}

.ccl-about-heart {
  margin-top: 2.4em !important;
  text-align: center;
  font-family: var(--ccl-serif);
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 900px) {
  .ccl-about-page {
    padding-left: 0;
  }

  .ccl-about-hero {
    min-height: 76svh;
    padding-top: 72px;
  }

  .ccl-about-hero-text {
    top: calc(72px + 72px);
    bottom: auto;
    left: 0;
    width: 100%;
    padding: 0 24px;
  }

  .ccl-about-hero-image {
    height: calc(76svh - 72px);
    min-height: 420px;
  }

  .ccl-about-hero-image img {
    height: 100%;
    object-fit: cover;
  }

  .ccl-about-kicker {
    margin-bottom: 14px;
    color: #fff;
    font-size: 13px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
  }

  .ccl-about-hero h1 {
    color: #fff;
    font-size: clamp(27px, 7vw, 36px);
    line-height: 1.35;
    letter-spacing: .06em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .38);
  }

  .ccl-about-content {
    padding: 58px 20px 96px;
  }

  .ccl-about-body {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: .06em;
  }
}

@media (max-width: 520px) {
  .ccl-about-hero {
    min-height: 72svh;
  }

  .ccl-about-hero-image {
    height: calc(72svh - 72px);
    min-height: 360px;
  }

  .ccl-about-hero-text {
    top: calc(72px + 64px);
    padding: 0 20px;
  }

  .ccl-about-body p {
    margin-bottom: 1.7em;
  }
}

/* About下部：プロフィールテキストと制作風景写真を横並びに配置 */
.ccl-about-store-images {
  width: min(1210px, calc(100vw - var(--ccl-side) - clamp(56px, 16vw, 240px)));
  margin-left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(42px, 5vw, 72px);
  row-gap: clamp(36px, 5vw, 58px);
  align-items: start;
}

.ccl-about-store-images figure:first-child {
  grid-column: 1 / -1;
}

.ccl-about-store-images figure:nth-child(2),
.ccl-about-store-images figure:nth-child(3) {
  grid-column: auto;
}

.ccl-about-store-images figure:nth-child(2) .wp-block-paragraph {
  margin: 0;
  font-family: var(--ccl-serif);
  font-size: 15px;
  line-height: 2.35;
  letter-spacing: .07em;
}

.ccl-about-store-images figure:nth-child(3) img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .ccl-about-store-images {
    width: 100%;
    margin-left: 0;
    transform: none;
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .ccl-about-store-images figure:first-child,
  .ccl-about-store-images figure:nth-child(2),
  .ccl-about-store-images figure:nth-child(3) {
    grid-column: 1;
  }

  .ccl-about-store-images figure:nth-child(2) {
    order: 2;
  }

  .ccl-about-store-images figure:nth-child(3) {
    order: 3;
  }

  .ccl-about-store-images figure:nth-child(2) .wp-block-paragraph {
    font-size: 14px;
    line-height: 2.2;
  }
}

/* Aboutページ：本文リンクカラーをNewsと同じgoldに統一 */
.ccl-about-body a,
.ccl-about-body a:visited,
.ccl-about-store-images a,
.ccl-about-store-images a:visited {
  color: var(--ccl-gold);
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-thickness: 1px;
}

.ccl-about-body a:hover,
.ccl-about-store-images a:hover {
  color: var(--ccl-gold);
  opacity: .72;
}

.ccl-about-greeting {
  margin: 0 0 1.1em;
  font-family: var(--ccl-serif);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .12em;
}
