@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3793103448vw;
  }
}
@media (min-width: 1160px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #444;
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

/*
 * GSAP出現アニメの初期状態。
 * 既定は「見える」。JS有効かつ reduced-motion でないときだけ
 * script.js が html に .is-anim-ready を付け、出現前に隠す。
 * これで JS失敗時・GSAP未読込時・reduced-motion時は必ず表示される。
 */
.js-anim {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .is-anim-ready .js-anim {
    opacity: 0;
  }
}
.l-footer {
  background-color: #f5f5f4;
  padding: 3rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 4rem 0 2.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .l-footer .l-inner {
    max-width: calc(71.875rem + 50px);
  }
}

.l-footer__body {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer__body {
    grid-template-columns: minmax(0, 419fr) minmax(0, 281fr) minmax(0, 264fr) max-content;
    gap: 0;
  }
}

.l-footer__brand-en {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.8);
}

.l-footer__brand-name {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.0625rem;
  color: #444;
}

.l-footer__brand-address {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.8);
}
@media screen and (min-width: 768px) {
  .l-footer__brand-address {
    margin-top: 1.375rem;
  }
}

.l-footer__nav {
  display: grid;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    display: contents;
  }
}

.l-footer__group-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.8);
}
@media screen and (min-width: 768px) {
  .l-footer__group-title {
    margin-top: 1.8125rem;
  }
}

.l-footer__list {
  margin-top: 1rem;
  display: grid;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-footer__list {
    margin-top: 1.3125rem;
  }
}

.l-footer__link {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5625rem;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.8);
  white-space: nowrap;
}
.l-footer__link.is-disabled {
  cursor: default;
}

.l-footer__copyright {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.8);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    margin-top: 4.5rem;
    font-size: 0.875rem;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 5rem;
    padding: 0 3.1875rem;
  }
}
@media screen and (min-width: 1400px) {
  .l-header__inner {
    padding-left: 6.6875rem;
  }
}

.l-header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1230px) {
  .l-header__logo {
    flex-direction: row;
    align-items: center;
    gap: 1.375rem;
  }
}

.l-header__logo-mark {
  width: 11.25rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-header__logo-mark {
    width: 16.6875rem;
  }
}

.l-header__logo-name {
  width: 8.25rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-header__logo-name {
    width: 9.625rem;
  }
}

/* ハンバーガー */
.l-header__toggle {
  position: relative;
  z-index: 120;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-header__toggle {
    display: none;
  }
}

.l-header__toggle-bar,
.l-header__toggle-bar::before,
.l-header__toggle-bar::after {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 1px;
  background-color: #292524;
  transition: transform 0.3s, opacity 0.3s;
}

.l-header__toggle-bar {
  top: 50%;
  transform: translate(-50%, -50%);
}

.l-header__toggle-bar::before,
.l-header__toggle-bar::after {
  content: "";
  top: 0;
  transform: translateX(-50%);
}

.l-header__toggle-bar::before {
  transform: translate(-50%, -7px);
}

.l-header__toggle-bar::after {
  transform: translate(-50%, 7px);
}

.l-header__toggle.is-open .l-header__toggle-bar {
  background-color: transparent;
}

.l-header__toggle.is-open .l-header__toggle-bar::before {
  transform: translate(-50%, 0) rotate(45deg);
}

.l-header__toggle.is-open .l-header__toggle-bar::after {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* ナビゲーション */
.l-header__nav {
  position: fixed;
  top: 64px;
  right: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(80%, 320px);
  height: calc(100dvh - 64px);
  padding: 2rem 20px 3rem;
  background-color: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.l-header__nav.is-open {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    transform: none;
    transition: none;
  }
}
@media screen and (min-width: 1400px) {
  .l-header__nav {
    gap: 1.8125rem;
  }
}

.l-header__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-header__list {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .l-header__list {
    gap: 1.5625rem;
  }
}

.l-header__link {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.04375rem;
  color: #444;
  white-space: nowrap;
}
.l-header__link.is-disabled {
  cursor: default;
}

.l-header__overlay {
  position: fixed;
  inset: 64px 0 0;
  z-index: 90;
  background-color: rgba(17, 17, 17, 0.35);
}
@media screen and (min-width: 768px) {
  .l-header__overlay {
    display: none;
  }
}

.l-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
  }
}

.l-inner--narrow {
  max-width: 850px;
}

.l-inner--wide {
  max-width: 1325px;
}
@media screen and (min-width: 768px) {
  .l-inner--wide {
    padding: 0 25px;
  }
}

.l-main {
  display: block;
  overflow-x: clip;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s;
}
.c-btn.is-disabled {
  cursor: default;
}

.c-btn__icon {
  flex-shrink: 0;
}

.c-btn__arrow {
  flex-shrink: 0;
}

.c-btn__label {
  white-space: nowrap;
}

/* ヘッダー右のお問い合わせボタン */
.c-btn--header {
  gap: 0.8125rem;
  width: 100%;
  min-height: 2.8125rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  background-color: #44403c;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.04625rem;
}
@media screen and (min-width: 768px) {
  .c-btn--header {
    width: auto;
    min-width: 10.375rem;
    min-height: 2.8125rem;
    padding: 0.75rem 0.75rem;
  }
}
.c-btn--header .c-btn__icon {
  width: 1.0625rem;
  height: auto;
}

/* FV の白いボタン */
.c-btn--light {
  gap: 0;
  width: auto;
  min-width: 15.625rem;
  max-width: 100%;
  min-height: 3.25rem;
  padding: 0.875rem 1.375rem 0.875rem 0.9375rem;
  border-radius: 0.625rem;
  background-color: #fff;
  color: #292524;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.0875rem;
}
.c-btn--light .c-btn__icon {
  width: 1.6875rem;
  height: auto;
  margin-right: 0.4375rem;
}
.c-btn--light .c-btn__arrow {
  width: 0.9375rem;
  height: auto;
  margin-left: 0.25rem;
}

/* カタログセクションの濃色ボタン */
.c-btn--dark {
  gap: 0;
  width: auto;
  min-width: 18.0625rem;
  max-width: 100%;
  min-height: 3.75rem;
  padding: 0.875rem 1.1875rem 0.875rem 0.875rem;
  background-color: #363331;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  line-height: 1.4;
}
.c-btn--dark .c-btn__icon {
  width: 2.1875rem;
  height: auto;
  margin-right: 1rem;
  filter: brightness(0) invert(1);
}
.c-btn--dark .c-btn__arrow {
  width: 0.8125rem;
  height: auto;
  margin-left: 0.25rem;
}

/* 枠線ボタン（法人CTA・下層ページ共通） */
.c-btn--outline {
  gap: 0.625rem;
  min-width: 16.1875rem;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.875rem 2rem;
  border: 1px solid #5f5d5c;
  border-radius: 0.5rem;
  background-color: #fff;
  color: #5f5d5c;
  font-family: "Roboto", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0.0875rem;
}
.c-btn--outline .c-btn__icon {
  width: 0.9375rem;
  height: auto;
}

.c-heading__en {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.15625rem;
  color: rgba(68, 68, 68, 0.71);
}
@media screen and (min-width: 768px) {
  .c-heading__en {
    font-size: 0.875rem;
  }
}

.c-heading__ja {
  margin-top: 0.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.0625rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .c-heading__ja {
    font-size: 2rem;
    line-height: 1.13;
  }
}

.c-heading--left {
  text-align: left;
}

.c-heading--center {
  text-align: center;
}

/* お知らせ見出しは英字の字間が広い */
.p-news .c-heading__en,
.p-lower__head .c-heading__en {
  font-weight: 400;
  letter-spacing: 0.25rem;
  color: rgba(68, 68, 68, 0.6);
}
@media screen and (min-width: 768px) {
  .p-news .c-heading__en,
  .p-lower__head .c-heading__en {
    font-size: 1rem;
  }
}

.c-pagination {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    margin-top: 4rem;
  }
}
.c-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.c-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.625rem;
  border: 1px solid rgba(68, 68, 68, 0.2);
  font-size: 0.875rem;
  line-height: 1;
  color: #444;
  transition: background-color 0.3s, color 0.3s;
}
.c-pagination .page-numbers:hover {
  background-color: #faf9f7;
}
.c-pagination .page-numbers.current {
  border-color: #44403c;
  background-color: #44403c;
  color: #fff;
}
.c-pagination .page-numbers.dots {
  border-color: transparent;
}

.p-article__head {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(68, 68, 68, 0.15);
}

.p-article__date {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.6);
}

.p-article__title {
  margin-top: 0.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-article__title {
    font-size: 1.75rem;
  }
}

.p-article__thumb {
  margin-top: 2rem;
}
.p-article__thumb img {
  width: 100%;
  height: auto;
}

.p-article__body {
  margin-top: 2rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-article__body {
    font-size: 1rem;
    line-height: 2;
  }
}
.p-article__body > * + * {
  margin-top: 1.5rem;
}
.p-article__body h2 {
  margin-top: 3rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-article__body h2 {
    font-size: 1.5rem;
  }
}
.p-article__body h3 {
  margin-top: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-article__body h3 {
    font-size: 1.25rem;
  }
}
.p-article__body a {
  text-decoration: underline;
}
.p-article__body ul,
.p-article__body ol {
  padding-left: 1.5rem;
}
.p-article__body ul {
  list-style: disc;
}
.p-article__body ol {
  list-style: decimal;
}
.p-article__body li + li {
  margin-top: 0.5rem;
}
.p-article__body img {
  height: auto;
}
.p-article__body table {
  width: 100%;
  border-collapse: collapse;
}
.p-article__body table th,
.p-article__body table td {
  padding: 0.75rem;
  border: 1px solid rgba(68, 68, 68, 0.15);
  text-align: left;
}

.p-article__pages {
  margin-top: 2rem;
}

.p-article__nav {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-article__nav {
    margin-top: 4rem;
  }
}

.p-business {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 26.25rem;
  padding: 3.5rem 20px;
}
@media screen and (min-width: 768px) {
  .p-business {
    min-height: 31.875rem;
    padding: 6.4375rem 25px;
  }
}

.p-business__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.p-business__bg img {
  opacity: 0.94;
}

.p-business__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(248, 244, 235, 0.27);
}

.p-business__card {
  width: 100%;
  max-width: 35.375rem;
  padding: 1.75rem 1.25rem 2rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.66);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-business__card {
    padding: 1.25rem 1.5rem 1.375rem;
  }
}

.p-business__en {
  font-family: "Roboto", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.2;
  letter-spacing: 0.3125rem;
  color: #787878;
}
@media screen and (min-width: 768px) {
  .p-business__en {
    font-size: 1rem;
    letter-spacing: 0.375rem;
  }
}

.p-business__title {
  margin-top: 1.125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: #292524;
}
@media screen and (min-width: 768px) {
  .p-business__title {
    margin-top: 1.25rem;
    font-size: 2.25rem;
    line-height: 3rem;
  }
}

.p-business__text {
  margin-top: 1rem;
  font-family: "Roboto", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #4b4a4a;
}
.p-business__text br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-business__text br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .p-business__text {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.p-business .c-btn--outline {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-business .c-btn--outline {
    margin-top: 3rem;
  }
}

.p-catalog {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-catalog {
    padding: 2.9375rem 0 3.3125rem;
  }
}

.p-catalog__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.p-catalog__leaf {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 7.5rem;
  height: auto;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .p-catalog__leaf {
    width: 12.25rem;
  }
}

/*
 * カンプは 4 カラム（ラベル / 表紙 / テキスト / 丸バッジ）を 1262px 幅に並べたもの。
 * 2026-09-26 の差し替えで表紙が「表紙単体（縦長 284x376）」から
 * 「見開き（横長 478x333）」に変わったため、各カラムの比率を取り直している。
 *   ラベル 156 + 余白 9 + 表紙 478 + 余白 38 + 本文 404 + 余白 15 + バッジ 162 = 1262
 * inner が max-width で頭打ちになるため、1312px 以上ではこの % がカンプの px 値そのものになる。
 *
 * 1312px 未満は幅が足りず、% のままだとラベルと本文が折り返してしまう。
 * そこで「折り返してはいけないカラム」に px の下限（min-width）を持たせ、
 * 足りない分は表紙だけを縮めて吸収させている（画像なので縮んでも崩れない）。
 *   ラベル 162px … 「家具コレクション」1 行分（実測 159.4px）＋余裕
 *   本文  412px … 「商品ラインナップは〜」1 行分（実測 403.9px）＋余裕
 *   バッジ 152px … 内側テキスト 96px が円に収まる下限
 * これで 1100px まで横一列を保てる（このとき表紙は約 265px）。
 * 1100px 未満は 2 段組み（上：ラベル＋バッジ／下：表紙＋テキスト）。
 * タブレットのカンプが無いため、この 2 段組みは推論で作成。
 */
.p-catalog__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  max-width: 79.75rem;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-catalog__inner {
    display: grid;
    grid-template-columns: minmax(0, 478fr) minmax(0, 581fr);
    grid-template-areas: "label badge" "cover body";
    align-items: start;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    row-gap: 2.25rem;
    max-width: calc(65.75rem + 50px);
    padding: 0 25px;
  }
}
@media screen and (min-width: 1100px) {
  .p-catalog__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    max-width: calc(78.875rem + 50px);
  }
}

/* 左のたて書き風ラベル */
.p-catalog__label {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-catalog__label {
    grid-area: label;
    text-align: left;
  }
}
@media screen and (min-width: 1100px) {
  .p-catalog__label {
    flex: 0 0 12.361%;
    min-width: 10.125rem;
    margin-right: 0.713%;
    margin-top: 2.9375rem;
  }
}

.p-catalog__label-title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6875rem;
  letter-spacing: 0.25rem;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-catalog__label-title {
    font-size: 1rem;
  }
}

.p-catalog__label-en {
  position: relative;
  margin-top: 2.8125rem;
  font-size: 0.875rem;
  line-height: 0.9375rem;
  letter-spacing: 0.04375rem;
  color: rgba(68, 68, 68, 0.8);
}
.p-catalog__label-en::before {
  content: "";
  position: absolute;
  top: -1.75rem;
  left: 50%;
  width: 2.6875rem;
  height: 1px;
  background-color: rgba(68, 68, 68, 0.5);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-catalog__label-en::before {
    left: 0;
    transform: none;
  }
}

/* カタログ表紙 */
.p-catalog__cover {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-catalog__cover {
    grid-area: cover;
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .p-catalog__cover {
    flex: 0 1 37.877%;
    min-width: 12.5rem;
    max-width: 37.877%;
    margin-right: 3.011%;
    margin-top: 0.4375rem;
  }
}
.p-catalog__cover img {
  width: 100%;
  height: auto;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

/* 右のテキスト */
.p-catalog__body {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-catalog__body {
    grid-area: body;
    text-align: left;
  }
}
@media screen and (min-width: 1100px) {
  .p-catalog__body {
    flex: 0 0 32.013%;
    min-width: 25.75rem;
    margin-right: 1.189%;
    margin-top: 3.4375rem;
  }
}

.p-catalog__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-catalog__title {
    font-size: 2rem;
    line-height: 2.75rem;
  }
}

.p-catalog__text {
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-catalog__text {
    margin-top: 1.625rem;
    font-size: 1rem;
    line-height: 2.75rem;
  }
}

.p-catalog .c-btn--dark {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-catalog .c-btn--dark {
    margin-top: 1.625rem;
  }
}

/* 右上の丸バッジ */
.p-catalog__badge {
  display: grid;
  place-content: center;
  width: 10.125rem;
  height: 10.125rem;
  border: 1px solid #a8a29e;
  border-radius: 50%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-catalog__badge {
    grid-area: badge;
    justify-self: end;
  }
}
@media screen and (min-width: 1100px) {
  .p-catalog__badge {
    flex: 0 0 12.837%;
    min-width: 9.5rem;
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
    margin-top: 0.375rem;
  }
}

.p-catalog__badge-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8125rem;
  color: rgba(68, 68, 68, 0.85);
}

.p-catalog__badge-en {
  position: relative;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.85);
}
.p-catalog__badge-en::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  width: 1.75rem;
  height: 1px;
  background-color: rgba(68, 68, 68, 0.5);
  transform: translateX(-50%);
}

.p-category {
  background-color: #efe9e4;
  padding: 3rem 0 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-category {
    padding: 2.625rem 0 4.875rem;
  }
}

.p-category__inner {
  width: 100%;
  max-width: 1325px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-category__inner {
    padding: 0 25px;
  }
}

@media screen and (min-width: 768px) {
  .p-category__head {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
  }
}

.p-category__lead {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.9;
  letter-spacing: 0.125rem;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-category__lead {
    margin-top: 0;
    margin-bottom: 0.375rem;
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.p-category__list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-category__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
    margin-top: 2.5625rem;
  }
}

.p-category__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 425/345;
}

.p-category__image {
  z-index: -2;
}

.p-category__glow {
  position: absolute;
  z-index: -1;
  inset: auto 0 0 0;
  height: 13.125rem;
  background-image: linear-gradient(to top, var(--glow-color, rgba(134, 117, 109, 0.99)) 0%, var(--glow-color, rgba(134, 117, 109, 0.99)) 22%, var(--glow-fade, rgba(134, 117, 109, 0)) 100%);
}

.p-category__card--dining {
  --glow-color: rgba(107, 102, 99, 0.57);
  --glow-fade: rgba(107, 102, 99, 0);
}

.p-category__card--chair {
  --glow-color: rgba(134, 117, 109, 0.99);
}

.p-category__card--living {
  --glow-color: #86756d;
}

.p-category__body {
  position: absolute;
  left: 2.0625rem;
  bottom: 1.25rem;
  padding-left: 1.375rem;
  color: #fff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}
.p-category__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 1px;
  height: 5.25rem;
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}

.p-category__en {
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-category__en {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}

.p-category__ja {
  margin-top: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-category__ja {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-category__desc {
  margin-top: 0.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-category__desc {
    font-size: 1rem;
  }
}

/* Contact Form 7 の出力に当てるスタイル */
.p-form {
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-form {
    font-size: 1rem;
  }
}

.p-form-notice {
  padding: 1rem;
  border: 1px solid #5f5d5c;
  background-color: #faf9f7;
  font-size: 0.875rem;
  line-height: 1.8;
}

.p-form .wpcf7-form > p {
  display: block;
}

.p-form .wpcf7-form label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  color: #444;
}

.p-form .wpcf7-form p + p {
  margin-top: 1.5rem;
}

.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=url],
.p-form input[type=number],
.p-form input[type=date],
.p-form select,
.p-form textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid rgba(68, 68, 68, 0.3);
  border-radius: 0.25rem;
  background-color: #fff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
.p-form input[type=text]:focus,
.p-form input[type=email]:focus,
.p-form input[type=tel]:focus,
.p-form input[type=url]:focus,
.p-form input[type=number]:focus,
.p-form input[type=date]:focus,
.p-form select:focus,
.p-form textarea:focus {
  outline: 2px solid #5f5d5c;
  outline-offset: 1px;
}

.p-form textarea {
  min-height: 11.25rem;
  resize: vertical;
}

.p-form .wpcf7-list-item {
  display: inline-block;
  margin: 0.5rem 1rem 0 0;
}

.p-form .wpcf7-not-valid-tip {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #c0392b;
}

.p-form .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(68, 68, 68, 0.3);
  font-size: 0.875rem;
  line-height: 1.8;
}

.p-form input[type=submit] {
  display: block;
  min-width: 16.1875rem;
  min-height: 3.25rem;
  margin: 2.5rem auto 0;
  padding: 0.875rem 2rem;
  border: 0;
  border-radius: 0.5rem;
  background-color: #44403c;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.0875rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.p-form input[type=submit]:hover {
  opacity: 0.8;
}

.p-form .wpcf7-spinner {
  display: block;
  margin: 0.75rem auto 0;
}

/* 電話・FAX の案内 */
.p-contact-info {
  margin-top: 3.5rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(68, 68, 68, 0.15);
  background-color: #faf9f7;
}
@media screen and (min-width: 768px) {
  .p-contact-info {
    margin-top: 4.5rem;
    padding: 2rem;
  }
}

.p-contact-info__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-contact-info__title {
    font-size: 1.25rem;
  }
}

.p-contact-info__list {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.p-contact-info__row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
}

.p-contact-info__term {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.6);
}

.p-contact-info__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}
.p-contact-info__desc a {
  text-decoration: underline;
}

/* 「必須」ラベル（フォーム本文の <span class="required">） */
.p-form .required {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.125rem;
  background-color: #44403c;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.0625rem;
  color: #fff;
  vertical-align: middle;
}

.p-fv {
  position: relative;
  isolation: isolate;
  min-height: 32.5rem;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-fv {
    min-height: 50rem;
  }
}

.p-fv__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.p-fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-fv__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(269.2deg, rgba(0, 0, 0, 0) 0.25%, rgba(0, 0, 0, 0.039) 48.2%, rgba(0, 0, 0, 0.091) 99.5%);
}

.p-fv__inner {
  position: relative;
  width: 100%;
  padding: 4.5rem 20px 5rem;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    padding: 9.25rem 25px 10rem 7.875rem;
  }
}

.p-fv__blur {
  position: absolute;
  z-index: -1;
  left: -3.75rem;
  top: 1.25rem;
  width: calc(100% + 7.5rem);
  height: 25rem;
  background-image: radial-gradient(ellipse 18.75rem 5.9375rem at 48% 56%, rgba(48, 43, 44, 0.46) 0%, rgba(48, 43, 44, 0.36) 55%, rgba(48, 43, 44, 0.14) 82%, rgba(48, 43, 44, 0) 100%), radial-gradient(ellipse at 45% 44%, rgba(48, 43, 44, 0.52) 0%, rgba(48, 43, 44, 0.46) 42%, rgba(48, 43, 44, 0.32) 64%, rgba(48, 43, 44, 0.13) 82%, rgba(48, 43, 44, 0) 100%);
}
@media screen and (min-width: 768px) {
  .p-fv__blur {
    left: -5.625rem;
    top: 2.5rem;
    width: 50rem;
    height: 30rem;
    background-image: radial-gradient(ellipse 21.25rem 7.5rem at 40% 66%, rgba(48, 43, 44, 0.34) 0%, rgba(48, 43, 44, 0.24) 55%, rgba(48, 43, 44, 0.08) 82%, rgba(48, 43, 44, 0) 100%), radial-gradient(ellipse at 42% 48%, rgba(48, 43, 44, 0.5) 0%, rgba(48, 43, 44, 0.44) 42%, rgba(48, 43, 44, 0.3) 64%, rgba(48, 43, 44, 0.12) 82%, rgba(48, 43, 44, 0) 100%);
  }
}

.p-fv__body {
  position: relative;
}

.p-fv__title {
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #f7f5f1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    margin-top: 0.625rem;
    font-size: 3.75rem;
    line-height: 4.4375rem;
  }
}

.p-fv__lead {
  margin-top: 1rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9;
  color: rgba(247, 245, 241, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 0 4px rgba(0, 0, 0, 0.35);
}
@media screen and (min-width: 768px) {
  .p-fv__lead {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.p-fv .c-btn--light {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-fv .c-btn--light {
    margin-top: 1.4375rem;
  }
}

/*
 * 下層ページの共通枠。
 * 下層のデザインカンプが無いため、トップページの配色・書体・見出しの
 * 組み方をそのまま流用してサイト全体のトーンを揃えている。
 * 404ページもこの枠をそのまま使う。
 */
.p-lower__head {
  background-color: #faf9f7;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .p-lower__head {
    padding: 4.5rem 0;
  }
}

.p-lower__body {
  padding: 3rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .p-lower__body {
    padding: 4.5rem 0 7rem;
  }
}

.p-lower__lead {
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-lower__lead {
    margin-bottom: 3rem;
    font-size: 1rem;
  }
}

.p-news {
  background-color: #fff;
  padding: 3.5rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding: 4.3125rem 0 7.625rem;
  }
}

.p-news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.p-news__more {
  display: inline-flex;
  align-items: center;
  gap: 0.6875rem;
  flex-shrink: 0;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.8);
}
@media screen and (min-width: 768px) {
  .p-news__more {
    font-size: 0.875rem;
  }
}

.p-news__more-arrow {
  width: 0.8125rem;
  height: auto;
}

.p-news__list {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 2.625rem;
    gap: 1.5rem;
  }
}

.p-news__list--page {
  margin-top: 0;
}

.p-news__link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: start;
  gap: 0.25rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news__link {
    grid-template-columns: 8.25rem auto auto;
    gap: 0.6875rem;
  }
}

.p-news__date {
  grid-column: 1/-1;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.0625rem;
  color: rgba(68, 68, 68, 0.6);
}
@media screen and (min-width: 768px) {
  .p-news__date {
    grid-column: auto;
    font-size: 0.875rem;
  }
}

.p-news__title {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.0625rem;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1rem;
    line-height: 1.3125rem;
  }
}

.p-news__icon {
  width: 1.1875rem;
  height: auto;
  justify-self: end;
}
@media screen and (min-width: 768px) {
  .p-news__icon {
    justify-self: start;
  }
}

.p-news__empty {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(68, 68, 68, 0.8);
}

/*
 * プライバシーポリシー本文。
 * カンプ（Figma 4861:2）は本文16px・見出し20px太字・行間1.7の
 * テキストのみの構成。節の区切りは空行1行分（約28px）で取っている。
 * 文字色はカンプの #333 ではなくサイト共通トークンに合わせた。
 * カンプは1148px幅で改行位置が決まっているが、下層本文は800px幅の
 * ため、1文の途中で入っている改行は畳んで自然折り返しにしている。
 */
.p-privacy {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    font-size: 1rem;
  }
}

.p-privacy__lead {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__lead {
    margin-bottom: 1.75rem;
  }
}

.p-privacy__section + .p-privacy__section {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__section + .p-privacy__section {
    margin-top: 1.75rem;
  }
}

.p-privacy__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    font-size: 1.25rem;
  }
}

/* カンプの「・」付き箇条書き。折り返しても行頭が揃うようぶら下げる */
.p-privacy__item {
  padding-left: 1em;
  text-indent: -1em;
}
.p-privacy__item::before {
  content: "・";
}

.p-privacy__foot {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__foot {
    margin-top: 1.75rem;
  }
}

/* 在庫表（お取引先様向け。PDF を開くボタンだけを置く） */
.p-zaiko {
  text-align: center;
}

.p-zaiko__updated {
  color: rgba(68, 68, 68, 0.8);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.p-zaiko__action {
  margin-top: 1rem;
}

.p-zaiko__note,
.p-zaiko__empty {
  margin-top: 1.5rem;
  color: rgba(68, 68, 68, 0.8);
  font-size: 0.9375rem;
  line-height: 2;
}

.p-zaiko__empty a {
  text-decoration: underline;
}

/*
 * parallax 画像の共通スタイル。
 *
 * script.js の initParallax が .js-parallax の中の .js-parallax__img を
 * y: 30px → -30px で動かす。動かしたときに上下へ地の色が露出しないよう、
 * 画像を「中央寄せ ＋ 上下 32px ずつののりしろ」で置く。
 *   height: calc(100% + 64px) = 上下 32px ずつ余る → ±30px 動かしても 2px 残る
 *
 * translateY(-50%) は CSS 側にも持たせている。
 * 中央寄せを gsap.set だけに頼ると、GSAP の読み込みに失敗したときや
 * JS が止まったときに画像が中央から大きくズレて表示が崩れるため。
 * GSAP は既存の translate を yPercent として解釈するので二重にはならない。
 *
 * 横方向は動かさないので left: 0 / width: 100% で合わせる。
 * 参考コードのように left: 50% + translateX(-50%) にすると、
 * カード幅が小数（grid の 1fr で 408.328px 等）のときに transform の
 * 丸めで 0.17px ほど横にずれ、背景が線状に覗くため採用していない。
 *
 * 親（.js-parallax 側）には overflow: hidden が必要。
 * .p-catalog / .p-category__card / .p-business いずれも指定済み。
 */
.js-parallax__img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% + 64px);
  -o-object-fit: cover;
     object-fit: cover;
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

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

a.u-sr-only:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  clip: auto;
  background-color: #fff;
  color: #444;
  font-size: 0.875rem;
}
/*# sourceMappingURL=style.css.map */
