@charset "UTF-8";
/*! kiso.css v1.2.4 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}
/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;

  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;

  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;

  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;

  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;

  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;

  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;

  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}
:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;

  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}
/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}
:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}
/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}
:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}
:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;

  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}
:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}
:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;

  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}
@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(:is(i, cite, em, dfn):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;

  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;

  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}
:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}
:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}
@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}
:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;

  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}
:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}
:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}
/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}
:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}
:where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;

  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}
:where(input:is([type="radio" i], [type="checkbox" i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}
:where(input[type="file" i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}
:where(input[type="search" i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}
@supports (-webkit-touch-callout: none) {
  :where(input[type="search" i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(
    input:is(
        [type="tel" i],
        [type="url" i],
        [type="email" i],
        [type="number" i]
      ):not(:placeholder-shown)
  ) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;

  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}
:where(
    input:not([type="button" i], [type="submit" i], [type="reset" i]),
    textarea,
    [contenteditable]
  ) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}
:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i])
  ),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}
:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i]),
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}
:where(
    button:enabled,
    label[for],
    select:enabled,
    input:is(
        [type="button" i],
        [type="submit" i],
        [type="reset" i],
        [type="radio" i],
        [type="checkbox" i]
      ):enabled,
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}
:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;

  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}
:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}
:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}
::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}
/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";

  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}
:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}
:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;

  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}
:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}
:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}
:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 30%);
}
:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}
/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}
[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}
/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}
[hidden]:not([hidden="until-found" i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}
:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}
:where(p) {
  margin: 0;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* z-index */
  --z-index-header: 900;
  /* 紙の質感：SVGノイズ（モック踏襲） */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='linear' slope='0.05'/></feComponentTransfer></filter><rect width='180' height='180' filter='url(%23g)'/></svg>");
  /* header height（adjust-admin-bar等の互換用。実体はSCSS変数） */
  --header-height: 64px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 94px;
  }
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 5.875rem;
  max-width: 100vw;
  overflow-x: hidden;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1200 * 100svw);
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 4rem;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: calc(16 / 375 * 100svw);
  }
}
a[href^=tel] {
  text-decoration: none;
}
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}
a:hover {
  text-decoration: none;
}
img,
svg {
  vertical-align: middle;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}
:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}
:focus:not(:focus-visible) {
  outline: none;
}
input[type=text] {
  font-size: 1rem;
  /* = 16px */
}
textarea {
  field-sizing: content;
}
body {
  color: #3d362d;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.8;
  background-color: #f4efe6;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 4rem;
  }
}
.js-fade-up {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.l-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 628px;
    padding-inline: 0.875rem;
  }
}
.l-section {
  padding-block: 5.625rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 3.5rem;
  }
}
.c-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  padding: 1.25rem 0.5rem;
  text-align: center;
  color: #ffffff;
  background: transparent;
  box-shadow: inset 0 0 0 1px #c9b37e;
  letter-spacing: 0.08em;
  border-radius: 0.125rem;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease, background 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    transform: translateY(-0.1875rem);
    box-shadow: inset 0 0 0 1px #c9b37e, 0 0.75rem 1.75rem rgba(0, 0, 0, 0.35);
    background: rgba(201, 179, 126, 0.14);
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    gap: 0.1875rem;
    padding: 0.875rem 0.25rem;
  }
}
.c-btn__label {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #c9b37e;
}
@media screen and (max-width: 767px) {
  .c-btn__label {
    font-size: 0.75rem;
  }
}
.c-btn__main {
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .c-btn__main {
    font-size: 1.0625rem;
  }
}
.c-btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid #3d362d;
  background: #ffffff;
  color: #3d362d;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s;
}
.c-btn-outline:hover {
  background: #efe9de;
}
.c-cta-kw {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.08em;
  margin-right: 0.1875rem;
}
.c-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  border-top: 1px solid #3d362d;
  z-index: 500;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-fixed-cta {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-top: none;
    box-shadow: 0 -0.375rem 1.125rem rgba(0, 0, 0, 0.07);
    padding: 0.5rem;
    gap: 0.375rem;
  }
}
.c-fixed-cta__btn {
  position: relative;
  overflow: hidden;
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.625rem;
  letter-spacing: 0.1em;
  background: linear-gradient(160deg, #3a3128 0%, #241f18 65%);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(201, 179, 126, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.c-fixed-cta__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 22%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .c-fixed-cta__btn::after {
    animation: ctaSheenWide 2.6s ease-in-out 1;
    animation-delay: 2s;
    animation-fill-mode: forwards;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-fixed-cta__btn:hover {
    background: linear-gradient(160deg, #4a3f31 0%, #2e2820 65%);
  }
}
@media screen and (max-width: 767px) {
  .c-fixed-cta__btn {
    padding: 0.875rem 0.25rem;
    border-radius: 0.125rem;
    letter-spacing: 0.05em;
    box-shadow: 0 0.25rem 0.875rem rgba(36, 31, 24, 0.3), inset 0 0 0 1px rgba(201, 179, 126, 0.4);
  }
}
.c-fixed-cta__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-fixed-cta__label {
    font-size: 0.75rem;
  }
}
.c-fixed-cta__main {
  display: block;
  margin-top: 0.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-fixed-cta__main {
    font-size: 1.0625rem;
  }
}
@keyframes ctaSheenWide {
  0% {
    left: -40%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.c-float-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 6.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 500;
}
@media screen and (max-width: 767px) {
  .c-float-actions {
    right: 1rem;
    bottom: 6.6875rem;
    gap: 0.5rem;
  }
}
.c-float-actions__share, .c-float-actions__totop {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #3d362d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #3d362d;
  transition: background 0.2s, color 0.2s, opacity 0.25s, visibility 0.25s;
}
@media (hover: hover) and (pointer: fine) {
  .c-float-actions__share:hover, .c-float-actions__totop:hover {
    background: #3d362d;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .c-float-actions__share, .c-float-actions__totop {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-float-actions__share svg, .c-float-actions__totop svg {
  width: 1.125rem;
  height: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-float-actions__share svg, .c-float-actions__totop svg {
    width: 1rem;
    height: 1rem;
  }
}
.c-float-actions__totop {
  opacity: 0;
  visibility: hidden;
}
.c-float-actions__totop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .c-float-actions__totop {
    display: none;
  }
}
.c-gallery-loop {
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 60%, #ece5d7 100%);
}
.c-gallery-loop__head {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-gallery-loop__head {
    margin-bottom: 0.875rem;
  }
}
.c-gallery-loop__viewport {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}
.c-gallery-loop__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 0.5rem;
  cursor: grab;
  touch-action: pan-y;
}
.c-gallery-loop__track.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
          user-select: none;
}
.c-gallery-loop__track img {
  pointer-events: none;
}
.c-gallery-loop__item {
  position: relative;
  flex: 0 0 auto;
  width: 30rem;
  aspect-ratio: 3/2;
}
.c-gallery-loop__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .c-gallery-loop__item {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .c-gallery-loop__item {
    width: 15rem;
  }
}
.c-gallery-loop__caption {
  position: absolute;
  left: 0.875rem;
  bottom: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
}
.c-house-card {
  position: relative;
  display: block;
  background: #ffffff;
  border-top: 0.125rem solid #cbb99f;
  box-shadow: 0 0.0625rem 0.1875rem rgba(36, 31, 24, 0.06);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease;
}
.c-house-card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(36, 31, 24, 0.08);
}
.c-house-card--nolink, .c-house-card--nolink:hover {
  cursor: default;
  box-shadow: 0 0.0625rem 0.1875rem rgba(36, 31, 24, 0.06);
}
.c-house-card.is-sold-out {
  display: flex;
  flex-direction: column;
  border-top-color: #a8332c;
}
.c-house-card__img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #e7ddcd;
}
.c-house-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
}
.c-house-card:hover .c-house-card__img img {
  filter: brightness(1.05);
}
.c-house-card__pending {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #e7ddcd;
  color: #9a8f7d;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.c-house-card__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(250, 247, 241, 0.34);
}
.c-house-card__ribbon {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.c-house-card__ribbon span {
  padding: 0.5625rem 1.375rem;
  background: rgba(168, 51, 44, 0.88);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-align: center;
}
.c-house-card__reserve-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.3125rem 0.8125rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #b8863a 0%, #96692a 100%);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.16);
  color: #ffffff;
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.c-house-card--other .c-house-card__reserve-badge {
  right: 0.875rem;
  left: auto;
}
@media screen and (max-width: 767px) {
  .c-house-card--other .c-house-card__reserve-badge {
    right: 0.5rem;
  }
}
.c-house-card__reserve {
  color: #96692a;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.c-house-card__tag {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.95);
  color: #3d362d;
  font-size: 0.65625rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .c-house-card__tag {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.1875rem 0.5rem;
    font-size: 0.5625rem;
  }
}
.c-house-card__tag-zone {
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  color: #9a6f48;
}
.c-house-card__tag-no {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}
.c-house-card__tag-no b {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-house-card__tag-no b {
    font-size: 0.8125rem;
  }
}
.c-house-card__body {
  padding: 1.125rem;
  text-align: center;
}
.c-house-card.is-sold-out .c-house-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.c-house-card__no {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .c-house-card__no {
    font-size: 0.875rem;
  }
}
.c-house-card__spec {
  font-size: 0.75rem;
  color: #3d362d;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.c-house-card__area {
  font-size: 0.75rem;
  color: #9a8f7d;
  margin-top: 0.375rem;
}
.c-house-card__sold {
  color: #a8332c;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.c-more-link {
  display: inline-block;
  margin-top: 1.875rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.28em;
  color: #7c5332;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}
.c-more-link:hover {
  color: #9a6f48;
}
.c-plan-banners {
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 60%, #ece5d7 100%);
}
.c-plan-banners__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-plan-banners__row {
    gap: 0.75rem;
  }
}
.c-plan-banners__item {
  flex: 1 1 21.25rem;
  max-width: 28.75rem;
  display: block;
  padding: 1.625rem;
  border: 1px solid #3d362d;
  background: #ffffff;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.35s ease;
}
.c-plan-banners__item:hover {
  transform: translateY(-0.125rem);
  background: #efe9de;
  box-shadow: 0 0.625rem 1.375rem rgba(36, 31, 24, 0.08);
}
@media screen and (max-width: 767px) {
  .c-plan-banners__item {
    flex-basis: 100%;
    padding: 0.875rem 1rem;
  }
}
.c-sec-head {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-sec-head {
    margin-bottom: 1rem;
  }
}
.c-sec-head__en {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: #9a6f48;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-sec-head__en {
    font-size: 0.625rem;
    letter-spacing: 0.26em;
  }
}
.c-sec-head__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #241f18;
  margin: 0.875rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-sec-head__title {
    font-size: 1.3125rem;
    letter-spacing: 0.12em;
    margin-top: 0.375rem;
  }
}
.c-sec-head--feature .c-sec-head__title {
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-sec-head--feature .c-sec-head__title {
    font-size: 1.1875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
}
.c-sec-head--block .c-sec-head__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-sec-head--block .c-sec-head__title {
    font-size: 1.3125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
}
.c-swipe-hint {
  display: none;
}
.c-swipe-hint__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: rgba(36, 31, 24, 0.5);
  color: #ffffff;
  box-shadow: 0 0.125rem 0.625rem rgba(36, 31, 24, 0.28);
}
.c-swipe-hint__circle svg {
  width: 1.375rem;
  height: 1.375rem;
}
.c-swipe-hint.is-on {
  display: block;
  position: absolute;
  left: 50%;
  top: 26%;
  z-index: 5;
  pointer-events: none;
  opacity: 1;
  transform: translateX(-50%);
  animation: swipe-hint-move 1.6s ease-in-out 2 both;
}
.p-equipment-performance__stage .c-swipe-hint.is-on {
  top: calc(50% - 1.4375rem);
}
.c-swipe-hint.is-on.is-out {
  opacity: 0;
  transition: opacity 0.45s ease;
}
@keyframes swipe-hint-move {
  0% {
    transform: translateX(calc(-50% + 1.875rem));
  }
  100% {
    transform: translateX(calc(-50% - 1.875rem));
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-swipe-hint.is-on {
    animation: none !important;
    opacity: 1 !important;
  }
}
.p-cta {
  position: relative;
  background-color: #241f18;
  background-image: var(--grain), linear-gradient(180deg, #2b241c 0%, #241f18 55%, #1c1712 100%);
  color: #e9e2d4;
  padding: 3.75rem 0 4.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 2.25rem 0 2.5rem;
  }
}
.p-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(30rem, 62%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 179, 126, 0.7), transparent);
}
.p-cta__en {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: rgba(201, 179, 126, 0.8);
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cta__en {
    font-size: 0.625rem;
    margin-bottom: 0.25rem;
  }
}
.p-cta__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.625rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-wrap: balance;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.65;
    margin-bottom: 0.375rem;
    letter-spacing: 0.04em;
  }
}
.p-cta__nb {
  display: inline-block;
}
.p-cta__btn-row {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-row {
    gap: 0.375rem;
    padding: 0 0.375rem;
    margin-bottom: 1rem;
  }
}
.p-notfound__body {
  text-align: center;
}
.p-notfound__text {
  font-size: 1rem;
  line-height: 2;
  color: #3d362d;
}
@media screen and (max-width: 767px) {
  .p-notfound__text {
    font-size: 1rem;
    text-align: left;
  }
}
.p-page__inner {
  padding-block: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-page__inner {
    padding-block: 3.5rem;
  }
}
.p-page__title {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #241f18;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-page__title {
    font-size: 1.375rem;
    margin-bottom: 1.75rem;
  }
}
.p-page__content {
  font-size: 1rem;
  line-height: 2;
}
.p-page__content > * + * {
  margin-top: 1.5rem;
}
.p-page__content h2 {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #241f18;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #cbb99f;
}
.p-page__content h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #241f18;
}
.p-page__content a {
  color: #7c5332;
  text-decoration: underline;
}
.p-page__content ul,
.p-page__content ol {
  padding-left: 1.5rem;
}
.p-page__content li {
  list-style: revert;
}
@media screen and (max-width: 767px) {
  .p-page__content {
    font-size: 1rem;
  }
}
.p-sub-fv {
  padding: 4rem 0 3.125rem;
  text-align: center;
  border-bottom: 1px solid #d9cdb8;
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 70%, #ece5d7 100%);
}
@media screen and (max-width: 767px) {
  .p-sub-fv {
    padding: 1.5rem 0 1.125rem;
  }
}
.p-sub-fv__en {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: #9a6f48;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-sub-fv__en {
    font-size: 0.75rem;
    letter-spacing: 0.26em;
  }
}
.p-sub-fv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #241f18;
  margin: 0.875rem 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-sub-fv__title {
    font-size: 1.3125rem;
    letter-spacing: 0.08em;
    margin: 0.375rem 0 0.625rem;
  }
}
.p-sub-fv__breadcrumb {
  font-size: 0.75rem;
  color: #9a8f7d;
  letter-spacing: 0.05em;
  margin-top: 0.875rem;
}
.p-sub-fv__breadcrumb a {
  border-bottom: 1px solid #9a8f7d;
  padding-bottom: 0.0625rem;
}
.p-concept-features {
  padding: 5.25rem 0;
  background-image: var(--grain);
}
@media screen and (max-width: 767px) {
  .p-concept-features {
    padding: 2.375rem 0;
  }
}
.p-concept-features__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-concept-features__row {
    grid-template-columns: 1fr 1fr;
  }
}
.p-concept-features__badge {
  padding: 3rem 1.5rem;
  text-align: center;
  border-right: 1px solid #d9cdb8;
}
.p-concept-features__badge:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .p-concept-features__badge {
    padding: 1.25rem 0.875rem;
    border-bottom: 1px solid #d9cdb8;
  }
  .p-concept-features__badge:nth-child(2n) {
    border-right: none;
  }
  .p-concept-features__badge:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
.p-concept-features__num {
  font-family: "Noto Serif JP", serif;
  font-size: 2.625rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #3d362d;
}
@media screen and (max-width: 767px) {
  .p-concept-features__num {
    display: block;
    font-size: 1.875rem;
    margin-bottom: 0.375rem;
  }
}
.p-concept-features__unit {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #3d362d;
  margin-left: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-concept-features__unit {
    font-size: 0.75rem;
  }
}
.p-concept-features__main {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
  color: #3d362d;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-concept-features__main {
    font-size: 0.75rem;
    margin-top: 0.375rem;
  }
}
.p-concept-features__sub {
  display: block;
  font-size: 0.75rem;
  color: #9a8f7d;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-concept-features__sub {
    font-size: 0.625rem;
    margin-top: 0.25rem;
    line-height: 1.6;
  }
}
.p-concept-fs {
  margin: 0;
  position: relative;
}
.p-concept-fs__visual {
  position: relative;
}
.p-concept-fs__image {
  aspect-ratio: 8/3;
  width: 100%;
  position: relative;
  box-shadow: 0 0.25rem 1.125rem rgba(36, 31, 24, 0.1);
}
.p-concept-fs__image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201, 179, 126, 0.22);
  pointer-events: none;
}
.p-concept-fs__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-concept-fs__image {
    aspect-ratio: auto;
    height: 15.625rem;
  }
}
.p-concept-fs__caption {
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  bottom: 2.25rem;
  color: #241f18;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-concept-fs__caption {
    left: 0.875rem;
    right: 0.875rem;
    bottom: 0.875rem;
  }
}
.p-concept-fs__en {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: #9a6f48;
  margin-bottom: 0.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-concept-fs__en {
    margin-bottom: 0.3125rem;
  }
}
.p-concept-fs__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.625rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-concept-fs__title {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.375rem;
  }
}
.p-concept-fs__text {
  font-size: 0.875rem;
  line-height: 2;
  max-width: 35rem;
  color: #3d362d;
}
@media screen and (max-width: 767px) {
  .p-concept-fs__text {
    display: none;
  }
}
.p-concept-fs__lead-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-concept-fs__lead-sp {
    display: block;
    margin: 0;
    padding: 0.875rem 1rem 0.25rem;
    font-size: 0.75rem;
    line-height: 1.95;
    color: #3d362d;
    letter-spacing: 0.02em;
  }
}
.p-concept-hero {
  padding: 0 0 2.5rem;
  background: #f4efe6;
}
@media screen and (max-width: 767px) {
  .p-concept-hero {
    padding: 0 0 1rem;
  }
}
.p-concept-hero__visual {
  position: relative;
  aspect-ratio: 2000/750;
  overflow: hidden;
}
.p-concept-hero__visual picture {
  position: absolute;
  inset: 0;
  display: block;
}
.p-concept-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-concept-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(250, 247, 241, 0.62) 0%, rgba(250, 247, 241, 0.28) 38%, rgba(250, 247, 241, 0) 62%);
}
@media screen and (max-width: 767px) {
  .p-concept-hero__visual {
    aspect-ratio: auto;
    min-height: 32.5rem;
  }
  .p-concept-hero__visual::after {
    background: linear-gradient(180deg, rgba(250, 247, 241, 0.32) 0%, rgba(250, 247, 241, 0.82) 28%, rgba(250, 247, 241, 0.82) 78%, rgba(250, 247, 241, 0.32) 100%);
  }
}
.p-concept-hero__watermark {
  position: absolute;
  top: 3%;
  left: 2.75rem;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(4rem, 11vw, 9.25rem);
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(154, 111, 72, 0.09);
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .p-concept-hero__watermark {
    left: 1.25rem;
    font-size: clamp(3rem, 22vw, 5.625rem);
  }
}
.p-concept-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 3rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-concept-hero__overlay {
    padding: 2.5rem 1.375rem;
  }
}
.p-concept-hero__en {
  font-size: 0.75rem;
  letter-spacing: 0.36em;
  color: #9a6f48;
  margin-bottom: 1rem;
  text-shadow: 0 0 0.625rem rgba(250, 247, 241, 0.9), 0 0 0.25rem rgba(250, 247, 241, 0.9);
}
.p-concept-hero__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.125rem;
  letter-spacing: 0.09em;
  line-height: 1.75;
  color: #241f18;
  margin: 0 0 1.875rem;
  text-shadow: 0 0 0.875rem rgba(250, 247, 241, 0.85), 0 0 0.375rem rgba(250, 247, 241, 0.85);
}
@media screen and (max-width: 767px) {
  .p-concept-hero__heading {
    font-size: 1.3125rem;
    margin-bottom: 1.375rem;
  }
}
.p-concept-hero__tagline {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #7c5332;
  margin: 0;
  padding-top: 1.625rem;
  text-shadow: 0 0 0.75rem rgba(250, 247, 241, 0.85), 0 0 0.3125rem rgba(250, 247, 241, 0.85);
}
.p-concept-hero__tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.125rem;
  height: 1px;
  background: #cbb99f;
}
@media screen and (max-width: 767px) {
  .p-concept-hero__tagline {
    font-size: 0.875rem;
    padding-top: 1.25rem;
  }
}
.p-concept-hero__tagline-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: #9a8f7d;
  margin-bottom: 0.625rem;
  text-shadow: 0 0 0.5rem rgba(250, 247, 241, 0.9);
}
.p-concept-hero__lead-en {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.36em;
  color: #9a6f48;
  margin-bottom: 0.5rem;
  text-align: center;
}
.p-concept-hero__story {
  position: relative;
  overflow: hidden;
}
.p-concept-hero__story::after {
  content: "";
  position: absolute;
  inset: -4% -2%;
  background-image: var(--wash-img);
  background-size: cover;
  background-position: center;
  opacity: 0.11;
  filter: saturate(0.55);
  pointer-events: none;
  z-index: 0;
}
.p-concept-hero__lead {
  max-width: 43.75rem;
  margin: 2.125rem auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-concept-hero__lead {
    margin-top: 1.375rem;
  }
}
.p-concept-hero__lead-first {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
  color: #241f18;
  margin: 0 0 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-concept-hero__lead-first {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
    line-height: 1.95;
  }
}
.p-concept-hero__lead-p {
  font-size: 0.875rem;
  line-height: 2.15;
  letter-spacing: 0.02em;
  text-align: left;
  color: #3d362d;
  margin: 0 0 1rem;
}
.p-concept-hero__lead-p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-concept-hero__lead-p {
    font-size: 0.75rem;
    line-height: 2;
    margin-bottom: 0.75rem;
  }
}
.p-concept-points {
  padding: 5.25rem 0;
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 60%, #ece5d7 100%);
}
@media screen and (max-width: 767px) {
  .p-concept-points {
    padding: 2.375rem 0;
  }
}
.p-concept-points__lead {
  max-width: 47.5rem;
  margin: 0 auto 2.25rem;
  font-size: 0.875rem;
  text-align: center;
  line-height: 2.1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-concept-points__lead {
    font-size: 0.75rem;
    line-height: 1.9;
    margin-bottom: 0.375rem;
    text-align: left;
  }
}
.p-concept-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 1.75rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-concept-points__grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.625rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0.875rem 0.625rem;
    margin: 0.75rem -0.875rem 0;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0.875rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .p-concept-points__grid::-webkit-scrollbar {
    display: none;
  }
}
.p-concept-points__card {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-concept-points__card {
    flex: 0 0 13.75rem;
    scroll-snap-align: start;
  }
}
.p-concept-points__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(250, 247, 241, 0.94);
  color: #7c5332;
  border-right: 1px solid #cbb99f;
  border-bottom: 1px solid #cbb99f;
  padding: 0.5rem 0.875rem 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept-points__badge {
    padding: 0.3125rem 0.5625rem 0.4375rem;
  }
}
.p-concept-points__badge-en {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: #9a6f48;
  line-height: 1;
}
.p-concept-points__badge-num {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: #7c5332;
  letter-spacing: 0.02em;
  margin-top: 0.125rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-concept-points__badge-num {
    font-size: 0.75rem;
  }
}
.p-concept-points__photo {
  aspect-ratio: 3/2;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(201, 179, 126, 0.22);
}
.p-concept-points__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-concept-points__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-concept-points__body {
  padding: 1rem 0.25rem 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept-points__body {
    padding: 0.625rem 0.125rem 0.125rem;
  }
}
.p-concept-points__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.625rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-concept-points__title {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    line-height: 1.5;
  }
}
.p-concept-points__desc {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #3d362d;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-concept-points__desc {
    font-size: 0.625rem;
    line-height: 1.7;
  }
}
.p-concept-values {
  padding: 3.5rem 0 0;
  background-color: #f4efe6;
  background-image: var(--grain);
}
.p-concept-values > .p-concept-value:first-of-type {
  padding-top: 2.25rem;
}
.p-concept-values__head {
  text-align: center;
  margin-bottom: 0.5rem;
}
.p-concept-values__head::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: #cbb99f;
}
.p-concept-values__en {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #9a6f48;
}
.p-concept-values__title {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #241f18;
}
.p-concept-value {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-color: #f4efe6;
  background-image: var(--grain);
}
.p-concept-value--alt {
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 60%, #ece5d7 100%);
}
@media screen and (max-width: 767px) {
  .p-concept-value {
    padding: 3.375rem 0;
  }
}
.p-concept-value__ghost {
  position: absolute;
  top: -0.06em;
  right: 0;
  z-index: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(9.375rem, 19vw, 17.5rem);
  line-height: 1;
  color: #9a6f48;
  opacity: 0.07;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.p-concept-value--02 .p-concept-value__ghost {
  right: auto;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-concept-value__ghost {
    font-size: clamp(6rem, 30vw, 10.625rem);
  }
}
.p-concept-value__inner {
  position: relative;
  z-index: 1;
}
.p-concept-value__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.p-concept-value__en {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #9a6f48;
}
.p-concept-value__tag {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #7c5332;
}
.p-concept-value__headline {
  max-width: 47.5rem;
  margin: 0 0 1.625rem;
  font-weight: 600;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #241f18;
}
@media screen and (max-width: 767px) {
  .p-concept-value__headline {
    font-size: 1.25rem;
    line-height: 1.65;
    margin-bottom: 1.125rem;
  }
}
.p-concept-value__lead {
  max-width: 41.25rem;
  margin: 0 0 2.875rem;
  font-size: 0.875rem;
  line-height: 2.05;
  letter-spacing: 0.02em;
  color: #3d362d;
}
@media screen and (max-width: 767px) {
  .p-concept-value__lead {
    font-size: 0.875rem;
    line-height: 1.95;
    margin-bottom: 2rem;
  }
}
.p-concept-value__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3.5rem;
  margin-bottom: 0.5rem;
}
.p-concept-value__row--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-concept-value__row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.625rem;
    margin-bottom: 0;
  }
  .p-concept-value__row--reverse {
    flex-direction: column;
  }
}
.p-concept-value__media {
  flex: 1 1 26.25rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-concept-value__media {
    flex: 0 0 auto;
    width: 100%;
  }
}
.p-concept-value__text {
  flex: 1 1 26.25rem;
  min-width: 0;
  padding-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-concept-value__text {
    flex: 0 0 auto;
    width: 100%;
    padding-top: 0;
  }
}
.p-concept-value__text p {
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  line-height: 2.05;
  color: #3d362d;
}
.p-concept-value__text p:last-child {
  margin-bottom: 0;
}
.p-concept-value__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.p-concept-value__photo picture {
  position: absolute;
  inset: 0;
  display: block;
}
.p-concept-value__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-concept-value__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.5rem 0.875rem 0.625rem;
  background: rgba(250, 247, 241, 0.94);
  border-right: 1px solid #cbb99f;
  border-bottom: 1px solid #cbb99f;
  text-align: center;
}
.p-concept-value__badge span {
  display: block;
  font-size: 0.53125rem;
  letter-spacing: 0.22em;
  line-height: 1;
  color: #9a6f48;
}
.p-concept-value__badge b {
  display: block;
  margin-top: 0.125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #7c5332;
}
.p-concept-value__caption {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #9a8f7d;
  text-align: center;
}
.p-concept-value__note {
  max-width: 41.25rem;
  margin: 1.125rem 0 0;
  font-size: 0.75rem;
  line-height: 1.9;
  color: #3d362d;
}
.p-concept-value__warranty {
  margin: 0.625rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #9a8f7d;
}
.p-concept-access {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.p-concept-access > * {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-concept-access {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}
.p-concept-access__card {
  padding: 2rem 1.375rem;
  border: 1px solid #cbb99f;
  background: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept-access__card {
    padding: 1.5rem 1.25rem;
  }
}
.p-concept-access__min-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.p-concept-access__icon-person {
  flex: none;
  width: 1.625rem;
  height: auto;
  opacity: 0.9;
}
.p-concept-access__min {
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: #9a6f48;
}
@media screen and (max-width: 767px) {
  .p-concept-access__min {
    font-size: 42px;
  }
}
.p-concept-access__sep {
  margin: 0 0.1875rem;
  font-size: 0.55em;
  color: #9a6f48;
}
.p-concept-access__unit {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #7c5332;
}
.p-concept-access__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  margin-top: 1.125rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #9a8f7d;
}
.p-concept-access__icon-train {
  flex: none;
  width: 0.9375rem;
  height: 0.9375rem;
  opacity: 0.9;
}
.p-concept-access__station {
  margin-top: 0.3125rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #241f18;
}
.p-concept-feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.375rem 2.75rem;
  margin-top: 1.25rem;
  padding-top: 2.875rem;
  border-top: 1px solid #cbb99f;
}
.p-concept-feature > * {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-concept-feature {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    margin-top: 1.875rem;
    padding-top: 2.125rem;
  }
}
.p-concept-feature__no {
  margin-bottom: 0.75rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  line-height: 1;
  color: #9a6f48;
}
.p-concept-feature__title {
  margin: 0 0 0.625rem;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #241f18;
}
@media screen and (max-width: 767px) {
  .p-concept-feature__title {
    font-size: 0.875rem;
  }
}
.p-concept-feature__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.9;
  color: #3d362d;
}
.p-concept-quality {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.p-concept-quality__item {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
}
.p-concept-quality__no {
  flex: none;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #9a6f48;
}
.p-concept-quality__title {
  margin: 0 0 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #241f18;
}
.p-concept-quality__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.85;
  color: #3d362d;
}
.p-concept-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 3.375rem 0 0;
  padding-top: 2.625rem;
  border-top: 1px solid #cbb99f;
}
@media screen and (max-width: 767px) {
  .p-concept-badges {
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
}
.p-concept-badges__item {
  display: inline-block;
  padding: 0.5625rem 1rem;
  border: 1px solid #cbb99f;
  background: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #7c5332;
}
@media screen and (max-width: 767px) {
  .p-concept-badges__item {
    padding: 0.5rem 0.8125rem;
  }
}
.p-equipment-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(124, 83, 50, 0.22);
  box-shadow: 0 0.0625rem 0.25rem rgba(20, 17, 12, 0.1);
  color: #7c5332;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  padding: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.p-equipment-arrow svg {
  display: block;
  flex: none;
  width: 0.5625rem;
  height: 0.9375rem;
}
.p-equipment-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
}
.p-equipment-arrow--prev {
  left: 0.5rem;
}
.p-equipment-arrow--next {
  right: 0.5rem;
}
.p-equipment-arrow--sm {
  width: 1.625rem;
  height: 1.625rem;
}
.p-equipment-arrow--sm svg {
  width: 0.4375rem;
  height: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-arrow--sm {
    width: 1.375rem;
    height: 1.375rem;
  }
  .p-equipment-arrow--sm svg {
    width: 0.375rem;
    height: 0.625rem;
  }
}
.p-equipment-arrow.is-hidden {
  display: none;
}
.p-equipment-arrow--inline {
  position: static;
  transform: none;
  width: 1.875rem;
  height: 1.875rem;
  background: transparent;
  border-color: #cbb99f;
  box-shadow: none;
}
.p-equipment-arrow--inline:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: #9a6f48;
}
.p-equipment-arrow--inline.is-off {
  visibility: hidden;
}
@media (hover: none) {
  .p-equipment-arrow--inline {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-equipment-arrow--inline {
    display: none;
  }
}
.p-equipment-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.p-equipment-dots--static {
  position: static;
  transform: none;
  justify-content: center;
  gap: 0.375rem;
  margin: 0 0 0.625rem;
}
.p-equipment-dots--inline {
  position: static;
  transform: none;
  justify-content: center;
  align-items: center;
  gap: 0.4375rem;
  margin: 0;
}
.p-equipment-dots__dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #9a6f48;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease;
}
.p-equipment-dots__dot::after {
  content: "";
  position: absolute;
  inset: -0.5625rem;
}
.p-equipment-dots__dot.is-active {
  background: #9a6f48;
}
.p-equipment-dots--inline .p-equipment-dots__dot {
  background: #cbb99f;
  border-color: #cbb99f;
  opacity: 0.5;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.p-equipment-dots--inline .p-equipment-dots__dot.is-active {
  background: #9a6f48;
  border-color: #9a6f48;
  opacity: 1;
}
.p-equipment-dots--static .p-equipment-dots__dot {
  background: #cbb99f;
  border-color: #cbb99f;
  opacity: 0.5;
}
.p-equipment-dots--static .p-equipment-dots__dot.is-active {
  background: #9a6f48;
  opacity: 1;
}
.p-equipment-catalog {
  padding: 5.25rem 0;
  background-image: var(--grain);
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog {
    padding: 2.375rem 0;
  }
}
.p-equipment-catalog__cat {
  margin-bottom: 3.75rem;
}
.p-equipment-catalog__cat:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog__cat {
    margin: 2.5rem 0 0;
  }
}
.p-equipment-catalog__cat-head {
  text-align: center;
}
.p-equipment-catalog__cat-title {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #3d362d;
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog__cat-title {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }
}
.p-equipment-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.625rem;
  }
}
.p-equipment-catalog__item {
  text-align: center;
}
@media (prefers-reduced-motion: no-preference) {
  .p-equipment-catalog__item {
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s ease;
  }
  .p-equipment-catalog__item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 1.625rem rgba(36, 31, 24, 0.08);
  }
}
.p-equipment-catalog__carousel::after, .p-equipment-catalog__photo::after {
  content: "※掲載の設備仕様はイメージとなります。";
  position: absolute;
  right: 0.375rem;
  bottom: 0.375rem;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(20, 17, 12, 0.55);
  padding: 0.1875rem 0.375rem;
  border-radius: 0.125rem;
  pointer-events: none;
  white-space: nowrap;
}
.p-equipment-catalog__photo {
  position: relative;
  aspect-ratio: 4/3;
  margin-bottom: 0.75rem;
  cursor: zoom-in;
}
.p-equipment-catalog__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog__photo::after {
    font-size: 0.5rem;
    padding: 0.125rem 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
  }
}
.p-equipment-catalog__carousel {
  position: relative;
  aspect-ratio: 4/3;
  margin-bottom: 0.75rem;
  overflow: hidden;
  cursor: zoom-in;
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog__carousel::after {
    font-size: 0.5rem;
    padding: 0.125rem 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
  }
}
@media (hover: hover) {
  .p-equipment-catalog__carousel .p-equipment-arrow {
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
  }
  .p-equipment-catalog__carousel .p-equipment-arrow:hover {
    opacity: 1;
  }
}
@media (hover: hover) {
  .p-equipment-catalog__item:hover .p-equipment-arrow {
    opacity: 0.9;
  }
}
.p-equipment-catalog__count {
  position: absolute;
  left: 0.375rem;
  top: 0.375rem;
  z-index: 3;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(20, 17, 12, 0.42);
  padding: 0.25rem 0.4375rem;
  border-radius: 0.125rem;
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog__count {
    font-size: 0.5rem;
    padding: 0.1875rem 0.3125rem;
    left: 0.25rem;
    top: 0.25rem;
  }
}
.p-equipment-catalog__slide {
  position: absolute;
  inset: 0;
  display: none;
}
.p-equipment-catalog__slide.is-active {
  display: block;
}
.p-equipment-catalog__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-equipment-catalog__name {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog__name {
    font-size: 0.71875rem;
    margin: 0.3125rem 0 0.125rem;
  }
}
.p-equipment-catalog__desc {
  font-size: 0.75rem;
  color: #9a8f7d;
}
@media screen and (max-width: 767px) {
  .p-equipment-catalog__desc {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}
.p-equipment-catalog__notice {
  max-width: max-content;
  margin: 3.5rem auto 0;
  padding: 1.125rem 1.75rem;
  background: #efe9de;
  border: 1px solid #cbb99f;
  border-left: 0.25rem solid #9a6f48;
  font-size: 0.875rem;
  line-height: 2;
  color: #3d362d;
  letter-spacing: 0.03em;
  text-align: center;
}
.p-equipment-comfort {
  padding: 2.1875rem 0 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-comfort {
    padding: 2.1875rem 0 2.375rem;
  }
}
.p-equipment-comfort__lead {
  max-width: 47.5rem;
  margin: 0 auto;
  font-size: 1rem;
  text-align: center;
  line-height: 2.1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-equipment-comfort__lead {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.p-equipment-comfort__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 3.75rem 0;
  border-top: 1px solid #d9cdb8;
}
@media screen and (max-width: 767px) {
  .p-equipment-comfort__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
    padding: 1.25rem 0;
  }
}
.p-equipment-comfort__item {
  text-align: center;
}
.p-equipment-comfort__photo {
  position: relative;
  aspect-ratio: 3/2;
}
.p-equipment-comfort__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-equipment-comfort__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #9a8f7d;
  margin: 0.875rem 0 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-comfort__label {
    font-size: 0.625rem;
  }
}
.p-equipment-comfort__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.625rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-equipment-comfort__title {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
}
.p-equipment-comfort__text {
  font-size: 0.75rem;
  line-height: 1.9;
  color: #9a8f7d;
}
@media screen and (max-width: 767px) {
  .p-equipment-comfort__text {
    font-size: 0.625rem;
    line-height: 1.65;
  }
}
.p-equipment-comfort__more {
  text-align: center;
}
.p-equipment-more {
  display: inline-block;
  margin-top: 1.875rem;
  font-size: 0.875rem;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 767px) {
  .p-equipment-more {
    font-size: 0.75rem;
  }
}
.p-equipment-more {
  padding-bottom: 0.25rem;
  font-family: "Noto Serif JP", serif;
  color: #7c5332;
}
.p-equipment-more--lg {
  margin-top: 0.875rem;
  font-size: 0.875rem;
}
.p-equipment-more__icon {
  display: inline-block;
  vertical-align: -0.0625rem;
  margin-left: 0.3125rem;
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
}
.p-equipment-badge {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.125rem 0.5rem;
  border-radius: 0.125rem;
  vertical-align: middle;
  margin-left: 0.5rem;
  font-weight: 500;
  background: #9a6f48;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-equipment-badge {
    font-size: 0.625rem;
    margin-bottom: 0.375rem;
  }
}
.p-equipment-img-note {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 767px) {
  .p-equipment-img-note {
    font-size: 0.625rem;
  }
}
.p-equipment-img-note {
  padding: 0.125rem 0.5rem;
  line-height: 1.6;
  z-index: 3;
  white-space: nowrap;
  pointer-events: none;
}
.p-equipment-intro {
  padding: 5.25rem 0 3.125rem;
  background-image: var(--grain);
}
@media screen and (max-width: 767px) {
  .p-equipment-intro {
    padding: 2.375rem 0 3.125rem;
  }
}
.p-equipment-intro__inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-equipment-intro__inner {
    flex-direction: column;
    gap: 0.875rem;
  }
}
.p-equipment-intro__photo {
  flex: 1 1 26.25rem;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .p-equipment-intro__photo {
    flex: 0 0 auto;
    width: 100%;
  }
}
.p-equipment-intro__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-equipment-intro__body {
  flex: 1 1 23.75rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-intro__body {
    flex: 0 0 auto;
    width: 100%;
  }
}
.p-equipment-intro__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-intro__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.p-equipment-intro__text {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-equipment-intro__text {
    font-size: 0.875rem;
    line-height: 1.85;
  }
}
.p-equipment-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 17, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.p-equipment-lightbox.is-open {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-equipment-lightbox {
    padding: 1rem;
  }
}
.p-equipment-lightbox__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 88vh;
}
@media screen and (max-width: 767px) {
  .p-equipment-lightbox__body {
    max-width: 88vw;
    max-height: 82vh;
  }
}
.p-equipment-lightbox__img-wrap {
  position: relative;
  display: inline-flex;
  max-width: 92vw;
  max-height: 70vh;
}
.p-equipment-lightbox__img-wrap.is-advance {
  cursor: grab;
  touch-action: pan-y;
}
.p-equipment-lightbox__img-wrap.is-advance:active {
  cursor: grabbing;
}
@media screen and (max-width: 767px) {
  .p-equipment-lightbox__img-wrap {
    max-width: 88vw;
    max-height: 60vh;
  }
}
.p-equipment-lightbox__img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.5);
  display: block;
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
@media screen and (max-width: 767px) {
  .p-equipment-lightbox__img {
    max-width: 88vw;
    max-height: 60vh;
  }
}
.p-equipment-lightbox__caption {
  color: #ffffff;
  text-align: center;
  margin-top: 1.125rem;
  max-width: 37.5rem;
}
.p-equipment-lightbox__name {
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 0.375rem;
}
.p-equipment-lightbox__desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}
.p-equipment-lightbox__close,
.p-equipment-lightbox__arrow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.p-equipment-lightbox__close:hover,
.p-equipment-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.p-equipment-lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }
}
.p-equipment-lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 2.875rem;
  height: 2.875rem;
}
.p-equipment-lightbox__arrow svg {
  display: block;
  flex: none;
  width: 0.75rem;
  height: 1.25rem;
}
.p-equipment-lightbox__arrow--prev {
  left: 0.875rem;
}
.p-equipment-lightbox__arrow--next {
  right: 0.875rem;
}
.p-equipment-lightbox__arrow.is-hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-equipment-lightbox__arrow {
    width: 2.375rem;
    height: 2.375rem;
  }
  .p-equipment-lightbox__arrow svg {
    width: 0.625rem;
    height: 1.0625rem;
  }
  .p-equipment-lightbox__arrow--prev {
    left: 0.5rem;
  }
  .p-equipment-lightbox__arrow--next {
    right: 0.5rem;
  }
}
.p-equipment-perf-bg {
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 60%, #ece5d7 100%);
}
.p-equipment-performance {
  padding: 5.25rem 0 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-performance {
    padding: 2.375rem 0 2.1875rem;
  }
}
.p-equipment-performance__row {
  display: flex;
  gap: 3.125rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 3.75rem 0;
  border-top: 1px solid #d9cdb8;
}
.p-equipment-performance__row--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-equipment-performance__row, .p-equipment-performance__row--reverse {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 0;
    gap: 0.625rem;
  }
}
.p-equipment-performance__photo {
  flex: 1 1 23.75rem;
  aspect-ratio: 3/2;
  cursor: zoom-in;
}
@media screen and (max-width: 767px) {
  .p-equipment-performance__photo {
    flex: 0 0 auto;
    width: 100%;
  }
}
.p-equipment-performance__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-equipment-performance__carousel {
  position: relative;
  flex: 1 1 23.75rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-performance__carousel {
    flex: 0 0 auto;
    width: 100%;
  }
}
.p-equipment-performance__stage {
  position: relative;
  cursor: zoom-in;
}
.p-equipment-performance__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (prefers-reduced-motion: no-preference) {
  .p-equipment-performance__viewport {
    scroll-behavior: smooth;
  }
}
.p-equipment-performance__viewport::-webkit-scrollbar {
  display: none;
}
.p-equipment-performance__viewport.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}
.p-equipment-performance__track {
  display: flex;
}
.p-equipment-performance__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  aspect-ratio: 3/2;
}
.p-equipment-performance__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-equipment-performance__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.75rem 0 0;
}
.p-equipment-performance__body {
  flex: 1 1 23.75rem;
}
@media screen and (max-width: 767px) {
  .p-equipment-performance__body {
    flex: 0 0 auto;
    width: 100%;
  }
}
.p-equipment-performance__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #9a8f7d;
  margin-bottom: 0.625rem;
}
.p-equipment-performance__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.875rem;
  line-height: 1.6;
}
.p-equipment-performance__text {
  font-size: 0.875rem;
  line-height: 2;
}
.p-equipment-performance__text + .p-equipment-performance__text {
  margin-top: 1em;
}
.p-equipment-performance__note {
  font-size: 0.75rem;
  color: #9a8f7d;
  margin-top: 0.75rem;
}
.p-equipment-cert {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-equipment-cert {
    gap: 0.625rem;
    margin-top: 2.5rem;
  }
}
.p-equipment-cert__badge {
  display: inline-block;
  padding: 0.9375rem 1.875rem;
  background: #9a6f48;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 0.25rem 0.875rem rgba(122, 90, 54, 0.22);
}
@media screen and (max-width: 767px) {
  .p-equipment-cert__badge {
    font-size: 0.75rem;
    padding: 0.6875rem 1rem;
  }
}
.p-equipment-cert__note {
  margin: 0.5rem 0 0;
  text-align: center;
  color: #9a8f7d;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}
.p-footer {
  background: #ffffff;
  border-top: 1px solid #d9cdb8;
  padding: 0 0 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-bottom: 7.375rem;
  }
}
.p-footer a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-footer a:hover {
    opacity: 0.55;
  }
}
.p-footer__inner {
  max-width: 900px;
  margin-inline: auto;
  padding: 2.5rem 1.375rem 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 1.75rem 1.125rem 1.25rem;
  }
}
.p-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.75rem;
  justify-content: center;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    gap: 0 0.875rem;
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
  }
}
.p-footer__nav a {
  color: #3d362d;
  padding: 0.375rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-footer__nav a:hover {
    border-bottom-color: #3d362d;
  }
}
.p-footer__anniv {
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #3d362d;
  text-align: center;
  margin: 1.5rem 0 1.125rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-footer__anniv {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    margin: 1.125rem 0 0.875rem;
  }
}
.p-footer__companies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 1.875rem;
  justify-content: center;
  align-items: center;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__companies {
    gap: 0.75rem 1.125rem;
    margin-bottom: 0.875rem;
  }
}
.p-footer__company {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.p-footer__company a {
  display: inline-flex;
}
.p-footer__company-role {
  font-size: 0.75rem;
  color: #9a8f7d;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__company-role {
    font-size: 0.75rem;
  }
}
.p-footer__company-logo {
  height: 1.25rem;
  width: auto;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footer__company-logo {
    height: 0.9375rem;
  }
}
.p-footer__pmark {
  display: inline-flex;
  align-items: center;
}
.p-footer__pmark img {
  height: 2.875rem;
  width: auto;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footer__pmark img {
    height: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__pmark {
    flex-basis: 100%;
    justify-content: center;
  }
}
.p-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.75rem;
  justify-content: center;
  align-items: center;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact {
    flex-direction: column;
    gap: 0.5625rem;
  }
}
.p-footer__tel {
  display: inline-flex;
  align-items: center;
}
.p-footer__tel a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.p-footer__tel-badge {
  width: 1.5rem;
  height: 1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__tel-badge {
    width: 1.3125rem;
    height: 0.875rem;
  }
}
.p-footer__tel-num {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #3d362d;
}
@media screen and (max-width: 767px) {
  .p-footer__tel-num {
    font-size: 1rem;
  }
}
.p-footer__link {
  display: inline-flex;
  align-items: center;
}
.p-footer__link a {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  color: #9a8f7d;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  transition: color 0.3s, opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-footer__link a:hover {
    color: #3d362d;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__link a {
    font-size: 0.75rem;
  }
}
.p-footer__link svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__link svg {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}
.p-footer__ext {
  font-size: 0.75rem;
  color: #9a8f7d;
  letter-spacing: 0.04em;
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__ext {
    font-size: 0.75rem;
  }
}
.p-footer__ext a {
  color: #9a8f7d;
  border-bottom: 1px solid #d9cdb8;
}
.p-footer__ext-sep {
  color: #ddd;
}
.p-footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #9a8f7d;
  padding: 0.625rem 1.125rem 1rem;
}
.p-top-concept__img {
  max-width: 67.5rem;
  margin: 0 auto;
  overflow: hidden;
}
.p-top-concept__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .p-top-concept__img.js-fade-up img {
    transform: scale(1.06);
    transition: transform 1.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .p-top-concept__img.js-fade-up.is-visible img {
    transform: scale(1);
  }
}
@media screen and (max-width: 767px) {
  .p-top-concept__img img {
    max-height: 13.75rem;
  }
}
.p-top-equipment__list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.25rem;
}
.p-top-equipment__item {
  flex: 1 1 16.25rem;
  max-width: 20rem;
  text-align: center;
}
.p-top-equipment__thumb {
  margin-bottom: 0.875rem;
}
.p-top-equipment__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.p-top-equipment__cap {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.p-top-equipment__desc {
  font-size: 0.875rem;
  color: #9a8f7d;
  line-height: 1.9;
  margin: 0.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-equipment__desc {
    font-size: 0.75rem;
  }
}
.p-top-features {
  padding: 5.25rem 0 5.875rem;
  background: #f7f6f4;
}
@media screen and (max-width: 767px) {
  .p-top-features {
    padding: 2.5rem 0 2.75rem;
  }
}
.p-top-features__head {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__head {
    margin-bottom: 1.25rem;
  }
}
.p-top-features__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 1.5rem;
  max-width: 67.5rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-features__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
.p-top-features__item {
  text-align: center;
  padding: 0.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__item {
    padding: 1rem 0.5rem;
  }
}
.p-top-features__num {
  font-family: "Noto Serif JP", serif;
  font-size: 3.375rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #241f18;
  margin-bottom: 0.625rem;
  font-variant-numeric: tabular-nums;
}
@media screen and (max-width: 767px) {
  .p-top-features__num {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
}
.p-top-features__unit {
  font-size: 1rem;
  margin-left: 0.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-features__unit {
    font-size: 0.75rem;
  }
}
.p-top-features__label {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__label {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
}
.p-top-features__desc {
  font-size: 0.75rem;
  line-height: 1.9;
  color: #9a8f7d;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-top-features__desc {
    font-size: 0.75rem;
    line-height: 1.7;
  }
}
.p-top-location__access {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.875rem;
  text-wrap: balance;
}
@media screen and (max-width: 767px) {
  .p-top-location__access {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
}
.p-top-location__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2.75rem;
  column-gap: 1.375rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-location__list {
    row-gap: 1.75rem;
    column-gap: 0.75rem;
  }
}
.p-top-location__item {
  margin: 0;
  text-align: left;
}
.p-top-location__item picture {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.p-top-location__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .p-top-location__item.js-fade-up img {
    transform: scale(1.08);
    transition: transform 1.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .p-top-location__item.js-fade-up.is-visible img {
    transform: scale(1);
  }
  .p-top-location__item.js-fade-up .p-top-location__caption {
    opacity: 0;
    transform: translateY(0.75rem);
    transition: opacity 0.9s ease 0.3s, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s;
  }
  .p-top-location__item.js-fade-up.is-visible .p-top-location__caption {
    opacity: 1;
    transform: none;
  }
}
.p-top-location__caption {
  margin-top: 0.5625rem;
  color: #241f18;
}
@media screen and (max-width: 767px) {
  .p-top-location__caption {
    margin-top: 0.375rem;
  }
}
.p-top-location__caption-en {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #d9cdb8;
  color: #9a8f7d;
}
@media screen and (max-width: 767px) {
  .p-top-location__caption-en {
    display: none;
  }
}
.p-top-location__caption-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1875rem;
  letter-spacing: 0.08em;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-location__caption-title {
    font-size: 0.625rem;
    line-height: 1.45;
    letter-spacing: 0.03em;
  }
}
.p-top-mv {
  position: relative;
  overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
  .p-top-mv {
    animation: mvIn 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
}
@keyframes mvIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-top-mv__bg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1672/941;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-mv__bg img {
    aspect-ratio: 1102/1428;
  }
}
.p-top-notice {
  padding: 4.375rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-notice {
    padding: 2.25rem 0 0.875rem;
  }
}
.p-top-notice__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.375rem;
  letter-spacing: 0.06em;
  color: #241f18;
  line-height: 1.7;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-notice__title {
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
}
.p-top-notice__l1 {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  border-radius: 0.1875rem;
  background: #7c5332;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-notice__l1 {
    padding: 0.3125rem 1rem;
    font-size: 0.75rem;
  }
}
.p-top-notice__l2 {
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-notice__l2 {
    font-size: 1.125rem;
  }
}
.p-top-notice__num {
  font-size: 2.875rem;
  font-weight: 800;
  color: #7c5332;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-top-notice__num {
    font-size: 1.625rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .p-top-notice__num {
    animation: numGlow 2.4s ease-in-out infinite;
  }
}
@keyframes numGlow {
  0%, 100% {
    color: #7c5332;
    text-shadow: 0 0 0 rgba(154, 111, 72, 0);
    transform: scale(1);
  }
  50% {
    color: #9a6f48;
    text-shadow: 0 0 0.75rem rgba(154, 111, 72, 0.5);
    transform: scale(1.06);
  }
}
.p-top-notice__l3 {
  display: inline-block;
  margin-top: 0.625rem;
  font-size: 1.625rem;
  font-weight: 700;
  color: #7c5332;
}
@media screen and (max-width: 767px) {
  .p-top-notice__l3 {
    font-size: 1.0625rem;
    margin-top: 0.375rem;
  }
}
.p-top-notice__l3--link {
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
  text-decoration-thickness: 0.09375rem;
  transition: opacity 0.3s;
}
.p-top-notice__l3--link:hover {
  opacity: 0.7;
}
.p-top-notice__l4 {
  display: inline-block;
  margin-top: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #7c5332;
}
@media screen and (max-width: 767px) {
  .p-top-notice__l4 {
    font-size: 1.0625rem;
    margin-top: 0.375rem;
  }
}
.p-top-notice__banner {
  display: block;
  margin-top: 2.375rem;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(36, 31, 24, 0.1), 0 0.125rem 0.5rem rgba(36, 31, 24, 0.05);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.p-top-notice__banner:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 1rem 2.25rem rgba(36, 31, 24, 0.14), 0 0.25rem 0.75rem rgba(36, 31, 24, 0.07);
}
.p-top-notice__banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/1;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-notice__banner {
    margin-top: 2.25rem;
  }
}
.p-top-notice__note {
  margin: 0.875rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #3d362d;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-notice__note {
    font-size: 0.75rem;
    margin-top: 0.6875rem;
    line-height: 1.75;
  }
}
.p-top-outline__table {
  max-width: 47.5rem;
  margin: 0 auto 3.75rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.p-top-outline__table th,
.p-top-outline__table td {
  border-top: 1px solid #d9cdb8;
  padding: 1rem 1.125rem;
  text-align: left;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-outline__table th,
  .p-top-outline__table td {
    padding: 0.5rem;
  }
}
.p-top-outline__table tr:last-child th,
.p-top-outline__table tr:last-child td {
  border-bottom: 1px solid #d9cdb8;
}
.p-top-outline__table th {
  width: 12.5rem;
  color: #9a8f7d;
  font-weight: 500;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .p-top-outline__table th {
    width: 5.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-outline__table td {
    font-size: 0.75rem;
    line-height: 1.7;
  }
}
.p-top-plan__img {
  max-width: 75rem;
  margin: 0 auto;
  overflow: hidden;
}
.p-top-plan__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .p-top-plan__img.js-fade-up img {
    transform: scale(1.06);
    transition: transform 1.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .p-top-plan__img.js-fade-up.is-visible img {
    transform: scale(1);
  }
}
.p-top-plan__zone {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-plan__zone {
    margin-top: 2.25rem;
  }
}
.p-top-plan__zone-head {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 1.375rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #cbb99f;
}
@media screen and (max-width: 767px) {
  .p-top-plan__zone-head {
    gap: 0.625rem;
  }
}
.p-top-plan__zone-en {
  font-size: 1.625rem;
  letter-spacing: 0.16em;
  color: #7c5332;
}
@media screen and (max-width: 767px) {
  .p-top-plan__zone-en {
    font-size: 1.25rem;
  }
}
.p-top-plan__zone-phase {
  font-size: 0.75rem;
  color: #9a6f48;
  letter-spacing: 0.04em;
  border: 1px solid #cbb99f;
  padding: 0.125rem 0.625rem;
  background: #faf7f1;
}
.p-top-plan__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
  max-width: 67.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-plan__cards {
    display: flex;
    gap: 0.625rem;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: none;
    margin-inline: -0.875rem;
    padding: 0 0.875rem 0.625rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .p-top-plan__cards > * {
    flex: 0 0 15rem;
    max-width: 15rem;
    scroll-snap-align: start;
  }
}
.p-top-plan__more {
  margin-top: 1.75rem;
  text-align: center;
}
.p-top-summary {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-image: var(--grain);
}
@media screen and (max-width: 767px) {
  .p-top-summary {
    padding: 2.5rem 0;
  }
}
.p-top-summary > .l-inner {
  position: relative;
  z-index: 1;
}
.p-top-summary--alt {
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 60%, #ece5d7 100%);
}
.p-top-summary[data-wm]::before {
  content: attr(data-wm);
  position: absolute;
  top: 2.125rem;
  left: 50%;
  transform: translateX(-50%) translateY(var(--wm-y, 0px));
  font-family: "Noto Serif JP", serif;
  font-size: clamp(4.75rem, 11.5vw, 9.375rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1;
  color: rgba(154, 111, 72, 0.07);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-top-summary[data-wm]::before {
    left: 0;
    top: 1.75rem;
    transform: translateX(var(--wm-x, 1rem));
  }
}
.p-top-summary--wash::after, .p-top-summary--concept-wash::after {
  content: "";
  position: absolute;
  inset: -4% -2%;
  background-image: var(--wash-img);
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.p-top-summary--wash::after {
  opacity: 0.06;
  filter: saturate(0.55);
}
.p-top-summary--concept-wash::after {
  background-position: center 30%;
  opacity: 0.09;
  filter: sepia(0.25) saturate(0.85);
}
.p-top-summary__head {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-summary__head {
    margin-bottom: 1rem;
  }
}
.p-top-summary__main-concept {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.625rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #241f18;
  text-align: center;
  margin: 0 0 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-summary__main-concept {
    font-size: 1.1875rem;
    line-height: 1.75;
    margin-bottom: 1.125rem;
  }
}
.p-top-summary__copy-label {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.22em;
  color: #7c5332;
  margin-right: 0.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-top-summary__copy-label {
    display: block;
    margin: 0 0 0.375rem;
  }
}
.p-top-summary__copy {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1875rem;
  text-align: center;
  color: #241f18;
  letter-spacing: 0.04em;
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-summary__copy {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 0.75rem;
  }
}
.p-top-summary__lead {
  max-width: 45rem;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #3d362d;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top-summary__lead {
    font-size: 0.875rem;
    line-height: 1.9;
    margin-bottom: 0.875rem;
  }
}
.p-top-summary__more {
  text-align: center;
}
.p-drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    display: block;
  }
}
.p-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-drawer.is-open .p-drawer__overlay {
  opacity: 1;
  visibility: visible;
}
.p-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 20rem;
  height: 100%;
  z-index: 960;
  background: #ffffff;
  border-left: 1px solid #d9cdb8;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.p-drawer.is-open .p-drawer__panel {
  transform: translateX(0);
}
.p-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: 1px solid #3d362d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.p-drawer__close::before, .p-drawer__close::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1px;
  background: #3d362d;
}
.p-drawer__close::before {
  transform: rotate(45deg);
}
.p-drawer__close::after {
  transform: rotate(-45deg);
}
.p-drawer__list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}
.p-drawer__item {
  border-bottom: 1px solid #d9cdb8;
}
.p-drawer__item a {
  display: block;
  padding: 1rem 0.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-index-header);
  height: 5.875rem;
  background: #faf7f1;
  border-bottom: 1px solid #cbb99f;
  transition: box-shadow 0.4s ease;
}
.p-header.is-scrolled {
  box-shadow: 0 0.375rem 1.5rem rgba(36, 31, 24, 0.08);
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4rem;
    background: #ffffff;
  }
}
.p-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 2rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    gap: 0;
    padding-inline: 0.875rem;
  }
}
.p-header__logo {
  flex-shrink: 0;
  line-height: 1;
}
.p-header__logo a {
  display: flex;
  align-items: center;
}
.p-header__logo img {
  width: 12.5rem;
  height: 4rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    width: 8.125rem;
    height: 2.5rem;
  }
}
.p-header__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9375rem;
  background: #4a5d4a;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-header__badge:hover {
    background: #3b4a3b;
  }
}
@media screen and (max-width: 767px) {
  .p-header__badge {
    display: none;
  }
}
.p-header__badge-icon {
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0.3125rem;
}
.p-header__nav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 25rem;
  width: calc(100% - 2.5rem);
  margin: 0;
  padding: 0;
}
.p-header__nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.0625rem;
  padding-bottom: 0.125rem;
  color: #3d362d;
  white-space: nowrap;
}
.p-header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.125rem;
  width: 0;
  height: 1px;
  background: #7c5332;
  transition: width 0.35s ease, left 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-header__nav-link:hover::after {
    left: 0;
    width: 100%;
  }
}
.p-header__nav-link.is-current::after {
  left: 0;
  width: 100%;
}
.p-header__nav-en {
  font-family: "Noto Serif JP", serif;
  font-size: 0.46875rem;
  letter-spacing: 0.05em;
  color: #9a8f7d;
  text-transform: uppercase;
  line-height: 1.3;
}
.p-header__nav-ja {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.p-header__access {
  flex-shrink: 0;
  font-size: 0.65625rem;
  color: #9a8f7d;
  text-align: right;
  line-height: 1.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-header__access {
    display: none;
  }
}
.p-header__access-map-link {
  display: inline-block;
  margin-top: 0.3125rem;
  font-size: 0.65625rem;
  letter-spacing: 0.04em;
  color: #7c5332;
  border-bottom: 1px solid #cbb99f;
  padding-bottom: 0.0625rem;
  transition: border-color 0.2s ease;
}
.p-header__access-map-link:hover {
  border-bottom-color: #9a6f48;
}
.p-header__access-map-link-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__access-map-link-sp {
    display: inline-block;
    flex: 0 1 auto;
    min-width: 0;
    font-size: 0.625rem;
    letter-spacing: 0.02em;
    color: #7c5332;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 1px solid #cbb99f;
    padding: 0.125rem 0;
    margin: 0 0.5rem;
  }
}
.p-header__cta {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-block;
  padding: 0.5625rem 1.25rem;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(160deg, #3a3128 0%, #241f18 65%);
  color: #ffffff;
  border: 1px solid rgba(201, 179, 126, 0.55);
  border-radius: 0.1875rem;
  box-shadow: 0 0.5rem 1.25rem rgba(36, 31, 24, 0.24), 0 0.1875rem 0.5rem rgba(36, 31, 24, 0.14);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.p-header__cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .p-header__cta::after {
    animation: ctaSheen 2.4s ease-in-out 1;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-header__cta:hover {
    background: linear-gradient(160deg, #4a3f31 0%, #2e2820 65%);
    border-color: rgba(201, 179, 126, 0.9);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 1.625rem rgba(36, 31, 24, 0.26), 0 0.25rem 0.625rem rgba(36, 31, 24, 0.14);
  }
}
@media screen and (max-width: 767px) {
  .p-header__cta {
    display: none;
  }
}
.p-header__cta-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #c9b37e;
}
.p-header__cta-main {
  display: block;
  margin-top: 0.1875rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  .p-header__inner {
    gap: 0.5rem;
    padding-inline: 1.5rem;
  }
  .p-header__badge {
    padding: 0.5rem 0.5625rem;
  }
  .p-header__nav-list {
    gap: 0.875rem;
    width: calc(100% - 1.25rem);
  }
  .p-header__logo img {
    width: 11rem;
    height: 3.5rem;
  }
  .p-header__cta {
    padding: 0.5625rem 0.75rem;
  }
}
.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    width: 2.25rem;
    height: 2.25rem;
    background: none;
    border: 1px solid #3d362d;
    cursor: pointer;
  }
  .p-header__hamburger span {
    display: block;
    width: 1.25rem;
    height: 1px;
    background: #3d362d;
    transition: transform 0.3s, opacity 0.3s;
  }
  .p-header__hamburger.is-open span:nth-child(1) {
    transform: translateY(0.375rem) rotate(45deg);
  }
  .p-header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .p-header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-0.375rem) rotate(-45deg);
  }
}
.p-header__inner {
  gap: 0.75rem;
}
.p-header__badge {
  padding: 0.5rem 0.6875rem;
}
.p-header__cta {
  padding: 0.5625rem 1rem;
}
.p-header__nav {
  flex: 0 0 auto;
}
.p-header__nav-list {
  gap: 0.625rem;
  max-width: 24.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
  .p-header__logo img {
    width: 9.375rem;
    height: 3rem;
  }
  .p-header__badge {
    padding: 0.5rem 0.5625rem;
  }
  .p-header__nav-list {
    gap: 0.5rem;
    max-width: 23.125rem;
    width: 100%;
  }
  .p-header__cta {
    padding: 0.5625rem 0.75rem;
  }
}
@keyframes ctaSheen {
  0% {
    left: -80%;
  }
  50% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
.p-location-access {
  padding-block: 5.25rem;
  background-image: var(--grain);
}
@media screen and (max-width: 767px) {
  .p-location-access {
    padding-block: 2.375rem;
  }
}
.p-location-access__block {
  max-width: 57.5rem;
  margin-inline: auto;
  margin-bottom: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-location-access__block {
    margin-bottom: 2.125rem;
  }
}
.p-location-access__block-head {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  padding-bottom: 0.6875rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #d9cdb8;
}
@media screen and (max-width: 767px) {
  .p-location-access__block-head {
    gap: 0.625rem;
    padding-bottom: 0.5625rem;
    margin-bottom: 0.125rem;
  }
}
.p-location-access__block-en {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #9a6f48;
}
@media screen and (max-width: 767px) {
  .p-location-access__block-en {
    font-size: 0.625rem;
    letter-spacing: 0.16em;
  }
}
.p-location-access__block-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #241f18;
}
@media screen and (max-width: 767px) {
  .p-location-access__block-ja {
    font-size: 0.875rem;
  }
}
.p-location-access__block-from {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #9a8f7d;
}
@media screen and (max-width: 767px) {
  .p-location-access__block-from {
    font-size: 0.625rem;
  }
}
.p-location-access__walk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-location-access__walk {
    grid-template-columns: 1fr;
  }
}
.p-location-access__walk-item {
  text-align: center;
  padding: 1.625rem 1.125rem 1.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-location-access__walk-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
    padding: 0.8125rem 0;
    border-bottom: 1px solid #d9cdb8;
  }
}
.p-location-access__walk-item + .p-location-access__walk-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.375rem;
  bottom: 1.375rem;
  width: 1px;
  background: #d9cdb8;
}
@media screen and (max-width: 767px) {
  .p-location-access__walk-item + .p-location-access__walk-item::before {
    display: none;
  }
}
.p-location-access__walk-line {
  font-size: 0.75rem;
  color: #9a8f7d;
  letter-spacing: 0.08em;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-location-access__walk-line {
    font-size: 0.625rem;
    margin-bottom: 0.125rem;
  }
}
.p-location-access__walk-station {
  font-family: "Noto Serif JP", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
  color: #241f18;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-location-access__walk-station {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}
.p-location-access__walk-time {
  font-size: 0.875rem;
  color: #3d362d;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-location-access__walk-time {
    font-size: 0.625rem;
    white-space: nowrap;
  }
}
.p-location-access__walk-num {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #7c5332;
  letter-spacing: -0.01em;
  margin: 0 0.125rem;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-location-access__walk-num {
    font-size: 1.6875rem;
    margin: 0 0.0625rem;
  }
}
.p-location-access__walk-tilde {
  font-size: 1.25rem;
  color: #9a8f7d;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-location-access__walk-tilde {
    font-size: 0.875rem;
  }
}
.p-location-access__walk-unit {
  font-size: 0.875rem;
  margin-left: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-location-access__walk-unit {
    font-size: 0.625rem;
    margin-left: 0.125rem;
  }
}
.p-location-access__dest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-location-access__dest {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.125rem;
  }
}
.p-location-access__dest-item {
  padding: 1rem 0 0.8125rem;
  border-bottom: 1px solid #d9cdb8;
}
@media screen and (max-width: 767px) {
  .p-location-access__dest-item {
    padding: 0.6875rem 0 0.5625rem;
  }
}
.p-location-access__dest-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.p-location-access__dest-city {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #241f18;
}
@media screen and (max-width: 767px) {
  .p-location-access__dest-city {
    font-size: 0.875rem;
  }
}
.p-location-access__dest-num {
  font-family: "Noto Serif JP", serif;
  font-size: 2.25rem;
  line-height: 1;
  color: #7c5332;
}
@media screen and (max-width: 767px) {
  .p-location-access__dest-num {
    font-size: 1.625rem;
  }
}
.p-location-access__dest-unit {
  font-size: 0.875rem;
  margin-left: 0.1875rem;
  color: #3d362d;
}
@media screen and (max-width: 767px) {
  .p-location-access__dest-unit {
    font-size: 0.75rem;
  }
}
.p-location-access__dest-route {
  font-size: 0.75rem;
  color: #9a8f7d;
  letter-spacing: 0.06em;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-location-access__dest-route {
    font-size: 0.625rem;
    margin-top: 0.1875rem;
  }
}
.p-location-access__note {
  max-width: 57.5rem;
  margin-inline: auto;
  text-align: center;
  font-size: 0.75rem;
  line-height: 2;
  color: #9a8f7d;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-location-access__note {
    font-size: 0.75rem;
    line-height: 1.85;
    text-align: left;
  }
}
.p-location-access__map {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto 1.25rem;
  cursor: zoom-in;
}
.p-location-access__map picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-location-access__map-cta-wrap {
  text-align: center;
}
.p-location-access__map-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  margin-top: 1.625rem;
  padding: 0.875rem 2.25rem;
  background: #9a6f48;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.p-location-access__map-cta::after {
  content: "▸";
  font-size: 0.75rem;
}
.p-location-access__map-cta:hover {
  background: #7c5332;
}
.p-location-category {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-location-category {
    margin-top: 1.625rem;
  }
}
.p-location-category__intro {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-location-category__intro {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.75rem;
  }
}
.p-location-category__label {
  flex-shrink: 0;
}
.p-location-category__en {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a8f7d;
  display: block;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-location-category__en {
    font-size: 0.59375rem;
  }
}
.p-location-category__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-location-category__title {
    font-size: 0.875rem;
  }
}
.p-location-category__desc {
  font-size: 0.875rem;
  line-height: 2;
  color: #3d362d;
  border-left: 2px solid #d9cdb8;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-location-category__desc {
    font-size: 0.75rem;
    line-height: 1.75;
    border-left: none;
    padding-left: 0;
  }
}
.p-location-category__hint-wrap {
  position: relative;
}
.p-location-category__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-location-category__grid {
    --peek: 10vw;
    display: flex;
    gap: 0.625rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 var(--peek) 0.625rem;
    margin: 0 -0.875rem;
    width: calc(100% + 1.75rem);
    max-width: 100vw;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .p-location-category__grid::-webkit-scrollbar {
    display: none;
  }
}
.p-location-category__item {
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-location-category__item {
    flex: 0 0 calc(100vw - 2 * var(--peek));
    scroll-snap-align: center;
  }
  .p-location-category__item > * {
    opacity: 0.42;
    transition: opacity 0.32s ease;
  }
  .p-location-category__item.is-focus > * {
    opacity: 1;
  }
}
.p-location-category__photo {
  aspect-ratio: 3/2;
  position: relative;
  box-shadow: 0 0.1875rem 0.875rem rgba(36, 31, 24, 0.1);
}
.p-location-category__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-location-category__item-cap {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: #241f18;
  font-weight: 500;
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-location-category__item-cap {
    font-size: 0.875rem;
    margin-top: 0.5625rem;
  }
}
.p-location-category__item-walk {
  font-size: 0.75rem;
  color: #7c5332;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-location-category__item-walk {
    font-size: 0.625rem;
  }
}
.p-location-category__item-desc {
  font-size: 0.875rem;
  color: #9a8f7d;
  line-height: 1.8;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-location-category__item-desc {
    font-size: 0.625rem;
    line-height: 1.65;
    margin-top: 0.3125rem;
  }
}
.p-location-category__pending {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, transparent calc(50% - 0.5px), #ccc calc(50% - 0.5px), #ccc calc(50% + 0.5px), transparent calc(50% + 0.5px)), linear-gradient(45deg, transparent calc(50% - 0.5px), #ccc calc(50% - 0.5px), #ccc calc(50% + 0.5px), transparent calc(50% + 0.5px)), #e7ddcd;
  color: #9a8f7d;
  text-align: center;
}
.p-location-category__pending span {
  padding: 0.375rem 0.875rem;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}
.p-location-hero {
  margin: 3.75rem 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-location-hero {
    margin: 1.25rem -0.875rem 0.875rem;
  }
}
.p-location-hero__image {
  aspect-ratio: 8/3;
  width: 100%;
  position: relative;
  box-shadow: 0 0.25rem 1.125rem rgba(36, 31, 24, 0.1);
}
.p-location-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201, 179, 126, 0.22);
  pointer-events: none;
}
.p-location-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-location-hero__image {
    aspect-ratio: auto;
    height: 15.625rem;
  }
}
.p-location-hero__caption {
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  bottom: 2.25rem;
  color: #ffffff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-location-hero__caption {
    left: 0.875rem;
    right: 0.875rem;
    bottom: 0.875rem;
  }
}
.p-location-hero__caption::before {
  content: "";
  position: absolute;
  inset: -2.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-location-hero__caption::before {
    inset: -0.875rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
  }
}
.p-location-hero__en {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-location-hero__en {
    font-size: 0.75rem;
    margin-bottom: 0.3125rem;
  }
}
.p-location-hero__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.625rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-location-hero__title {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.375rem;
  }
}
.p-location-hero__text {
  font-size: 0.875rem;
  line-height: 2;
  max-width: 32.5rem;
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .p-location-hero__text {
    font-size: 0.75rem;
    line-height: 1.7;
  }
}
.p-location-map {
  padding-block: 5.25rem;
  background-image: var(--grain);
  scroll-margin-top: 6.625rem;
}
@media screen and (max-width: 767px) {
  .p-location-map {
    padding-block: 2.375rem;
    scroll-margin-top: 4.75rem;
  }
}
.p-location-map__buttons {
  text-align: center;
  margin-bottom: 1.375rem;
}
.p-location-map__gmap-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #241f18;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s ease;
}
.p-location-map__gmap-btn:hover {
  background: #3d362d;
}
.p-location-map__frame {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-location-map__frame:hover .p-location-map__image {
  box-shadow: 0 0.5rem 1.375rem rgba(36, 31, 24, 0.14);
}
.p-location-map__image {
  position: relative;
  aspect-ratio: 1992/1241;
  transition: box-shadow 0.2s ease;
}
.p-location-map__image picture,
.p-location-map__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-location-map__pin {
  position: absolute;
  transform: translate(-50%, 0.1875rem);
  z-index: 2;
  pointer-events: none;
}
.p-location-map__pin--left {
  transform: translate(calc(-100% - 0.1875rem), -50%);
}
.p-location-map__pin--right {
  transform: translate(0.1875rem, -50%);
}
.p-location-map__pin--up {
  transform: translate(-50%, calc(-100% - 0.1875rem));
}
.p-location-map__pin-label {
  display: inline-block;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cbb99f;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #7c5332;
  padding: 0.1875rem 0.5625rem;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-location-map__pin-label {
    font-size: 0.5rem;
    padding: 0.0625rem 0.25rem;
    line-height: 1.3;
    white-space: normal;
    width: max-content;
    max-width: 5.375rem;
    text-align: center;
  }
}
.p-location-map__pin-suffix {
  white-space: nowrap;
}
.p-location-map__tap {
  text-align: center;
  font-size: 0.75rem;
  color: #7c5332;
  letter-spacing: 0.04em;
  margin: 0.625rem 0 1rem;
}
.p-location-map__drive-note {
  max-width: 38.75rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  background: #faf7f1;
  border: 1px solid #cbb99f;
  border-left: 3px solid #9a6f48;
  font-size: 0.75rem;
  line-height: 1.9;
  color: #3d362d;
}
.p-location-map__drive-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #9a6f48;
  margin-bottom: 0.125rem;
  font-weight: 500;
}
.p-location-map__credit {
  text-align: right;
  font-size: 0.75rem;
  color: #9a8f7d;
  letter-spacing: 0.02em;
  margin: 0.875rem 0 0;
}
.p-location-map__note {
  max-width: 57.5rem;
  margin: 1.125rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 2;
  color: #9a8f7d;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-location-map__note {
    line-height: 1.85;
    text-align: left;
  }
}
.p-location-town {
  padding-block: 5.25rem;
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 60%, #ece5d7 100%);
}
@media screen and (max-width: 767px) {
  .p-location-town {
    padding-block: 2.375rem;
  }
}
.p-location-town__lead {
  max-width: 47.5rem;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  font-size: 1rem;
  text-align: center;
  line-height: 2.1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-location-town__lead {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}
.p-outline-tables {
  padding-block: 5.25rem;
  background-image: var(--grain);
}
@media screen and (max-width: 767px) {
  .p-outline-tables {
    padding-block: 2.375rem;
  }
}
.p-outline-tables__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 0 0 1.125rem;
  text-align: center;
}
.p-outline-tables__table {
  max-width: 56.25rem;
  margin: 0 auto 3.75rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.p-outline-tables__table th,
.p-outline-tables__table td {
  border-top: 1px solid #d9cdb8;
  padding: 1rem 1.125rem;
  text-align: left;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-outline-tables__table th,
  .p-outline-tables__table td {
    padding: 0.5rem;
  }
}
.p-outline-tables__table tr:last-child th,
.p-outline-tables__table tr:last-child td {
  border-bottom: 1px solid #d9cdb8;
}
.p-outline-tables__table th {
  width: 12.5rem;
  color: #9a8f7d;
  font-weight: 500;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .p-outline-tables__table th {
    width: 5.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-outline-tables__table td {
    font-size: 0.75rem;
    line-height: 1.7;
  }
}
.p-outline-tables__block {
  display: block;
}
.p-outline-tables__block + .p-outline-tables__block {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-outline-tables__block + .p-outline-tables__block {
    margin-top: 1rem;
  }
}
.p-outline-tables__subrow td {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #3d362d;
  padding-top: 1.375rem;
  padding-bottom: 0.5rem;
}
.p-plan-detail-hero {
  padding-block: 3.75rem 2.25rem;
  background: #f7f6f4;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .p-plan-detail-hero {
    padding-block: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero {
    padding-block: 1.25rem;
  }
}
.p-plan-detail-hero__layout {
  display: flex;
  align-items: stretch;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__layout {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-plan-detail-hero__img {
  flex: 0 0 42%;
  max-width: 32.5rem;
  align-self: flex-start;
  margin: 0;
}
.p-plan-detail-hero__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__img {
    flex: none;
    max-width: none;
    width: 100%;
  }
}
.p-plan-detail-hero__pending {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  background: #e7ddcd;
  color: #9a8f7d;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
.p-plan-detail-hero__info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__info {
    display: block;
  }
}
.p-plan-detail-hero__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__headline {
    gap: 0.375rem;
    margin-bottom: 1.25rem;
  }
}
.p-plan-detail-hero__headline-tag {
  font-size: 0.875rem;
  letter-spacing: 0.26em;
  color: #9a6f48;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__headline-tag {
    font-size: 0.75rem;
    letter-spacing: 0.24em;
  }
}
.p-plan-detail-hero__headline-body {
  display: block;
  font-size: 1.625rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.p-plan-detail-hero__headline-body b {
  font-size: 2.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__headline-body {
    font-size: 0.9375rem;
  }
  .p-plan-detail-hero__headline-body b {
    font-size: 1.375rem;
    margin: 0 0.0625rem;
  }
}
.p-plan-detail__unit-en {
  font-size: 1.125rem;
  font-weight: 500;
  margin-right: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail__unit-en {
    font-size: 0.8125rem;
    margin-right: 0.1875rem;
  }
}
.p-plan-detail-hero__card {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__card {
    display: block;
    background: #faf7f1;
    border: 1px solid #cbb99f;
    padding: 1.375rem 1.25rem;
  }
}
.p-plan-detail-hero__areas {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__areas {
    margin-bottom: 0.25rem;
  }
}
.p-plan-detail-hero__area {
  display: flex;
  align-items: baseline;
  gap: 0.5625rem;
}
.p-plan-detail-hero__area-k {
  font-size: 0.875rem;
  color: #9a6f48;
  letter-spacing: 0.08em;
}
.p-plan-detail-hero__area-v {
  font-size: 1.6875rem;
  color: #3d362d;
}
.p-plan-detail-hero__unit {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.125rem;
}
.p-plan-detail-hero__area-sub {
  font-size: 0.75rem;
  color: #9a8f7d;
}
.p-plan-detail-hero__area-sep {
  color: #cbb99f;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__area-sep {
    display: none;
  }
}
.p-plan-detail-hero__note {
  margin-top: -0.875rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #9a8f7d;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__note {
    margin: 0 0 1.25rem;
  }
}
.p-plan-detail-hero__price-label {
  margin: 0 0 0.375rem;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  color: #9a6f48;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__price-label {
    font-size: 0.75rem;
  }
}
.p-plan-detail-hero__price {
  margin: 0;
  color: #241f18;
  font-size: 4.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__price {
    font-size: 2.75rem;
  }
}
.p-plan-detail-hero__price-unit {
  font-size: 1.375rem;
  font-weight: 500;
  margin-left: 0.375rem;
}
.p-plan-detail-hero__price-tax {
  font-size: 0.875rem;
  color: #9a8f7d;
  margin-left: 0.75rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__price-wrap {
    margin-bottom: 1.375rem;
  }
}
.p-plan-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.p-plan-detail-hero__meta-row {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}
.p-plan-detail-hero__meta-k {
  font-size: 0.75rem;
  color: #9a6f48;
  letter-spacing: 0.12em;
}
.p-plan-detail-hero__meta-v {
  color: #3d362d;
}
.p-plan-detail-hero__features {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__features {
    margin-top: 2rem;
  }
}
.p-plan-detail-hero__features-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #cbb99f;
}
.p-plan-detail-hero__features-en {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #9a6f48;
}
.p-plan-detail-hero__features-title {
  margin: 0;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #241f18;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__features-title {
    font-size: 0.9375rem;
  }
}
.p-plan-detail-hero__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail-hero__tags {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1rem;
  }
}
.p-plan-detail-hero__tag {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  padding: 0.6875rem 0.125rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #3d362d;
}
.p-plan-detail-hero__tag::before {
  content: "◆";
  position: relative;
  top: -0.125rem;
  font-size: 0.4375rem;
  color: #9a6f48;
}
.p-plan-floorplan__head {
  margin-bottom: 1.25rem;
}
.p-plan-floorplan__tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0.125rem;
  background: #d9cdb8;
  border: 1px solid #d9cdb8;
  margin-bottom: 1.5rem;
}
.p-plan-floorplan__tab {
  background: #ffffff;
  border: none;
  padding: 1rem 0.625rem;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #3d362d;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.p-plan-floorplan__tab.is-active {
  background: #3d362d;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-plan-floorplan__tab {
    padding: 0.75rem 0.25rem;
    font-size: 0.875rem;
  }
}
.p-plan-floorplan__viewer {
  position: relative;
}
.p-plan-floorplan__panel {
  display: none;
}
.p-plan-floorplan__panel.is-active {
  display: block;
}
.p-plan-floorplan__panel img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  background: #ffffff;
}
.p-plan-other {
  background-color: #efe9de;
  background-image: var(--grain), linear-gradient(180deg, #faf7f1 0%, #efe9de 60%, #ece5d7 100%);
}
.p-plan-other__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d9cdb8;
}
.p-plan-other__en {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #9a6f48;
}
.p-plan-other__title {
  margin: 0.5rem 0 0.625rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-plan-other__title {
    font-size: 1.125rem;
    margin: 0.25rem 0 0.3125rem;
  }
}
.p-plan-other__lead {
  margin: 0;
  max-width: 32.5rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #3d362d;
}
.p-plan-other__all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #3d362d;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #3d362d;
}
.p-plan-other__all span {
  font-size: 1rem;
  line-height: 1;
}
.p-plan-other__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .p-plan-other__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-plan-other__cards {
    display: flex;
    gap: 0.625rem;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -0.875rem;
    padding: 0 0.875rem 0.625rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .p-plan-other__cards > * {
    flex: 0 0 13.125rem;
    max-width: 13.125rem;
    scroll-snap-align: start;
  }
}
.p-plan-detail__banner {
  padding: 2.5rem 0 0;
}
.p-plan-detail__banner-item {
  max-width: 37.5rem;
  margin-inline: auto;
}
.p-plan-detail__back {
  text-align: center;
  margin-top: 5.625rem;
  padding-bottom: 5rem;
}
.p-plan-detail__back-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #3d362d;
  padding-bottom: 0.1875rem;
}
.p-plan-detail__share {
  text-align: center;
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-plan-detail__share {
    margin-top: 6rem;
  }
}
.p-plan-floorplan {
  padding-bottom: 2.5rem;
}
.p-plan-map__img {
  margin: 0;
}
.p-plan-map__img img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.p-plan-list {
  background-image: var(--grain);
}
.p-plan-list__head {
  margin-bottom: 2.5rem;
}
.p-plan-list__zone-head {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 1.375rem;
  border-bottom: 1px solid #cbb99f;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-plan-list__zone-head {
    gap: 0.625rem;
  }
}
.p-plan-list__zone-en {
  font-size: 1.625rem;
  letter-spacing: 0.16em;
  color: #7c5332;
}
@media screen and (max-width: 767px) {
  .p-plan-list__zone-en {
    font-size: 1.25rem;
  }
}
.p-plan-list__zone-phase {
  font-size: 0.75rem;
  color: #9a6f48;
  letter-spacing: 0.04em;
  border: 1px solid #cbb99f;
  padding: 0.125rem 0.625rem;
  background: #faf7f1;
}
.p-plan-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-plan-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
/*
.p-plan-list__note {
  margin: rem(24) 0 0;
  font-size: rem(12);
  color: $color-gray;
  letter-spacing: 0.04em;
}
*/
.p-plan-list__empty {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  color: #9a8f7d;
}
.u-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}