.rough-page {
  --rough-gold: #b58a2f;
  --rough-gold-dark: #7b5a1f;
  --rough-gold-deep: #5f4315;
  --rough-gold-soft: #fbf5e7;
  --rough-gold-pale: #fffaf0;
  --rough-orange: #f37200;
  --rough-orange-dark: #bf5200;
  --rough-text: #312e28;
  --rough-muted: #625d54;
  --rough-border: #e4d8bc;
  color: var(--rough-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
}
.rough-page img { max-width: 100%; height: auto; }
.rough-page a { color: inherit; }
.rough-page, .rough-page * { box-sizing: border-box; }

.rough-breadcrumb {
  border-top: 1px solid #edf1ee;
  border-bottom: 1px solid #e0e7e2;
  background: #fff;
}
.rough-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 9px;
  width: min(calc(100% - 40px), 1160px);
  min-height: 38px;
  margin: 0 auto;
  color: #687169;
  font-size: 12px;
}

.rough-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1160px);
  margin: 0 auto;
  padding: 26px 0 50px;
}

.rough-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(0, 1.38fr);
  grid-template-rows: 1fr;
  height: 260px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #ddc990;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(90, 66, 20, .12);
}
.rough-hero__copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px 24px 24px;
  background: linear-gradient(112deg, rgba(255,255,255,.99) 0%, rgba(255,250,238,.99) 100%);
}
.rough-eyebrow {
  margin: 0 0 6px;
  color: var(--rough-orange);
  font-size: 16px;
  font-weight: 800;
}
.rough-hero h2 {
  margin: 0;
  color: var(--rough-gold-deep);
  font-size: clamp(29px, 2.9vw, 37px);
  line-height: 1.3;
  letter-spacing: .005em;
}
.rough-hero__lead {
  margin: 9px 0 0;
  color: var(--rough-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}
.rough-hero__media {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  height: 260px;
  min-height: 0;
  overflow: hidden;
  background: #fffaf0;
}
.rough-hero__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255,250,238,.99) 0%,
    rgba(255,250,238,.86) 28%,
    rgba(255,250,238,.42) 58%,
    rgba(255,250,238,0) 100%
  );
}
.rough-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% 47%;
  transform: scaleX(-1);
}
.rough-hero__methods {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1.22fr .92fr;
  gap: 10px;
  padding: 0 28px 18px;
}
.rough-method-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}
.rough-method-link--primary {
  color: #fff;
  background: linear-gradient(180deg, #d5ad50 0%, #a97822 100%);
  box-shadow: 0 6px 14px rgba(117, 82, 20, .22);
}
.rough-method-link--secondary {
  border: 2px solid var(--rough-orange);
  color: var(--rough-orange-dark);
  background: #fff;
}

.rough-section {
  margin-top: 24px;
  padding: 34px;
  border: 1px solid rgba(226,213,181,.96);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 9px 25px rgba(91,67,23,.08);
}
.rough-section-heading {
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 6px solid var(--rough-gold);
}
.rough-section-heading p {
  margin: 0 0 3px;
  color: var(--rough-orange-dark);
  font-size: 16px;
  font-weight: 800;
}
.rough-section-heading h2 {
  margin: 0;
  color: #393229;
  font-size: 30px;
  line-height: 1.4;
}
.rough-section-heading--center {
  padding: 0;
  border-left: 0;
  text-align: center;
}
.rough-section-heading--center::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin: 13px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rough-gold), var(--rough-orange));
}
.rough-section-note {
  color: var(--rough-muted) !important;
  font-size: 15px !important;
  font-weight: 650 !important;
}

.rough-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.rough-overview-card {
  display: flex;
  min-width: 0;
  min-height: 440px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dec78d;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
  box-shadow: 0 6px 17px rgba(99,72,24,.07);
}
.rough-overview-card--large { box-shadow: 0 9px 22px rgba(120,86,25,.11); }
.rough-overview-card__visual {
  display: flex;
  min-height: 168px;
  align-items: center;
  justify-content: center;
  padding: 22px 20px 8px;
}
.rough-overview-card__icon-disc {
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border-radius: 50%;
}
.rough-overview-card__icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rough-overview-card__header {
  min-height: 118px;
  padding: 7px 20px 17px;
  text-align: center;
}
.rough-overview-card__header h2 {
  margin: 0;
  color: #342b20;
  font-size: 20px;
  line-height: 1.5;
}
.rough-overview-card__header h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--rough-gold);
}
.rough-card-kicker {
  margin: 0 0 4px !important;
  color: var(--rough-gold-dark) !important;
  font-size: 12px;
  font-weight: 800 !important;
}
.rough-overview-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 0 20px 22px;
}
.rough-overview-card__body p,
.rough-overview-card__body ul {
  margin: 0;
  padding: 15px 17px;
  border-radius: 11px;
  color: var(--rough-muted);
  background: #fff9ee;
  font-weight: 700;
}
.rough-overview-card__body ul {
  padding-left: 2.25em;
}

/* v9: 貴金属専用コンテンツ */
.rough-section--metals {
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(255,248,231,.98) 100%);
}
.rough-metals-intro {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.5fr);
  gap: 28px;
  align-items: center;
}
.rough-metals-visual {
  display: grid;
  min-height: 292px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dfc47e;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 40%, #fff 0%, #fffaf0 56%, #f7ecd1 100%);
}
.rough-metals-visual img {
  display: block;
  width: 86%;
  max-width: 330px;
  height: 250px;
  object-fit: contain;
}
.rough-metals-copy p {
  margin: 0;
  color: var(--rough-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.9;
}
.rough-metals-copy p + p { margin-top: 13px; }
.rough-metals-copy strong { color: #7f4f00; }
.rough-metals-detail {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid #dfc47e;
  border-radius: 15px;
  background: rgba(255,255,255,.86);
}
.rough-metals-detail__heading {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.rough-metals-detail__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: var(--rough-gold);
  background: #fff4d8;
}
.rough-metals-detail__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rough-metals-detail__heading h3 {
  margin: 0;
  color: var(--rough-gold-deep);
  font-size: 23px;
  line-height: 1.45;
}
.rough-metals-detail__heading p {
  margin: 5px 0 0;
  color: var(--rough-muted);
  font-size: 15px;
}
.rough-metals-detail__heading p strong {
  padding: 0 .08em;
  color: #983c35;
  background: linear-gradient(transparent 61%, #f4d8d4 61%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.rough-metals-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.rough-metals-list li {
  padding: 10px 12px;
  border-radius: 9px;
  color: #4e4437;
  background: #fff9ed;
  font-size: 14px;
  font-weight: 700;
}
.rough-metals-closing {
  margin: 18px 0 0;
  color: var(--rough-muted);
  font-weight: 650;
}

.rough-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rough-category-card {
  overflow: hidden;
  border: 1px solid #e5dbc3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(87,65,25,.06);
}
.rough-category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 7px;
  background: #faf7f0;
}
.rough-category-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 6px;
  border-top: 1px solid #eee5d3;
  color: #493a22;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

/* v4: ヒーロー直下の高級品・専門品表示 */
.rough-section--premium {
  padding-top: 28px;
  padding-bottom: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,250,239,.98) 100%);
}
.rough-premium-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #ddc990;
  border-bottom: 1px solid #ddc990;
  list-style: none;
}
.rough-premium-item {
  min-width: 0;
  padding: 18px 10px 16px;
  text-align: center;
}
.rough-premium-item + .rough-premium-item { border-left: 1px solid #eadfc6; }
.rough-premium-item img {
  display: block;
  width: 100%;
  height: 172px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.rough-premium-item span {
  display: block;
  color: #493716;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

/* v4: 一般品の非リンク・連続ループ表示 */
.rough-category-marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0 12px;
  border-top: 1px solid #e4d8bc;
  border-bottom: 1px solid #e4d8bc;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.rough-category-track {
  display: flex;
  width: max-content;
  animation: rough-category-loop 34s linear infinite;
}
.rough-category-marquee:hover .rough-category-track { animation-play-state: paused; }
.rough-category-row {
  display: flex;
  flex: none;
  align-items: flex-start;
  gap: 34px;
  margin: 0;
  padding: 0 17px;
  list-style: none;
}
.rough-category-item {
  flex: 0 0 132px;
  text-align: center;
}
.rough-category-item img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 0 auto 7px;
  padding: 4px;
  background: transparent;
}
.rough-category-item span {
  display: block;
  color: #493a22;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}
@keyframes rough-category-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.rough-method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
#rough-visit {
  grid-column: 1;
  grid-row: 1;
}
#rough-store {
  grid-column: 2;
  grid-row: 1;
}
#rough-visit-panel,
#rough-store-panel {
  grid-column: 1 / -1;
  grid-row: 2;
}
.rough-method-card {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--rough-border);
  border-radius: 18px;
  background: #fff;
}
.rough-method-card--visit {
  border-top: 7px solid var(--rough-gold);
  box-shadow: 0 10px 24px rgba(110,80,22,.12);
}
.rough-method-card--store { border-top: 7px solid #c99848; }
.rough-method-card__top {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: minmax(0, 1fr) 38%;
  min-height: 320px;
}
.rough-method-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 22px;
}
.rough-method-card__media {
  min-height: 100%;
  overflow: hidden;
  background: #eee9df;
}
.rough-method-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rough-method-card__label {
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--rough-gold-deep);
  background: var(--rough-gold-soft);
  font-weight: 800;
}
.rough-method-card--store .rough-method-card__label {
  color: #714a15;
  background: #fff2e5;
}
.rough-method-card h2 {
  margin: 0 0 10px;
  color: #312a21;
  font-size: 23px;
  line-height: 1.45;
}
.rough-method-card__body p {
  margin: 7px 0 0;
  color: var(--rough-muted);
  font-size: 15px;
  font-weight: 650;
}
.rough-method-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 12px 54px 12px 20px;
  border: 0;
  border-top: 1px solid #eadfc8;
  color: #4d3715;
  background: linear-gradient(180deg, #fffdfa 0%, #fbf5e8 100%);
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 17px;
  font-weight: 850;
}
.rough-method-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--rough-orange);
  border-bottom: 2px solid var(--rough-orange);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}
.rough-method-trigger[aria-expanded="true"] {
  color: var(--rough-gold-deep);
  background: #fbf2df;
}
.rough-method-trigger[aria-expanded="true"]::after {
  transform: translateY(-30%) rotate(225deg);
}
.rough-method-card.is-active { border-color: #c79a3b; }
.rough-method-panel {
  padding: 22px;
  border: 1px solid #d9bd80;
  border-left: 5px solid var(--rough-gold);
  border-radius: 15px;
  background: #fffdf9;
  box-shadow: 0 10px 24px rgba(110,80,22,.10);
}
.rough-method-panel[hidden] { display: none; }
.rough-method-panel > h2 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eadfc8;
  color: #453317;
  font-size: 21px;
  line-height: 1.45;
}
.rough-step-grid {
  counter-reset: rough-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rough-step-grid li {
  counter-increment: rough-step;
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  padding: 18px 15px 20px;
  border: 1px solid #e8dcc4;
  border-radius: 12px;
  background: #fff;
}
.rough-step-grid li::before {
  content: counter(rough-step);
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--rough-gold);
  font-weight: 850;
}
.rough-step-grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -29px;
  width: 24px;
  height: 14px;
  background: var(--rough-gold);
  clip-path: polygon(0 42%, 68% 42%, 68% 0, 100% 50%, 68% 100%, 68% 58%, 0 58%);
  transform: translateY(-50%);
}
.rough-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border: 1px solid #d7b668;
  border-radius: 50%;
  color: #a87518;
  background: #fffaf0;
}
.rough-step-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rough-step-grid h3 {
  margin: 0 0 9px;
  color: #453317;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}
.rough-step-grid p {
  margin: 7px 0 0;
  color: var(--rough-muted);
  font-size: 12.5px;
  line-height: 1.65;
}
.rough-step-notes {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 16px;
  padding: 15px 17px;
  border: 1px solid #dfc98f;
  border-radius: 11px;
  background: #fff9ec;
}
.rough-step-notes > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--rough-gold);
  font-size: 14px;
  line-height: 1;
}
.rough-step-notes p {
  margin: 0;
  color: var(--rough-muted);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.7;
}
.rough-step-notes p + p { margin-top: 4px; }

.rough-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 54px 12px 20px;
  cursor: pointer;
  list-style: none;
  color: #4d3715;
  background: #fff;
  font-size: 17px;
  font-weight: 850;
}
.rough-faq-item summary::-webkit-details-marker { display: none; }
.rough-faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--rough-orange);
  border-bottom: 2px solid var(--rough-orange);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}
.rough-faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}
.rough-faq-item[open] summary { color: var(--rough-gold-deep); background: #fbf2df; }

.rough-faq-list { display: grid; gap: 10px; }
.rough-faq-item {
  overflow: hidden;
  border: 1px solid #e3d6bb;
  border-radius: 12px;
  background: #fff;
}
.rough-faq-item summary { min-height: 56px; background: #fff; }
.rough-faq-item summary::after { right: 22px; }
.rough-faq-item p {
  margin: 0;
  padding: 18px 22px 20px;
  border-top: 1px solid #ede3d1;
  color: var(--rough-muted);
  background: #fffdf9;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.8;
}

.rough-contact {
  margin-top: 24px;
  padding: 30px 34px 32px;
  border: 1px solid #d8bb75;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,254,249,.99) 0%, rgba(250,239,208,.98) 100%);
  box-shadow: 0 11px 27px rgba(95,67,16,.14);
  text-align: center;
}
.rough-contact__heading p {
  margin: 0;
  color: var(--rough-orange-dark);
  font-size: 15px;
  font-weight: 800;
}
.rough-contact__heading h2 {
  margin: 2px 0 14px;
  color: var(--rough-gold-deep);
  font-size: 25px;
  line-height: 1.35;
}
.rough-contact__phone {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 650px);
  min-height: 118px;
  margin: 0 auto;
  padding: 15px 24px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(180deg, #f78315 0%, #df5d00 100%);
  box-shadow: 0 8px 20px rgba(187,75,0,.24);
  text-decoration: none;
}
.rough-contact__phone--pc { display: flex; }
.rough-contact__phone--sp { display: none; }
.rough-contact__phone span { font-size: 15px; font-weight: 800; }
.rough-contact__phone strong { margin-top: 1px; font-size: 38px; line-height: 1.15; letter-spacing: .02em; }
.rough-contact__phone small { margin-top: 3px; font-size: 13px; font-weight: 700; }
.rough-contact__online {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: min(100%, 650px);
  margin: 13px auto 0;
}
.rough-contact__online-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border: 1px solid #b58a2f;
  border-radius: 10px;
  color: #654817;
  background: #fff;
  text-decoration: none;
}
.rough-contact__online-link--mail { border-color: #e27820; color: #aa4a00; }
.rough-contact__online-link small { font-size: 11px; font-weight: 700; }
.rough-contact__online-link strong { font-size: 16px; }

.rough-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rough-store-card {
  overflow: hidden;
  border: 1px solid var(--rough-border);
  border-radius: 15px;
  background: #fff;
}
.rough-store-card__map {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-bottom: 1px solid #e2d8c6;
  background: #f1ede4;
}
.rough-store-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.rough-store-card__body {
  padding: 18px;
}
.rough-store-card__body h2 {
  margin: 0 0 9px;
  color: #453317;
  font-size: 18px;
  line-height: 1.45;
}
.rough-store-card__body p {
  margin: 7px 0 0;
  color: var(--rough-muted);
  font-size: 13px;
  font-weight: 650;
}
.rough-store-card__body strong { color: #a34a08; }

@media (max-width: 991px) {
  .rough-step-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .rough-step-grid li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -25px;
    left: 50%;
    width: 14px;
    height: 20px;
    clip-path: polygon(42% 0, 58% 0, 58% 66%, 100% 66%, 50% 100%, 0 66%, 42% 66%);
    transform: translateX(-50%);
  }
  .rough-hero { grid-template-columns: 38% minmax(0, 1fr); }
  .rough-premium-grid { grid-template-columns: repeat(3, 1fr); }
  .rough-premium-item:nth-child(4) { border-left: 0; }
  .rough-premium-item:nth-child(n+4) { border-top: 1px solid #eadfc6; }
  .rough-premium-item img { height: 152px; }
  .rough-overview-grid { grid-template-columns: 1fr; }
  .rough-overview-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 190px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
  }
  .rough-overview-card__visual { grid-row: 1 / 3; min-height: 218px; }
  .rough-overview-card__header { min-height: 0; padding: 24px 22px 10px; text-align: left; }
  .rough-overview-card__header h2::after { margin-right: 0; margin-left: 0; }
  .rough-overview-card__body { padding: 0 22px 24px; }
  .rough-metals-intro { grid-template-columns: 260px minmax(0, 1fr); }
  .rough-metals-list { grid-template-columns: 1fr; }
  .rough-category-grid { grid-template-columns: repeat(4, 1fr); }
  .rough-store-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .rough-breadcrumb__inner {
    width: min(calc(100% - 24px), 1160px);
    min-height: 32px;
    gap: 6px;
    font-size: 10px;
  }
  .rough-shell {
    width: min(calc(100% - 24px), 1160px);
    padding: 12px 0 30px;
  }
  .rough-hero {
    grid-template-columns: 64% 36%;
    grid-template-rows: 1fr;
    height: auto;
    min-height: 198px;
    border-radius: 14px;
  }
  .rough-hero__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 17px 7px 15px 16px;
    background: linear-gradient(112deg, rgba(255,255,255,.99) 0%, rgba(255,250,238,.99) 100%);
  }
  .rough-eyebrow { margin-bottom: 7px; font-size: 10px; }
  .rough-hero h2 {
    margin-bottom: 9px;
    font-size: 27px;
    line-height: 1.12;
    overflow-wrap: normal;
  }
  .rough-hero__lead { margin-top: 0; font-size: 11.5px; line-height: 1.55; }
  .rough-hero__media {
    grid-column: 2;
    grid-row: 1;
    height: auto;
    min-height: 198px;
  }
  .rough-hero__media::after { width: 42%; }
  .rough-hero__media img {
    width: 118%;
    max-width: none;
    object-position: 58% center;
  }
  .rough-hero__methods {
    grid-column: 1 / 3;
    grid-row: 2;
    grid-template-columns: 1.15fr .85fr;
    gap: 7px;
    padding: 9px 12px 12px;
    border-top: 1px solid #eadfca;
  }
  .rough-method-link { min-height: 43px; border-radius: 8px; font-size: 14px; }

  .rough-section { margin-top: 14px; padding: 20px 14px; border-radius: 14px; }
  .rough-section-heading { margin-bottom: 16px; padding-left: 11px; border-left-width: 5px; }
  .rough-section-heading p { font-size: 13px; }
  .rough-section-heading h2 { font-size: 22px; line-height: 1.48; }
  .rough-section-heading--center { padding: 0; }

  .rough-section--premium { padding: 18px 10px 16px; }
  .rough-premium-grid { grid-template-columns: repeat(2, 1fr); }
  .rough-premium-item { padding: 12px 7px 11px; }
  .rough-premium-item:nth-child(odd) { border-left: 0; }
  .rough-premium-item:nth-child(even) { border-left: 1px solid #eadfc6; }
  .rough-premium-item:nth-child(n+3) { border-top: 1px solid #eadfc6; }
  .rough-premium-item img { height: 126px; margin-bottom: 7px; }
  .rough-premium-item span { font-size: 12px; }

  .rough-category-marquee { padding: 10px 0 8px; }
  .rough-category-row { gap: 18px; padding: 0 9px; }
  .rough-category-item { flex-basis: 92px; }
  .rough-category-item img { width: 76px; height: 76px; margin-bottom: 4px; }
  .rough-category-item span { font-size: 10px; }

  .rough-overview-grid { gap: 10px; }
  .rough-overview-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 102px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    border-radius: 11px;
  }
  .rough-overview-card__visual { grid-row: 1 / 3; min-height: 128px; padding: 12px 7px; }
  .rough-overview-card__icon-disc { width: 88px; height: 88px; }
  .rough-overview-card__icon-image { width: 100%; height: 100%; }
  .rough-overview-card__header { min-height: 0; padding: 14px 12px 7px; text-align: left; }
  .rough-overview-card__header h2 { font-size: 15.5px; line-height: 1.45; }
  .rough-overview-card__header h2::after { width: 27px; margin: 8px 0 0; }
  .rough-card-kicker { font-size: 9px; line-height: 1.45; }
  .rough-overview-card__body { padding: 0 12px 14px; }
  .rough-overview-card__body p,
  .rough-overview-card__body ul { padding: 9px 10px; font-size: 11px; line-height: 1.55; }
  .rough-overview-card__body ul { padding-left: 2.05em; }

  .rough-section--metals { padding: 20px 14px; }
  .rough-metals-intro { grid-template-columns: 1fr; gap: 13px; }
  .rough-metals-visual { min-height: 184px; border-radius: 11px; }
  .rough-metals-visual img { width: 78%; height: 170px; }
  .rough-metals-copy p { font-size: 12px; line-height: 1.75; }
  .rough-metals-copy p + p { margin-top: 9px; }
  .rough-metals-detail { margin-top: 16px; padding: 14px; border-radius: 11px; }
  .rough-metals-detail__heading { grid-template-columns: 48px minmax(0, 1fr); gap: 10px; }
  .rough-metals-detail__icon { width: 45px; height: 45px; }
  .rough-metals-detail__icon svg { width: 27px; height: 27px; }
  .rough-metals-detail__heading h3 { font-size: 17px; line-height: 1.45; }
  .rough-metals-detail__heading p { font-size: 11.5px; line-height: 1.55; }
  .rough-metals-list { grid-template-columns: 1fr; gap: 6px; margin-top: 13px; }
  .rough-metals-list li { padding: 8px 9px; font-size: 11px; }
  .rough-metals-closing { margin-top: 12px; font-size: 11px; }

  .rough-category-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .rough-category-card { border-radius: 8px; }
  .rough-category-card img { padding: 4px; }
  .rough-category-card span { min-height: 40px; padding: 4px 2px; font-size: 10.5px; }

  .rough-method-layout {
    grid-template-columns: 1fr;
    gap: 11px;
    align-items: start;
  }
  #rough-visit {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }
  #rough-visit-panel {
    grid-column: 1;
    grid-row: auto;
    order: 2;
  }
  #rough-store {
    grid-column: 1;
    grid-row: auto;
    order: 3;
  }
  #rough-store-panel {
    grid-column: 1;
    grid-row: auto;
    order: 4;
  }
  .rough-method-card {
    height: auto;
    border-radius: 12px;
  }
  .rough-method-card__top { grid-template-columns: minmax(0, 1fr) 112px; min-height: 240px; }
  .rough-method-card__body { padding: 17px 13px; }
  .rough-method-card__label { margin-bottom: 7px; padding: 4px 9px; font-size: 12px; }
  .rough-method-card h2 { font-size: 17px; line-height: 1.43; }
  .rough-method-card__body p { font-size: 11.5px; line-height: 1.55; }
  .rough-method-card__media img { object-position: center; }
  .rough-method-trigger,
  .rough-faq-item summary { min-height: 52px; padding: 11px 45px 11px 13px; font-size: 14px; line-height: 1.45; }
  .rough-method-trigger::after,
  .rough-faq-item summary::after {
    right: 17px;
    width: 10px;
    height: 10px;
  }
  .rough-method-card.is-active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .rough-method-panel {
    margin-top: -11px;
    padding: 12px 12px 12px 14px;
    border-top: 0;
    border-left-width: 5px;
    border-radius: 0 0 11px 11px;
  }
  .rough-method-panel > h2 { margin-bottom: 11px; padding-bottom: 9px; font-size: 17px; }
  .rough-step-grid { grid-template-columns: 1fr; gap: 30px; }
  .rough-step-grid li {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 10px;
    padding: 13px 12px 14px;
    border-radius: 9px;
  }
  .rough-step-grid li::before { top: 10px; left: 10px; width: 25px; height: 25px; font-size: 12px; }
  .rough-step-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 42px;
    height: 42px;
    margin: 28px auto 0;
  }
  .rough-step-icon svg { width: 24px; height: 24px; }
  .rough-step-grid h3 { grid-column: 2; margin-top: 1px; font-size: 14px; text-align: left; }
  .rough-step-grid p { grid-column: 2; font-size: 11px; line-height: 1.6; }
  .rough-step-notes { grid-template-columns: 1fr; gap: 8px; margin-top: 12px; padding: 12px; }
  .rough-step-notes > strong { width: 72px; min-height: 28px; font-size: 12px; }
  .rough-step-notes p { font-size: 10.5px; line-height: 1.65; }

  .rough-faq-list { gap: 7px; }
  .rough-faq-item { border-radius: 9px; }
  .rough-faq-item p { padding: 14px 15px 16px; font-size: 12px; line-height: 1.7; }

  .rough-contact { margin-top: 14px; padding: 22px 14px 24px; border-radius: 14px; }
  .rough-contact__heading p { font-size: 12px; }
  .rough-contact__heading h2 { margin-bottom: 10px; font-size: 20px; }
  .rough-contact__phone { min-height: 100px; padding: 12px 10px; border-radius: 10px; }
  .rough-contact__phone--pc { display: none; }
  .rough-contact__phone--sp { display: flex; }
  .rough-contact__phone span { font-size: 12px; }
  .rough-contact__phone strong { font-size: 31px; }
  .rough-contact__phone small { font-size: 11px; }
  .rough-contact__online { gap: 7px; margin-top: 8px; }
  .rough-contact__online-link { min-height: 53px; border-radius: 8px; }
  .rough-contact__online-link small { font-size: 9px; }
  .rough-contact__online-link strong { font-size: 14px; }

  .rough-store-grid { grid-template-columns: 1fr; gap: 10px; }
  .rough-store-card { display: block; border-radius: 11px; }
  .rough-store-card__map { height: 190px; }
  .rough-store-card__body { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .rough-category-track {
    width: auto;
    animation: none;
  }
  .rough-category-row {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .rough-category-row[aria-hidden="true"] { display: none; }
}

.rough-page .rough-dopeland-guide {
  position: relative;
  overflow: hidden;
  margin: 24px 0 0;
  border: 1px solid #d7c28d;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
  box-shadow: 0 10px 28px rgba(93, 68, 21, 0.1);
}

.rough-page .rough-dopeland-guide::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: #6a4d18;
  content: "";
}

.rough-page .rough-dopeland-guide__inner {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.rough-page .rough-dopeland-guide__brandbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px 30px 28px 36px;
  border-right: 1px solid #d7c28d;
  color: #5a4013;
}

.rough-page .rough-dopeland-guide__relation {
  margin: 0;
  color: #76694f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.rough-page .rough-dopeland-guide__brand-title {
  margin: 0;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.rough-page .rough-dopeland-guide__brand-title span {
  white-space: nowrap;
}

.rough-page .rough-dopeland-guide__message {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 13px;
  padding: 24px 30px;
}

.rough-page .rough-dopeland-guide__copy,
.rough-page .rough-dopeland-guide__stores {
  margin: 0;
  font-weight: 700;
  line-height: 1.85;
}

.rough-page .rough-dopeland-guide__copy {
  color: #3f392f;
}

.rough-page .rough-dopeland-guide__copy strong {
  display: inline-block;
  margin-top: 2px;
  color: #5f4315;
  font-size: 17px;
  font-weight: 950;
}

.rough-page .rough-dopeland-guide__stores {
  padding: 11px 14px;
  border-radius: 10px;
  background: #fff;
  color: #5e5548;
  box-shadow: inset 0 0 0 1px #eadcb9;
}

.rough-page .rough-dopeland-guide__stores-label {
  display: inline-block;
  margin: 0 12px 5px 0;
  color: #6a4d18;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.rough-page .rough-contact__brandline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 7px 0 5px;
}

.rough-page .rough-contact__brandline span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #624717;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.rough-page .rough-contact__brandline strong {
  color: #5f4315;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.rough-page .rough-store-card__body p:first-of-type {
  margin-top: 0;
}

@media (max-width: 767px) {
  .rough-page .rough-dopeland-guide {
    margin-top: 14px;
  }

  .rough-page .rough-dopeland-guide::before {
    width: 6px;
  }

  .rough-page .rough-dopeland-guide__inner {
    display: block;
  }

  .rough-page .rough-dopeland-guide__brandbox {
    padding: 19px 18px 17px 24px;
    border-right: 0;
    border-bottom: 1px solid #d7c28d;
  }

  .rough-page .rough-dopeland-guide__brand-title {
    font-size: 25px;
  }

  .rough-page .rough-dopeland-guide__message {
    padding: 17px 18px 18px 24px;
  }

  .rough-page .rough-dopeland-guide__copy,
  .rough-page .rough-dopeland-guide__stores {
    font-size: 12px;
    line-height: 1.75;
  }

  .rough-page .rough-dopeland-guide__copy strong {
    font-size: 14px;
  }

  .rough-page .rough-dopeland-guide__stores {
    padding: 10px 12px;
  }

  .rough-page .rough-dopeland-guide__stores-label {
    display: block;
    margin: 0 0 4px;
  }

  .rough-page .rough-contact__brandline {
    display: block;
  }

  .rough-page .rough-contact__brandline span {
    margin-bottom: 7px;
  }

  .rough-page .rough-contact__brandline strong {
    display: block;
    font-size: 22px;
  }
}


/* v56: kaitori-satei copy rewrite and responsive hero title */
.rough-page .rough-hero__title {
  display: block;
}

.rough-page .rough-hero__title--sp {
  display: none;
}

.rough-page .rough-hero__title-line {
  display: block;
  line-height: 1.28;
  white-space: nowrap;
}

.rough-page .rough-dopeland-guide__support,
.rough-page .rough-dopeland-guide__process {
  margin: 0;
  padding: 10px 13px;
  border-radius: 10px;
  background: #fff;
  color: #5e5548;
  box-shadow: inset 0 0 0 1px #eadcb9;
  font-weight: 700;
  line-height: 1.8;
}

.rough-page .rough-overview-card__note {
  margin-top: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #eadcb9;
}

.rough-page .rough-contact__online-wrap {
  width: min(100%, 680px);
  margin: 16px auto 0;
  padding: 14px;
  border: 1px solid #e4d8bf;
  border-radius: 13px;
  background: #fff;
}

.rough-page .rough-contact__online-heading {
  margin: 0 0 9px;
  color: #4d4336;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.rough-page .rough-contact__online-wrap .rough-contact__online {
  width: 100%;
  margin: 0;
}

.rough-page .rough-stores-intro {
  max-width: 840px;
  margin: -14px auto 25px;
  color: #5f5548;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 768px) {
  .rough-page .rough-hero {
    height: 320px;
  }

  .rough-page .rough-hero__media {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .rough-page .rough-hero__title--pc {
    display: none;
  }

  .rough-page .rough-hero__title--sp {
    display: block;
  }

  .rough-page .rough-dopeland-guide__support,
  .rough-page .rough-dopeland-guide__process {
    padding: 9px 11px;
    font-size: 12px;
    line-height: 1.75;
  }

  .rough-page .rough-contact__online-wrap {
    padding: 11px 9px;
  }

  .rough-page .rough-contact__online-heading {
    font-size: 13px;
  }

  .rough-page .rough-stores-intro {
    margin: -8px auto 18px;
    padding: 0 8px;
    font-size: 12px;
    text-align: left;
  }
}
