@charset "UTF-8";
.catalog-product-card {
  display: flex;
  height: 100%;
  overflow: hidden;
  border: 1px solid #decfd1;
  background: #fff;
  box-shadow: 0 14px 34px rgba(76, 47, 54, 0.07);
  flex-direction: column;
}

.catalog-product-card__link {
  display: flex;
  height: 100%;
  color: inherit;
  flex: 1;
  flex-direction: column;
  text-decoration: none;
}

.catalog-product-card__link:hover {
  color: inherit;
  text-decoration: none;
}

.catalog-product-card .catalog-product-card__link:focus-visible {
  outline: 3px solid #6e3c46;
  outline-offset: -3px;
}

.catalog-product-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #eee8e2;
}

.catalog-product-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-product-card__visual > .catalog-product-card__image--placeholder {
  padding: 20%;
  background: #f5efeb;
  object-fit: contain;
}

.catalog-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  overflow: hidden;
  padding: 7px 11px;
  color: #fff;
  background: rgba(101, 52, 61, 0.94);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-product-card__body {
  display: flex;
  min-height: 176px;
  padding: 20px 20px 19px;
  flex: 1;
  flex-direction: column;
}

.catalog-product-card__meta {
  margin: 0;
  color: #765228;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.catalog-product-card__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-product-card__brands li {
  padding: 4px 7px;
  border: 1px solid #e6d9d8;
  color: #65343d;
  background: #fbf6f5;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.catalog-product-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: #372d30;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.catalog-product-card__price {
  display: flex;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid #eee5e2;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: #74666a;
}

.catalog-product-card__price > span {
  font-size: 0.64rem;
  line-height: 1.5;
}

.catalog-product-card__price > strong {
  color: #65343d;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.catalog-product-card__price small {
  font-size: 0.58rem;
  font-weight: 500;
}

.catalog-product-card__price--contact > strong {
  font-size: 0.75rem;
  white-space: normal;
  text-align: right;
}

.catalog-product-card__detail {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
  color: #65343d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.catalog-product-card__detail > span {
  transition: transform 180ms ease;
}

.catalog-product-card__link:hover .catalog-product-card__detail > span {
  transform: translateX(4px);
}

@media (max-width: 575.98px) {
  .catalog-product-card__body {
    min-height: 166px;
    padding: 18px 17px 17px;
  }
  .catalog-product-card h3 {
    font-size: 1.05rem;
  }
  .catalog-product-card__badge {
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    font-size: 0.56rem;
  }
  .catalog-product-card__price {
    display: block;
  }
  .catalog-product-card__price > span,
  .catalog-product-card__price > strong {
    display: block;
    text-align: left;
  }
  .catalog-product-card__price > strong {
    margin-top: 4px;
    font-size: 0.8rem;
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  .catalog-product-card__detail > span,
  .catalog-product-card__link:hover .catalog-product-card__detail > span {
    transition: none;
    transform: none;
  }
}
.takeyama-home {
  --home-ink: #372d30;
  --home-muted: #74666a;
  --home-rose: #91505d;
  --home-rose-dark: #65343d;
  --home-blush: #f6e7e9;
  --home-blush-deep: #eac8ce;
  --home-cream: #fbf8f3;
  --home-gold: #a98758;
  color: var(--home-ink);
  overflow: hidden;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

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

.takeyama-home a {
  color: inherit;
}

.takeyama-home a:focus-visible {
  outline: 3px solid #6e3c46;
  outline-offset: 4px;
}

.home-eyebrow {
  margin: 0 0 18px;
  color: var(--home-rose);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4;
}

.home-eyebrow--light {
  color: #f7dce1;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: clamp(650px, 76vh, 820px);
  align-items: center;
  isolation: isolate;
  background: #3d3033;
}

.home-hero__image,
.home-studio > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__image {
  object-position: center 48%;
}

.home-hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 22, 26, 0.87) 0%, rgba(43, 27, 32, 0.72) 34%, rgba(43, 27, 32, 0.18) 68%, rgba(43, 27, 32, 0.05) 100%), linear-gradient(0deg, rgba(28, 19, 22, 0.42), transparent 42%);
}

.home-hero__inner {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
}

.home-hero__content {
  max-width: 660px;
  color: #fff;
}

.home-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(3rem, 5.6vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.28;
  text-shadow: 0 2px 22px rgba(23, 13, 16, 0.2);
}

.home-hero__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.03rem;
  letter-spacing: 0.07em;
  line-height: 2;
}

.home-hero__actions,
.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
}

.home-button {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 26px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--home-ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-button:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
}

.takeyama-home .home-button--primary {
  color: #33262a;
  background: #f2d2d7;
  border-color: #f2d2d7;
}

.takeyama-home .home-button--primary:hover {
  color: #33262a;
  background: #f8e4e7;
  border-color: #f8e4e7;
}

.takeyama-home .home-button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(35, 22, 26, 0.16);
}

.takeyama-home .home-button--outline:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.takeyama-home .home-button--light {
  color: #3b2d31;
  background: #fff;
}

.takeyama-home .home-button--light:hover {
  color: #3b2d31;
  background: #f7e8ea;
}

.takeyama-home .home-button--dark {
  color: #fff;
  background: var(--home-rose-dark);
}

.takeyama-home .home-button--dark:hover {
  color: #fff;
  background: #4f2830;
}

.home-hero__caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.home-trust {
  position: relative;
  z-index: 2;
  color: var(--home-ink);
  background: var(--home-blush);
  border-bottom: 1px solid #ead8db;
}

.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  padding-bottom: 0;
}

.home-trust__item {
  display: flex;
  min-height: 132px;
  padding: 26px 22px;
  border-left: 1px solid #ddc3c8;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.home-trust__item:last-child {
  border-right: 1px solid #ddc3c8;
}

.home-trust__item strong {
  color: var(--home-rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.home-trust__item strong small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.home-trust__item > span {
  max-width: 120px;
  color: #69595d;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.home-fair {
  padding: 48px 0 0;
  background: #fff;
}

.takeyama-home .home-fair__card {
  display: grid;
  min-height: 390px;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  color: #fff;
  background: radial-gradient(circle at 92% 10%, rgba(242, 210, 215, 0.2), transparent 29%), #4b2c45;
  box-shadow: 0 22px 54px rgba(73, 43, 53, 0.16);
  text-decoration: none;
}

.takeyama-home .home-fair__card:hover {
  color: #fff;
  text-decoration: none;
}

.home-fair__visual {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  background: #e9b3bd;
}

.home-fair__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-fair__card:hover .home-fair__visual img {
  transform: scale(1.035);
}

.home-fair__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: rgba(71, 35, 64, 0.84);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.home-fair__copy {
  position: relative;
  display: flex;
  padding: clamp(44px, 5vw, 72px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.home-fair__date {
  color: #f5d9df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.77rem;
  letter-spacing: 0.16em;
}

.home-fair__label {
  margin-top: 12px;
  color: #fff;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.home-fair__copy > h2 {
  margin: 22px 0 0;
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.home-fair__description {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.home-fair__cta {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  align-items: center;
  gap: 24px;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-fair__cta > span {
  transition: transform 180ms ease;
}

.home-fair__card:hover .home-fair__cta > span {
  transform: translateX(4px);
}

.home-section {
  padding: 112px 0;
}

.home-section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.home-section-heading--left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.home-section-heading h2,
.home-studio h2,
.home-final-cta h2 {
  margin: 0;
  color: var(--home-ink);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.48;
}

.home-section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--home-muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.home-categories {
  position: relative;
  background: radial-gradient(circle at 0 0, rgba(226, 191, 198, 0.22), transparent 28%), #fff;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.takeyama-home .home-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2/3;
  color: #fff;
  background: #59484c;
  text-decoration: none;
}

.takeyama-home .home-category-card:hover {
  color: #fff;
  text-decoration: none;
}

.home-category-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-category-card:hover > img {
  transform: scale(1.035);
}

.home-category-card__image--wedding {
  object-position: center 38% !important;
}

.home-category-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 20, 24, 0.9) 0%, rgba(31, 20, 24, 0.48) 30%, rgba(31, 20, 24, 0.02) 68%);
}

.home-category-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 28px 24px 24px;
  flex-direction: column;
  align-items: flex-start;
}

.home-category-card__copy small {
  margin-bottom: 5px;
  color: #f3cfd5;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-category-card__copy strong {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.home-category-card__copy > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  line-height: 1.6;
}

.home-category-card__copy em {
  margin-top: 16px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home-more-categories {
  display: flex;
  margin-top: 32px;
  padding: 22px 28px;
  border: 1px solid #e7dcde;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: rgba(255, 255, 255, 0.86);
}

.home-more-categories > span {
  color: var(--home-rose);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-more-categories a {
  color: #55484b;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.home-more-categories a:hover,
.home-text-link:hover {
  color: var(--home-rose-dark);
  text-decoration: none;
}

.home-service {
  background: var(--home-cream);
}

.home-service .container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.home-service__intro > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  line-height: 2;
}

.home-text-link {
  display: inline-flex;
  margin-top: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--home-rose);
  align-items: center;
  gap: 30px;
  color: var(--home-rose-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.home-service-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-service-steps li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid #dcd2cb;
}

.home-service-steps li:last-child {
  border-bottom: 1px solid #dcd2cb;
}

.home-service-steps li > span {
  color: var(--home-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
}

.home-service-steps h3 {
  margin: 0;
  color: var(--home-ink);
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.home-service-steps p {
  margin: 10px 0 0;
  color: var(--home-muted);
  font-size: 0.84rem;
  line-height: 1.9;
}

.home-studio {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  isolation: isolate;
  background: #3b171e;
}

.home-studio > img {
  object-position: center 43%;
}

.home-studio__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 12, 18, 0.9) 0%, rgba(51, 18, 25, 0.72) 38%, rgba(51, 18, 25, 0.12) 72%);
}

.home-studio__inner {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-studio__copy {
  max-width: 560px;
  color: #fff;
}

.home-studio h2 {
  color: #fff;
}

.home-studio__copy > p:not(.home-eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.home-studio .home-button {
  margin-top: 30px;
}

.home-online {
  padding: 108px 0 84px;
  background: #fff;
}

.home-online > .container:first-child .home-section-heading {
  margin-bottom: 50px;
}

.home-online-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #ded4d6;
  border-bottom: 1px solid #ded4d6;
}

.home-online-card {
  position: relative;
  display: grid;
  min-height: 310px;
  padding: 36px 34px 32px;
  border-left: 1px solid #ded4d6;
  grid-template-rows: auto 1fr auto;
  color: var(--home-ink);
  background: #fff;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.home-online-card:last-child {
  border-right: 1px solid #ded4d6;
}

.home-online-card:hover {
  color: var(--home-ink);
  background: var(--home-cream);
  text-decoration: none;
  transform: translateY(-3px);
}

.home-online-card > span {
  color: var(--home-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-style: italic;
}

.home-online-card > div {
  align-self: center;
}

.home-online-card small {
  color: var(--home-rose);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-online-card h3 {
  margin: 9px 0 0;
  color: var(--home-ink);
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.home-online-card p {
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.85;
}

.home-online-card > strong {
  justify-self: end;
  color: var(--home-rose-dark);
  font-size: 1.15rem;
  font-weight: 400;
}

.home-catalog {
  overflow: hidden;
  border-top: 1px solid #ead8db;
  background: radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.8) 0 4px, transparent 5px), linear-gradient(180deg, #f8ecee 0%, #fdf9f7 100%);
  background-size: 72px 72px, auto;
}

.home-catalog .home-section-heading {
  margin-bottom: 26px;
}

.home-catalog__guide {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--home-rose);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.home-catalog__guide > span:last-child {
  font-size: 1rem;
  letter-spacing: 0;
}

.home-catalog__list {
  display: grid;
  overflow-x: auto;
  margin: 0;
  padding: 3px 2px 22px;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  gap: 18px;
  list-style: none;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--home-rose) transparent;
  scrollbar-width: thin;
}

.home-catalog__list::-webkit-scrollbar {
  height: 7px;
}

.home-catalog__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--home-rose);
}

.home-catalog__list:focus-visible {
  border-radius: 2px;
  outline: 3px solid #6e3c46;
  outline-offset: 5px;
}

.home-catalog__item {
  min-width: 0;
  scroll-snap-align: start;
}

.home-catalog__footer {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.home-catalog__footer > p {
  max-width: 670px;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.74rem;
  line-height: 1.8;
}

.home-catalog__footer .home-button {
  flex: 0 0 auto;
}

.home-contracts {
  overflow: hidden;
  border-top: 1px solid #eee3df;
  background: var(--home-cream);
}

.home-contracts .home-section-heading {
  margin-bottom: 26px;
}

.home-contracts__guide {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--home-rose);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.home-contracts__guide > span:last-child {
  font-size: 1rem;
  letter-spacing: 0;
}

.home-contracts__list {
  display: grid;
  overflow-x: auto;
  margin: 0;
  padding: 3px 2px 22px;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  gap: 18px;
  list-style: none;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--home-blush-deep) transparent;
  scrollbar-width: thin;
}

.home-contracts__list::-webkit-scrollbar {
  height: 7px;
}

.home-contracts__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--home-blush-deep);
}

.home-contracts__list:focus-visible {
  border-radius: 2px;
  outline: 3px solid #6e3c46;
  outline-offset: 5px;
}

.home-contracts__item {
  min-width: 0;
  scroll-snap-align: start;
}

.takeyama-home .home-contract-card {
  display: flex;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e2d7d2;
  color: var(--home-ink);
  background: #fff;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.takeyama-home .home-contract-card:hover {
  border-color: #d6bdc2;
  color: var(--home-ink);
  box-shadow: 0 18px 40px rgba(73, 47, 54, 0.1);
  text-decoration: none;
  transform: translateY(-3px);
}

.home-contract-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #f4f1ec;
}

.home-contract-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-contract-card:hover .home-contract-card__visual > img {
  transform: scale(1.025);
}

.home-contract-card__status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(101, 52, 61, 0.94);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.home-contract-card__body {
  display: flex;
  min-height: 174px;
  padding: 20px 20px 18px;
  flex: 1;
  flex-direction: column;
}

.home-contract-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--home-muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.home-contract-card__meta time {
  color: var(--home-rose);
  white-space: nowrap;
}

.home-contract-card__body > strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 13px;
  color: var(--home-ink);
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-contract-card__link {
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--home-rose-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.home-contract-card__link > span {
  font-size: 1rem;
  font-weight: 400;
}

.home-contracts__note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--home-muted);
  font-size: 0.74rem;
  line-height: 1.8;
  text-align: center;
}

.home-final-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.85) 0 5px, transparent 6px), radial-gradient(circle at 88% 74%, rgba(255, 255, 255, 0.75) 0 4px, transparent 5px), var(--home-blush);
  background-size: 64px 64px, 74px 74px, auto;
}

.home-final-cta__inner {
  max-width: 850px;
}

.home-final-cta__inner > p:not(.home-eyebrow) {
  margin: 22px auto 0;
  color: #65575a;
  font-size: 0.9rem;
  line-height: 1.9;
}

.home-final-cta__actions {
  justify-content: center;
}

.home-final-cta__actions .home-text-link {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .home-section {
    padding: 86px 0;
  }
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-more-categories {
    flex-wrap: wrap;
    gap: 18px 30px;
  }
  .home-more-categories > span {
    width: 100%;
    text-align: center;
  }
  .home-service .container {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .home-service__intro {
    max-width: 720px;
  }
  .home-online-grid {
    grid-template-columns: 1fr;
  }
  .home-online-card {
    min-height: 0;
    border-right: 1px solid #ded4d6;
    border-bottom: 1px solid #ded4d6;
    grid-template-columns: 50px 1fr auto;
    grid-template-rows: auto;
    gap: 18px;
    align-items: center;
  }
  .home-online-card:last-child {
    border-bottom: 0;
  }
  .home-online-card > div {
    align-self: auto;
  }
  .home-catalog__list {
    grid-auto-columns: 42%;
  }
  .home-contracts__list {
    grid-auto-columns: 42%;
  }
}
@media (max-width: 767.98px) {
  .home-hero {
    min-height: 700px;
    align-items: flex-end;
  }
  .home-hero__image {
    object-position: 44% center;
  }
  .home-hero__shade {
    background: linear-gradient(0deg, rgba(31, 20, 24, 0.94) 0%, rgba(31, 20, 24, 0.66) 50%, rgba(31, 20, 24, 0.08) 82%), linear-gradient(90deg, rgba(31, 20, 24, 0.44), rgba(31, 20, 24, 0.08));
  }
  .home-hero__inner {
    padding-top: 180px;
    padding-bottom: 52px;
  }
  .home-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
    letter-spacing: 0.05em;
  }
  .home-hero__lead {
    margin-top: 22px;
    font-size: 0.9rem;
    line-height: 1.85;
  }
  .home-desktop-break {
    display: none;
  }
  .home-hero__caption {
    display: none;
  }
  .home-trust__item {
    min-height: 108px;
    padding: 20px 8px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .home-trust__item strong {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
  .home-trust__item strong small {
    font-size: 0.55rem;
  }
  .home-trust__item > span {
    max-width: 105px;
    font-size: 0.62rem;
    line-height: 1.5;
  }
  .home-fair {
    padding-top: 26px;
  }
  .takeyama-home .home-fair__card {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .home-fair__visual {
    min-height: 0;
    aspect-ratio: 16/10;
  }
  .home-fair__visual img {
    object-position: center 30%;
  }
  .home-fair__badge {
    top: 16px;
    left: 16px;
    width: 66px;
    height: 66px;
    font-size: 0.73rem;
  }
  .home-fair__copy {
    padding: 30px 25px 34px;
  }
  .home-fair__copy > h2 {
    margin-top: 18px;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  .home-fair__description {
    margin-top: 15px;
    font-size: 0.8rem;
  }
  .home-fair__cta {
    margin-top: 22px;
  }
  .home-section,
  .home-online {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .home-section-heading {
    margin-bottom: 36px;
  }
  .home-section-heading h2,
  .home-studio h2,
  .home-final-cta h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  .home-section-heading > p:last-child {
    font-size: 0.84rem;
  }
  .home-category-grid {
    gap: 10px;
  }
  .home-category-card__copy {
    padding: 19px 16px 17px;
  }
  .home-category-card__copy small {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }
  .home-category-card__copy strong {
    font-size: 1.55rem;
  }
  .home-category-card__copy > span {
    font-size: 0.64rem;
  }
  .home-category-card__copy em {
    margin-top: 10px;
    font-size: 0.64rem;
  }
  .home-more-categories {
    padding: 20px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .home-more-categories > span {
    width: auto;
    margin-bottom: 3px;
    text-align: left;
  }
  .home-service-steps li {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .home-service-steps h3 {
    font-size: 1.15rem;
  }
  .home-studio {
    min-height: 620px;
    align-items: flex-end;
  }
  .home-studio > img {
    object-position: 64% center;
  }
  .home-studio__shade {
    background: linear-gradient(0deg, rgba(37, 12, 18, 0.94) 0%, rgba(37, 12, 18, 0.68) 50%, rgba(37, 12, 18, 0.08) 86%);
  }
  .home-studio__inner {
    padding-top: 220px;
    padding-bottom: 52px;
  }
  .home-online > .container:first-child .home-section-heading {
    margin-bottom: 34px;
  }
  .home-online-card {
    padding: 26px 20px;
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
  }
  .home-online-card h3 {
    font-size: 1.2rem;
  }
  .home-online-card p {
    margin-top: 9px;
    font-size: 0.76rem;
  }
  .home-catalog__guide,
  .home-contracts__guide {
    justify-content: flex-start;
  }
  .home-catalog__list,
  .home-contracts__list {
    grid-auto-columns: 78%;
  }
  .home-catalog__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .home-final-cta {
    padding: 74px 0;
  }
}
@media (max-width: 575.98px) {
  .home-hero__actions,
  .home-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .home-button {
    width: 100%;
  }
  .home-final-cta__actions .home-text-link {
    align-self: center;
  }
  .home-catalog__list,
  .home-contracts__list {
    grid-auto-columns: 82%;
  }
  .home-contract-card__body {
    min-height: 164px;
    padding: 18px 17px 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .home-catalog__list,
  .home-contracts__list {
    grid-auto-columns: calc((100% - 36px) / 3);
  }
}
@media (prefers-reduced-motion: reduce) {
  .takeyama-home *,
  .takeyama-home *::before,
  .takeyama-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}