@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased; /* Webkit系ブラウザで適用 */
  -moz-osx-font-smoothing: grayscale; /* macOSで適用 */
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  opacity: 0;
}

.l-main {
  flex-grow: 1;
}

html.is-scroll {
  overflow: hidden;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ブラウザの標準マージンを削除 */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* bodyの基本設定 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* ul, ol のリストマークと余白を削除（クラス指定がある場合） */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* クラスがないaタグの下線スタイルを整える */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* 全てのaタグの下線を消し、親要素の色を引き継ぐ */
a {
  color: inherit;
  text-decoration: none;
}

/* 画像のサイズ調整しやすく */
img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

/* addressタグの斜体を通常に戻す */
address {
  font-style: normal;
}

/* フォーム要素に親と同じフォントを使う */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォーム要素のリセット（装飾や見た目を初期化） */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

/* textareaのみリサイズを縦方向のみに */
textarea {
  resize: vertical;
}

/* チェックボックスとラジオボタンを非表示（後でカスタムスタイルを当てる想定） */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* ボタンやラベルのカーソルをポインターに */
input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

/* IEのセレクトボックス右側の矢印を非表示 */
select::-ms-expand {
  display: none;
}

/* アニメーションやスクロールを無効に（視覚的に配慮が必要なユーザー向け） */
.l-footer {
  background-color: #2b1e17;
  color: #ffffff;
  padding-block: 4rem 3rem;
  padding-inline: 7.5rem;
  width: 100%;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
  margin-inline: auto;
  max-width: 75rem;
  width: 100%;
}

.l-footer__main {
  display: flex;
  gap: 3.75rem;
  justify-content: space-between;
}

/*-----------------------------
	ブランドブロック（ロゴ + 会社情報 + 問い合わせ CTA）
	SP 順序: ロゴ → ナビ → 会社情報（display: contents で brand 平坦化済）
------------------------------*/
.l-footer__brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 3.75rem;
  max-width: 100%;
  width: 18.9375rem;
}

.l-footer__logo {
  display: block;
  transition: opacity 300ms ease;
  width: 7.6875rem;
}
.l-footer__logo img {
  height: auto;
  width: 100%;
}

.l-footer__company {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.l-footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.l-footer__company-name,
.l-footer__address {
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.l-footer__contact {
  align-items: center;
  background-color: #ffffff;
  color: #53443b;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  min-height: 2.375rem;
  padding-block: 0.625rem;
  padding-inline: 3rem;
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
/*-----------------------------
	ナビゲーション（メインリンク + サブリンク群）
------------------------------*/
.l-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 100%;
  width: 31.5625rem;
}

.l-footer__nav-list {
  align-items: flex-start;
  display: flex;
  gap: 2.5rem;
  max-width: 100%;
  width: 31.5625rem;
}

.l-footer__nav-item {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.l-footer__nav-link {
  color: #ffffff;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.075em;
  line-height: 1.125;
  padding-block: 0.3125rem;
  position: relative;
}

.l-footer__nav-link::after {
  background-color: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 300ms ease;
  width: 0;
}
.l-footer__sublist {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-left: 0.625rem;
}

.l-footer__sublink {
  color: #ffffff;
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.0857em;
  line-height: 1.2857142857;
  padding-block: 0.3125rem;
  position: relative;
}

.l-footer__sublink::after {
  background-color: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 300ms ease;
  width: 0;
}
/*-----------------------------
	下段（区切り線 + コピーライト + ユーティリティリンク）
------------------------------*/
.l-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

.l-footer__divider {
  background-color: #ffffff;
  height: 1px;
  width: 100%;
}

.l-footer__copyright-row {
  text-align: center;
}

.l-footer__copyright {
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.l-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(102, 102, 102, 0) 100%);
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  height: 4.375rem;
  left: 0;
  padding-block: 0.5rem;
  padding-inline: 2.5rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.l-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.l-header__logo {
  display: block;
  flex-shrink: 0;
  transition: opacity 300ms ease;
  width: 9rem;
}
.l-header__logo img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  height: auto;
  width: 100%;
}

.l-header__right {
  align-items: center;
  display: flex;
  gap: 3.75rem;
}

.l-header__nav-list {
  align-items: center;
  display: flex;
  gap: 2.5rem;
}

.l-header__nav-link {
  color: #ffffff;
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
  padding-block: 0.3125rem;
  position: relative;
}

.l-header__nav-link::after {
  background-color: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 300ms ease;
  width: 0;
}
.l-header__contact {
  align-items: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.875rem;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
  padding-block: 0.625rem;
  padding-inline: 1.5rem;
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-header__hamburger {
  align-items: center;
  background: transparent;
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  height: 2.75rem;
  justify-content: center;
  position: relative;
  width: 2.75rem;
  z-index: 110;
}

.l-header__hamburger-bar {
  background-color: #ffffff;
  display: block;
  height: 0.125rem;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  width: 1.5rem;
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-bar {
  background-color: #ffffff;
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-bar:nth-child(1) {
  -webkit-transform: translateY(0.5rem) rotate(45deg);
  transform: translateY(0.5rem) rotate(45deg);
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-bar:nth-child(3) {
  -webkit-transform: translateY(-0.5rem) rotate(-45deg);
  transform: translateY(-0.5rem) rotate(-45deg);
}

.l-header__drawer {
  align-items: flex-start;
  background-color: #2b1e17;
  display: flex;
  height: 100vh;
  justify-content: center;
  opacity: 0;
  overflow-y: auto;
  padding-block: 7.5rem 3.75rem;
  padding-inline: 2.5rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  width: 100vw;
  z-index: 99;
}

.l-header__drawer.is-open {
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-header__drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.l-header__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  max-width: 32.5rem;
  width: 100%;
}

/*-----------------------------
	メニューリスト
------------------------------*/
.l-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.l-header__drawer-item {
  border-top: 1px solid rgba(245, 240, 235, 0.18);
  position: relative;
}
.l-header__drawer-item:last-child {
  border-bottom: 1px solid rgba(245, 240, 235, 0.18);
}
.l-header__drawer-item {
  -webkit-transform: translateY(1.5rem);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 180ms ease-in, -webkit-transform 180ms ease-in;
  transition: opacity 180ms ease-in, transform 180ms ease-in;
  transition: opacity 180ms ease-in, transform 180ms ease-in, -webkit-transform 180ms ease-in;
}
.l-header__drawer.is-open .l-header__drawer-item {
  -webkit-transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease-out, -webkit-transform 600ms ease-out;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
  transition: opacity 600ms ease-out, transform 600ms ease-out, -webkit-transform 600ms ease-out;
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(1) {
  transition-delay: 150ms;
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(2) {
  transition-delay: 230ms;
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(3) {
  transition-delay: 310ms;
}

.l-header__drawer-link {
  align-items: baseline;
  color: #ffffff;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  padding-block: 1.75rem;
  text-decoration: none;
  transition: color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-header__drawer-en {
  color: #c49a6c;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.l-header__drawer-jp {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}
/*-----------------------------
	お問い合わせ CTA
------------------------------*/
.l-header__drawer-contact {
  -webkit-transform: translateY(1.5rem);
  align-items: center;
  background-color: #c49a6c;
  color: #ffffff;
  display: flex;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.125rem;
  font-weight: 700;
  gap: 1.25rem;
  justify-content: center;
  letter-spacing: 0.16em;
  min-height: 4rem;
  opacity: 0;
  padding-block: 1.125rem;
  padding-inline: 2.5rem;
  position: relative;
  text-decoration: none;
  transform: translateY(1.5rem);
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 180ms ease-in, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 180ms ease-in;
  transition: opacity 180ms ease-in, transform 180ms ease-in, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 180ms ease-in, transform 180ms ease-in, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 180ms ease-in;
  width: 100%;
}
.l-header__drawer.is-open .l-header__drawer-contact {
  -webkit-transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease-out 450ms, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 600ms ease-out 450ms;
  transition: opacity 600ms ease-out 450ms, transform 600ms ease-out 450ms, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 600ms ease-out 450ms, transform 600ms ease-out 450ms, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 600ms ease-out 450ms;
}

.l-header__drawer-contact-arrow {
  background-color: currentColor;
  display: block;
  flex-shrink: 0;
  height: 0.0625rem;
  transition: -webkit-transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 2rem;
}
.l-header--light {
  background: #ffffff;
}

.l-header--light .l-header__logo img {
  -webkit-filter: none;
  filter: none;
}

.l-header--light .l-header__nav-link {
  color: #333333;
}

.l-header--light .l-header__contact {
  border-color: #333333;
  color: #333333;
}
.l-header--light .l-header__hamburger-bar {
  background-color: #333333;
}

.c-bland-intro {
  padding-block: 13.75rem;
  width: 100%;
}

.c-bland-intro__inner {
  -webkit-column-gap: 8rem;
  -moz-column-gap: 8rem;
  column-gap: 8rem;
  display: grid;
  grid-template-areas: "title image" "body  image";
  grid-template-columns: 38.5rem 1fr;
  grid-template-rows: auto 1fr;
  margin-inline: auto;
  max-width: 90rem;
  min-height: 28.75rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.c-bland-intro__title {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2.5rem;
  font-weight: 700;
  grid-area: title;
  letter-spacing: 0.053em;
  line-height: 2;
}

.c-bland-intro__body {
  align-self: start;
  color: #111111;
  font-size: 1.25rem;
  font-weight: 350;
  grid-area: body;
  letter-spacing: 0.14em;
  line-height: 2;
  margin-top: 3rem;
}

.c-bland-intro__image {
  grid-area: image;
  width: 100%;
}

.c-bland-intro__image img {
  display: block;
  height: auto;
  width: 100%;
}

.c-bland-message {
  background-color: #53443b;
  padding-block: 6.25rem;
  width: 100%;
}

.c-bland-message__inner {
  margin-inline: auto;
  max-width: 82.5rem;
  padding-inline: 3.75rem;
  width: 100%;
}

.c-bland-message__item {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.c-bland-message__item + .c-bland-message__item {
  margin-top: 6.25rem;
}

.c-bland-message__title {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 2;
  text-align: left;
  width: 100%;
}

.c-bland-message__body {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 2.5rem;
  max-width: 37.625rem;
  width: 100%;
}

.c-bland-points {
  padding-block: 13.75rem;
  width: 100%;
}

.c-bland-points__inner {
  margin-inline: auto;
  max-width: 82.5rem;
  padding-inline: 3.75rem;
  width: 100%;
}

.c-bland-points__heading {
  color: #111111;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.875;
  text-align: center;
  text-transform: uppercase;
}

.c-bland-points__list {
  list-style: none;
}

.c-bland-points__item:first-child {
  margin-top: 6.25rem;
}

.c-bland-points__item + .c-bland-points__item {
  margin-top: 13.75rem;
}

.c-bland-points__item {
  align-items: flex-start;
  display: flex;
  gap: 3.5rem;
  justify-content: space-between;
}

.c-bland-points__item--reverse {
  flex-direction: row-reverse;
}

.c-bland-points__item-image {
  flex-shrink: 0;
  max-width: 37.5rem;
  width: 100%;
}

.c-bland-points__item-image img {
  display: block;
  height: auto;
  width: 100%;
}

.c-bland-points__item-body {
  flex: 1;
  max-width: 34rem;
  min-width: 0;
  width: 100%;
}

.c-bland-points__item-title {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 2;
}

.c-bland-points__item-text {
  color: #111111;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 3rem;
}

/*-----------------------------
	注釈テキスト
------------------------------*/
.c-bland-points__item-note {
  color: #111111;
  font-size: 0.875rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 3rem;
}

/*-----------------------------
	pure POINT02 は画像が小さめなので、枠を狭めて中央寄せ
------------------------------*/
.c-bland-points--pure .c-bland-points__item:nth-child(2) .c-bland-points__item-image {
  margin-inline: auto;
  max-width: 24rem;
}

.c-btn-arrow {
  display: inline-flex;
  position: relative;
  vertical-align: middle;
  width: 18.75rem;
}

.c-btn-arrow__btn {
  -webkit-appearance: none;
  align-items: center;
  appearance: none;
  background-color: #ffffff;
  border: 1px solid #53443b;
  border-radius: 0;
  color: #53443b;
  cursor: pointer;
  display: inline-flex;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.375rem;
  height: 4.5rem;
  justify-content: center;
  letter-spacing: 0.096em;
  line-height: 1;
  padding-inline: 2.5rem 3.125rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 400ms ease, color 400ms ease;
  width: 100%;
}

.c-btn-arrow__arrow {
  -webkit-mask: url("../img/common/btn-arrow.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%);
  background-color: #53443b;
  height: 1.125rem;
  mask: url("../img/common/btn-arrow.svg") no-repeat center/contain;
  pointer-events: none;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 400ms ease;
  width: 0.9375rem;
}

.c-btn-arrow:has(.c-btn-arrow__btn:hover) .c-btn-arrow__btn {
  background-color: #53443b;
  color: #ffffff;
}

.c-btn-arrow:has(.c-btn-arrow__btn:hover) .c-btn-arrow__arrow {
  background-color: #ffffff;
}

/*-----------------------------
	--back modifier（戻るボタン：背景なし + 左向き矢印）
	お問い合わせ確認画面の「修正する」で使用
------------------------------*/
.c-btn-arrow--back .c-btn-arrow__btn {
  background-color: transparent;
  padding-inline: 3.125rem 2.5rem;
}

.c-btn-arrow--back .c-btn-arrow__arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
  left: 1.25rem;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
}

.c-btn-view-more {
  align-items: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  display: inline-flex;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 500;
  gap: 3.75rem;
  justify-content: flex-end;
  letter-spacing: 0.18em;
  line-height: 1.5;
  max-width: 100%;
  padding-block: 0.75rem;
  padding-inline: 0 1.5625rem;
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 17.75rem;
}
.c-btn-view-more__label {
  display: inline-block;
}

.c-btn-view-more__arrow {
  -webkit-transform: rotate(45deg);
  align-items: center;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  display: inline-flex;
  flex-shrink: 0;
  height: 0.625rem;
  justify-content: center;
  transform: rotate(45deg);
  width: 0.625rem;
}

.p-toki-concept .c-btn-view-more {
  margin-top: 5rem;
}

.c-btn {
  align-items: center;
  border: 1px solid currentColor;
  color: currentColor;
  display: inline-flex;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.25rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.1055em;
  line-height: 2;
  padding-block: 1rem;
  padding-inline: 6.25rem;
  position: relative;
  text-align: center;
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-btn::after {
  background-color: currentColor;
  content: "";
  height: 0.09375rem;
  position: absolute;
  right: 0;
  top: 50%;
  width: 2.5rem;
}

/*-----------------------------
	固定幅 modifier（Figma の固定幅レイアウトに合わせる）
------------------------------*/
.c-btn--w331 {
  padding-inline: 0;
  width: 20.6875rem;
}

.c-btn--w375 {
  padding-inline: 0;
  width: 23.4375rem;
}

.c-btn--w308 {
  padding-inline: 0;
  width: 19.25rem;
}

.c-btn--w288 {
  padding-inline: 0;
  width: 18rem;
}
/*-----------------------------
	カラー modifier
------------------------------*/
.c-btn--dark {
  border-color: #53443b;
  color: #53443b;
}
.c-charter {
  overflow: hidden;
  padding-block: 13.75rem;
}

.c-charter__inner {
  margin-inline: auto;
  max-width: 75rem;
  padding-inline: 1.25rem;
  width: 100%;
}

.c-charter__lead {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.25rem;
  letter-spacing: 0.1055em;
  line-height: 2;
  margin-top: 2.5rem;
  text-align: center;
}

.c-charter__slider {
  margin-top: 2.5rem;
}

.c-charter__action {
  display: flex;
  justify-content: center;
  margin-top: 6.25rem;
}

.c-cta {
  padding-bottom: 7.5rem;
  padding-inline: 2.5rem;
}

.c-cta__inner {
  background-color: #f5f3f0;
  display: flex;
  gap: 5rem;
  justify-content: space-between;
  margin-inline: auto;
  margin-inline: auto;
  max-width: 90rem;
  max-width: 90rem;
  padding-block: 5rem 4.5rem;
  padding-inline: 2.5rem;
  width: 100%;
  width: 100%;
}

/*-----------------------------
	画像ギャラリー（4枚グリッド）
------------------------------*/
.c-cta__gallery {
  align-content: start;
  display: grid;
  flex-shrink: 0;
  gap: 1.125rem 1.3125rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 37.3125rem;
  width: 100%;
}

.c-cta__gallery-image {
  aspect-ratio: 320/176;
  overflow: hidden;
  width: 100%;
}

.c-cta__gallery-image img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/*-----------------------------
	テキストエリア（ラベル・見出し・本文）
------------------------------*/
.c-cta__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 38.75rem;
}

.c-cta__text {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.c-cta__label {
  color: #c49a6c;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-align: center;
}

.c-cta__heading {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.c-cta__description {
  color: #000000;
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 2.5rem;
}

/*-----------------------------
	CTA ボタン（赤背景 + 矢印アイコン）
------------------------------*/
.c-cta__button {
  align-items: center;
  background-color: #bf3434;
  color: #ffffff;
  display: flex;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.625rem;
  font-weight: 700;
  gap: 1.25rem;
  justify-content: space-between;
  letter-spacing: 0.0799em;
  line-height: 1.5384615385;
  margin-top: 1.875rem;
  max-width: 100%;
  min-height: 6.25rem;
  padding-block: 1.3125rem;
  padding-inline: 1.75rem 1.25rem;
  text-align: center;
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  width: 29.125rem;
}
.c-cta__button-arrow {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 2.5rem;
  justify-content: center;
  transition: -webkit-transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 2.5rem;
}

.c-cta__button-arrow img {
  height: 100%;
  width: 100%;
}

.c-feature-cards {
  display: grid;
  gap: 3.125rem;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: auto;
  max-width: 85rem;
  padding-top: 3.75rem;
  width: 100%;
}

.c-feature-cards__item {
  background-color: #f5f3f0;
  display: grid;
  gap: 1rem;
  grid-template-rows: auto 1fr auto;
  padding-block: 3.75rem 1.25rem;
  padding-inline: 1.25rem;
  position: relative;
}

.c-feature-cards__num {
  -webkit-transform: translateX(-50%);
  background-color: #f5f3f0;
  border-radius: 100%;
  color: #53443b;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 3.5rem;
  font-weight: 500;
  height: 7.5rem;
  left: 50%;
  letter-spacing: 0.0429em;
  line-height: 1.6;
  position: absolute;
  text-align: center;
  top: -3.75rem;
  transform: translateX(-50%);
  width: 7.5rem;
}

.c-feature-cards__title {
  color: #53443b;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.066em;
  line-height: 2;
  text-align: center;
}

.c-feature-cards__text {
  color: #000000;
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 2;
}

/*-----------------------------
	__chevron (任意・下向き矢印)
	- top POINT カードで使用 (アンカーリンクの導線)
------------------------------*/
.c-feature-cards__chevron {
  align-items: center;
  display: flex;
  height: 2.5rem;
  justify-content: center;
  margin-inline: auto;
  margin-top: 0.5rem;
  transition: -webkit-transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 2.5rem;
}

.c-feature-cards__chevron img {
  height: 100%;
  width: 100%;
}

/*-----------------------------
	__link (任意・カード全面リンク)
	- top POINT カードでアンカースクロール用に被せる
------------------------------*/
.c-feature-cards__link {
  inset: 0;
  overflow: hidden;
  position: absolute;
  text-indent: -9999px;
  z-index: 2;
}
.c-feature-split {
  min-height: 61.375rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.c-feature-split__inner {
  display: flex;
  min-height: 61.375rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.c-feature-split__inner::before {
  background-image: url("../img/design/quality-bg-main.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

/*-----------------------------
	左パネル（八角形PNG）
------------------------------*/
.c-feature-split__hexagons {
  background-color: #88776f;
  position: relative;
  width: 50%;
}

.c-feature-split__hexagons-img {
  height: auto;
  left: 0;
  margin-inline: auto;
  max-width: calc(100% - 2.5rem);
  position: absolute;
  right: 0;
  top: 12.25rem;
  width: 37.6875rem;
}

/*-----------------------------
	右コンテンツ（見出し・本文・ボタン）
------------------------------*/
.c-feature-split__content {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 7.5rem;
  position: relative;
  width: 50%;
  z-index: 2;
}

.c-feature-split__title {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
}

.c-feature-split__body {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.0879em;
  line-height: 2.25;
  margin-top: 3rem;
}

/*-----------------------------
	ボタン「特徴をもっとみる」
------------------------------*/
.c-feature-split__btn {
  align-items: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  display: flex;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.25rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.1055em;
  line-height: 2;
  margin-inline: auto;
  margin-top: 5rem;
  max-width: 100%;
  padding-block: 0.9375rem;
  padding-inline: 2.5rem;
  position: relative;
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  width: 23.4375rem;
}
.c-feature-split__btn-arrow {
  -webkit-transform: translateY(-50%);
  background-color: currentColor;
  display: block;
  height: 0.0625rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 2.5rem;
}

.c-page-fv {
  min-height: 73.125rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.c-page-fv::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.c-page-fv::after {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  height: calc(100% - 4.375rem);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 4.375rem;
  z-index: 1;
}

/*-----------------------------
	ページ別 modifier（背景画像を ::before に差し込む）
------------------------------*/
.c-page-fv--design::before {
  background-image: url("../img/design/fv-bg.webp");
}

.c-page-fv--relax::before {
  background-image: url("../img/bland/relax-fv-bg.webp");
}

.c-page-fv--pure::before {
  background-image: url("../img/bland/pure-fv-bg.webp");
}

.c-page-fv--sleep::before {
  background-image: url("../img/bland/sleep-fv-bg.webp");
}

.c-page-fv--family::before {
  background-image: url("../img/bland/family-fv-bg.webp");
}

.c-page-fv--value::before {
  background-image: url("../img/bland/value-fv-bg.webp");
}

.c-page-fv--body::before {
  background-image: url("../img/bland/body-fv-bg.webp");
}

.c-page-fv--comfort::before {
  background-image: url("../img/bland/comfort-fv-bg.webp");
}

/*-----------------------------
	内部レイアウト（タイトル + リード + 本文）
------------------------------*/
.c-page-fv__inner {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 81.25rem;
  min-height: 73.125rem;
  padding-block: 14.5rem 5.8125rem;
  padding-inline: 3.75rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.c-page-fv__title {
  flex-shrink: 0;
}

.c-page-fv__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 5.8125rem;
  max-width: 37.5rem;
  width: 100%;
}

.c-page-fv__lead {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 2;
}

.c-page-fv__description {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.25rem;
  letter-spacing: 0.1055em;
  line-height: 2;
  margin-top: 4rem;
}

.c-page-fv__description + .c-page-fv__description {
  margin-top: 2em;
}

.c-reasons {
  background-image: url("../img/common/reasons-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 70.3125rem;
  overflow: hidden;
  padding-block: 8rem;
  position: relative;
  width: 100%;
}

.c-reasons::before {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.c-reasons__inner {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 87.5rem;
  padding-inline: 3.75rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.c-reasons__title {
  width: 100%;
}

/*-----------------------------
	番号付きリスト（理由3項目）
------------------------------*/
.c-reasons__list {
  display: flex;
  flex-direction: column;
  gap: 5.25rem;
  margin-top: 2.3125rem;
  max-width: 100%;
  width: 42.8125rem;
}

.c-reasons__item {
  align-items: flex-start;
  display: flex;
  gap: 1.875rem;
}

.c-reasons__num {
  color: #ffffff;
  flex-shrink: 0;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 3.125rem;
  font-weight: 500;
  letter-spacing: 0.048em;
  line-height: 1.2;
  text-align: center;
  width: 3.6875rem;
}

.c-reasons__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.c-reasons__heading {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.0659em;
  line-height: 2;
}

.c-reasons__text {
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 1.25rem;
}

.c-section-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 62.5rem;
  width: 100%;
}

.c-section-heading__en {
  color: #c49a6c;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-align: center;
}

.c-section-heading__title {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.0527em;
  line-height: 2;
  text-align: center;
}

.c-section-heading__desc {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 3rem;
  text-align: center;
}

.c-section-heading--lg .c-section-heading__title {
  font-size: 3rem;
  letter-spacing: 0.06em;
  line-height: 2;
}

.c-section-title {
  display: flex;
  flex-direction: column;
}

.c-section-title__en {
  color: #ffffff;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.c-section-title__jp {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
}

/*-----------------------------
	modifier: dark（明色背景上で使う場合の予備）
------------------------------*/
.c-section-title--dark .c-section-title__en,
.c-section-title--dark .c-section-title__jp {
  color: #1a1a1a;
}

.c-side-cta {
  -webkit-transform: translateY(-50%) translateX(1.25rem);
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  padding-block: 3.75rem 1.875rem;
  padding-inline: 1.25rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(1.25rem);
  transition: opacity 0.4s ease, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s ease;
  z-index: 90;
}

.c-side-cta.is-visible {
  -webkit-transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.c-side-cta__label {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  transition: color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 1.25rem;
}

.c-side-cta__arrow {
  align-items: center;
  display: flex;
  height: 1.25rem;
  justify-content: center;
  margin-top: 2.5rem;
  width: 1.25rem;
}
.c-side-cta__arrow img {
  height: 100%;
  transition: -webkit-filter 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: filter 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: filter 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-filter 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.c-slider-logos {
  overflow: hidden;
  padding-block: 13.75rem 13rem;
  width: 100%;
}

.c-slider-logos__title {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.0799em;
  line-height: 2.196969697;
  text-align: center;
}

/*-----------------------------
	スライダー本体（無限スクロール）
	JS で track を複製しループ再生
------------------------------*/
.c-slider-logos__viewport {
  margin-top: 2.5rem;
  overflow: hidden;
}

.c-slider-logos__track {
  -webkit-animation: c-slider-logos-scroll 35s linear infinite;
  align-items: center;
  animation: c-slider-logos-scroll 35s linear infinite;
  display: flex;
  gap: 3.75rem;
  width: -webkit-max-content;
  width: max-content;
}

.c-slider-logos__item {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 12rem;
  justify-content: center;
}

.c-slider-logos__link {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  transition: opacity 300ms ease;
}
.c-slider-logos__item img {
  -o-object-fit: contain;
  height: auto;
  max-height: 100%;
  max-width: none;
  object-fit: contain;
  width: auto;
}

/*-----------------------------
	各ロゴごとの表示サイズ調整
------------------------------*/
.c-slider-logos__item--tomida img {
  width: 25rem;
}

.c-slider-logos__item--hori img {
  width: 17.5rem;
}

.c-slider-logos__item--soneken img {
  width: 17.5rem;
}

.c-slider-logos__item--shinwa img {
  width: 23.75rem;
}

.c-slider-logos__item--ogawara img {
  width: 18.75rem;
}

@-webkit-keyframes c-slider-logos-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes c-slider-logos-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.p-about-fv {
  overflow: hidden;
  padding-block: 18.125rem 13.75rem;
  position: relative;
  width: 100%;
}

.p-about-fv::before {
  background-image: url("../img/about/fv-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.p-about-fv::after {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  height: calc(100% - 4.375rem);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 4.375rem;
  z-index: 1;
}

.p-about-fv__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 70rem;
  padding-inline: 3.75rem;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.p-about-fv__logo {
  width: 22.8125rem;
}

.p-about-fv__logo img {
  -webkit-filter: brightness(0) invert(1);
  display: block;
  filter: brightness(0) invert(1);
  height: auto;
  width: 100%;
}

.p-about-fv__title {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.0527em;
  line-height: 2;
  margin-top: 8.75rem;
}

.p-about-fv__description {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 2;
  margin-top: 7.5rem;
}

.p-about-fv__description p + p {
  margin-top: 2em;
}

.p-about-mission {
  width: 100%;
}

.p-about-mission__inner {
  align-items: flex-start;
  display: flex;
  gap: 7.5rem;
  margin-inline: auto;
  max-width: 90rem;
  padding-right: 2.5rem;
  width: 100%;
}

.p-about-mission__media {
  flex-shrink: 0;
  width: 37.5rem;
}

.p-about-mission__media img {
  display: block;
  height: auto;
  width: 100%;
}

.p-about-mission__body {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
  max-width: 42.5rem;
  padding-top: 12.5rem;
  width: 100%;
}

.p-about-mission__body p + p {
  margin-top: 2em;
}

.p-about-keyword {
  overflow: hidden;
  padding-block: 13.75rem 0;
}

.p-about-keyword__banner {
  background-color: #007c7f;
  margin-inline: auto;
  max-width: 75rem;
  padding-block: 2.5rem;
  padding-inline: 1.25rem;
  text-align: center;
  width: 100%;
}

.p-about-keyword__banner-title {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.0527em;
  line-height: 2;
}

.p-about-keyword__banner-sub {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 1.5rem;
}

.p-about-keyword__block-inner {
  margin-inline: auto;
  max-width: 90rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.p-about-keyword__block {
  margin-top: 12.5rem;
}

.p-about-keyword__block .c-section-heading__title {
  color: #000000;
}

.p-about-keyword__block .c-section-heading__en {
  color: #c49a6c;
  letter-spacing: 0.18em;
}

.p-about-keyword__cards {
  margin-top: 7.5rem;
}

.p-about-service {
  padding-block: 13.75rem 0;
}

.p-about-service__inner {
  margin-inline: auto;
  max-width: 82.5rem;
  padding-inline: 3.75rem;
  width: 100%;
}

.p-about-service__list {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
  margin-top: 7.5rem;
}

.p-about-service__item {
  align-items: center;
  display: flex;
  padding: 4rem;
}

.p-about-service__item--toki {
  background-color: #53443b;
  color: #ffffff;
  gap: 7.125rem;
}

.p-about-service__item--iyashiro {
  background-color: #f5f3f0;
  color: #53443b;
  gap: 7.1875rem;
}

.p-about-service__media {
  flex-shrink: 0;
}

.p-about-service__item--toki .p-about-service__media {
  width: 22.125rem;
}

.p-about-service__item--iyashiro .p-about-service__media {
  width: 22.375rem;
}

.p-about-service__media img {
  display: block;
  height: auto;
  width: 100%;
}

.p-about-service__body {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.p-about-service__sub {
  font-size: 1rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.p-about-service__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.5;
  margin-top: 0.75rem;
}

.p-about-service__item--iyashiro .p-about-service__title {
  font-size: 3.4375rem;
}

.p-about-service__desc {
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 2.25rem;
}

.p-about-service__btn {
  align-self: center;
  color: #ffffff;
  margin-top: 2.25rem;
}
.p-company-message {
  margin-top: 18.125rem;
}

.p-company-message__inner {
  margin-inline: auto;
  max-width: 82.5rem;
  padding-inline: 3.75rem;
  width: 100%;
}

.p-company-message__body {
  align-items: flex-start;
  display: flex;
  gap: 2.5rem;
  margin-top: 7.5rem;
}

.p-company-message__image {
  flex-shrink: 0;
  width: 25rem;
}

.p-company-message__image img {
  -o-object-fit: cover;
  aspect-ratio: 400/533;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.p-company-message__text {
  color: #000000;
  flex: 1;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
  min-width: 0;
}

.p-company-message__text p + p {
  margin-top: 2.5rem;
}

.p-company-info {
  padding-top: 13.75rem;
}

.p-company-info__inner {
  margin-inline: auto;
  max-width: 82.5rem;
  padding-inline: 3.75rem;
  width: 100%;
}

.p-company-info__list {
  border-left: 0.0625rem solid #000000;
  border-top: 0.0625rem solid #000000;
  margin-top: 7.5rem;
}

.p-company-info__row {
  display: grid;
  grid-template-columns: 24.875rem 1fr;
}

.p-company-info__label {
  align-items: center;
  background-color: #f5f3f0;
  border-bottom: 0.0625rem solid #000000;
  border-right: 0.0625rem solid #000000;
  color: #000000;
  display: flex;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 2;
  padding-block: 1.25rem;
  padding-inline: 2.5rem;
}

.p-company-info__value {
  align-items: center;
  background-color: #ffffff;
  border-bottom: 0.0625rem solid #000000;
  border-right: 0.0625rem solid #000000;
  color: #000000;
  display: flex;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 2;
  padding-block: 1.25rem;
  padding-inline: 2.5rem;
}

.p-contact-intro {
  -webkit-padding-before: 18.125rem;
  padding-block-start: 18.125rem;
}

.p-contact-intro__inner {
  margin-inline: auto;
  max-width: 69.75rem;
  padding-inline: 3.75rem;
}

.p-contact-intro__title {
  text-align: center;
}

.p-contact-intro__title-en {
  color: #c49a6c;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.p-contact-intro__title-jp {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
}

.p-contact-intro__lead {
  -webkit-margin-before: 3rem;
  margin-block-start: 3rem;
  text-align: center;
}

.p-contact-intro__lead-text {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.106em;
  line-height: 2;
}

.p-contact-intro__lead-text + .p-contact-intro__lead-text {
  -webkit-margin-before: 2.5rem;
  margin-block-start: 2.5rem;
}

.p-contact-intro__required {
  color: #ff0000;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-weight: 500;
}

/*-----------------------------
	確認画面では導入セクションを非表示にする
	（JS が hidden 属性を付け外しして切替）
------------------------------*/
.p-contact-intro[hidden] {
  display: none;
}

.p-contact-form {
  padding-block: 8.5rem 9.375rem;
  padding-inline: 2.5rem;
}

.p-contact-form__inner {
  align-items: center;
  background-color: #f5f3f0;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 85rem;
  padding: 6.25rem 5rem;
  width: 100%;
}

/*-----------------------------
	入力項目リスト全体と各行のレイアウト
------------------------------*/
.p-contact-form__inner .wpcf7,
.p-contact-form .wpcf7-form {
  width: 100%;
}

.p-contact-form__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.p-contact-form__row {
  align-items: center;
  display: flex;
  width: 100%;
}

.p-contact-form__row + .p-contact-form__row {
  -webkit-margin-before: 3.75rem;
  margin-block-start: 3.75rem;
}

.p-contact-form__row--checkbox + .p-contact-form__row {
  -webkit-margin-before: 5rem;
  margin-block-start: 5rem;
}

.p-contact-form__row--top {
  align-items: flex-start;
}

/*-----------------------------
	項目名ラベルと「※」必須マーク
------------------------------*/
.p-contact-form__label {
  color: #000000;
  flex-shrink: 0;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.083em;
  line-height: 2;
  width: 21.75rem;
}

.p-contact-form__label-text {
  display: inline-block;
  position: relative;
}

.p-contact-form__label--required .p-contact-form__label-text::after {
  color: #ff0000;
  content: "※";
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  position: absolute;
  right: -1.375rem;
  top: 0.625rem;
}

/*-----------------------------
	入力欄エリア（幅違いの大・標準・小）
------------------------------*/
.p-contact-form__field {
  width: 53.25rem;
}

.p-contact-form__field--lg {
  width: 53.25rem;
}

.p-contact-form__field--sm {
  width: 27.5rem;
}

/*-----------------------------
	Contact Form 7 が自動で入れる span を入力欄と同じ幅にする
	（エラーメッセージをこの中で絶対配置するための基準にも使う）
------------------------------*/
.p-contact-form__field .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  width: 100%;
}

/*-----------------------------
	テキスト入力欄・テキストエリア・セレクトの共通見た目
------------------------------*/
.p-contact-form input[type=text],
.p-contact-form input[type=tel],
.p-contact-form input[type=email],
.p-contact-form textarea,
.p-contact-form select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
  box-sizing: border-box;
  color: #000000;
  display: block;
  font-size: 1.25rem;
  height: 3.75rem;
  letter-spacing: 0.106em;
  line-height: 2;
  padding-block: 0.625rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.p-contact-form textarea {
  height: 15.625rem;
  padding-block: 0.625rem;
  resize: vertical;
}

.p-contact-form input[type=text]::-webkit-input-placeholder, .p-contact-form input[type=tel]::-webkit-input-placeholder, .p-contact-form input[type=email]::-webkit-input-placeholder, .p-contact-form textarea::-webkit-input-placeholder {
  color: #d9d9d9;
  opacity: 1;
}

.p-contact-form input[type=text]:-ms-input-placeholder, .p-contact-form input[type=tel]:-ms-input-placeholder, .p-contact-form input[type=email]:-ms-input-placeholder, .p-contact-form textarea:-ms-input-placeholder {
  color: #d9d9d9;
  opacity: 1;
}

.p-contact-form input[type=text]::-ms-input-placeholder, .p-contact-form input[type=tel]::-ms-input-placeholder, .p-contact-form input[type=email]::-ms-input-placeholder, .p-contact-form textarea::-ms-input-placeholder {
  color: #d9d9d9;
  opacity: 1;
}

.p-contact-form input[type=text]::placeholder,
.p-contact-form input[type=tel]::placeholder,
.p-contact-form input[type=email]::placeholder,
.p-contact-form textarea::placeholder {
  color: #d9d9d9;
  opacity: 1;
}

/*-----------------------------
	プルダウン（select）の右端矢印アイコン
------------------------------*/
.p-contact-form select {
  -webkit-padding-end: 3rem;
  background-image: url("../img/common/select-arrow.svg");
  background-position: right 1.25rem center;
  background-repeat: no-repeat;
  background-size: 1.125rem 0.9375rem;
  cursor: pointer;
  padding-inline-end: 3rem;
}

.p-contact-form select.is-placeholder {
  color: #d9d9d9;
}

/*-----------------------------
	チェックボックス（複数選択肢）
------------------------------*/
.p-contact-form__row--checkbox {
  align-items: flex-start;
}

.p-contact-form__row--checkbox .p-contact-form__field {
  display: block;
}

.p-contact-form .wpcf7-checkbox {
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  display: grid;
  grid-template-columns: repeat(3, -webkit-max-content);
  grid-template-columns: repeat(3, max-content);
  row-gap: 1.25rem;
  width: -webkit-max-content;
  width: max-content;
}

.p-contact-form .wpcf7-list-item {
  margin: 0;
}

.p-contact-form .wpcf7-list-item label {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
}

.p-contact-form .wpcf7-list-item-label {
  -webkit-margin-start: 0.75rem;
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.25rem;
  letter-spacing: 0.106em;
  line-height: 1.6;
  margin-inline-start: 0.75rem;
}

.p-contact-form input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.125rem 1.125rem;
  border: 1px solid #000000;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  height: 1.5rem;
  margin: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 1.5rem;
}

.p-contact-form input[type=checkbox]:hover {
  border-color: #53443b;
}

.p-contact-form input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%2353443b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2.5 7.2 5.8 10.6 11.5 3.6'/%3E%3C/svg%3E");
  border-color: #53443b;
}

.p-contact-form input[type=checkbox]:focus-visible {
  outline: 2px solid #c49a6c;
  outline-offset: 2px;
}

/*-----------------------------
	送信ボタン配置エリア
	（ボタン本体の見た目は c-btn-arrow コンポーネント側で定義）
------------------------------*/
.p-contact-form__submit {
  -webkit-margin-before: 7.5rem;
  display: flex;
  justify-content: center;
  margin-block-start: 7.5rem;
  width: 100%;
}

.p-contact-form__submit .wpcf7-spinner,
.p-contact-form .wpcf7-spinner {
  display: none;
}

/*-----------------------------
	入力エラーメッセージの初期非表示
	（送信ボタンを押すまでエラーは出さない）
------------------------------*/
.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid {
  border-color: #000000;
}

.p-contact-form .wpcf7-not-valid-tip {
  -webkit-margin-before: 0.25rem;
  color: #ff0000;
  font-size: 0.875rem;
  left: 0;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-block-start: 0.25rem;
  position: absolute;
  top: 100%;
}

/*-----------------------------
	送信後の応答メッセージ表示エリア
	（WordPress が自動で入れる <p> タグの余白も打ち消し）
------------------------------*/
.p-contact-form .wpcf7 form > p,
.p-contact-form .wpcf7-form > p {
  margin: 0;
}

.p-contact-form .wpcf7-response-output {
  -webkit-margin-before: 2.5rem;
  border: 1px solid #53443b;
  color: #000000;
  font-size: 1rem;
  line-height: 1.8;
  margin-block-start: 2.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  text-align: center;
  width: 100%;
}

.p-contact-form .screen-reader-response {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*-----------------------------
	入力モードと確認モードの表示切替
	（JS で hidden 属性を付け外しして切替）
------------------------------*/
.p-contact-form__input-area[hidden],
.p-contact-form__confirm-area[hidden] {
  display: none;
}

/*-----------------------------
	確認画面で入力内容を表示するエリア
------------------------------*/
.p-contact-form__confirm-value {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.106em;
  line-height: 2;
  white-space: pre-wrap;
  width: 100%;
  word-break: break-word;
}

/*-----------------------------
	確認画面の「戻る・送信」2ボタン配置
------------------------------*/
.p-contact-form__buttons {
  -webkit-margin-before: 7.5rem;
  display: flex;
  gap: 7.5rem;
  justify-content: center;
  margin-block-start: 7.5rem;
}

/*-----------------------------
	確認画面に切り替わった時の上余白調整（PC のみ）
------------------------------*/
.p-contact-form.is-confirm {
  padding-block: 16rem 9.375rem;
}

.p-design-type {
  padding-block: 12.5rem;
  width: 100%;
}

.p-design-type__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 71.875rem;
  padding-inline: 3.75rem;
  width: 100%;
}

.p-design-type__heading {
  color: #000000;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.875;
  text-align: center;
  text-transform: uppercase;
}

.p-design-type__list {
  display: flex;
  gap: 11.875rem;
  justify-content: center;
  margin-top: 3.75rem;
  width: 100%;
}

.p-design-type__item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
  height: 22.5rem;
  overflow: hidden;
  position: relative;
  width: 26.25rem;
}

.p-design-type__item--machiya {
  background-image: url("../img/design/type-machiya-card-bg.webp");
}

.p-design-type__item--yane {
  background-image: url("../img/design/type-yane-card-bg.webp");
}

.p-design-type__link {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-block: 0.6875rem;
  padding-inline: 1.25rem;
  position: relative;
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  z-index: 2;
}
.p-design-type__num {
  color: #ffffff;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.5625;
  text-align: center;
}

.p-design-type__title {
  color: #ffffff;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.0586em;
  line-height: 1.7777777778;
  text-align: center;
  text-transform: uppercase;
}

.p-design-type__text {
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 1rem;
  text-align: left;
}

.p-design-type__chevron {
  align-items: center;
  display: flex;
  height: 2.5rem;
  justify-content: center;
  margin-top: auto;
  transition: -webkit-transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 2.5rem;
}

.p-design-type__chevron img {
  height: 100%;
  width: 100%;
}

.p-design-detail {
  padding-bottom: 16.25rem;
  width: 100%;
}

.p-design-detail__inner > * + * {
  margin-top: 12.5rem;
}

/*-----------------------------
	FV（背景写真・タイプラベル・大見出し・概要文）
------------------------------*/
.p-design-detail-fv--machiya {
  background-image: url("../img/design/machiya-bg-fv.webp");
}

.p-design-detail-fv--yane {
  background-image: url("../img/design/yane-fv.webp");
}

.p-design-detail-fv__inner {
  align-items: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  margin-inline: auto;
  max-width: 90rem;
  min-height: 57.875rem;
  overflow: hidden;
  padding-bottom: 4.875rem;
  padding-inline: 2.5rem;
  position: relative;
  width: 100%;
}

.p-design-detail-fv__text {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 31.375rem;
}

.p-design-detail-fv__title {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 19.9375rem;
}

.p-design-detail-fv__label {
  color: #ffffff;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.072em;
  line-height: 1.5;
  text-transform: uppercase;
}

.p-design-detail-fv__heading {
  color: #ffffff;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.033em;
  line-height: 1;
  text-transform: uppercase;
}

.p-design-detail-fv__description {
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 1.25rem;
}

/*-----------------------------
	サブセクション共通（GALLERY / PLAN / VR の見出しブロック）
------------------------------*/
.p-design-detail-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 80rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.p-design-detail-section__title {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.p-design-detail-section__body {
  margin-top: 8.75rem;
  width: 100%;
}

.p-design-detail-section .c-section-title__en {
  font-size: 4rem;
  letter-spacing: 0.045em;
  line-height: 1.875;
  text-align: center;
}

.p-design-detail-section .c-section-title__jp {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.0879em;
  line-height: 2;
  text-align: center;
}

/*-----------------------------
	GALLERY（swiper × 2 = 外観 / 室内）
------------------------------*/
.p-design-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
}

.p-design-detail-gallery__card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.p-design-detail-gallery__label {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1055em;
  line-height: 2.1;
  margin-inline: auto;
  max-width: 60rem;
  width: 100%;
}

.p-design-detail-gallery__swiper {
  margin-top: 1rem;
  position: relative;
  width: 100%;
}

.p-design-detail-gallery__swiper .swiper {
  margin-inline: auto;
  max-width: 60rem;
  overflow: hidden;
}

.p-design-detail-gallery__slide {
  aspect-ratio: 960/567;
  overflow: hidden;
  width: 100%;
}

.p-design-detail-gallery__slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  transition: -webkit-transform 600ms ease-out;
  transition: transform 600ms ease-out;
  transition: transform 600ms ease-out, -webkit-transform 600ms ease-out;
  width: 100%;
}
/*-----------------------------
	矢印ナビゲーション（PC のみ。SP はドットページネーションへ切替）
------------------------------*/
.p-design-detail-gallery__nav {
  -webkit-transform: translateY(-50%);
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  height: 5rem;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 5rem;
  z-index: 3;
}

/*-----------------------------
	ドットページネーション（SP のみ表示）
------------------------------*/
.p-design-detail-gallery__pagination {
  display: none;
}

.p-design-detail-gallery__bullet {
  background-color: #d9d9d9;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 0.5rem;
  transition: background-color 0.2s ease;
  width: 0.5rem;
}
.p-design-detail-gallery__bullet.is-active {
  background-color: #000000;
}
.p-design-detail-gallery__nav--prev {
  left: calc(50% - 30rem - 2.5rem - 5rem);
}

.p-design-detail-gallery__nav--next {
  right: calc(50% - 30rem - 2.5rem - 5rem);
}

.p-design-detail-gallery__nav.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.p-design-detail-gallery__nav-icon {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}

.p-design-detail-gallery__nav-icon img,
.p-design-detail-gallery__nav-icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

/*-----------------------------
	PLAN（タイトル + 平面図）
------------------------------*/
.p-design-detail-plan-image {
  margin-inline: auto;
  max-width: 60rem;
  width: 100%;
}

.p-design-detail-plan-image img {
  display: block;
  height: auto;
  width: 100%;
}

/*-----------------------------
	VR（タイトル + メディア枠）
------------------------------*/
.p-design-detail-vr-media {
  aspect-ratio: 960/555;
  margin-inline: auto;
  max-width: 60rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-design-detail-vr-media img,
.p-design-detail-vr-media iframe {
  -o-object-fit: cover;
  border: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p-not-found {
  padding-block: 15.625rem 9.375rem;
}

.p-not-found__inner {
  margin-inline: auto;
  max-width: 69.75rem;
  padding-inline: 3.75rem;
}

/*-----------------------------
	見出しエリア（英ラベル + 「404」+ 和タイトル）
	「404」と和タイトルは同じ明朝サイズで2行に並べ、
	落ち着いたトーンで静かにエラーを伝える
------------------------------*/
.p-not-found__title {
  text-align: center;
}

.p-not-found__title-en {
  color: #c49a6c;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.p-not-found__title-num,
.p-not-found__title-jp {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/*-----------------------------
	リード文
------------------------------*/
.p-not-found__lead {
  -webkit-margin-before: 3rem;
  margin-block-start: 3rem;
  text-align: center;
}

.p-not-found__lead-text {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.106em;
  line-height: 2;
}

/*-----------------------------
	アクション（TOPへ戻るボタン配置）
------------------------------*/
.p-not-found__action {
  -webkit-margin-before: 6.25rem;
  display: flex;
  justify-content: center;
  margin-block-start: 6.25rem;
  width: 100%;
}

.p-thanks {
  padding-block: 18.125rem 9.375rem;
}

.p-thanks__inner {
  margin-inline: auto;
  max-width: 69.75rem;
  padding-inline: 3.75rem;
}

.p-thanks__title {
  text-align: center;
}

.p-thanks__title-en {
  color: #c49a6c;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.p-thanks__title-jp {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
}

.p-thanks__lead {
  -webkit-margin-before: 3rem;
  margin-block-start: 3rem;
  text-align: center;
}

.p-thanks__lead-text {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.106em;
  line-height: 2;
}

.p-thanks__lead-text + .p-thanks__lead-text {
  -webkit-margin-before: 2.5rem;
  margin-block-start: 2.5rem;
}

.p-thanks__action {
  -webkit-margin-before: 13.75rem;
  display: flex;
  justify-content: center;
  margin-block-start: 13.75rem;
  width: 100%;
}

.p-toki-fv {
  background-image: url("../img/toki/fv-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 53.4375rem;
  position: relative;
  width: 100%;
}

.p-toki-fv__inner {
  margin-inline: auto;
  max-width: 90rem;
  min-height: 53.4375rem;
  padding-inline: 2.5rem;
  position: relative;
  width: 100%;
}

.p-toki-fv__content {
  align-items: center;
  display: flex;
  gap: 9.75rem;
  left: 20.2083333333%;
  position: absolute;
  top: 25.730994152%;
}

.p-toki-fv__logo {
  flex-shrink: 0;
  width: 21.875rem;
}

.p-toki-fv__logo img {
  height: auto;
  width: 100%;
}

.p-toki-fv__text {
  display: flex;
  flex-direction: column;
  width: 33.125rem;
}

.p-toki-fv__title {
  display: flex;
  flex-direction: column;
}

.p-toki-fv__lead {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.p-toki-fv__heading {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.5;
  margin-top: 0.75rem;
}

.p-toki-fv__description {
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 2.25rem;
}

.p-toki-concept {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 62.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-toki-concept::after {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  z-index: 1;
}

.p-toki-concept__inner {
  display: flex;
  gap: 18.1875rem;
  margin-inline: auto;
  max-width: 90rem;
  min-height: 62.5rem;
  padding-block: 6.25rem;
  padding-inline: 9.5rem 2.5rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.p-toki-concept__title {
  flex-shrink: 0;
  width: 25.625rem;
}

.p-toki-concept__body {
  display: flex;
  flex-direction: column;
  margin-top: 5.8125rem;
  max-width: 100%;
}

.p-toki-concept__text {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1055em;
  line-height: 2.4;
}

.p-toki-concept__text + .p-toki-concept__text {
  margin-top: 2em;
}

/*-----------------------------
	上質な刻を。セクション（簡略版・英字タイトル無、ボタン無、本文）
------------------------------*/
.p-toki-concept--quality {
  background-image: url("../img/toki/section-quality-bg.webp");
  min-height: 53.4375rem;
}

.p-toki-concept--quality .p-toki-concept__inner {
  min-height: 53.4375rem;
  padding-block: 10rem 7.0625rem;
}

.p-toki-concept--quality .p-toki-concept__text {
  line-height: 2.7;
}

/*-----------------------------
	各セクション固有の背景画像/調整
------------------------------*/
.p-toki-concept--design {
  background-image: url("../img/toki/section-design-bg.webp");
}

.p-toki-concept--relax {
  background-image: url("../img/toki/section-relax-bg.webp");
}

.p-toki-concept--pure {
  background-image: url("../img/toki/section-pure-bg.webp");
}

.p-toki-concept--sleep {
  background-image: url("../img/toki/section-sleep-bg.webp");
}

.p-toki-concept--family {
  background-image: url("../img/toki/section-family-bg.webp");
}

.p-toki-concept--value {
  background-image: url("../img/toki/section-value-bg.webp");
}

.p-toki-concept--body {
  background-image: url("../img/toki/section-body-bg.webp");
}

.p-toki-concept--comfort {
  background-image: url("../img/toki/section-comfort-bg.webp");
}

/*-----------------------------
	FV
------------------------------*/
.p-top-fv {
  margin-inline: auto;
  max-width: 90rem;
  padding-inline: 2.5rem;
  padding-top: 4.375rem;
  width: 100%;
}

.p-top-fv__slider {
  aspect-ratio: 1360/703;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-top-fv__slide {
  overflow: hidden;
  position: relative;
}

.p-top-fv__image {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.p-top-fv__image img {
  -o-object-fit: cover;
  -o-object-position: center;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

@-webkit-keyframes p-top-fv-zoom {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}

@keyframes p-top-fv-zoom {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}
.p-top-fv__heading {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 3rem;
  font-weight: 600;
  left: 53%;
  letter-spacing: 0.056em;
  line-height: 1.625;
  position: absolute;
  top: 72%;
  z-index: 1;
}

/*-----------------------------
	LEAD（リード文 + 「当社について」ボタン）
------------------------------*/
.p-top-lead {
  padding-block: 13.75rem 0;
  padding-inline: 3.75rem;
  width: 100%;
}

.p-top-lead__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 56.25rem;
  width: 100%;
}

.p-top-lead__inner > .c-btn {
  margin-top: 5rem;
}
.p-top-lead__text-block {
  width: 100%;
}

.p-top-lead__text {
  color: #000000;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 1.75rem;
  letter-spacing: 0.0754em;
  line-height: 2.0714285714;
  text-align: center;
  width: 100%;
}

.p-top-lead__text + .p-top-lead__text {
  margin-top: 3.625rem;
}

/*-----------------------------
	TOKI
------------------------------*/
.p-top-toki {
  padding-top: 13.75rem;
}

.p-top-toki__inner {
  margin-inline: auto;
  max-width: 110rem;
  padding-bottom: 5rem;
  position: relative;
  width: 100%;
}

.p-top-toki__bg {
  background-color: #53443b;
  height: calc(100% - 19.1875rem);
  left: 0;
  position: absolute;
  top: 19.1875rem;
  width: 97.22%;
  z-index: 1;
}

.p-top-toki__hero {
  aspect-ratio: 1280/640;
  margin-left: 11.11%;
  overflow: hidden;
  position: relative;
  width: 88.89%;
  z-index: 2;
}

.p-top-toki__hero img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-top-toki__content-wrap {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  margin-left: 17.22%;
  margin-top: 4.25rem;
  position: relative;
  width: 74.44%;
  z-index: 3;
}

.p-top-toki__main {
  align-items: flex-start;
  display: flex;
  gap: 9.0625rem;
  width: 100%;
}

.p-top-toki__logo {
  flex-shrink: 0;
  width: 22.125rem;
}

.p-top-toki__logo img {
  -o-object-fit: contain;
  aspect-ratio: 354/500;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.p-top-toki__content {
  max-width: 100%;
  padding-top: 3.3125rem;
  text-align: center;
}

.p-top-toki__title-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.p-top-toki__sub {
  font-size: 1rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-align: left;
}

.p-top-toki__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.5;
  margin-top: 0.75rem;
  text-align: left;
}

.p-top-toki__desc {
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 2.25rem;
  text-align: left;
}

.p-top-toki .c-btn {
  color: #ffffff;
  margin-top: 2.25rem;
}
/*-----------------------------
	POINT
------------------------------*/
.p-top-point {
  margin-inline: auto;
  max-width: 90rem;
  padding-block: 20rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.p-top-point__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.p-top-point .c-feature-cards {
  margin-top: 5rem;
}

/*-----------------------------
	LINE-UP
------------------------------*/
.p-top-lineup {
  padding-block: 0 20rem;
}

.p-top-lineup__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 92.5rem;
  padding-inline: 1.25rem;
  width: 100%;
  width: 100%;
}

.p-top-lineup__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 7.5rem;
  width: 100%;
}

.p-top-lineup__card {
  align-items: center;
  display: flex;
  width: 100%;
}

.p-top-lineup__image {
  flex-shrink: 0;
  overflow: hidden;
  width: 42.5rem;
}

.p-top-lineup__image img {
  -o-object-fit: cover;
  aspect-ratio: 680/523;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.p-top-lineup__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 0;
  padding-inline: 5rem;
  width: 100%;
}

.p-top-lineup__name {
  align-items: baseline;
  color: #3c312b;
  display: flex;
  font-family: "EB Garamond", "Times New Roman", Times, serif;
  font-weight: 700;
  gap: 0.875rem;
}

.p-top-lineup__type {
  font-size: 1.25rem;
  letter-spacing: 0.144em;
  line-height: 1.6;
  text-transform: uppercase;
}

.p-top-lineup__series {
  font-size: 2rem;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.p-top-lineup__card-desc {
  color: #3c312b;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
  margin-top: 1.875rem;
}

.p-top-lineup__card .c-btn {
  align-self: flex-start;
  color: #000000;
  margin-top: 1.875rem;
}
/*-----------------------------
	TECHNOLOGY
------------------------------*/
.p-top-tech {
  padding-block: 0 20rem;
}

.p-top-tech__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 90rem;
  width: 100%;
  width: 100%;
}

.p-top-tech__cards {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  margin-top: 6.25rem;
  max-width: 90rem;
  width: 100%;
}

.p-top-tech__card {
  align-items: stretch;
  display: flex;
  height: 37.5rem;
  width: 100%;
}

.p-top-tech__card--02,
.p-top-tech__card--04 {
  flex-direction: row-reverse;
}

.p-top-tech__image {
  align-items: center;
  display: flex;
  flex: 0 0 50%;
  justify-content: center;
  width: 50%;
}

.p-top-tech__image img {
  -o-object-fit: contain;
  height: auto;
  max-height: 100%;
  max-width: 37.5rem;
  object-fit: contain;
  width: 100%;
}

.p-top-tech__card--01 .p-top-tech__image img {
  max-width: 34.125rem;
}

.p-top-tech__card--02 .p-top-tech__image img {
  max-width: 37.125rem;
}

.p-top-tech__card--03 .p-top-tech__image img {
  max-width: 29rem;
}

.p-top-tech__card--04 .p-top-tech__image img {
  max-width: 36.4375rem;
}

.p-top-tech__card--05 .p-top-tech__image img {
  max-width: 36.875rem;
}

.p-top-tech__text {
  background-blend-mode: multiply;
  background-image: url("../img/top/tech-panel-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  display: flex;
  flex: 0 0 50%;
  flex-direction: column;
  height: 37.5rem;
  padding-block: 5rem;
  padding-inline: 5rem;
  position: relative;
  width: 50%;
}

.p-top-tech__card-title {
  color: #ffffff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "游明朝", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.p-top-tech__card-body {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
}

.p-top-tech__btn {
  color: #000000;
  margin-top: 6.25rem;
}
/*-----------------------------
	for Success
------------------------------*/
.p-top-success__inner {
  align-items: center;
  background-color: #f5f3f0;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 85rem;
  padding-block: 5rem 6.6875rem;
  padding-inline: 5rem 4.1875rem;
  width: 100%;
}

.p-top-success__body {
  align-items: center;
  display: flex;
  gap: 4.875rem;
  margin-top: 0.625rem;
  width: 100%;
}

.p-top-success__image {
  flex-shrink: 0;
  width: 22.5rem;
}

.p-top-success__image img {
  -o-object-fit: cover;
  aspect-ratio: 360/480;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.p-top-success__text {
  flex: 1;
}

.p-top-success__desc {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.144em;
  line-height: 2;
}

.p-top-success__desc:nth-of-type(2) {
  margin-top: 2.5rem;
}

.u-sp {
  display: none;
}

@media screen and (min-width: 1600px) {
  .p-toki-fv__content {
    gap: 18.75rem;
    left: 12.5%;
  }
}

@media (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}

@media screen and (max-width: 1023px) {
  .p-design-detail-gallery__nav {
    height: 3.75rem;
    width: 3.75rem;
  }
  .p-design-detail-gallery__nav--prev {
    left: 0.25rem;
  }
  .p-design-detail-gallery__nav--next {
    right: 0.25rem;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  .l-footer {
    padding-block: 2.5rem 0.625rem;
    padding-inline: 1.25rem;
  }
  .l-footer__inner {
    gap: 2.5rem;
    max-width: 37.5rem;
  }
  .l-footer__main {
    align-items: stretch;
    flex-direction: column;
    gap: 2rem;
  }
  .l-footer__brand {
    display: contents;
  }
  .l-footer__logo {
    order: 1;
    width: 5.125rem;
  }
  .l-footer__company {
    gap: 2rem;
    order: 3;
  }
  .l-footer__info {
    gap: 0.5rem;
  }
  .l-footer__company-name,
  .l-footer__address {
    font-size: 0.625rem;
    line-height: 1.8;
  }
  .l-footer__contact {
    font-size: 0.875rem;
    line-height: 1.8;
    min-height: 2.5rem;
    padding-block: 0.375rem;
    padding-inline: 2.4375rem;
  }
  .l-footer__nav {
    gap: 0.75rem;
    order: 2;
    width: 100%;
  }
  .l-footer__nav-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .l-footer__nav-item {
    gap: 0.625rem;
  }
  .l-footer__nav-link {
    letter-spacing: 0.1em;
  }
  .l-footer__sublist {
    gap: 0.375rem;
    margin-left: 1.75rem;
  }
  .l-footer__sublink {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .l-footer__bottom {
    gap: 1rem;
  }
  .l-footer__copyright {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    line-height: 2.25;
  }
  .l-header {
    height: 3.125rem;
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
  }
  .l-header__logo {
    width: 6.25rem;
  }
  .l-header__right {
    display: none;
  }
  .l-header__hamburger {
    display: flex;
  }
  .l-header__drawer {
    padding-block: 6.25rem 2.5rem;
    padding-inline: 1.5rem;
  }
  .l-header__drawer-nav {
    gap: 2.5rem;
  }
  .l-header__drawer-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    justify-content: flex-start;
    padding-block: 1.25rem;
  }
  .l-header__drawer-en {
    font-size: 0.875rem;
  }
  .l-header__drawer-jp {
    font-size: 1.375rem;
    letter-spacing: 0.08em;
  }
  .l-header__drawer-contact {
    font-size: 0.9375rem;
    min-height: 3.5rem;
  }
  .c-bland-intro {
    padding-block: 7.5rem;
  }
  .c-bland-intro__inner {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    grid-template-areas: "title" "image" "body";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    margin-inline: auto;
    max-width: 37.5rem;
    min-height: 0;
    padding-inline: 1.25rem;
  }
  .c-bland-intro__title {
    font-size: 1.25rem;
    letter-spacing: 0.09em;
    line-height: 2;
  }
  .c-bland-intro__body {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.125em;
    line-height: 2;
    margin-top: 1.25rem;
  }
  .c-bland-intro__image {
    margin-top: 1.25rem;
  }
  .c-bland-message {
    padding-block: 3.125rem;
  }
  .c-bland-message__inner {
    margin-inline: auto;
    max-width: 40.625rem;
    padding-inline: 1.25rem;
  }
  .c-bland-message__item {
    align-items: stretch;
  }
  .c-bland-message__item + .c-bland-message__item {
    margin-top: 3.125rem;
  }
  .c-bland-message__title {
    font-size: 1.25rem;
    letter-spacing: 0.09em;
    line-height: 2;
  }
  .c-bland-message__body {
    font-size: 0.875rem;
    letter-spacing: 0.143em;
    line-height: 2.2857142857;
    margin-top: 1.25rem;
    width: 100%;
  }
  .c-bland-points {
    padding-block: 7.5rem;
  }
  .c-bland-points__inner {
    margin-inline: auto;
    max-width: 37.5rem;
    padding-inline: 1.25rem;
  }
  .c-bland-points__heading {
    font-size: 2.25rem;
    letter-spacing: 0.083em;
    line-height: 1.5555555556;
  }
  .c-bland-points__item:first-child {
    margin-top: 3.125rem;
  }
  .c-bland-points__item + .c-bland-points__item {
    margin-top: 6.25rem;
  }
  .c-bland-points__item {
    align-items: stretch;
    flex-direction: column;
    gap: 1.75rem;
  }
  .c-bland-points__item--reverse {
    flex-direction: column;
  }
  .c-bland-points__item-body {
    max-width: 100%;
    width: 100%;
  }
  .c-bland-points__item-title {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  .c-bland-points__item-text {
    font-size: 0.875rem;
    letter-spacing: 0.14em;
    line-height: 2.2857142857;
    margin-top: 1.5rem;
  }
  .c-bland-points__item-note {
    font-size: 0.75rem;
    line-height: 1.8333333333;
    margin-top: 1.5rem;
  }
  .c-bland-points--pure .c-bland-points__item:nth-child(2) .c-bland-points__item-image {
    max-width: 21.25rem;
  }
  .c-btn-arrow {
    max-width: 100%;
    width: 21.25rem;
  }
  .c-btn-arrow__btn {
    font-size: 1.25rem;
    height: 3.75rem;
    letter-spacing: 0.09em;
    padding-inline: 1.25rem 2.5rem;
  }
  .c-btn-arrow__arrow {
    height: 0.9375rem;
    width: 0.75rem;
  }
  .c-btn-view-more {
    border-width: 0.5px;
    font-size: 0.75rem;
    gap: 1.25rem;
    justify-content: center;
    letter-spacing: 0.25em;
    line-height: 1.3333333333;
    padding-block: 0.625rem;
    padding-inline: 1.875rem 0.625rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-btn-view-more__arrow {
    border-width: 0.5px;
    height: 0.5rem;
    width: 0.5rem;
  }
  .p-toki-concept .c-btn-view-more {
    margin-top: 2.5rem;
  }
  .c-btn {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1333em;
    line-height: 2.3333333333;
    padding-block: 0.75rem;
    padding-inline: 3rem;
  }
  .c-btn::after {
    height: 0.07375rem;
    width: 1.159375rem;
  }
  .c-btn--w331,
  .c-btn--w375,
  s .c-btn--w308,
  .c-btn--w288 {
    padding-inline: 3rem;
    width: auto;
  }
  .c-charter {
    padding-block: 7.5rem;
  }
  .c-charter__inner {
    max-width: 21.25rem;
    padding-inline: 0;
  }
  .c-charter__lead {
    font-size: 0.875rem;
    font-weight: 350;
    letter-spacing: 0.1143em;
    line-height: 2;
    margin-top: 1.5rem;
  }
  .c-charter__slider {
    margin-top: 2.5rem;
  }
  .c-charter__action {
    margin-top: 3.75rem;
  }
  .c-cta {
    padding-bottom: 5rem;
    padding-inline: initial;
  }
  .c-cta__inner {
    align-items: center;
    flex-direction: column;
    gap: initial;
    max-width: 37.5rem;
    padding-block: 3.75rem 3.5rem;
    padding-inline: 1.25rem;
  }
  .c-cta__gallery {
    gap: 0.75rem;
    margin-top: 1.5rem;
    max-width: 31.25rem;
    order: 2;
    width: 100%;
  }
  .c-cta__gallery-image {
    aspect-ratio: 160/88;
  }
  .c-cta__body {
    display: contents;
  }
  .c-cta__text {
    display: contents;
  }
  .c-cta__label {
    font-size: 0.75rem;
    letter-spacing: 0.1667em;
    line-height: 1.6666666667;
    order: 0;
    width: 100%;
  }
  .c-cta__heading {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 2;
    max-width: 21.875rem;
    order: 1;
    text-align: left;
    width: 100%;
  }
  .c-cta__description {
    font-size: 0.875rem;
    font-weight: 350;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 1.5rem;
    max-width: 31.25rem;
    order: 3;
    width: 100%;
  }
  .c-cta__button {
    font-size: 1rem;
    gap: 0.75rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-inline: auto;
    max-width: 18.5rem;
    min-height: 3.75rem;
    order: 4;
    padding-block: 0.875rem;
    padding-inline: 1.25rem 1.25rem;
    width: 100%;
  }
  .c-cta__button-arrow {
    height: 1.875rem;
    width: 1.875rem;
  }
  .c-feature-cards {
    gap: 6.25rem;
    grid-template-columns: 1fr;
    padding-top: 3.125rem;
  }
  .c-feature-cards__item {
    gap: 0.5rem;
    padding-block: 3.125rem 1.5rem;
    padding-inline: 0.625rem;
  }
  .c-feature-cards__num {
    font-size: 2.5rem;
    height: 6.25rem;
    letter-spacing: 0.05em;
    line-height: 2.3;
    top: -3.125rem;
    width: 6.25rem;
  }
  .c-feature-cards__title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
  .c-feature-cards__text {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2;
  }
  .c-feature-cards__chevron {
    height: 1.5rem;
    width: 1.5rem;
  }
  .c-feature-split {
    min-height: 0;
  }
  .c-feature-split__inner {
    flex-direction: column;
    min-height: 0;
  }
  .c-feature-split__inner::before {
    display: none;
  }
  .c-feature-split__hexagons {
    padding-block: 2.5rem;
    width: 100%;
  }
  .c-feature-split__hexagons-img {
    display: block;
    max-width: 31.25rem;
    position: static;
    width: 100%;
  }
  .c-feature-split__content {
    padding-block: 3.75rem;
    padding-inline: 1.25rem;
    width: 100%;
  }
  .c-feature-split__content::before {
    background: url(../img/design/quality-bg-main-sp.webp) center center/cover no-repeat;
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
  }
  .c-feature-split__text {
    margin-inline: auto;
    max-width: 37.5rem;
  }
  .c-feature-split__title {
    font-size: 1.75rem;
    line-height: 2;
  }
  .c-feature-split__body {
    font-size: 1rem;
    line-height: 2.25;
    margin-top: 1.5rem;
  }
  .c-feature-split__btn {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 2.5rem;
    max-width: 100%;
    padding-block: 0.75rem;
    padding-inline: 1rem;
    width: 12.75rem;
  }
  .c-feature-split__btn-arrow {
    width: 1.875rem;
  }
  .c-page-fv {
    min-height: 37.5rem;
  }
  .c-page-fv::after {
    height: 100%;
    top: 0;
  }
  .c-page-fv--design::before {
    background-position: 82% center;
  }
  .c-page-fv--relax::before {
    background-position: center;
  }
  .c-page-fv--pure::before {
    background-position: center;
  }
  .c-page-fv--sleep::before {
    background-position: center;
  }
  .c-page-fv--family::before {
    background-position: center;
  }
  .c-page-fv--value::before {
    background-position: center;
  }
  .c-page-fv--body::before {
    background-position: center;
  }
  .c-page-fv--comfort::before {
    background-position: center;
  }
  .c-page-fv__inner {
    flex-direction: column;
    gap: 3.75rem;
    max-width: 30rem;
    min-height: 0;
    padding-block: 7.5rem 5rem;
    padding-inline: 1.25rem;
  }
  .c-page-fv .c-section-title__jp {
    font-size: 2rem;
  }
  .c-page-fv__text {
    margin-top: initial;
    width: 100%;
  }
  .c-page-fv__lead {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    line-height: 2;
  }
  .c-page-fv__description {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 2.5714285714;
    margin-top: 1.875rem;
  }
  .c-reasons {
    min-height: 0;
    padding-block: 5rem;
  }
  .c-reasons__inner {
    align-items: stretch;
    gap: 2.5rem;
    padding-inline: 3.125rem;
  }
  .c-reasons__list {
    gap: 2.5rem;
    margin-top: 0;
    width: 100%;
  }
  .c-reasons__item {
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }
  .c-reasons__num {
    font-size: 2rem;
    line-height: 1.25;
    width: auto;
  }
  .c-reasons__body {
    align-items: center;
    width: 100%;
  }
  .c-reasons__heading {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2;
    text-align: center;
  }
  .c-reasons__text {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 2.5;
    margin-top: 0.625rem;
    text-align: left;
  }
  .c-section-heading {
    max-width: 31.25rem;
  }
  .c-section-heading__en {
    font-size: 0.75rem;
    letter-spacing: 0.1667em;
    line-height: 1.6666666667;
  }
  .c-section-heading__title {
    font-size: 1.25rem;
    letter-spacing: 0.09em;
    line-height: 2;
  }
  .c-section-heading__desc {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2;
    margin-top: 1.5rem;
    text-align: left;
  }
  .c-section-heading--lg .c-section-heading__title {
    font-size: 1.5rem;
    letter-spacing: 0.0833em;
    line-height: 1.6666666667;
  }
  .c-section-heading--sp-md .c-section-heading__title {
    font-size: 1.25rem;
    letter-spacing: 0.09em;
    line-height: 2;
  }
  .c-section-title__en {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
    text-align: center;
  }
  .c-section-title__jp {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: center;
  }
  .c-side-cta {
    -webkit-transform: translateY(100%);
    align-items: center;
    background-color: #000000;
    border: 1px solid #000000;
    bottom: 0;
    color: #ffffff;
    flex-direction: row;
    gap: 0.625rem;
    justify-content: center;
    left: 0;
    opacity: 1;
    padding-block: 0.625rem;
    padding-inline: 1.25rem;
    pointer-events: none;
    right: 0;
    top: auto;
    transform: translateY(100%);
    transition: background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s ease;
    transition: transform 0.4s ease, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s ease, background-color 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s ease;
    width: 100%;
  }
  .c-side-cta.is-visible {
    -webkit-transform: translateY(0);
    pointer-events: auto;
    transform: translateY(0);
  }
  .c-side-cta__label {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1.75;
    width: auto;
  }
  .c-side-cta__arrow {
    display: none;
  }
  .c-slider-logos {
    padding-block: 10.8125rem 7.5rem;
  }
  .c-slider-logos__title {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2;
    margin-inline: auto;
    max-width: 21.25rem;
    padding-inline: 1.25rem;
  }
  .c-slider-logos__viewport {
    margin-top: 1.5rem;
  }
  .c-slider-logos__track {
    -webkit-animation-duration: 25s;
    animation-duration: 25s;
    gap: 2.5rem;
  }
  .c-slider-logos__item {
    height: 8.5625rem;
  }
  .c-slider-logos__item--tomida img {
    width: 20rem;
  }
  .c-slider-logos__item--hori img {
    width: 12.5rem;
  }
  .c-slider-logos__item--soneken img {
    width: 12.5rem;
  }
  .c-slider-logos__item--shinwa img {
    width: 20rem;
  }
  .c-slider-logos__item--ogawara img {
    width: 20rem;
  }
  .p-about-fv {
    padding-block: 8.125rem 5rem;
  }
  .p-about-fv::before {
    background-image: url("../img/about/fv-bg-sp.webp");
  }
  .p-about-fv::after {
    height: 100%;
    top: 0;
  }
  .p-about-fv__inner {
    max-width: 34.375rem;
    padding-inline: 1.25rem;
  }
  .p-about-fv__logo {
    width: 11.4375rem;
  }
  .p-about-fv__title {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 4.375rem;
  }
  .p-about-fv__description {
    font-size: 0.875rem;
    letter-spacing: 0.113em;
    line-height: 2.5714285714;
    margin-top: 3.75rem;
  }
  .p-about-fv__description p + p {
    margin-top: 1.5em;
  }
  .p-about-mission {
    overflow: hidden;
    position: relative;
  }
  .p-about-mission__inner {
    display: block;
    max-width: 100%;
    min-height: 64.25rem;
    padding-block: 5rem;
    padding-inline: 1.25rem;
    position: relative;
  }
  .p-about-mission__media {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .p-about-mission__media img {
    -o-object-fit: cover;
    -o-object-position: center;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
  }
  .p-about-mission__media::after {
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
  }
  .p-about-mission__body {
    color: #ffffff;
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2;
    margin-inline: auto;
    max-width: 31.25rem;
    padding-top: 0;
    position: relative;
    z-index: 2;
  }
  .p-about-keyword {
    padding-block: 7.5rem 0;
  }
  .p-about-keyword__banner {
    max-width: 100%;
    padding-block: 1.25rem;
  }
  .p-about-keyword__banner-title {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  .p-about-keyword__banner-sub {
    font-size: 0.875rem;
    letter-spacing: 0.1429em;
    line-height: 2.2857142857;
    margin-top: 0.75rem;
  }
  .p-about-keyword__block-inner {
    max-width: 34.375rem;
    padding-inline: 1.25rem;
  }
  .p-about-keyword__block {
    margin-top: 6.25rem;
  }
  .p-about-keyword__cards {
    margin-top: 5rem;
  }
  .p-about-service {
    padding-block: 7.5rem 0;
  }
  .p-about-service__inner {
    max-width: 37.5rem;
    padding-inline: 0;
  }
  .p-about-service__list {
    gap: 3.75rem;
    margin-top: 3.75rem;
  }
  .p-about-service__item {
    flex-direction: column;
    gap: 3.75rem;
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
  .p-about-service__item--toki {
    gap: 3.75rem;
  }
  .p-about-service__item--iyashiro {
    gap: 1.25rem;
  }
  .p-about-service__item--toki .p-about-service__media {
    width: 15rem;
  }
  .p-about-service__item--iyashiro .p-about-service__media {
    width: 16.9375rem;
  }
  .p-about-service__body {
    max-width: 26.25rem;
  }
  .p-about-service__sub {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 1.4285714286;
  }
  .p-about-service__title {
    font-size: 1.5rem;
    letter-spacing: 0.0833em;
    line-height: 1.6666666667;
  }
  .p-about-service__item--iyashiro .p-about-service__title {
    font-size: 1.5rem;
    letter-spacing: 0.0833em;
    line-height: 1.6666666667;
  }
  .p-about-service__desc {
    font-size: 0.875rem;
    font-weight: 350;
    letter-spacing: 0.1429em;
    line-height: 2.2857142857;
    margin-top: 1.125rem;
  }
  .p-company-message {
    margin-top: 7.5rem;
  }
  .p-company-message__inner {
    max-width: 37.5rem;
    padding-inline: 1.25rem;
  }
  .p-company-message__body {
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 5rem;
  }
  .p-company-message__image {
    width: 18.75rem;
  }
  .p-company-message__image img {
    aspect-ratio: 300/400;
  }
  .p-company-message__text {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2;
  }
  .p-company-message__text p + p {
    margin-top: 1.75rem;
  }
  .p-company-info {
    padding-top: 7.5rem;
  }
  .p-company-info__inner {
    max-width: 37.5rem;
    padding-inline: 1.25rem;
  }
  .p-company-info__list {
    margin-top: 5rem;
  }
  .p-company-info__row {
    grid-template-columns: 6.25rem 1fr;
  }
  .p-company-info__label {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2.2857142857;
    padding-block: 0.625rem;
    padding-inline: 1.25rem;
    white-space: nowrap;
  }
  .p-company-info__value {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2.2857142857;
    padding-block: 0.625rem;
    padding-inline: 1.25rem;
  }
  .p-contact-intro {
    -webkit-padding-before: 8.125rem;
    padding-block-start: 8.125rem;
  }
  .p-contact-intro__inner {
    max-width: 36.25rem;
    padding-inline: 1.25rem;
  }
  .p-contact-intro__title-en {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
  .p-contact-intro__title-jp {
    font-size: 1.5rem;
    letter-spacing: 0.083em;
    line-height: 1.6666666667;
  }
  .p-contact-intro__lead {
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
    text-align: start;
  }
  .p-contact-intro__lead-text {
    font-size: 0.875rem;
    letter-spacing: 0.114em;
    line-height: 2;
  }
  .p-contact-intro__lead-text + .p-contact-intro__lead-text {
    -webkit-margin-before: 1.75rem;
    margin-block-start: 1.75rem;
  }
  .p-contact-form {
    padding-block: 3.75rem 6.25rem;
    padding-inline: 0;
  }
  .p-contact-form__inner {
    padding: 3.125rem 1.25rem;
  }
  .p-contact-form__list {
    margin-inline: auto;
    max-width: 31.25rem;
  }
  .p-contact-form__row {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
  }
  .p-contact-form__row + .p-contact-form__row {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
  }
  .p-contact-form__row--checkbox + .p-contact-form__row {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
  }
  .p-contact-form__label {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 2;
    width: auto;
  }
  .p-contact-form__label--required .p-contact-form__label-text::after {
    font-size: 0.75rem;
    right: -1rem;
    top: 0.625rem;
  }
  .p-contact-form__field {
    width: 100%;
  }
  .p-contact-form__field--lg {
    width: 100%;
  }
  .p-contact-form__field--sm {
    width: 100%;
  }
  .p-contact-form input[type=text],
  .p-contact-form input[type=tel],
  .p-contact-form input[type=email],
  .p-contact-form textarea,
  .p-contact-form select {
    font-size: 0.875rem;
    font-weight: 350;
    height: 3.125rem;
    letter-spacing: 0.114em;
    padding-inline: 1.25rem;
  }
  .p-contact-form textarea {
    height: 15.625rem;
  }
  .p-contact-form select {
    -webkit-padding-end: 2.5rem;
    background-position: right 1rem center;
    background-size: 0.875rem 0.75rem;
    padding-inline-end: 2.5rem;
  }
  .p-contact-form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
    width: 100%;
  }
  .p-contact-form .wpcf7-list-item-label {
    font-size: 0.875rem;
    letter-spacing: 0.143em;
    line-height: 1.6;
  }
  .p-contact-form input[type=checkbox] {
    background-size: 0.9375rem 0.9375rem;
    height: 1.25rem;
    width: 1.25rem;
  }
  .p-contact-form__submit {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
  }
  .p-contact-form .wpcf7-not-valid-tip {
    font-size: 0.75rem;
  }
  .p-contact-form .wpcf7-response-output {
    -webkit-margin-before: 1.5rem;
    font-size: 0.8125rem;
    margin-block-start: 1.5rem;
    padding-block: 0.75rem;
    padding-inline: 1rem;
  }
  .p-contact-form__confirm-value {
    font-size: 0.875rem;
    letter-spacing: 0.114em;
  }
  .p-contact-form__buttons {
    -webkit-margin-before: 5rem;
    align-items: center;
    flex-direction: column-reverse;
    gap: 1.25rem;
    margin-block-start: 5rem;
  }
  .p-contact-form.is-confirm {
    padding-block: 3.75rem 6.25rem;
  }
  .p-design-type {
    padding-block: 6.25rem;
  }
  .p-design-type__inner {
    padding-inline: 1.25rem;
  }
  .p-design-type__heading {
    font-size: 2.5rem;
    line-height: 1.8;
  }
  .p-design-type__list {
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    max-width: 21.25rem;
  }
  .p-design-type__item {
    height: 17.5rem;
    max-width: 26.25rem;
    width: 100%;
  }
  .p-design-type__link {
    padding-inline: 0.3125rem;
  }
  .p-design-type__num {
    font-size: 3rem;
    line-height: 1.6666666667;
  }
  .p-design-type__title {
    font-size: 1.75rem;
    line-height: 1.7142857143;
  }
  .p-design-type__text {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    line-height: 2;
    text-align: center;
  }
  .p-design-type__chevron {
    height: 2rem;
    width: 2rem;
  }
  .p-design-detail {
    padding-bottom: 7.5rem;
  }
  .p-design-detail__inner {
    margin-inline: auto;
    max-width: 40.625rem;
    width: 100%;
  }
  .p-design-detail__inner > * + * {
    margin-top: 6.25rem;
  }
  .p-design-detail-fv--machiya {
    background-image: url("../img/design/machiya-bg-fv-sp.webp");
  }
  .p-design-detail-fv--yane {
    background-image: url("../img/design/yane-fv-sp.webp");
  }
  .p-design-detail-fv__inner {
    max-width: 37.5rem;
    min-height: initial;
    padding-block: 6.625rem 0.625rem;
    padding-inline: 1.25rem;
  }
  .p-design-detail-fv__text {
    width: 18.4375rem;
  }
  .p-design-detail-fv__label {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
  .p-design-detail-fv__heading {
    font-size: 2rem;
    line-height: 1.25;
  }
  .p-design-detail-fv__description {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    line-height: 2;
    margin-top: 0.625rem;
  }
  .p-design-detail-section {
    padding-inline: 0;
  }
  .p-design-detail-section__body {
    margin-top: 2.5rem;
  }
  .p-design-detail-section .c-section-title__en {
    font-size: 2.5rem;
    line-height: 1.8;
  }
  .p-design-detail-section .c-section-title__jp {
    font-size: 1rem;
    line-height: 2;
  }
  .p-design-detail-gallery {
    gap: 3.75rem;
  }
  .p-design-detail-gallery__label {
    font-size: 1rem;
    line-height: 2;
    padding-left: 1.25rem;
  }
  .p-design-detail-gallery__swiper {
    margin-top: 0.5rem;
  }
  .p-design-detail-gallery__nav {
    display: none;
  }
  .p-design-detail-gallery__pagination {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
  }
  .p-design-detail-gallery__nav-icon {
    height: 1.25rem;
    width: 1.25rem;
  }
  .p-not-found {
    padding-block: 6.875rem 6.25rem;
  }
  .p-not-found__inner {
    max-width: 36.25rem;
    padding-inline: 1.25rem;
  }
  .p-not-found__title-en {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
  .p-not-found__title-num,
  .p-not-found__title-jp {
    font-size: 1.5rem;
    letter-spacing: 0.083em;
    line-height: 1.4;
  }
  .p-not-found__lead {
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
    text-align: start;
  }
  .p-not-found__lead-text {
    font-size: 0.875rem;
    letter-spacing: 0.114em;
    line-height: 2;
  }
  .p-not-found__action {
    -webkit-margin-before: 2.5rem;
    margin-block-start: 2.5rem;
  }
  .p-thanks {
    padding-block: 6.875rem 6.25rem;
  }
  .p-thanks__inner {
    max-width: 36.25rem;
    padding-inline: 1.25rem;
  }
  .p-thanks__title-en {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }
  .p-thanks__title-jp {
    font-size: 1.5rem;
    letter-spacing: 0.083em;
    line-height: 1.6666666667;
  }
  .p-thanks__lead {
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
    text-align: start;
  }
  .p-thanks__lead-text {
    font-size: 0.875rem;
    letter-spacing: 0.114em;
    line-height: 2;
  }
  .p-thanks__lead-text + .p-thanks__lead-text {
    -webkit-margin-before: 1.75rem;
    margin-block-start: 1.75rem;
  }
  .p-thanks__action {
    -webkit-margin-before: 5rem;
    margin-block-start: 5rem;
  }
  .p-toki-fv {
    background-attachment: scroll;
    background-position: 39% center;
    min-height: 30.375rem;
    padding-block: 5.625rem 2.5rem;
  }
  .p-toki-fv__inner {
    min-height: 0;
    padding-inline: 1.25rem;
  }
  .p-toki-fv__content {
    align-items: flex-start;
    gap: 0.625rem;
    justify-content: center;
    left: auto;
    position: static;
    text-align: left;
    top: auto;
    width: 100%;
  }
  .p-toki-fv__logo {
    width: 7.5rem;
  }
  .p-toki-fv__text {
    flex: 1;
    margin-top: 1.25rem;
    max-width: 13.125rem;
    min-width: 0;
    width: auto;
  }
  .p-toki-fv__lead {
    font-size: 0.625rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 2;
    text-align: left;
  }
  .p-toki-fv__heading {
    font-size: 2.25rem;
    letter-spacing: 0.083em;
    line-height: 1.7777777778;
    text-align: left;
  }
  .p-toki-fv__description {
    font-size: 0.8125rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 2.1538461538;
    margin-top: 1.25rem;
    text-align: left;
  }
  .p-toki-concept {
    background-attachment: scroll;
    min-height: 0;
  }
  .p-toki-concept::after {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
  }
  .p-toki-concept__inner {
    align-items: center;
    flex-direction: column;
    gap: initial;
    min-height: 0;
    padding-block: 5rem;
    padding-inline: 3.125rem;
  }
  .p-toki-concept__title {
    width: 100%;
  }
  .p-toki-concept__body {
    align-items: center;
    margin-top: 2.5rem;
    width: 100%;
  }
  .p-toki-concept__text {
    font-size: 0.875rem;
    letter-spacing: 0.1429em;
    line-height: 2.5714285714;
    text-align: center;
  }
  .p-toki-concept--quality {
    background-position: 55% center;
    min-height: 0;
  }
  .p-toki-concept--quality .p-toki-concept__inner {
    min-height: 0;
    padding-block: 5rem;
    padding-inline: 3.125rem;
  }
  .p-toki-concept--quality .p-toki-concept__text {
    line-height: 2.5714285714;
  }
  .p-toki-concept--design {
    background-position: 76% center;
  }
  .p-toki-concept--relax {
    background-position: 55% center;
  }
  .p-toki-concept--pure {
    background-position: 55% center;
  }
  .p-toki-concept--sleep {
    background-position: 60% center;
  }
  .p-toki-concept--family {
    background-position: 72% center;
  }
  .p-toki-concept--value {
    background-position: 68% center;
  }
  .p-toki-concept--body {
    background-position: 46% center;
  }
  .p-toki-concept--comfort {
    background-position: 72% center;
  }
  .p-top-fv {
    margin-block: 0;
    padding-inline: 0;
    padding-top: 3.125rem;
  }
  .p-top-fv__slider {
    aspect-ratio: 380/620;
    max-height: 38.75rem;
  }
  .p-top-fv__heading {
    -webkit-transform: translate(-50%, -50%);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-size: 1.5625rem;
    height: 64%;
    left: 50%;
    letter-spacing: 0.3em;
    line-height: 2;
    top: 50%;
    transform: translate(-50%, -50%);
    writing-mode: vertical-rl;
  }
  .p-top-lead {
    padding-block: 5rem 0;
    padding-inline: 1.25rem;
  }
  .p-top-lead__inner {
    max-width: 31.25rem;
  }
  .p-top-lead__inner > .c-btn {
    margin-top: 3.75rem;
  }
  .p-top-lead__text {
    font-size: 0.9375rem;
    letter-spacing: 0.12em;
    line-height: 2.4;
  }
  .p-top-lead__text + .p-top-lead__text {
    margin-top: 2.25rem;
  }
  .p-top-toki {
    padding-top: 7.5rem;
  }
  .p-top-toki__inner {
    padding-bottom: 2.5rem;
  }
  .p-top-toki__bg {
    height: calc(100% - 5.3125rem);
    top: 5.3125rem;
    width: 100%;
  }
  .p-top-toki__hero {
    aspect-ratio: 340/170;
    margin-left: 10.53%;
    width: 89.47%;
  }
  .p-top-toki__content-wrap {
    margin-left: 5.26%;
    margin-top: 1.75rem;
    width: 89.47%;
  }
  .p-top-toki__main {
    flex-direction: row;
    gap: 0.5rem;
  }
  .p-top-toki__logo {
    width: 6.25rem;
  }
  .p-top-toki__logo img {
    aspect-ratio: 100/141;
  }
  .p-top-toki__content {
    flex: 1;
    padding-top: 1.1875rem;
    text-align: left;
  }
  .p-top-toki__sub {
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    line-height: 2;
    text-align: left;
  }
  .p-top-toki__title {
    font-size: 1.25rem;
    letter-spacing: 0.09em;
    line-height: 2;
    margin-top: 0.375rem;
  }
  .p-top-toki__desc {
    font-size: 0.75rem;
    letter-spacing: 0.1333em;
    line-height: 2;
    margin-top: 1.25rem;
  }
  .p-top-toki .c-btn {
    margin-top: 2.5rem;
  }
  .p-top-point {
    max-width: 100%;
    padding-block: 5rem 7.5rem;
    padding-inline: 1.25rem;
  }
  .p-top-point__inner {
    margin-inline: auto;
    max-width: 34.375rem;
  }
  .p-top-point .c-feature-cards {
    margin-top: 3.75rem;
  }
  .p-top-lineup {
    padding-block: 0 7.5rem;
  }
  .p-top-lineup__inner {
    margin-inline: auto;
    max-width: 37.5rem;
    width: 100%;
  }
  .p-top-lineup__cards {
    gap: 2.5rem;
    margin-top: 5rem;
  }
  .p-top-lineup__card {
    flex-direction: column;
  }
  .p-top-lineup__image {
    width: 100%;
  }
  .p-top-lineup__image img {
    aspect-ratio: 340/262;
  }
  .p-top-lineup__body {
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
  }
  .p-top-lineup__type {
    font-size: 0.75rem;
    letter-spacing: 0.1667em;
    line-height: 2;
  }
  .p-top-lineup__series {
    font-size: 1.5rem;
    letter-spacing: 0.0833em;
    line-height: 2;
  }
  .p-top-lineup__card-desc {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2;
    margin-top: 1rem;
  }
  .p-top-lineup__card .c-btn {
    align-self: center;
  }
  .p-top-tech {
    padding-block: 0 7.5rem;
  }
  .p-top-tech__inner {
    padding-inline: 1.25rem;
  }
  .p-top-tech__cards {
    gap: 5rem;
    margin-top: 5rem;
  }
  .p-top-tech__card {
    align-items: center;
    flex-direction: column;
    height: auto;
  }
  .p-top-tech__card--02,
  .p-top-tech__card--04 {
    flex-direction: column;
  }
  .p-top-tech__image {
    flex: 1 1 auto;
    max-width: 31.25rem;
    width: 100%;
  }
  .p-top-tech__image img {
    max-width: 100%;
  }
  .p-top-tech__text {
    flex: 1 1 auto;
    height: auto;
    margin-inline: -1.25rem;
    margin-top: 1.25rem;
    max-width: 37.5rem;
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
    width: 100vw;
  }
  .p-top-tech__card-title {
    font-size: 1.25rem;
    letter-spacing: 0.09em;
    line-height: 2;
    margin-bottom: 1.25rem;
  }
  .p-top-tech__card-body {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2;
  }
  .p-top-tech__btn {
    margin-top: 5rem;
  }
  .p-top-success__inner {
    max-width: 37.5rem;
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
  .p-top-success__body {
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.25rem;
  }
  .p-top-success__image {
    width: 15rem;
  }
  .p-top-success__image img {
    aspect-ratio: 240/320;
  }
  .p-top-success__desc {
    font-size: 0.875rem;
    letter-spacing: 0.1143em;
    line-height: 2;
  }
  .p-top-success__desc:nth-of-type(2) {
    margin-top: 1.75rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .p-top-fv__heading {
    font-size: 1.25rem;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {
  .l-footer__logo:hover {
    opacity: 0.7;
  }
  .l-footer__contact:hover {
    background-color: #53443b;
    color: #ffffff;
  }
  .l-footer__nav-link:hover::after {
    width: 100%;
  }
  .l-footer__sublink:hover::after {
    width: 100%;
  }
  .l-header__logo:hover {
    opacity: 0.7;
  }
  .l-header__nav-link:hover::after {
    width: 100%;
  }
  .l-header__contact:hover {
    background-color: #ffffff;
    color: #5c3d2e;
  }
  .l-header__drawer-link:hover {
    color: #c49a6c;
  }
  .l-header__drawer-link:hover .l-header__drawer-jp {
    color: #c49a6c;
  }
  .l-header__drawer-contact:hover {
    background-color: #5c3d2e;
  }
  .l-header__drawer-contact:hover .l-header__drawer-contact-arrow {
    -webkit-transform: translateX(0.25rem);
    transform: translateX(0.25rem);
  }
  .l-header--light .l-header__contact:hover {
    background-color: #5c3d2e;
    border-color: #5c3d2e;
    color: #ffffff;
  }
  .c-btn-view-more:hover {
    background-color: #ffffff;
    color: #1a1a1a;
  }
  .c-btn--dark:hover {
    background-color: #53443b;
    color: #ffffff;
  }
  .c-cta__button:hover {
    background-color: #a82a2a;
  }
  .c-cta__button:hover .c-cta__button-arrow {
    -webkit-transform: translateX(0.25rem);
    transform: translateX(0.25rem);
  }
  .c-feature-cards__item:has(.c-feature-cards__link):hover .c-feature-cards__chevron {
    -webkit-transform: translateY(0.375rem);
    transform: translateY(0.375rem);
  }
  .c-feature-split__btn:hover {
    background-color: #ffffff;
    color: #5c3d2e;
  }
  .c-side-cta:hover {
    background-color: #5c3d2e;
  }
  .c-side-cta:hover .c-side-cta__label {
    color: #ffffff;
  }
  .c-side-cta:hover .c-side-cta__arrow img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .c-slider-logos__link:hover {
    opacity: 0.7;
  }
  .p-about-service__btn:hover {
    background-color: #ffffff;
    color: #53443b;
  }
  .p-design-type__link:hover .p-design-type__chevron {
    -webkit-transform: translateY(0.375rem);
    transform: translateY(0.375rem);
  }
  .p-design-detail-gallery__slide:hover img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  .p-design-detail-gallery__nav:hover {
    background-color: #f5f3f0;
  }
  .p-top-lead__inner > .c-btn:hover {
    background-color: #5c3d2e;
    color: #ffffff;
  }
  .p-top-toki .c-btn:hover {
    background-color: #ffffff;
    color: #5c3d2e;
  }
  .p-top-lineup__card .c-btn:hover {
    background-color: #5c3d2e;
    color: #ffffff;
  }
  .p-top-tech__btn:hover {
    background-color: #5c3d2e;
    color: #ffffff;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */