/* OFFEEL microsite — HTML/lens/offeel/
   Index / Product: white, light gray, black CTAs (design mockup)
   Survey: dark green + yellow infographic charts
*/
:root {
  --offeel-title: #157460;
  --offeel-text: #1a1a1a;
  --offeel-muted: #5c5c5c;
  --offeel-line: #e0e0e0;
  --offeel-bg-gray: #f4f4f4;
  --offeel-black: #111;
  --offeel-teal-cta: #2d6a6a;
  --offeel-survey-green: #004d40;
  --offeel-survey-green-light: #00695c;
  --offeel-accent-yellow: #fff463;
  --offeel-chart-green: #2e7d32;
  --offeel-chart-blue: #1565c0;
  --offeel-chart-blue-light: #64b5f6;
  --offeel-chart-orange: #fb8c00;
  --offeel-chart-orange-light: #ffcc80;
  /* Survey infographic charts — yellow primary + distinct segment colors */
  --offeel-infographic-yellow: #fff463;
  --offeel-infographic-green: #266f33;
  --offeel-infographic-teal: #157460;
  --offeel-infographic-blue: #a8d492;
  --offeel-infographic-orange: #fb8c00;
  --offeel-infographic-gray: #a1a1a1;
  /* DIN-like numerals (Barlow Condensed) */
  --offeel-font-din: "Barlow Condensed", "DIN Alternate", "DIN Condensed", "Roboto Condensed", "Arial Narrow", sans-serif;
}
h1, h2, h3 {
  font-family: 'Noto Sans JP', sans-serif;
}
body.offeel-brand {
  color: var(--offeel-text);
  background: #dddddd;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* 数字は DIN 系フォントで統一（日本語は Noto Sans JP にフォールバック） */
body.offeel-brand .offeel-donut-pct,
body.offeel-brand .offeel-illus-count,
body.offeel-brand .offeel-modal-sku,
body.offeel-brand .offeel-legend,
body.offeel-brand .offeel-note-subtle,
body.offeel-brand .offeel-lineup-specBlock__detail {
  font-family: var(--offeel-font-din), "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

body.offeel-brand.offeel-survey-page {
  background: #e6e6e6;
}

.pc_none {
  display: block;
}
.sp_none {
  display: none;
}
@media screen and (min-width: 700px) {
  .pc_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
}
.offeel-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 100px;
  overflow: hidden;
}
.offeel-wrap--wide {
  max-width: 1020px;
}
#offeel-survey .offeel-wrap {
  padding-bottom: 0;
}
.offeel-tech-block-img {
  max-width: 800px;
  margin: 0 auto;
}
.offeel-tech-block-img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
/* ——— Index: lifestyle grid ——— */
.offeel-hero{
  width: 100%;
    max-width: 920px;
    margin: 0 auto 30px;
    padding-top: 85px;
    text-align: center;
}
.offeel-hero picture {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.offeel-hero picture img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.offeel-index-hero-text {
  text-align: center;
  padding: 8px 0 48px;
}
.offeel-index-tagline {
  font-size: clamp(1rem, 2.8vw, 1.8rem);
  font-weight: 600;
  line-height: 1.75;
  margin: 0 auto 30px;
  max-width: 100%;
}
.offeel-prose {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.9;
  color: var(--offeel-text);
  margin: 0 auto 20px;
}
.offeel-prose--subhead {
  font-size: 1.26rem;
  margin: 0 0 30px;
}
.offeel-title-icon{
  font-size: 1.1rem;
  color: var(--offeel-text);
  font-weight: 700;
  display: flex;
  text-align: left;
  gap: 10px;
  margin-top: 30px;
  align-items: center;
}
.offeel-title-icon::before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("images/offeel-icon.png") no-repeat center center;
  background-size: contain;
  margin-top: -7px;
}
.offeel-prose--center {
  text-align: center;
}
@media screen and (min-width: 843px) {
    .offeel-prose {
        font-size: 1.5rem;
  }
  .offeel-prose--subhead {
    font-size: 36px;
  }
  .offeel-title-icon{
    font-size: 24px;
    margin-top: 60px;
  }
  .offeel-title-icon::before{
    width: 40px;
    height: 40px;
  }
}
.offeel-tech-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.offeel-tech-block-text {
  max-width: 1100px;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .offeel-tech-block {
    gap: 60px;
  }
}
/* ——— Rectangular black buttons (mockup) ——— */
.offeel-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 520px;
  margin: 48px auto 72px;
}
@media screen and (min-width: 520px) {
  .offeel-cta-row {
    max-width: 800px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.offeel-btn-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 52px;
  padding: 14px 20px;
  background: var(--offeel-black);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.14s ease;
}
.offeel-btn-rect::after {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.55em;
  border-color: transparent transparent transparent currentColor;
}
.offeel-btn-rect:hover {
  opacity: 0.88;
  color: #fff;
}
.offeel-btn-rect:active {
  transform: scale(0.98);
  opacity: 1;
}
.offeel-btn-rect--outline {
  background: #fff;
  color: var(--offeel-black) !important;
  border: 2px solid var(--offeel-black);
}
.offeel-btn-rect--outline:hover {
  background: var(--offeel-bg-gray);
}

.offeel-btn-rect--survey {
  background: var(--offeel-survey-green);
}
.offeel-btn-rect--survey:hover {
  background: var(--offeel-survey-green-light);
  opacity: 1;
  color: #fff;
}

/* ——— Product: tech + lineup ——— */
#product {
  margin-bottom: 20px;
  display: block;
}
.offeel-page-head {
  padding: 32px 0 8px;
  text-align: center;
}
.offeel-page-title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.offeel-page-lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--offeel-muted);
  max-width: 40em;
  margin: 0 auto 8px;
}
.offeel-note-subtle {
  font-size: 12px;
  color: var(--offeel-muted);
  text-align: center;
  margin: 0 auto;
  text-align: right;
}

.offeel-tech-block {
  margin-bottom: 48px;
}
.offeel-tech-block h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--offeel-line);
}
.offeel-tech-block p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 12px;
  color: var(--offeel-text);
}

.offeel-lineup {
  background: var(--offeel-bg-gray);
  padding: 48px 0 56px;
  margin: 40px calc(50% - 50vw) 0;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}
.offeel-lineup .offeel-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.offeel-lineup-headingWrap {
  margin-top: 60px;
  margin-bottom: 32px;
}
.offeel-lineup-title {
  font-size: clamp(2.6rem, 2.5vw, 1.35rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  margin: 0 0 15px;
  color: var(--offeel-survey-green);
}
.offeel-lineup-title-sub {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--offeel-text);
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .offeel-lineup-title {
    font-size: clamp(3.6rem, 2.5vw, 1.35rem);
    margin-bottom: 20px;
  }
  .offeel-lineup-title-sub {
    font-size: 1.5rem;
  }
}
/* ARCHX-style lineup: category visual + color cards (click → modal) */
.offeel-lineup-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offeel-lineup-listItem {
  margin-bottom: 48px;
}/*
.offeel-lineup-listItem--featured {
  background: #fff;
  padding: 20px 16px;
  overflow: visible;
}*/
.offeel-lineup-listItem:last-child {
  margin-bottom: 0;
}
.offeel-lineup-listHeading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px;
  text-align: center;
  line-height: 1.45;
  letter-spacing: 2px;
  color: #ffffff;
  background: var(--offeel-survey-green);
  padding: 10px;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
    .offeel-lineup-list{
        margin: 0 auto;
    }
  .offeel-lineup-listItem--featured .offeel-lineup-listHeading {
    font-size: clamp(28px, 2.3vw, 20px);
    padding: 20px 16px;
    margin-bottom: 20px;
  }
  .offeel-lineup-listHeading {
    font-size: 18px;
  }
}
.offeel-lineup-catImg {
  margin: 0 auto 20px;
  text-align: center;
  background-color: #fff;
  padding: 20px;
}
.offeel-lineup-listItem--featured .offeel-lineup-catImg {
  margin-bottom: 0;
  background-color: transparent;
  padding: 0 0 12px;
}
.offeel-lineup-catImg img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: inline-block;/*
  background: #ffffff;*/
  padding-bottom: 30px;
}/*
.offeel-lineup-catImg--featured img {
  max-width: min(520px, 88vw);
}
@media screen and (min-width: 768px) {
  .offeel-lineup-catImg--featured img {
    max-width: min(560px, 68%);
  }
}*/
.offeel-lineup-colorRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px 6%;
  list-style: none;
  margin: 0;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .offeel-lineup-listItem--featured {
    padding: 30px 30px 48px;
  }
  .offeel-lineup-listItem--featured .offeel-lineup-catImg {
    padding: 0 0 16px;
  }
  .offeel-lineup-listItem--featured .offeel-lineup-colorRow--pair {
    margin-top: -56px;
    padding: 0 16px 8px;
  }
  .offeel-lineup-colorRow {
    justify-content: center;
    gap: 20px 3%;
    padding: 0;
  }
  .offeel-lineup-catImg{
    padding: 30px;
  }
}
.offeel-lineup-colorRow--pair {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -80px;
}
.offeel-lineup-purchase {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 8px 8px;
}

.offeel-lineup-listItem--featured .offeel-lineup-purchase {
  margin-top: -48px;
  max-width: 100%;
  padding: 0;
}

.offeel-lineup-listItem--featured .offeel-lineup-colorRow--pair {
  margin-top: 0;
  padding: 0;
  max-width: none;
}
.offeel-lineup-listItem--featured .offeel-lineup-colorCard--dot {
  flex: 1 1 auto;
  min-width: 0;
  width: 42%;
  flex-direction: row;
}
.offeel-lineup-listItem--featured .offeel-lineup-colorRow--dots {
  flex-direction: row;
  align-items: stretch;
}
.offeel-lineup-swatchLabel {
  white-space: normal;
}
@media screen and (max-width: 767px) {
}
.offeel-lineup-colorRow--dots {
  gap: 16px 24px;
  align-items: flex-start;
  justify-content: center;
}
.offeel-lineup-colorCard--dot {
  flex: 0 0 auto;
  max-width: none;
  min-width: 0;
}
.offeel-lineup-swatchBtn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: auto;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: var(--offeel-text);
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: left;
}
.offeel-lineup-specBlock {
  margin-top: 12px;
  padding: 0 12px 4px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.offeel-lineup-specBlock__title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}
.offeel-lineup-specBlock__detail {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--offeel-muted);
}
.offeel-lineup-swatchColor {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.offeel-lineup-swatchBtn:hover {
  transform: translateY(-2px);
}
.offeel-lineup-swatchBtn:active {
  transform: translateY(0) scale(0.96);
}
.offeel-lineup-swatchBtn:focus-visible {
  outline: 2px solid var(--offeel-black);
  outline-offset: 3px;
}
.offeel-lineup-swatchDot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(0, 0, 0, 0.14);
}
.offeel-lineup-swatchDot--black {
  background: #1a1a1a;
}
.offeel-lineup-swatchDot--silver {
  background: linear-gradient(145deg, #f0f0f0 0%, #c4c4c4 45%, #909090 100%);
}
.offeel-lineup-swatchDot--brown {
  background: linear-gradient(145deg, #6b4a2e 0%, #4a331f 55%, #2d1f12 100%);
}
.offeel-lineup-swatchLabel {
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
  white-space: nowrap;
}
.offeel-lineup-swatchSpec {
  display: block;
  margin-top: 0;
  text-align: left;
  min-width: 0;
}
.offeel-lineup-swatchSpec-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}
.offeel-lineup-swatchSpec-detail {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--offeel-muted);
}
@media screen and (min-width: 768px) {
  .offeel-lineup-listItem--featured .offeel-lineup-purchase {
    margin-top: -56px;
    padding: 0 16px 16px;
  }
  .offeel-lineup-listItem--featured .offeel-lineup-colorRow--pair{
    max-width: 720px;
  }
  .offeel-lineup-swatchBtn {
    padding: 10px 12px;
  }
  .offeel-lineup-swatchLabel {
    font-size: 23px;
    white-space: normal;
  }
  .offeel-lineup-specBlock {
    margin-top: 16px;
  }
  .offeel-lineup-specBlock__title {
    font-size: 13px;
  }
  .offeel-lineup-specBlock__detail {
    font-size: 12px;
  }
  .offeel-lineup-swatchSpec-title {
    font-size: 13px;
  }
  .offeel-lineup-swatchSpec-detail {
    font-size: 12px;
  }
  .offeel-lineup-swatchDot {
    width: 30px;
    height: 30px;
  }
  .offeel-lineup-swatchColor{
    gap: 8px;
  }
  .offeel-lineup-swatchBtn{
    padding: 8px 10px;
  }
}
.offeel-lineup-colorCard {
  flex: 1 1 42%;
  min-width: 132px;
}
@media screen and (min-width: 768px) {
}
.offeel-lineup-colorBtn {
  display: block;
  gap: 10px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0 0 ;
  border: 1px solid var(--offeel-line);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offeel-lineup-colorBtn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.offeel-lineup-colorBtn:active {
  transform: scale(0.99);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.offeel-lineup-colorImg {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 10px;
  box-sizing: border-box;
}
.offeel-lineup-colorImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offeel-lineup-colorName {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  margin: 0;
  font-size: 13px;
  text-align: center;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .offeel-lineup-colorName {
    font-size: 20px;
    bottom: 12px;
    font-weight: 600;
  }
}
.offeel-lineup-colorPlus {
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.offeel-lineup-colorPlus::before,
.offeel-lineup-colorPlus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 12px;
  background: var(--offeel-black);
  transform: translate(-50%, -50%);
}
.offeel-lineup-colorPlus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.offeel-lineup-splitGrid {
  display: grid;
  gap: 40px 24px;
  grid-template-columns: 1fr;
}
.offeel-lineup-splitCell .offeel-lineup-catImg img {
  max-width: 220px;
}
.offeel-lineup-bottom-cta {
  margin: 40px auto 0;
}
@media screen and (min-width: 700px) {
  .offeel-lineup-splitGrid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 60px;
  }
  .offeel-lineup-bottom-cta {
    margin: 60px auto 0;
  }
}

/* ——— Modal ——— */
.offeel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
}
.offeel-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.offeel-modal {
  background: #fff;
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  padding: 36px 22px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.offeel-modal-overlay .offeel-modal {
  transform: translate3d(0, 22px, 0) scale(0.96);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}
.offeel-modal-overlay.is-open .offeel-modal {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  transition-delay: 0.04s;
}
.offeel-modal-sku {
  margin: 0 40px 6px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
}
.offeel-modal-size {
  margin: 0 40px 16px;
  font-size: 12px;
  color: var(--offeel-muted);
  text-align: center;
}
.offeel-modal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
  margin-top: 4px;
}
.offeel-modal-color-line {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid #CEC6B6;
  border-bottom: 1px solid #CEC6B6;
  width: 100%;
  padding: 16px 0 20px;
  box-sizing: border-box;
}
.offeel-modal-price-wrap {
  display: flex;
  width: 100%;
  padding: 3% 0;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid #CEC6B6;
  border-bottom: 1px solid #CEC6B6;
}
.offeel-modal-price-wrap.is-hidden {
  display: none;
}/*
.offeel-modal-price-value {
  font-size: 15px;
  font-weight: 700;
}
.offeel-modal-price-tax {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--offeel-muted);
  margin-top: 4px;
}*/
.offeel-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--offeel-text);
  border-radius: 8px;
  transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
}
.offeel-modal-close:hover {
  opacity: 0.72;
  background-color: rgba(0, 0, 0, 0.05);
}
.offeel-modal-close:active {
  transform: scale(0.9);
  opacity: 1;
}
.offeel-modal-ph {
  background: var(--offeel-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--offeel-muted);
  margin-bottom: 16px;
}
.offeel-modal-ph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}
.offeel-modal dl {
  margin: 0;
  font-size: 14px;
}
.offeel-modal dt {
  font-weight: 700;
  margin-top: 10px;
  color: var(--offeel-muted);
  font-size: 12px;
}
.offeel-modal dd {
  margin: 4px 0 0;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .offeel-lineup-listHeading{
    font-size: 28px;
  }
  .offeel-modal-sku {
    font-size: 20px;
  }
  .offeel-modal {
    padding-bottom: 40px;
  }
  .offeel-modal-footer {
    flex-direction: column;
    justify-content: center;
  }
  .offeel-modal-color-line {
    width: 100%;
    padding: 20px 0 24px;
    font-size: 20px;
    max-width: 438px;
  }
}

/* ——— Scroll reveal + motion preferences (product / shared) ——— */
.offeel-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  --reveal-duration: 1.35s;
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.offeel-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .offeel-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .offeel-modal-overlay .offeel-modal,
  .offeel-modal-overlay.is-open .offeel-modal {
    transform: none;
    opacity: 1;
    transition: none;
    transition-delay: 0s;
  }
  .offeel-lineup-swatchBtn:active,
  .offeel-lineup-colorBtn:active,
  .offeel-btn-rect:active,
  .offeel-modal-close:active {
    transform: none;
  }
}

/* ——— Survey page ——— */
.offeel-survey-topbar {
  background: var(--offeel-survey-green);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 16px;
}

.offeel-survey-hero {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.offeel-survey-hero-ph {
  aspect-ratio: 3 / 4;
  max-height: 420px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--offeel-muted);
  margin: 0 auto;
}

/* Survey hero: yellow callout overlaps image — needs block img + stronger negative margin */
.offeel-hero--survey {
  position: relative;
  max-width: 1080px;
}

.offeel-hero--survey .offeel-survey-callout {
  display: block;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: -92px auto 32px; /* 60px higher than default -32px overlap */
}

.offeel-survey-callout {
  background: var(--offeel-accent-yellow);
  color: var(--offeel-text);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.55;
  text-align: center;
  padding: 16px 18px;
  margin: -32px 16px 32px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: inline-flex;
    border-radius: 40px;
    padding: 30px;
}

.offeel-survey-section {
  max-width: 960px;
  margin: 0 auto;
}
.offeel-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.offeel-survey-text {
  position: relative;
  z-index: 1;
}
.offeel-survey-text > * {
  position: relative;
  z-index: 1;
}/*
.offeel-survey-section > .offeel-box .offeel-donut-label {
  color: var(--offeel-infographic-green);
}
.offeel-survey-section .offeel-chart-grid .offeel-donut-label {
  color: var(--offeel-infographic-green);
}*/
.offeel-survey-q {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.5;
  color: var(--offeel-text);
}
.offeel-survey-q__number{
  background-color: var(--offeel-survey-green);
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  padding: 8px;
  margin-right: 8px;
  line-height: 1;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  aspect-ratio: 1 / 1;
}
.offeel-chart-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
  justify-items: center;
}
.offeel-donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.offeel-donut {
  --size: 280px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.offeel-donut::after {
  content: "";
  position: absolute;
  inset: 22%;
  background: #fff;
  border-radius: 50%;
}
.offeel-donut-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--offeel-survey-green);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: left;
  max-width: 300px;
}
.offeel-donut-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  z-index: 1;
}

@media screen and (min-width: 700px) {
  .offeel-chart-grid--split {
    grid-template-columns: 1fr 1fr;
  }
  .offeel-survey-callout {
    font-size: 42px;
    border-radius: 60px;
  }
  .offeel-box {
    gap: 40px;
    flex-direction: row;
    align-items: center;
    --offeel-line-junction: 74%;
    padding-bottom: 18px;
  }
  /* 横並び時のみ：テキスト＋ドーナツ全体の下に横線 + ドーナツ方向へ向ける斜線 */
  .offeel-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--offeel-line-junction);
    height: 2px;
    border-radius: 1px;
    background: var(--offeel-infographic-green);
    z-index: 0;
    pointer-events: none;
  }
  .offeel-box::after {
    content: "";
    position: absolute;
    left: var(--offeel-line-junction);
    bottom: 0;
    width: clamp(80px, 14vw, 160px);
    height: 2px;
    border-radius: 1px;
    background: var(--offeel-infographic-green);
    transform: rotate(-34deg);
    transform-origin: left center;
    z-index: 99;
    pointer-events: none;
  }
  .offeel-survey-q {
    font-size: 30px;
    text-align: left;
  }
  .offeel-donut-label {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 970px) {
  .offeel-survey-q {
    font-size: 36px;
  }
  .offeel-donut-label {
    font-size: 24px;
    max-width: 100%;
  }
}
.offeel-donut--66 {
  background: conic-gradient(
    var(--offeel-infographic-yellow) 0 66%,
    var(--offeel-infographic-gray) 66% 100%
  );
}
.offeel-donut.offeel-donut--66 .offeel-donut-pct,
.offeel-donut--74 .offeel-donut-pct,
.offeel-donut--maint .offeel-donut-pct {
  color: var(--offeel-infographic-green);
}
.offeel-donut--74 {
  background: conic-gradient(
    var(--offeel-infographic-yellow) 0 74%,
    var(--offeel-infographic-gray) 74% 100%
  );
}
.offeel-donut--maint {
  background: conic-gradient(
    var(--offeel-infographic-orange) 0 21%,
    var(--offeel-infographic-yellow) 21% 70%,
    var(--offeel-infographic-green) 70% 93%,
    var(--offeel-infographic-gray) 93% 100%
  );
}
.offeel-survey-section .offeel-chart-grid .offeel-legend:not(.offeel-legend--maint) span:nth-child(1) i {
  background: var(--offeel-infographic-yellow);
}
.offeel-survey-section .offeel-chart-grid .offeel-legend:not(.offeel-legend--maint) span:nth-child(2) i {
  background: var(--offeel-infographic-gray);
}
.offeel-survey-section .offeel-chart-grid .offeel-legend--maint span:nth-child(1) i {
  background: var(--offeel-infographic-orange);
}
.offeel-survey-section .offeel-chart-grid .offeel-legend--maint span:nth-child(2) i {
  background: var(--offeel-infographic-yellow);
}
.offeel-survey-section .offeel-chart-grid .offeel-legend--maint span:nth-child(3) i {
  background: var(--offeel-infographic-green);
}
.offeel-survey-section .offeel-chart-grid .offeel-legend--maint span:nth-child(4) i {
  background: var(--offeel-infographic-gray);
}

.offeel-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  font-size: 12px;
  margin-top: 8px;
}
.offeel-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.offeel-legend i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}

/* Full-bleed survey bands (gray page → yellow insight → gray scenes) */
.offeel-survey-secondary {
  margin: 0;
  padding: 0;
}

.offeel-survey-secondary__divider,
.offeel-survey-secondary__leadBand,
.offeel-survey-secondary__scenesBand {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}

.offeel-survey-secondary__divider {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: clamp(22px, 4.5vw, 34px);
  padding: 0 1rem;
  color: var(--offeel-text, #1a1a1a);
}

.offeel-survey-secondary__dividerSvg {
  display: block;
  width: min(760px, 100%);
  height: 100%;
}

.offeel-survey-secondary__dividerSvg polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.offeel-survey-secondary__leadBand {
  margin-top: -1px;
  background: var(--offeel-survey-green);
  padding: clamp(2.25rem, 6vw, 3.25rem) 0 clamp(2.25rem, 6vw, 3.25rem);
  clip-path: polygon(
    0 0,
    calc(50% - 2.75rem) 0,
    50% clamp(1.25rem, 3vw, 1.75rem),
    calc(50% + 2.75rem) 0,
    100% 0,
    100% 100%,
    0 100%
  );
}

.offeel-survey-secondary__scenesBand {
  background: #e6e6e6;
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 8vw, 5rem);
}

.offeel-survey-secondary__scenesBand:not(.offeel-survey-secondary__scenesBand--cta) {
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.offeel-survey-secondary__leadBand--afterScenes {
  margin-top: 0;
}

.offeel-survey-secondary__scenesBand--cta {
  padding-top: clamp(1.75rem, 5vw, 2.75rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.offeel-survey-secondary__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.offeel-survey-secondary__leadBand .offeel-survey-insight {
  margin: 0;
  padding: 0;
  max-width: none;
}

.offeel-survey-secondary__leadBand .offeel-survey-insight__card {
  background: transparent;
  padding: 0;
}

.offeel-survey-secondary__scenesBand .offeel-survey-insight {
  margin-top: 0;
  margin-bottom: 1.5rem;
}


.offeel-survey-secondary__note {
  margin-bottom: 32px;
}

.offeel-survey-secondary__nav {
  margin-bottom: 0;
}

.offeel-survey-insight {
  --offeel-insight-ink: var(--offeel-text, #1a2b36);
  --offeel-insight-deep: #0d47a1;
  max-width: 920px;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  text-align: center;
}

.offeel-survey-insight__card {
  position: relative;
  color: #ffffff;
}

.offeel-survey-insight__lead {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.05rem, 3.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
}

.offeel-survey-insight__mark {
  display: inline;
  padding: 0 0.1em;
  color: #fcff64;
  background: linear-gradient(transparent 62%, rgba(19, 101, 42, 0.75) 62%);
}

.offeel-survey-insight__arrow {
  display: flex;
  justify-content: center;
  margin: clamp(0.65rem, 2.5vw, 1rem) 0 clamp(0.35rem, 1.5vw, 0.5rem);
}

.offeel-survey-insight__equation {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  margin: 0;
  padding: clamp(0.85rem, 3vw, 1.25rem) clamp(0.75rem, 3vw, 1.5rem);
  font-size: clamp(1.1rem, 4.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--offeel-insight-ink);
  border-radius: 30px;
  background: var(--offeel-accent-yellow);
  text-align: center;
}

.offeel-survey-insight__eq-equals {
  flex: 0 0 auto;
  font-weight: 900;
  font-size: clamp(1.35rem, 5vw, 2rem);
  line-height: 1;
  color: var(--offeel-insight-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.offeel-survey-insight__eq-line {
  flex: 1 1 12rem;
  min-width: min(100%, 12rem);
  text-align: center;
}

.offeel-survey-insight__eq-line--accent {
  color: var(--offeel-insight-deep);
}

@media screen and (min-width: 640px) {
  .offeel-survey-secondary__scenesBand .offeel-survey-insight {
    margin-bottom: 3.5rem;
  }
  .offeel-survey-insight__equation {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .offeel-survey-insight__eq-line {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media screen and (min-width: 980px) {
  .offeel-survey-secondary__inner{
    padding: 0;
  }
}

.offeel-survey-arrow-wrap {
  display: flex;
  justify-content: center;
  margin: 4px 0 12px;
}

/* Down arrow: rectangle stem + triangle head (no SVG) */
.offeel-survey-arrow {
  --offeel-arrow-color: #3b6583;
  --offeel-arrow-head-w: clamp(3.25rem, 15vw, 12rem);
  --offeel-arrow-stem-w: calc(var(--offeel-arrow-head-w) * 0.4);
  --offeel-arrow-stem-h: calc(var(--offeel-arrow-head-w) * 0.2);
  --offeel-arrow-head-h: calc(var(--offeel-arrow-head-w) * 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--offeel-arrow-head-w);
}

.offeel-survey-arrow__stem {
  display: block;
  width: var(--offeel-arrow-stem-w);
  height: var(--offeel-arrow-stem-h);
  background: var(--offeel-arrow-color);
  flex-shrink: 0;
}

.offeel-survey-arrow__head {
  display: block;
  width: var(--offeel-arrow-head-w);
  height: var(--offeel-arrow-head-h);
  background: var(--offeel-arrow-color);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  flex-shrink: 0;
}

.offeel-survey-arrow.offeel-survey-arrow--insight {
  --offeel-arrow-color: var(--offeel-insight-deep);
  --offeel-arrow-head-w: clamp(2.75rem, 12vw, 5.5rem);
}

.offeel-survey-subhead {
  font-size: 1rem;
  font-weight: 800;
  margin: 32px 0 20px;
  line-height: 1.5;
}

.offeel-illus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media screen and (min-width: 640px) {
  .offeel-illus-grid {/*
    grid-template-columns: repeat(4, 1fr);*/
    gap: 40px;
  }
}

.offeel-illus-cell {
  text-align: center;
}

.offeel-illus-ph {
  aspect-ratio: 1;
  background: #eee;
  border: 1px solid var(--offeel-line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--offeel-muted);
  margin-bottom: 8px;
}

.offeel-illus-count {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.offeel-illus-count span {
  font-size: 30px;
  font-weight: 700;
  margin-right: 4px;
}
.offeel-illus-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 0;
  color: var(--offeel-muted);
}

.offeel-survey-result {
  font-size: 28px;
  font-weight: 700;
  color: var(--offeel-text);
  text-align: center;
  line-height: 1.6;
  margin-top: 40px;
  margin-bottom: 40px;
}

.offeel-survey-cta-wide {
  color: var(--offeel-survey-green);
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
}

.offeel-breadcrumb {
  font-size: 13px;
  color: var(--offeel-muted);
  padding: 16px 0 0;
}
.offeel-breadcrumb a {
  color: var(--offeel-text);
  text-decoration: underline;
}

body.offeel-modal-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media screen and (min-width: 768px) {
  .offeel-survey-cta-wide{
    font-size: 20px;
  }
  .offeel-illus-count{
    font-size: 20px;
  }
  .offeel-illus-count span{
    font-size: 40px;
  }
  .offeel-illus-text{
    font-size: 18px;
  }
}
