* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  line-height: 1.72;
}

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

.page__container {
  width: min(1160px, 92vw);
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #eee;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo img {
  display: block;
  width: auto;
  max-width: 220px;
  height: 48px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

nav a {
  padding: 9px 15px;
  border-radius: 999px;
  background: #f5f6f8;
  color: #333;
  font-weight: 800;
  text-decoration: none;
}

.site-header__nav-cta {
  background: #d71920 !important;
  color: #fff !important;
}

.hero {
  padding: 64px 0;
  background: linear-gradient(135deg, #fff, #fff7f7 58%, #edf5ff);
}

.hero__grid,
.split-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.split-layout--reverse {
  grid-template-columns: 1fr 1fr;
}

.section-label {
  margin: 0 0 8px;
  color: #d71920;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero h1,
.section h2 {
  margin: .15em 0 .35em;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.16;
}

.hero__lead {
  max-width: 62ch;
  color: #555;
  font-size: 18px;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.hero__points div {
  padding: 14px;
  border: 1px solid #f0d7d9;
  border-radius: 18px;
  background: #fff;
}

.hero__points b {
  display: block;
  color: #d71920;
  font-size: 22px;
}

.hero__points span {
  color: #555;
  font-size: 13px;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 24px 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 22px;
  border: 2px solid #d71920;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.button--primary {
  background: #d71920;
  color: #fff;
}

.button.button--secondary {
  background: #fff;
  color: #d71920;
}

.button.button--full {
  width: 100%;
  margin-top: 12px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  padding: 8px 13px;
  border: 1px solid #f0d7d9;
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.hero__image img,
.image-card img {
  border: 1px solid #e7ebf0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.section {
  padding: 68px 0;
}

.section--pale {
  background: #f7f9fc;
}

.quick-links {
  padding: 24px 0;
  background: #17181d;
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-links__grid a {
  display: grid;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
}

.quick-links__grid strong {
  color: #d71920;
  font-size: 22px;
}

.quick-links__grid span {
  color: #555;
}

.section__head {
  margin-bottom: 26px;
}

.section__head.section__head--center {
  text-align: center;
}

.section__head p:last-child {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: #666;
}

.product-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-types__card {
  padding: 26px;
  border: 1px solid #e8edf2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.product-types__card.product-types__card--featured {
  border-color: #f0c6c9;
  background: #fff7f7;
}

.product-types__card span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d71920;
  color: #fff;
  font-weight: 900;
}

.product-types__card h3 {
  margin: 14px 0 8px;
  font-size: 26px;
}

.product-types__card b {
  display: block;
  margin-top: 12px;
  color: #d71920;
}

.color-spec__list,
.spec-set__table {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.color-spec__list div,
.spec-set__table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  background: #fff;
}

.color-spec__list b,
.spec-set__table b {
  color: #d71920;
}

.examples {
  background: #fff;
}

.estimate {
  background: #17181d;
  color: #fff;
}

.estimate .section__head p:last-child {
  color: #d7d9dd;
}

.estimate__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 430px;
  gap: 24px;
}

.estimate__form,
.estimate-result {
  padding: 24px;
  border: 1px solid #e8edf2;
  border-radius: 24px;
  background: #fff;
  color: #222;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .09);
}

.estimate__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.estimate__form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.estimate__form input,
.estimate__form select {
  width: 100%;
  padding: 13px;
  border: 1px solid #cfd6dd;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
}

.estimate__print-fields,
#silkFields {
  display: contents;
}

.estimate__form>label:last-of-type,
.estimate__form>.button {
  grid-column: 1/-1;
}

.estimate-result {
  position: sticky;
  top: 86px;
}

.estimate-result h3 {
  margin-top: 0;
  font-size: 26px;
}

.estimate-result__line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed #d7dee5;
}

.estimate-result__line span {
  color: #555;
}

.estimate-result__line strong {
  text-align: right;
}

.estimate-result__line--total {
  padding-top: 15px;
  border-bottom: 0;
  color: #d71920;
  font-size: 22px;
  font-weight: 900;
}

.estimate-result__warning {
  margin-top: 14px;
  padding: 13px;
  border: 1px solid #f0e1a6;
  border-radius: 14px;
  background: #fff5d9;
  color: #5d4a00;
  font-size: 14px;
  font-weight: 700;
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.price-tabs__button {
  padding: 12px 18px;
  border: 1px solid #d71920;
  border-radius: 999px;
  background: #fff;
  color: #d71920;
  font-weight: 900;
  cursor: pointer;
}

.price-tabs__button.is-active {
  background: #d71920;
  color: #fff;
}

.price-panel {
  display: none;
}

.price-panel.is-active {
  display: block;
}

.table-wrap {
  overflow: auto;
  border: 1px solid #e8edf2;
  border-radius: 18px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 16px;
  border-bottom: 1px solid #edf1f4;
  text-align: center;
  white-space: nowrap;
}

th {
  background: #f8fafb;
}

.text-note {
  color: #666;
}

.usage-scenes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.usage-scenes__grid article {
  padding: 14px;
  border: 1px solid #e8edf2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

.usage-scenes__grid img {
  border-radius: 16px;
}

.usage-scenes__grid h3 {
  margin: 14px 4px 2px;
}

.usage-scenes__grid p {
  margin: 0 4px 8px;
  color: #666;
}

.order-flow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.order-flow__grid div {
  padding: 18px;
  border: 1px solid #e8edf2;
  border-radius: 18px;
  background: #fff;
}

.order-flow__grid b {
  display: block;
  margin-bottom: 8px;
  color: #d71920;
}

.order-flow__grid span {
  color: #555;
  font-size: 14px;
}

.faq details {
  margin-bottom: 12px;
  padding: 17px 20px;
  border: 1px solid #e8edf2;
  border-radius: 18px;
  background: #fff;
}

.faq summary {
  font-weight: 900;
  cursor: pointer;
}

.contact-section {
  background: #17181d;
  color: #fff;
}

.contact-section__box {
  padding: 42px;
  border-radius: 26px;
  background: #23252d;
  text-align: center;
}

.contact-section__box .section-label {
  color: #ffb3b8;
}

.contact-section__box h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.site-footer {
  padding: 24px 0;
  background: #111;
  color: #fff;
  text-align: center;
}

@media(max-width:960px) {

  .hero__grid,
  .split-layout,
  .split-layout--reverse,
  .estimate__grid {
    grid-template-columns: 1fr;
  }

  .product-types__grid,
  .usage-scenes__grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-flow__grid,
  .quick-links__grid {
    grid-template-columns: 1fr 1fr;
  }

  .estimate__form {
    grid-template-columns: 1fr;
  }

  .estimate-result {
    position: static;
  }

  .hero__points {
    grid-template-columns: 1fr;
  }
}

@media(max-width:640px) {
  nav {
    display: none;
  }

  .product-types__grid,
  .usage-scenes__grid,
  .order-flow__grid,
  .quick-links__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .hero h1,
  .section h2 {
    font-size: 32px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .color-spec__list div,
  .spec-set__table div {
    grid-template-columns: 1fr;
  }
}

/* 対応実績ページへの導線 */
.results-promo-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.results-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 26px;
  border: 1px solid #ffd2d4;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff 0%, #fff7f7 100%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
}

.results-promo:hover {
  border-color: #e31b23;
}

.results-promo__copy {
  display: block;
}

.results-promo__label {
  display: block;
  color: #e31b23;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.results-promo__title {
  display: block;
  margin: 4px 0 5px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  text-wrap: balance;
}

.results-promo__text {
  display: block;
  color: #555f6c;
}

.results-promo__button {
  flex: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #e31b23;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

@media(max-width:700px) {
  .results-promo {
    align-items: flex-start;
    flex-direction: column;
  }

  .results-promo__title {
    font-size: 21px;
    line-height: 1.5;
  }

  .results-promo__title br {
    display: none;
  }

  .results-promo__button {
    width: 100%;
    text-align: center;
  }
}

/* v10: restore approved No.02. No crop, no slicing, no disappearing. */
.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo img {
  display: block;
  width: auto;
  max-width: 220px;
  height: 48px;
}

.hero {
  padding: 56px 0;
  background: linear-gradient(135deg, #fff 0%, #fff7f7 58%, #edf5ff 100%);
}

.hero__grid {
  grid-template-columns: .82fr 1.18fr;
  gap: 32px;
}

.hero__copy h1 {
  line-height: 1.18;
  letter-spacing: .01em;
}

.hero__copy .hero__lead {
  max-width: 34em;
  font-size: 18px;
  line-height: 1.9;
}

.hero__approved-image {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid #e6ebf0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.hero__approved-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.hero__approved-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(215, 25, 32, .94);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

@media(max-width:960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:640px) {
  .site-header__logo img {
    max-width: 180px;
    height: 40px;
  }
}

.hero .page__container {
  max-width: 1280px;
}

.hero__grid {
  align-items: center;
  grid-template-columns: minmax(320px, 420px) minmax(0, 780px);
  gap: 24px;
}

.hero__copy .hero__lead {
  max-width: 33em;
  font-size: 19px;
  line-height: 1.95;
}

.hero__points {
  gap: 10px;
}

.hero__points div {
  padding: 14px 14px;
}

.hero__image.hero__approved-image {
  padding: 10px;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .09);
}

.hero__image.hero__approved-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.hero__approved-label {
  top: 18px;
  left: 18px;
  padding: 7px 14px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  padding: 54px 0 60px;
}

.hero__grid,
.hero__grid--clean {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1.08fr);
  gap: 34px;
}

.hero__copy,
.hero__copy--clean {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero__copy h1,
.hero__copy--clean h1 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2.9vw, 43px);
  line-height: 1.16;
  letter-spacing: .01em;
}

.hero__copy h1 span,
.hero__copy--clean h1 span {
  color: #d71920;
}

.hero__copy .hero__lead,
.hero__copy--clean .hero__lead {
  max-width: 31em;
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.9;
}

.hero__points,
.hero__points--clean {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 18px;
}

.hero__points div,
.hero__points--clean div {
  padding: 13px 14px;
}

.hero__points b,
.hero__points--clean b {
  font-size: 22px;
}

.hero__points span,
.hero__points--clean span {
  font-size: 12px;
  line-height: 1.45;
}

.hero__image.hero__approved-image,
.hero__product--clean,
.hero__approved-image {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  padding: 10px;
  border-radius: 22px;
  justify-self: end;
}

.hero__image.hero__approved-image img,
.hero__product--clean img,
.hero__approved-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.hero__approved-label {
  top: 18px;
  left: 18px;
  padding: 6px 13px;
  font-size: 12px;
}

.hero__actions {
  gap: 12px;
}

.button {
  padding: 12px 19px;
}

.hero__badges {
  gap: 8px;
}

.hero__badges li {
  padding: 7px 11px;
  font-size: 13px;
}

@media (max-width: 1080px) {

  .hero__grid,
  .hero__grid--clean {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero__copy--clean {
    max-width: 720px;
  }

  .hero__image.hero__approved-image,
  .hero__product--clean,
  .hero__approved-image {
    max-width: 780px;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 42px 0 48px;
  }

  .hero__copy .hero__lead,
  .hero__copy--clean .hero__lead {
    font-size: 16px;
  }

  .hero__points,
  .hero__points--clean {
    grid-template-columns: 1fr;
  }
}

/* v13: No.02 fixed, watermark/label removed */
.hero__approved-label,
.hero__visual-label,
.hero__kicker {
  display: none !important;
}

.hero__image.hero__approved-image,
.hero__product--clean,
.hero__approved-image {
  position: relative;
}

/* v14: No.03 applied larger without overlapping left explanation */
.color-spec .page__container.color-spec__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.92fr) minmax(520px, 1.08fr);
  gap: 28px;
  max-width: 1160px;
}

.color-spec .page__container.color-spec__grid>div:first-child {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 430px;
}

.color-spec .page__container.color-spec__grid>div:first-child p {
  line-height: 1.9;
}

.color-spec .color-spec__image {
  width: 100%;
  max-width: 700px;
  margin: 0;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  justify-self: end;
}

.color-spec .color-spec__image img {
  display: block;
  width: 100%;
  border-radius: 14px;
  background: #fff;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.color-spec .color-spec__image figcaption {
  margin-top: 10px;
  color: #5f6670;
  font-size: .875rem;
  text-align: center;
}

@media (max-width: 1080px) {
  .color-spec .page__container.color-spec__grid {
    grid-template-columns: 1fr;
  }

  .color-spec .page__container.color-spec__grid>div:first-child {
    max-width: 100%;
  }

  .color-spec .color-spec__image {
    max-width: 860px;
    justify-self: center;
  }
}

/* v15: enlarge No.03 a little more without overlapping left text */
.color-spec .page__container.color-spec__grid {
  grid-template-columns: minmax(280px, 0.84fr) minmax(580px, 1.16fr);
  gap: 24px;
}

.color-spec .page__container.color-spec__grid>div:first-child {
  max-width: 390px;
}

.color-spec .color-spec__image {
  max-width: 760px;
  padding: 14px;
}

@media (max-width: 1240px) {
  .color-spec .color-spec__image {
    max-width: 730px;
  }
}

@media (max-width: 1080px) {
  .color-spec .page__container.color-spec__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .color-spec .page__container.color-spec__grid>div:first-child {
    max-width: 100%;
  }

  .color-spec .color-spec__image {
    max-width: 860px;
  }
}

/* v16: No.04 updated with provided set contents image, larger without overlapping right text */
.spec-set .page__container.spec-set__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(540px, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  max-width: 1160px;
}

.spec-set .page__container.spec-set__grid>figure.spec-set__image {
  width: 100%;
  max-width: 760px;
  margin: 0;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.spec-set .page__container.spec-set__grid>figure.spec-set__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
}

.spec-set .page__container.spec-set__grid>div:last-child {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 380px;
}

.spec-set .page__container.spec-set__grid>div:last-child p,
.spec-set .page__container.spec-set__grid>div:last-child li {
  line-height: 1.9;
}

@media (max-width: 1080px) {
  .spec-set .page__container.spec-set__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .spec-set .page__container.spec-set__grid>figure.spec-set__image {
    max-width: 860px;
    justify-self: center;
  }

  .spec-set .page__container.spec-set__grid>div:last-child {
    max-width: 100%;
  }
}

/* v17: No.05 updated with provided print-sample comparison image, larger without colliding with left copy */
.print-sample .page__container.print-sample__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.68fr) minmax(620px, 1.32fr);
  gap: 30px;
  max-width: 1160px;
}

.print-sample .page__container.print-sample__grid>div:first-child {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 330px;
}

.print-sample .page__container.print-sample__grid>figure.print-sample__image {
  width: 100%;
  max-width: 820px;
  margin: 0;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  justify-self: end;
}

.print-sample .page__container.print-sample__grid>figure.print-sample__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
}

.print-sample .page__container.print-sample__grid p {
  line-height: 1.9;
}

@media (max-width: 1080px) {
  .print-sample .page__container.print-sample__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .print-sample .page__container.print-sample__grid>div:first-child,
  .print-sample .page__container.print-sample__grid>figure.print-sample__image {
    max-width: 100%;
    justify-self: stretch;
  }
}

/* v25: unified production examples gallery */
.examples--gallery {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.examples--gallery .section__head p:last-child {
  max-width: 860px;
}

.examples__showcase {
  display: grid;
  gap: 22px;
}

.examples__lead-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 28px;
  border: 1px solid #e8edf2;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #fff7f7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.examples__lead-copy h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.examples__lead-copy p {
  margin: 0;
  color: #555;
  line-height: 1.85;
}

.examples__lead-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 240px;
}

.examples__click-note {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.examples__guide-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.examples__guide-chip {
  padding: 16px 18px;
  border: 1px solid #e6ebf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
}

.examples__guide-chip b {
  display: block;
  margin-bottom: 6px;
  color: #d71920;
  font-size: 15px;
}

.examples__guide-chip span {
  display: block;
  color: #475467;
  font-size: 14px;
  line-height: 1.7;
}

.examples__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.examples__card {
  border: 1px solid #e6ebf0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.examples__card:hover {
  border-color: #d9e2ec;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .09);
  transform: translateY(-4px);
}

.examples__trigger {
  display: block;
  width: 100%;
  padding: 14px;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.examples__trigger:focus-visible {
  border-radius: 24px;
  outline: 3px solid rgba(215, 25, 32, .22);
  outline-offset: 2px;
}

.examples__thumb {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.examples__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.examples__caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 6px 4px;
}

.examples__label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff1f2;
  color: #d71920;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.examples__caption strong {
  color: #102a43;
  font-size: 18px;
  line-height: 1.45;
}

.examples__caption small {
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}

.examples__bottom-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid #e8edf2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}

.examples__bottom-note p {
  margin: 0;
  color: #475467;
  line-height: 1.8;
}

.example-lightbox {
  position: fixed;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, .78);
  inset: 0;
}

.example-lightbox.is-open {
  display: flex;
}

.example-lightbox__panel {
  position: relative;
  overflow: hidden;
  width: min(1180px, 96vw);
  max-height: 90vh;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.example-lightbox__body {
  overflow: auto;
  max-height: 90vh;
  padding: 18px;
}

.example-lightbox__body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
}

.example-lightbox__caption {
  padding: 16px 6px 2px;
}

.example-lightbox__caption b {
  display: block;
  margin-bottom: 4px;
  color: #102a43;
  font-size: 18px;
}

.example-lightbox__caption span {
  display: block;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
}

.example-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .08);
  color: #102a43;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width:960px) {

  .examples__lead-card,
  .examples__bottom-note {
    display: block;
  }

  .examples__lead-actions {
    align-items: flex-start;
    min-width: 0;
    margin-top: 18px;
  }

  .examples__bottom-note .button {
    margin-top: 18px;
  }

  .examples__guide-row,
  .examples__grid {
    grid-template-columns: 1fr;
  }
}

/* v27: 製作例セクションをシンプル化。無理なグループ分け・見どころ・相談しやすさ補足を削除 */
.examples--clean .section__head p:last-child {
  max-width: 860px;
  line-height: 1.9;
}

.examples--clean .examples__lead-card,
.examples--clean .examples__guide-row,
.examples--clean .examples__bottom-note,
.examples--clean .examples__guide-chip {
  display: none !important;
}

.examples__grid--clean {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.examples__card--clean {
  margin: 0;
  padding: 0;
  border: 1px solid #e6ebf0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.examples__card--clean:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}

.examples__card--clean .examples__trigger {
  width: 100%;
  padding: 12px;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.examples__card--clean .examples__thumb {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.examples__card--clean .examples__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.examples__caption--clean {
  display: block;
  padding: 10px 4px 2px;
}

.examples__caption--clean .examples__label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff1f2;
  color: #d71920;
  font-size: 12px;
  font-weight: 900;
}

.examples__cta--clean {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.example-lightbox {
  position: fixed;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, .78);
  inset: 0;
}

.example-lightbox.is-open {
  display: flex;
}

.example-lightbox__panel {
  position: relative;
  overflow: hidden;
  width: min(1180px, 96vw);
  max-height: 90vh;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.example-lightbox__body {
  overflow: auto;
  max-height: 90vh;
  padding: 18px;
}

.example-lightbox__body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
}

.example-lightbox__caption {
  padding: 14px 6px 2px;
}

.example-lightbox__caption b {
  display: block;
  color: #102a43;
  font-size: 18px;
}

.example-lightbox__caption span {
  display: block;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
}

.example-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .08);
  color: #102a43;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width:960px) {
  .examples__grid--clean {
    grid-template-columns: 1fr;
  }
}

/* v28: 「正式見積り」表記を「無料見積り」へ変更。ヘッダーに製作例ボタンを追加 */
.site-header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.site-header nav a[href="#examples"] {
  border: 1px solid #f0c6c9;
  background: #fff7f7;
  color: #d71920;
}

@media(max-width:780px) {
  .site-header nav a {
    padding: 8px 11px;
    font-size: 13px;
  }
}

/* v29: ページが長いため、右下にトップへ戻る固定ボタンを追加 */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  background: #d71920;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(215, 25, 32, .32);
}

.back-to-top span {
  font-size: 11px;
  letter-spacing: .04em;
}

.back-to-top:hover {
  box-shadow: 0 18px 40px rgba(215, 25, 32, .38);
  transform: translateY(-2px);
}

@media(max-width:780px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .back-to-top span {
    font-size: 10px;
  }
}

/* v30: フッター情報を追加 */
.site-footer--enhanced {
  padding: 54px 0 26px;
  background: #111827;
  color: #e5e7eb;
}

.site-footer--enhanced a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer--enhanced a:hover {
  text-decoration: underline;
}

.site-footer__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  gap: 30px;
}

.site-footer__logo-text {
  margin-bottom: 14px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .02em;
}

.site-footer__brand p,
.site-footer__info p {
  margin: 0 0 8px;
  color: #cbd5e1;
  line-height: 1.8;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.site-footer__badges span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.site-footer__col h3,
.site-footer__info h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.site-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__col li {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.9;
}

.site-footer__info {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #94a3b8;
  font-size: 13px;
}

@media(max-width:980px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__info {
    grid-template-columns: 1fr;
  }
}

@media(max-width:640px) {
  .site-footer--enhanced {
    padding: 42px 0 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__bottom {
    display: block;
  }

  .site-footer__bottom span {
    display: block;
    margin-top: 6px;
  }
}

/* v31: 概算見積りから無料見積りへ自然につなぐ導線を追加 */
.estimate__quote-bridge {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 24px;
  margin-top: 32px;
  padding: 28px;
  border: 1px solid #f0c6c9;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff, #fff7f7);
  box-shadow: 0 16px 38px rgba(215, 25, 32, .08);
}

.estimate__quote-bridge h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.35;
}

.estimate__quote-bridge p {
  margin: 0;
  color: #475467;
  line-height: 1.85;
}

.estimate__quote-bridge ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.estimate__quote-bridge li {
  position: relative;
  padding-left: 24px;
  color: #344054;
  font-weight: 700;
  line-height: 1.7;
}

.estimate__quote-bridge li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d71920;
}

.estimate__bridge-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.estimate__bridge-actions .button {
  width: 100%;
  text-align: center;
}

.estimate__bridge-actions p {
  color: #667085;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.quote-form__notice {
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid #e8edf2;
  border-left: 5px solid #d71920;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.quote-form__notice strong {
  display: block;
  margin-bottom: 6px;
  color: #d71920;
  font-size: 17px;
}

.quote-form__notice p {
  margin: 0;
  color: #475467;
  line-height: 1.8;
}

.quote-form__notice.is-highlighted {
  animation: quoteNoticePulse 1.8s ease;
}

@keyframes quoteNoticePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 25, 32, .28);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(215, 25, 32, 0);
  }

  100% {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
  }
}

@media(max-width:900px) {
  .estimate__quote-bridge {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .estimate__quote-bridge h3 {
    font-size: 23px;
  }
}

/* v32: 概算見積りをやめ、無料見積りに統一。見積り結果をフォームへ自動反映 */
.estimate-result__helper {
  margin: 14px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.7;
}

.quote-section {
  background: #fbfcfe;
}

.quote-form__flow-note {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.quote-form__flow-note div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid #e6ebf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.quote-form__flow-note b {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #d71920;
  color: #fff;
  font-size: 14px;
}

.quote-form__flow-note span {
  color: #102a43;
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 22px;
}

.quote-form__block,
.quote-form__send-box,
.quote-form__preview {
  padding: 24px;
  border: 1px solid #e6ebf0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .05);
}

.quote-form__block h3,
.quote-form__send-box h3 {
  margin: 0 0 8px;
  color: #102a43;
  font-size: 22px;
}

.quote-form__block p,
.quote-form__send-box p {
  margin: 0 0 14px;
  color: #475467;
  line-height: 1.8;
}

#quoteSummary {
  width: 100%;
  min-height: 240px;
  padding: 14px;
  border: 1px solid #d9e2ec;
  border-radius: 16px;
  background: #f8fafc;
  color: #102a43;
  line-height: 1.7;
  resize: vertical;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: #102a43;
  font-weight: 900;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d9e2ec;
  border-radius: 14px;
  background: #fff;
  font: inherit;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid__field--full {
  grid-column: 1 / -1;
}

.form-label__required {
  display: inline-flex;
  width: max-content;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #fff1f2;
  color: #d71920;
  font-size: 11px;
}

.form-grid__file-guide small {
  color: #667085;
  font-weight: 500;
  line-height: 1.7;
}

.quote-form__send-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-color: #f0c6c9;
  background: linear-gradient(135deg, #fff, #fff7f7);
}

.quote-form__send-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.quote-form__preview {
  display: none;
  background: #f8fafc;
  color: #102a43;
  line-height: 1.75;
  white-space: pre-wrap;
}

.quote-form__preview.is-open {
  display: block;
}

@media(max-width:900px) {

  .quote-form__flow-note,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-form__send-box {
    display: block;
  }

  .quote-form__send-actions {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

/* v33: CTAを整理し、本体カラー詳細・プリントインク色を追加 */
.estimate__form .estimate__field--full {
  grid-column: 1 / -1;
}

.estimate__form small {
  display: block;
  margin-top: 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

#bodyColorDetail,
#printInkColors,
#confirmBodyColorDetail,
#confirmInkColors {
  border-color: #cfd8e3;
}

.site-header nav a[href="#contact"] {
  border-color: #d71920;
  background: #d71920;
  color: #fff;
}

.quote-form__flow-note div:nth-child(2) span {
  font-size: 13px;
}

@media(max-width:780px) {
  .site-header nav {
    gap: 6px;
  }
}

/* v34: 見積り導線を自動無料見積りに一本化。グラビア時は詳細色入力を非表示 */
.estimate-result__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.estimate-result__actions p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.site-header nav a[href="#estimate"] {
  border-color: #d71920;
  background: #d71920;
  color: #fff;
}

.site-header nav a[href="#contact"] {
  display: none !important;
}

.estimate__color-detail-field,
.estimate__ink-color-field {
  transition: opacity .2s ease;
}

#estimate .section__head p {
  max-width: 880px;
}

.quote-form__send-actions .button.button--primary {
  background: #d71920;
}

/* v35: 自動無料見積り前の「見積り依頼に進む」ボタンを削除。依頼導線は結果欄に集約 */
.quick-links__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.examples__cta--clean {
  justify-content: center;
}

.examples__cta--clean a[href="#estimate"] {
  min-width: 220px;
  text-align: center;
}

@media(max-width:780px) {
  .quick-links__grid {
    grid-template-columns: 1fr;
  }
}

/* v36: セクション直前の重複ボタンを削除。導線を整理 */
.quick-links__grid,
.examples__cta--clean {
  display: none !important;
}

/* v37: 入力内容確認後に見積り依頼を送信する流れへ変更 */
#sendQuoteRequestBtn:disabled {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(.25);
}

#sendQuoteRequestBtn.is-ready {
  opacity: 1;
  cursor: pointer;
  filter: none;
}

.quote-form__preview.is-open::before {
  content: "入力内容の確認が完了しました。内容に問題なければ「見積り依頼を送信」を押してください。";
  display: block;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7f7;
  color: #d71920;
  font-weight: 900;
}

/* v38: 入力内容確認後の下部送信ボタン追加・改行調整 */
.quote-form__preview-actions {
  display: none;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid #f0c6c9;
  border-radius: 20px;
  background: #fff7f7;
  text-align: center;
}

.quote-form__preview.is-open+.quote-form__preview-actions {
  display: block;
}

.quote-form__preview-actions p {
  max-width: 720px;
  margin: 10px auto 0;
  color: #667085;
  line-height: 1.8;
}

#sendQuoteRequestBtn:disabled,
#sendQuoteRequestBtnBottom:disabled {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(.25);
}

#sendQuoteRequestBtn.is-ready,
#sendQuoteRequestBtnBottom.is-ready {
  opacity: 1;
  cursor: pointer;
  filter: none;
}

.button,
button,
.site-header nav a,
.hero h1,
.section__head h2,
.estimate-result h3,
.quote-form__send-box h3,
.site-footer__col h3,
.site-footer__info h3 {
  overflow-wrap: normal;
  line-break: strict;
}

.button,
button,
.site-header nav a {
  white-space: nowrap;
}

.section__head p,
.hero .hero__lead,
.quote-form__send-box p,
.quote-form__block p,
.site-footer__brand p,
.site-footer__info p,
.quote-form__preview-actions p {
  line-height: 1.85;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

@media(max-width:520px) {

  .button,
  button {
    text-align: center;
    white-space: normal;
  }
}

/* v39: 指定説明文の改行位置を手動調整 */
.text-lines--linebreak {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.9;
  overflow-wrap: break-word;
  line-break: strict;
}

.text-lines--linebreak br {
  display: block;
}

.quote-form__send-box .text-lines--linebreak,
.quote-form__preview-actions .text-lines--linebreak {
  max-width: 760px;
}

@media(max-width:640px) {
  .text-lines--linebreak {
    word-break: normal;
    overflow-wrap: break-word;
  }
}

/* v40: PC表示で指定文章が意図しない位置で改行されないよう、行単位で固定 */
.text-lines--pc {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.9;
  text-align: center;
}

.text-lines--pc .text-lines__line {
  display: block;
}

@media(min-width:900px) {
  .text-lines--pc .text-lines__line {
    white-space: nowrap;
    overflow-wrap: normal;
    line-break: strict;
  }
}

@media(max-width:899px) {
  .text-lines--pc {
    max-width: 92vw;
  }

  .text-lines--pc .text-lines__line {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

.quote-form__send-box .text-lines--pc,
.quote-form__preview-actions .text-lines--pc {
  max-width: 760px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.quote-form__preview-actions .text-lines--pc {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/* v41: 指摘箇所のPC改行を短い行単位に再調整 */
.text-lines--balanced,
.text-lines--small {
  display: block;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.95;
  letter-spacing: .02em;
  text-align: center;
}

.text-lines--balanced .text-lines__line,
.text-lines--small .text-lines__line {
  display: block;
  overflow-wrap: normal;
  line-break: strict;
}

.text-lines--small {
  max-width: 720px;
  line-height: 1.85;
}

.estimate-result__helper.text-lines--small,
.estimate-result__actions .text-lines--small {
  color: #667085;
}

#contact .section__head .text-lines--balanced,
#estimate .section__head .text-lines--balanced {
  color: #d71920;
  font-weight: 900;
}

.quote-form__send-box .text-lines--small {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.quote-form__preview-actions .text-lines--small {
  text-align: center;
}

@media(max-width:760px) {

  .text-lines--balanced,
  .text-lines--small {
    max-width: 92vw;
    text-align: center;
  }

  .text-lines--balanced .text-lines__line,
  .text-lines--small .text-lines__line {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

/* v44: Android/スマホの横ズレ・左右スクロール対策 */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  position: relative;
}

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

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

.page__container {
  max-width: 100%;
}

.hero__grid,
.split-layout,
.split-layout--reverse,
.estimate__grid,
.product-types__grid,
.usage-scenes__grid,
.order-flow__grid,
.quick-links__grid,
.site-footer__grid,
.site-footer__info,
.form-grid,
.examples__grid,
.examples__grid--clean,
.quote-form__flow-note {
  min-width: 0;
}

.hero__copy,
.hero__copy--clean,
.section__head,
.estimate-result,
.estimate__form,
.quote-form__block,
.quote-form__send-box,
.quote-form__preview,
.site-footer__brand,
.site-footer__col,
.site-footer__info>div {
  min-width: 0;
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.estimate-result__line {
  min-width: 0;
}

.estimate-result__line span,
.estimate-result__line strong {
  min-width: 0;
  overflow-wrap: break-word;
}

@media(max-width:899px) {

  .text-lines--pc .text-lines__line,
  .text-lines--balanced .text-lines__line,
  .text-lines--small .text-lines__line {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
}

@media(max-width:640px) {
  .page__container {
    width: calc(100% - 28px);
  }

  .hero__grid,
  .hero__grid--clean,
  .split-layout,
  .split-layout--reverse,
  .estimate__grid,
  .product-types__grid,
  .usage-scenes__grid,
  .order-flow__grid,
  .site-footer__grid,
  .site-footer__info,
  .form-grid,
  .examples__grid,
  .examples__grid--clean,
  .quote-form__flow-note {
    grid-template-columns: 1fr !important;
  }

  .hero__image.hero__approved-image,
  .hero__product--clean,
  .hero__approved-image {
    max-width: 100% !important;
    justify-self: center;
  }

  .hero__actions,
  .quote-form__send-actions {
    width: 100%;
  }

  .hero__actions .button,
  .quote-form__send-actions .button,
  .estimate-result__actions .button,
  .examples__cta--clean .button {
    width: 100%;
  }

  .back-to-top {
    right: 10px;
    bottom: 10px;
  }
}

/* v45: スマホの商品仕様順序修正・お問い合わせ導線追加 */
@media(max-width:640px) {
  .spec-set .page__container.spec-set__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .spec-set .page__container.spec-set__grid>div {
    order: 1 !important;
  }

  .spec-set .page__container.spec-set__grid>figure {
    order: 2 !important;
  }
}

.site-header__contact-link {
  background: #d71920 !important;
  color: #fff !important;
}

.quote-form__phone-consult {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
  padding: 20px 22px;
  border: 1px solid #e6ebf0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .05);
}

.quote-form__phone-consult h3 {
  margin: 0 0 6px;
  color: #102a43;
  font-size: 20px;
}

.quote-form__phone-consult p {
  margin: 0;
  color: #475467;
  line-height: 1.8;
}

.floating-contact {
  position: fixed;
  bottom: 14px;
  left: 50%;
  z-index: 9997;
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
  transform: translateX(-50%);
}

.floating-contact a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 128px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.floating-contact__phone {
  border: 2px solid #d71920;
  background: #fff;
  color: #d71920;
}

.floating-contact__quote {
  border: 2px solid #222222;
  background: #222222;
  color: #fff;
}

.floating-contact__form {
  border: 2px solid #d71920;
  background: #d71920;
  color: #fff;
}

@media(max-width:640px) {
  body {
    padding-bottom: 76px;
  }

  .floating-contact {
    bottom: 10px;
    justify-content: center;
    width: calc(100% - 24px);
  }

  .floating-contact a {
    flex: 1;
    min-width: 0;
    padding: 12px 8px;
    font-size: 13px;
  }

  .quote-form__phone-consult {
    display: block;
  }

  .quote-form__phone-consult .button {
    width: 100%;
    margin-top: 14px;
  }
}

@media(min-width:641px) {
  .floating-contact {
    right: 18px;
    bottom: 18px;
    left: auto;
    transform: none;
  }
}

/* v46: 専用お問い合わせフォーム追加・TOPボタン重なり防止 */
.inquiry {
  background: #f7f9fc;
}

.inquiry__form {
  display: grid;
  gap: 22px;
}

.inquiry__send-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid #e6ebf0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .05);
}

.inquiry__send-box h3 {
  margin: 0 0 8px;
  color: #102a43;
  font-size: 22px;
}

.inquiry__send-box p {
  margin: 0;
  color: #475467;
  line-height: 1.8;
}

.inquiry__preview.is-open+.inquiry__bottom-actions {
  display: block;
}

.inquiry__bottom-actions {
  display: none;
}

#sendInquiryBtn:disabled,
#sendInquiryBtnBottom:disabled {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(.25);
}

#sendInquiryBtn.is-ready,
#sendInquiryBtnBottom.is-ready {
  opacity: 1;
  cursor: pointer;
  filter: none;
}

/* TOPボタンと固定連絡バーを重ならない位置へ */
@media(min-width:641px) {
  .floating-contact {
    right: 18px;
    bottom: 18px;
    left: auto;
    transform: none;
  }

  .back-to-top {
    right: 18px !important;
    bottom: 104px !important;
  }
}

@media(max-width:640px) {
  .floating-contact {
    bottom: 10px;
    left: 50%;
    width: calc(100% - 24px);
    transform: translateX(-50%);
  }

  .back-to-top {
    right: 12px !important;
    bottom: 92px !important;
  }

  body {
    padding-bottom: 88px;
  }

  .inquiry__send-box {
    display: block;
  }

  .inquiry__send-box .quote-form__send-actions {
    margin-top: 16px;
  }
}

/* v47: ヘッダー常時表示・ヘッダーのお問い合わせ削除 */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9998 !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

header.site-header {
  display: block !important;
}

body {
  scroll-padding-top: 86px;
}

/* 固定連絡バーがあるため、ヘッダーのお問い合わせは非表示・削除済み */
header nav a[href="#inquiry"],
header nav a[href="#contact"].site-header__contact-link,
header nav .site-header__contact-link {
  display: none !important;
}

@media(max-width:640px) {
  body {
    scroll-padding-top: 76px;
  }
}

/* v48: stickyではなくfixedでヘッダーを常時表示に固定 */
.site-header,
header.site-header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 10000 !important;
  display: block !important;
  visibility: visible !important;
  width: 100% !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
}

body {
  padding-top: 78px !important;
  scroll-padding-top: 90px !important;
}

.hero {
  padding-top: 56px;
}

@media(max-width:640px) {
  body {
    padding-top: 68px !important;
    scroll-padding-top: 80px !important;
  }

  .site-header__inner {
    min-height: 58px;
  }

  .site-header .site-header__logo img {
    height: 40px;
  }
}

/* 固定ヘッダーがアンカー移動時に見出しへ被りすぎないよう調整 */
section[id],
div[id] {
  scroll-margin-top: 96px;
}

@media(max-width:640px) {

  section[id],
  div[id] {
    scroll-margin-top: 84px;
  }
}

/* v51: 製作例拡大時の閉じるボタンが固定ヘッダーに隠れないよう調整 */
.example-lightbox,
#exampleLightbox {
  z-index: 20000 !important;
  padding-top: 96px !important;
}

.example-lightbox__close,
#exampleLightbox .example-lightbox__close,
#exampleLightbox button,
.example-lightbox button {
  z-index: 20002 !important;
}

.example-lightbox__body,
#exampleLightbox .example-lightbox__body {
  max-height: calc(100vh - 130px) !important;
}

@media(max-width:640px) {

  .example-lightbox,
  #exampleLightbox {
    padding-top: 86px !important;
  }

  .example-lightbox__body,
  #exampleLightbox .example-lightbox__body {
    max-height: calc(100vh - 122px) !important;
  }

  .example-lightbox__close,
  #exampleLightbox .example-lightbox__close {
    top: 76px !important;
  }
}

/* v52: シルク印刷3色・4色対応 */
.estimate__silk-color-note {
  grid-column: 1/-1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #f0e1a6;
  border-radius: 14px;
  background: #fff5d9;
  color: #5d4a00;
  font-weight: 800;
  line-height: 1.75;
}

/* v53: グラビア印刷の色数参考ボタン・参考画像モーダル */
.estimate__gravure-guide-note {
  display: grid;
  align-content: start;
  gap: 8px;
}

.estimate__gravure-guide-note small {
  padding: 10px 12px;
  border: 1px solid #f0e1a6;
  border-radius: 12px;
  background: #fff5d9;
  color: #5d4a00;
  font-weight: 800;
  line-height: 1.7;
}

.price__gravure-guide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  padding: 18px;
  border: 1px solid #e6ebf0;
  border-radius: 18px;
  background: #fff;
}

.price__gravure-guide p {
  margin: 0;
  color: #475467;
  line-height: 1.75;
}

.gravure-guide {
  position: fixed;
  z-index: 30000;
  display: none;
  inset: 0;
}

.gravure-guide.is-open {
  display: block;
}

.gravure-guide__overlay {
  position: absolute;
  background: rgba(0, 0, 0, .68);
  inset: 0;
}

.gravure-guide__box {
  position: relative;
  overflow: auto;
  width: min(1040px, calc(100vw - 32px));
  max-height: calc(100vh - 110px);
  margin: 88px auto 22px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.gravure-guide__close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: #d71920;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.gravure-guide__head {
  margin: -30px auto 18px;
  text-align: center;
}

.gravure-guide__head h2 {
  margin: .15em 0 .35em;
  font-size: clamp(26px, 3.6vw, 42px);
}

.gravure-guide__head p {
  max-width: 800px;
  margin: 0 auto;
  color: #475467;
  line-height: 1.85;
}

.gravure-guide__box img {
  width: 100%;
  height: auto;
  border: 1px solid #e6ebf0;
  border-radius: 18px;
  background: #fff;
}

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

@media(max-width:640px) {
  .price__gravure-guide {
    display: block;
  }

  .price__gravure-guide .button {
    width: 100%;
    margin-bottom: 10px;
  }

  .gravure-guide__box {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 106px);
    margin: 78px auto 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .gravure-guide__close {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .gravure-guide__head {
    margin: -26px auto 14px;
  }
}

/* v54: スマホでもグラビア色数参考ボタン・画像が確実に表示されるよう調整 */
.estimate__gravure-guide-note {
  grid-column: 1/-1;
}

@media(max-width:640px) {
  .estimate__gravure-guide-note {
    display: grid;
    gap: 10px;
    grid-column: 1/-1 !important;
    width: 100%;
    margin: 0;
  }

  .estimate__gravure-guide-note .button,
  #gravureColorGuideBtn {
    width: 100%;
    min-height: 48px;
    line-height: 1.45;
    white-space: normal;
  }

  .estimate__gravure-guide-note small {
    display: block;
    width: 100%;
    font-size: 13px;
  }

  .gravure-guide.is-open {
    display: block !important;
  }

  .gravure-guide__box {
    overflow: auto !important;
    width: calc(100vw - 16px) !important;
    max-width: none !important;
    max-height: calc(100vh - 104px) !important;
    margin: 74px auto 12px !important;
    padding: 14px !important;
    -webkit-overflow-scrolling: touch;
  }

  .gravure-guide__box img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .gravure-guide__head p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* v56: グラビア価格修正・片面/両面と色数選択へ変更・倍率非表示 */
.estimate__gravure-spec {
  display: none !important;
}

#gravureSideWrap,
#gravureColorCountWrap {
  display: grid;
}

#gravureSideWrap select,
#gravureColorCountWrap select {
  width: 100%;
}

#gravurePrice .text-note {
  max-width: 980px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

/* v57: グラビア両面時、表面/裏面の色数を別々に選択 */
#gravureFrontColorWrap,
#gravureBackColorWrap {
  display: none;
}

@media(max-width:640px) {

  #gravureFrontColorWrap,
  #gravureBackColorWrap {
    grid-column: 1/-1;
  }
}

.spec-set .spec-set__heading-line,
.print-sample .print-sample__heading-line {
  display: block;
  white-space: nowrap;
}

.spec-set h2,
.print-sample h2 {
  line-height: 1.22 !important;
}

.spec-set .page__container.spec-set__grid>div:last-child {
  max-width: 420px !important;
}

.print-sample .page__container.print-sample__grid>div:first-child {
  max-width: 360px !important;
}

.site-footer__logo-mark img {
  display: block;
  width: auto;
  max-width: 220px !important;
  height: 48px !important;
  margin: 0 auto;
}

@media (max-width: 1080px) {

  .spec-set .page__container.spec-set__grid>div:last-child,
  .print-sample .page__container.print-sample__grid>div:first-child {
    max-width: 100% !important;
  }
}

/* v60: hero spacing / title balance / footer logo fix */
@media (min-width: 961px) {
  .hero__grid {
    align-items: center;
    grid-template-columns: minmax(360px, 430px) minmax(0, 760px) !important;
    gap: 54px !important;
  }

  .hero__image,
  .hero__image.hero__approved-image,
  .hero__approved-image {
    justify-self: end;
  }
}

.spec-set .page__container.spec-set__grid {
  align-items: center !important;
  grid-template-columns: minmax(540px, 1.05fr) minmax(360px, 0.95fr) !important;
  gap: 48px !important;
}

.spec-set .page__container.spec-set__grid>div:last-child {
  max-width: 440px !important;
}

.spec-set .page__container.spec-set__grid>div:last-child h2 {
  line-height: 1.16;
}

.spec-set .page__container.spec-set__grid>div:last-child h2 br {
  display: block;
}

.print-sample .page__container.print-sample__grid {
  align-items: center !important;
  grid-template-columns: minmax(320px, 0.82fr) minmax(620px, 1.18fr) !important;
  gap: 44px !important;
}

.print-sample .page__container.print-sample__grid>div:first-child {
  max-width: 420px !important;
}

.print-sample .page__container.print-sample__grid>div:first-child h2 {
  line-height: 1.16;
}

.print-sample .page__container.print-sample__grid>div:first-child h2 br {
  display: block;
}

.site-footer__logo-mark {
  margin-bottom: 14px;
}

.site-footer__logo-mark img {
  display: block;
  width: auto;
  max-width: 220px;
  height: 44px;
}

@media (max-width: 1080px) {

  .spec-set .page__container.spec-set__grid,
  .print-sample .page__container.print-sample__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .spec-set .page__container.spec-set__grid>div:last-child,
  .print-sample .page__container.print-sample__grid>div:first-child {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .site-footer__logo-mark img {
    max-width: 180px;
    height: 40px;
  }
}

/* v61: final layout refinements */
@media (min-width: 1081px) {
  .hero__grid {
    align-items: center !important;
    grid-template-columns: minmax(400px, 0.95fr) minmax(0, 1.05fr) !important;
  }

  .hero__image.hero__approved-image,
  .hero__approved-image {
    max-width: 560px !important;
    justify-self: end !important;
  }
}

.spec-set .spec-set__heading-line,
.print-sample .print-sample__heading-line {
  display: block;
  white-space: nowrap;
}

.spec-set h2,
.print-sample h2 {
  line-height: 1.22 !important;
}

.spec-set .page__container.spec-set__grid>div:last-child {
  max-width: 420px !important;
}

.print-sample .page__container.print-sample__grid>div:first-child {
  max-width: 360px !important;
}

.site-footer__logo-mark img {
  display: block;
  width: auto;
  max-width: 220px !important;
  height: 48px !important;
  margin: 0 auto;
}

@media (max-width: 1080px) {

  .spec-set .page__container.spec-set__grid>div:last-child,
  .print-sample .page__container.print-sample__grid>div:first-child {
    max-width: 100% !important;
  }
}

/* v62: ヘッダー総合ページ・フッターご案内リンク追加 */
.site-header__main-link {
  border: 1px solid #f0c6c9 !important;
  background: #ffffff !important;
  color: #d71920 !important;
}

.site-header__main-link:hover {
  background: #fff7f7 !important;
}

.site-footer__col--guide a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer__col--guide a:hover {
  text-decoration: underline;
}

@media(min-width:981px) {
  .site-footer__grid {
    grid-template-columns: 1.25fr .9fr .9fr 1.05fr .95fr !important;
    gap: 24px !important;
  }
}

@media(max-width:980px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media(max-width:640px) {
  .site-footer__grid {
    grid-template-columns: 1fr !important;
  }
}

.order-flow {
  scroll-margin-top: 80px;
}

/* 納期目安・Googleクチコミ導線 */
.leadtime-box{margin:0 0 26px;padding:22px 26px;border:1px solid #ead8da;border-left:5px solid #d71920;border-radius:16px;background:#fff8f8}
.leadtime-box__label{margin:0 0 4px;color:#d71920;font-size:12px;font-weight:900;letter-spacing:.12em}
.leadtime-box h3{margin:0 0 12px;font-size:24px;line-height:1.4}
.leadtime-box p{margin:8px 0;color:#333;line-height:1.85}
.leadtime-box a{color:#d71920;text-decoration:underline;text-underline-offset:3px}
.leadtime-box__note{color:#666!important;font-size:13px}
.review-section{padding-top:36px;padding-bottom:44px}
.review-invite{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:22px 26px;border:1px solid #ddd;border-radius:16px;background:#fff}
.review-invite__copy h2{margin:0 0 8px;font-size:22px;line-height:1.4}
.review-invite__copy p{margin:0;color:#444;line-height:1.7}
.review-invite__button{display:inline-flex;align-items:center;justify-content:center;flex:none;min-height:48px;padding:12px 20px;border-radius:999px;background:#d71920;color:#fff;font-weight:900;text-decoration:none}
@media(max-width:720px){.leadtime-box{padding:20px}.review-invite{display:block;padding:20px}.review-invite__copy h2{font-size:20px}.review-invite__button{width:100%;margin-top:16px}}

/* v64: SP header hamburger menu */
.site-header__inner {
  position: relative;
}

.site-header__menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #f0c6c9;
  border-radius: 999px;
  background: #fff;
  color: #d71920;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.site-header__menu-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.site-header__menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header__menu-toggle.is-active .site-header__menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header__menu-toggle.is-active .site-header__menu-icon span:nth-child(2) {
  opacity: 0;
}

.site-header__menu-toggle.is-active .site-header__menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media(max-width:640px) {
  .site-header__inner {
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
  }

  .site-header__menu-toggle {
    display: inline-flex;
  }

  .site-header__nav,
  .site-header nav {
    display: none;
  }

  .site-header__nav.is-open,
  .site-header nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid #f0c6c9;
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .14);
    backdrop-filter: blur(10px);
  }

  .site-header__nav a,
  .site-header nav a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    text-align: center;
  }
}
