/* ============================================================
   和室リフォーム本舗 80周年 Instagram Campaign
   MUJI-like minimal stylesheet (prefix: wr-)
   HTML / JS 変更不要
   ============================================================ */

:root {
  --wr-ink: #333333;
  --wr-ink-2: #555555;
  --wr-paper: #f7f6f2;
  --wr-paper-2: #efeee9;
  --wr-beige: #d8d3c8;
  --wr-wood: #8c7a66;
  --wr-white: #ffffff;
  --wr-muted: #77736c;
  --wr-line: #dedbd3;
  --wr-maxw: 1120px;
  --wr-radius: 2px;
  --wr-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --wr-font-serif: "Noto Serif JP", serif;
  --wr-font-sans: "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--wr-paper);
}

body {
  margin: 0;
  font-family: var(--wr-font-sans);
  color: var(--wr-ink);
  background: var(--wr-paper);
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Reveal animation ---------- */
.wr-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wr-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Section head ---------- */
.wr-section__head {
  text-align: left;
  margin-bottom: 48px;
}

.wr-section__en {
  font-family: var(--wr-font-sans);
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--wr-muted);
  margin: 0 0 8px;
}

.wr-section__title {
  font-family: var(--wr-font-sans);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.wr-section__title::after { display: none; }

.wr-section__note {
  margin: 16px 0 0;
  display: inline-block;
  background: transparent;
  color: var(--wr-muted);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0;
  border-radius: 0;
}

/* ---------- Header ---------- */
.wr-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(222, 219, 211, 0.8);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.wr-header.is-scrolled {
  background: rgba(247, 246, 242, 0.98);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
}

.wr-header__inner {
  max-width: var(--wr-maxw);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.wr-header__logo img {
  height: 32px;
  width: auto;
}

.wr-header__nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}

.wr-header__nav a {
  color: var(--wr-ink-2);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  position: relative;
  transition: color 0.2s ease;
}

.wr-header__nav a::after { display: none; }
.wr-header__nav a:hover { color: #000; }

.wr-header__cta {
  background: var(--wr-ink);
  color: var(--wr-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 9px 18px;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.wr-header__cta:hover {
  transform: none;
  background: var(--wr-ink);
  opacity: 0.78;
}

/* ---------- Hero ---------- */
.wr-hero {
  position: relative;
  min-height: 88vh;
  background-image: url("images/hero-pc.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: var(--wr-white);
}

.wr-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 30, 30, 0.58) 0%, rgba(30, 30, 30, 0.28) 52%, rgba(30, 30, 30, 0.08) 100%);
}

.wr-hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wr-maxw);
  margin: 0 auto;
  padding: 150px 22px 100px;
}

.wr-hero__eyebrow {
  font-family: var(--wr-font-sans);
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 400;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.wr-hero__badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--wr-white);
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 1px;
  margin-bottom: 24px;
}

.wr-hero__title {
  font-family: var(--wr-font-sans);
  font-weight: 500;
  line-height: 1.45;
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  margin: 0 0 24px;
  text-shadow: none;
  max-width: 760px;
}

.wr-hero__title span { display: block; }
.wr-hero__title span:first-child { color: var(--wr-white); }

.wr-hero__lead {
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  margin: 0 0 28px;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.88);
}

.wr-hero__tags {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.wr-hero__tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 7px 12px;
  border-radius: 1px;
  font-weight: 400;
  font-size: 0.78rem;
}

.wr-hero__period {
  margin: 24px 0 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.wr-hero__limit {
  display: inline-block;
  background: rgba(255, 255, 255, 0.94);
  color: var(--wr-ink);
  font-family: var(--wr-font-sans);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 1px;
  box-shadow: none;
}

.wr-hero__scroll {
  position: absolute;
  left: 22px;
  bottom: 24px;
  transform: none;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.wr-hero__scroll span {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  animation: none;
}

/* ---------- Marquee banner ---------- */
.wr-banner {
  background: #e8e5de;
  overflow: hidden;
  padding: 12px 0;
  border: 0;
}

.wr-banner__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: wrMarquee 24s linear infinite;
}

.wr-banner__track span {
  font-family: var(--wr-font-sans);
  color: #8a857d;
  letter-spacing: 0.18em;
  font-weight: 400;
  font-size: 0.78rem;
}

@keyframes wrMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.wr-about {
  max-width: var(--wr-maxw);
  margin: 0 auto;
  padding: 110px 22px;
}

.wr-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.wr-about__text p { margin: 0 0 22px; }
.wr-about__text strong { color: var(--wr-ink); font-weight: 600; }

.wr-about__meta {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--wr-line);
}

.wr-about__meta li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--wr-line);
  font-size: 0.9rem;
}

.wr-about__meta span {
  flex: 0 0 54px;
  font-family: var(--wr-font-sans);
  font-weight: 500;
  color: var(--wr-muted);
}

.wr-about__figure {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.wr-about__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-about__figure figcaption {
  font-size: 0.7rem;
  color: var(--wr-muted);
  padding: 8px 0 0;
  background: transparent;
}

/* ---------- Gift ---------- */
.wr-gift {
  background: #e9e6df;
  color: var(--wr-ink);
  padding: 110px 22px;
  position: relative;
}

.wr-gift .wr-section__title { color: var(--wr-ink); }

.wr-gift__ribbon {
  display: block;
  width: max-content;
  margin: 0 0 24px;
  background: transparent;
  color: var(--wr-muted);
  font-family: var(--wr-font-sans);
  letter-spacing: 0.16em;
  font-weight: 400;
  font-size: 0.7rem;
  padding: 0;
  border-radius: 0;
}

.wr-gift > .wr-section__head,
.wr-gift__ribbon,
.wr-gift__card {
  max-width: var(--wr-maxw);
  margin-left: auto;
  margin-right: auto;
}

.wr-gift__card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.wr-gift__img {
  margin: 0;
  background: var(--wr-paper);
  border-radius: 0;
  padding: 26px;
}

.wr-gift__img img {
  width: 100%;
  object-fit: contain;
}

.wr-gift__tag {
  color: var(--wr-muted);
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 400;
  margin: 0 0 10px;
}

.wr-gift__name {
  font-family: var(--wr-font-sans);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  line-height: 1.5;
  margin: 0 0 18px;
}

.wr-gift__desc {
  font-size: 0.92rem;
  margin: 0 0 22px;
  color: var(--wr-ink-2);
}

.wr-gift__points {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px solid rgba(120, 115, 108, 0.24);
}

.wr-gift__points li {
  position: relative;
  padding: 10px 0;
  margin: 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(120, 115, 108, 0.24);
}

.wr-gift__points li::before { display: none; }

.wr-gift__note {
  font-size: 0.7rem;
  color: var(--wr-muted);
  margin: 0;
}

/* ---------- Before / After ---------- */
.wr-ba {
  max-width: var(--wr-maxw);
  margin: 0 auto;
  padding: 110px 22px;
}

.wr-ba__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wr-ba__pane {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: 4 / 3;
  background: #ddd;
}

.wr-ba__pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-ba__label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--wr-font-sans);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  padding: 5px 10px;
  border-radius: 1px;
  color: var(--wr-white);
}

.wr-ba__label--before,
.wr-ba__label--after { background: rgba(51, 51, 51, 0.78); }

.wr-ba__caption {
  text-align: left;
  color: var(--wr-muted);
  margin: 18px 0 0;
  font-size: 0.82rem;
}

/* ---------- Steps ---------- */
.wr-step {
  background: var(--wr-white);
  padding: 110px 22px;
}

.wr-step > .wr-section__head,
.wr-step__list {
  max-width: var(--wr-maxw);
  margin-left: auto;
  margin-right: auto;
}

.wr-step__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--wr-line);
  border-left: 1px solid var(--wr-line);
}

.wr-step__item {
  background: transparent;
  border-radius: 0;
  padding: 28px 24px 32px;
  border: 0;
  border-right: 1px solid var(--wr-line);
  border-bottom: 1px solid var(--wr-line);
  box-shadow: none;
}

.wr-step__no {
  font-family: var(--wr-font-sans);
  color: var(--wr-muted);
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.wr-step__item h3 {
  font-family: var(--wr-font-sans);
  font-weight: 500;
  font-size: 1rem;
  margin: 14px 0 10px;
}

.wr-step__item p {
  font-size: 0.84rem;
  margin: 0;
  color: var(--wr-ink-2);
}
.wr-step__img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  margin: 0 0 24px;
}

/* ---------- Hashtag ---------- */
.wr-hash {
  padding: 90px 22px;
  background: var(--wr-paper);
}

.wr-hash__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.wr-hash__lead {
  font-family: var(--wr-font-sans);
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 16px;
}

.wr-hash__box {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 3px solid #B51214;
  border-radius: 0;
  overflow: hidden;
  background: var(--wr-white);
}

.wr-hash__box code {
  flex: 1;
  padding: 16px 18px;
  font-family: var(--wr-font-sans);
  font-weight: 400;
  font-size: clamp(0.82rem, 2.6vw, 0.96rem);
  text-align: left;
  align-self: center;
  word-break: break-all;
}

.wr-hash__copy {
  border: none;
  border-left: 1px solid var(--wr-line);
  background: #B51214;
  color:#fff;
  font-weight: 500;
  padding: 0 24px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.wr-hash__copy:hover { background: #e6e3dc; }
.wr-hash__copy.is-done { background: #B51214; color:#fff; }

.wr-hash__hint {
  font-size: 0.76rem;
  color: var(--wr-muted);
  margin: 12px 0 0;
}

/* ---------- CTA ---------- */
.wr-cta {
  background: #4b4a46;
  color: var(--wr-white);
  padding: 110px 22px;
}

.wr-cta__inner {
  max-width: var(--wr-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 64px;
  align-items: center;
}

.wr-cta__en {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 400;
  margin: 0 0 12px;
}

.wr-cta__title {
  font-family: var(--wr-font-sans);
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.5;
  margin: 0 0 18px;
}

.wr-cta__desc {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.75);
}

.wr-cta__btn {
  display: inline-block;
  background: var(--wr-white);
  color: var(--wr-ink);
  text-decoration: none;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 1px;
  transition: opacity 0.2s ease;
}

.wr-cta__btn:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.82;
}

.wr-cta__phone {
  display: flex;
  justify-content: center;
}

.wr-cta__screen {
  position: relative;
  width: 210px;
  aspect-ratio: 9 / 16;
  border: 6px solid #262626;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  background: #000;
}

.wr-cta__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-cta__ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.wr-cta__handle {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
}

.wr-cta__follow {
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  font-size: 0.64rem;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 2px;
}

/* ---------- Feed ---------- */
.wr-feed {
  max-width: var(--wr-maxw);
  margin: 0 auto;
  padding: 110px 22px;
}

.wr-feed__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.wr-feed__item {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #ddd;
}

.wr-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.wr-feed__item:hover img {
  transform: none;
  opacity: 0.82;
}

/* ---------- Rules ---------- */
.wr-rule {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 22px 110px;
}

.wr-rule__table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border-top: 1px solid var(--wr-line);
}

.wr-rule__table th,
.wr-rule__table td {
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--wr-line);
  font-size: 0.88rem;
  vertical-align: top;
}

.wr-rule__table th {
  width: 130px;
  background: transparent;
  color: var(--wr-ink);
  font-family: var(--wr-font-sans);
  font-weight: 500;
}

.wr-rule__foot {
  text-align: left;
  color: var(--wr-muted);
  font-size: 0.76rem;
  margin: 18px 0 0;
}

/* ---------- Footer ---------- */
.wr-footer {
  background: #e8e5de;
  color: var(--wr-ink);
  text-align: center;
  padding: 44px 22px;
  border-top: 1px solid var(--wr-line);
}

.wr-footer__logo {
  height: 36px;
  width: auto;
  margin: 0 auto 14px;
}

.wr-footer__copy {
  font-size: 0.72rem;
  color: var(--wr-muted);
  margin: 0;
}

/* ---------- Toast ---------- */
.wr-toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 12px);
  background: #3d3d3b;
  color: var(--wr-white);
  padding: 10px 20px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 80;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.wr-toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .wr-about__grid,
  .wr-gift__card,
  .wr-cta__inner {
    grid-template-columns: 1fr;
  }

  .wr-step__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .wr-cta__phone { order: -1; }
  .wr-feed__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wr-header__nav { display: none; }
  .wr-header__cta { margin-left: auto; }

  .wr-hero {
    min-height: 82vh;
    background-image: url("images/hero-sp.png");
    background-position: center;
  }

  .wr-hero__veil {
    background: rgba(30, 30, 30, 0.48);
  }

  .wr-hero__body {
    padding: 120px 20px 82px;
  }

  .wr-hero__scroll { left: 20px; }
  .wr-ba__stage { grid-template-columns: 1fr; }
  .wr-step__list { grid-template-columns: 1fr; }
  .wr-rule__table th { width: 92px; }
}


.wr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.wr-campaign-hero {
  position: relative;

  overflow: hidden;
  color: #003f7f;
  background: url("images/hero-bg.png") no-repeat center top / cover;
  font-family: Arial, "Noto Sans JP", sans-serif;
  line-height: normal;
  letter-spacing: normal;
}

.wr-campaign-hero img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.wr-campaign-header {
  position: relative;
  z-index: 10;
  height: 85px;
  padding: 35px 38px 0;
}

.wr-campaign-logo {
  width: 195px !important;
}

.wr-campaign-kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 2200px;
  min-height: calc(130svh - 5vw);
  margin: 0 auto;
  padding-right: 5%;
}

.wr-campaign-kv::before {
  position: absolute;
  z-index: 0;
  top: max(calc(50% - 63.9vw), -135px);
  left: max(calc(50% - 67.9vw), -290px);
  width: min(141.66vw, 2600px);
  height: min(49.79vw, 914px);
  content: "";
  pointer-events: none;
  background: url("images/bg_flag.png") no-repeat center / contain;
}

.wr-campaign-kv__title,
.wr-campaign-kv__product {
  position: relative;
  z-index: 1;
  height: 50vh;
}

.wr-campaign-kv__title {
  width: 60%;
  max-width: 1127px;
  transform-origin: center bottom;
  animation: wrCampaignTitleIn 650ms cubic-bezier(.2, .8, .2, 1) both;
}

.wr-campaign-kv__title h1 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: 1;
}

.wr-campaign-kv__product {
  width: 40%;
}

.wr-campaign-kv__goods {
  position: relative;
  z-index: 2;
  top: -6.5vw;
	left: -2vw;
  display: block;
  width: min(16.59vw, 380px);
  animation: wrCampaignBadgeIn 700ms 180ms cubic-bezier(.2, .8, .2, 1) both;
}

.wr-campaign-kv__machines {
  position: absolute;
  z-index: 1;
  right: max(calc(50% - 35vw), -195px);
  bottom: max(calc(50vh - 40vw), -130px);
  display: block;
  width: min(50.34vw, 1083px);
  animation: wrCampaignMachineIn 800ms 260ms ease-out both;
}




@keyframes wrCampaignTitleIn {
  from { opacity: 0; transform: translateY(30px) scale(.75); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wrCampaignBadgeIn {
  from { opacity: 0; transform: scale(0) rotate(-180deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes wrCampaignMachineIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 850px) {

  /* ========================================
     スマホ：キャンペーンヒーロー全体
     固定ヘッダーに隠れないよう上部を確保
     ======================================== */
  .wr-campaign-hero {
    position: relative;

    /* 固定されている wr-header の高さ分を確保 */
    padding-top: 61px;

    overflow: hidden;

    background-image:
      url("images/hero-bg.png");

    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }


  /* ========================================
     現在のHTMLには
     .wr-campaign-header は存在しないため
     実質使用しない
     ======================================== */
  .wr-campaign-header {
    display: none;
  }

  .wr-campaign-logo {
    width: 100px !important;
    height: auto;
  }


  /* ========================================
     KV全体
     ======================================== */
.wr-campaign-kv {
  position: relative;

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

  width: 100%;
  margin: 0 auto;
  padding: 0;

  min-height: clamp(
    610px,
    calc(78svh - 61px),
    720px
  );
}


  /* ========================================
     背景の旗
     ======================================== */
  .wr-campaign-kv::before {
    position: absolute;

    inset: -69.56vw -270% auto -200%;

    width: max(264.8vw, 993px);
    height: max(93.06vw, 349px);

    margin: auto;

    pointer-events: none;
  }


  /* ========================================
     タイトル・商品共通
     ======================================== */
  .wr-campaign-kv__title,
  .wr-campaign-kv__product {
    position: relative;

    width: 100%;
    height: auto;
  }


  /* ========================================
     100周年記念キャンペーン タイトル
     ======================================== */
  .wr-campaign-kv__title {
    left: auto;

    width: 100%;

    max-width: none;

    margin: 0 auto;

    padding: 10px 0 0;

    overflow: visible;
  }


  .wr-campaign-kv__title h1 {
    display: block;

    width: 100%;

    margin-top:50px ;
    padding: 0;

    line-height: 1;
  }


  .wr-campaign-kv__title h1 img {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;

    margin: 0 auto;

    object-fit: contain;
  }


  /* ========================================
     グッズ・機械エリア
     ======================================== */
  .wr-campaign-kv__product {
    position: relative;

    width: 100%;

    /*
      タイトルとの間隔
    */
    margin-top: 9%;

    padding: 0;

    overflow: visible;
  }


  /* ========================================
     左側のグッズ画像
     少し上へ
     ======================================== */
  .wr-campaign-kv__goods {
    position: relative;
    z-index: 2;
    display: block;

    left: 4vw;
    top: -50px;
    right: auto;
    bottom: auto;
    width: max(25.6vw, 150px);
    margin: 0;
  }


  .wr-campaign-kv__goods img {
    display: block;

    width: 100%;
    max-width: none;

    height: auto;
  }


  /* ========================================
     右側・機械画像
     少し下へ
     ======================================== */
  .wr-campaign-kv__machines {
    position: absolute;

    z-index: 1;

    /*
      PC用rightを完全解除
    */
    right: auto;

    /*
      スマホ左位置
    */
    left: min(13vw, 38px);

    /*
      元 -8vw → -12vw
      数値を小さくするほど下へ行く
    */
    bottom: -12vw;

    top: auto;

    display: block;

    width: max(79.63vw, 260px);

    margin: 0;
  }


  .wr-campaign-kv__machines img {
    display: block;

    width: 100%;
    max-width: none;

    height: auto;
  }
.wr-step__img {
    display: block;
    width: calc(100% + 48px);
    max-width: none;
    height: auto;
    margin: -24px -24px 24px;
  }
	
}
@media (prefers-reduced-motion: reduce) {
  .wr-campaign-kv__title,
  .wr-campaign-kv__goods,
  .wr-campaign-kv__machines {
    animation: none;
  }
}

