@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;
}
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Zen Kaku Gothic Antique";
  src: local("Zen Kaku Gothic Antique");
}
@font-face {
  font-family: "Local Zen Maru Gothic";
  src: local("Zen Maru Gothic");
}
:root {
  /* z-index */
  --z-index-header: 900;
  /* color — Figmaコーディング指示書 (NRFdOobXVgZ6EUmIGQWAa6 / 134:503) より */
  --color-bg: #fffdf0;
  --color-text: #3b3024;
  --color-white: #fff;
  --color-black: #000;
  --color-mv: #352819;
  --color-sub: #584b4b;
  --color-line: #d8c9ba;
  --color-cta: #e37452;
  --color-bubble: #ffd95b;
  --color-leon: #34548c;
  --color-line-green: #06c755;
  --color-nav-hover: #9f4422;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family — 本文は Zen Kaku Gothic Antique、見出し/キャッチ/数字/英字は Zen Maru Gothic */
  --base-font-family: "Local Zen Kaku Gothic Antique", "Zen Kaku Gothic Antique", sans-serif;
  --title-font-family: "Local Zen Maru Gothic", "Zen Maru Gothic", sans-serif;
  --deco-font-family: "Bellefair", serif;
  --to-rem: calc(100vw / 1440);
  /* transition duration */
  --duration: 0.3s;
  /* header height — PC 140px (Figma) / SP 80px */
  --header-height: calc(140 * var(--to-rem));
}
@media screen and (width >= 1441px) {
  :root {
    --to-rem: 1px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --to-rem: calc(100vw / 375);
    --header-height: calc(80 * var(--to-rem));
  }
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
/* アンカーリンクのスクロール位置を固定ヘッダー分ずらす */
[id] {
  scroll-margin-top: var(--header-height);
}
a[href^=tel] {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  a[href^=tel] {
    pointer-events: auto;
    cursor: pointer;
  }
}
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 {
  overflow-x: clip;
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background-color: var(--color-bg);
}
body.is-loading {
  opacity: 0;
}
body.is-loaded {
  opacity: 1;
  transition: opacity 0.15s ease;
}
body.is-leaving {
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
.l-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #170d07;
  background-image: url("../bg_footer_wood.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
}
.l-inner {
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
}
.l-main {
  margin-block-start: var(--header-height);
}
.c-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(40 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  background-color: var(--color-mv);
  color: var(--color-bubble);
  font-family: var(--base-font-family);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0;
  border-radius: calc(10 * var(--to-rem));
  white-space: nowrap;
}
.c-bubble::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.c-bubble[data-direction=bottom]::after {
  top: 100%;
  left: 50%;
  translate: -50% 0;
  border-width: calc(10 * var(--to-rem)) calc(9 * var(--to-rem)) 0;
  border-color: var(--color-mv) transparent transparent;
}
.c-bubble[data-direction=top]::after {
  bottom: 100%;
  left: 50%;
  translate: -50% 0;
  border-width: 0 calc(14 * var(--to-rem)) calc(18 * var(--to-rem));
  border-color: transparent transparent var(--color-mv);
}
.c-btn {
  display: inline-flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  justify-content: center;
  padding-block: calc(13 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
  border: calc(2 * var(--to-rem)) solid transparent;
  border-radius: calc(50 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration), color var(--duration), border-color var(--duration);
}
.c-btn__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
}
.c-btn__icon svg {
  width: 100%;
  height: 100%;
  fill: currentcolor;
}
.c-btn__text {
  white-space: nowrap;
}
.c-btn[data-variant=mail],
.c-btn[data-variant=line],
.c-btn[data-variant=tel] {
  border-width: 0;
}
.c-btn__arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: calc(16 * var(--to-rem));
  height: calc(16 * var(--to-rem));
  margin-left: calc(6 * var(--to-rem));
}
.c-btn__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.c-btn[data-variant=dark] {
  position: relative;
  min-width: calc(200 * var(--to-rem));
  padding-block: calc(10 * var(--to-rem));
  padding-inline: calc(10 * var(--to-rem));
  background-color: var(--color-sub);
  border-color: var(--color-sub);
  color: var(--color-white);
  box-shadow: 0 calc(4 * var(--to-rem)) calc(30 * var(--to-rem)) calc(-10 * var(--to-rem)) rgba(92, 82, 14, 0.6);
}
@media (any-hover: hover) {
  .c-btn[data-variant=dark]:hover {
    background-color: var(--color-white);
    color: var(--color-sub);
  }
}
.c-btn[data-variant=dark] .c-btn__text {
  flex: 1;
  min-width: 0;
  text-align: center;
}
.c-btn[data-variant=dark] .c-btn__arrow {
  position: absolute;
  top: 50%;
  right: calc(20 * var(--to-rem));
  translate: 0 -50%;
  margin-left: 0;
}
.c-btn[data-variant=mail] {
  gap: calc(12 * var(--to-rem));
  min-height: calc(64 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-text);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
}
@media (any-hover: hover) {
  .c-btn[data-variant=mail]:hover {
    background-color: var(--color-sub);
    border-color: var(--color-sub);
    color: var(--color-white);
  }
}
.c-btn[data-variant=tel] {
  flex-direction: column;
  gap: calc(10 * var(--to-rem));
  min-height: calc(64 * var(--to-rem));
  padding-block: calc(10 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-text);
}
@media (any-hover: hover) {
  .c-btn[data-variant=tel]:hover {
    background-color: var(--color-leon);
    border-color: var(--color-leon);
    color: var(--color-white);
  }
}
.c-btn[data-variant=tel] .c-btn__label {
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: 1;
}
.c-btn[data-variant=tel] .c-btn__number {
  display: inline-flex;
  gap: calc(10 * var(--to-rem));
  align-items: center;
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
}
.c-btn[data-variant=tel] .c-btn__icon {
  width: calc(23 * var(--to-rem));
  height: calc(23 * var(--to-rem));
}
.c-btn[data-variant=line] {
  gap: calc(16 * var(--to-rem));
  min-height: calc(64 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-text);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
}
@media (any-hover: hover) {
  .c-btn[data-variant=line]:hover {
    background-color: var(--color-line-green);
    border-color: var(--color-line-green);
    color: var(--color-white);
  }
}
.c-btn[data-variant=line]:active {
  background-color: #04a648;
  border-color: #04a648;
  color: var(--color-white);
}
.c-btn[data-variant=line] .c-btn__icon {
  width: calc(32 * var(--to-rem));
  height: calc(32 * var(--to-rem));
}
.c-btn[data-variant=line] .c-btn__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-btn[data-variant=cta] {
  gap: calc(14 * var(--to-rem));
  min-width: calc(218 * var(--to-rem));
  min-height: calc(60 * var(--to-rem));
  padding-block: calc(17 * var(--to-rem)) calc(19 * var(--to-rem));
  padding-inline: calc(23 * var(--to-rem)) calc(34 * var(--to-rem));
  border-radius: calc(100 * var(--to-rem));
  background-color: var(--color-cta);
  border-color: var(--color-cta);
  color: var(--color-white);
  box-shadow: 0 calc(4 * var(--to-rem)) calc(30 * var(--to-rem)) calc(-10 * var(--to-rem)) rgba(92, 82, 14, 0.3);
  font-size: max(18 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1;
}
@media (any-hover: hover) {
  .c-btn[data-variant=cta]:hover {
    background-color: var(--color-white);
    color: var(--color-cta);
  }
}
.c-btn[data-variant=cta] .c-btn__icon {
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
}
.c-page-title {
  position: relative;
  padding-inline: calc(40 * var(--to-rem));
}
.c-page-title__en {
  position: absolute;
  inset-inline-start: 50%;
  top: 10%;
  transform: translate(-50%, -50%);
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(100 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-bg);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-page-title__en {
    font-size: calc(56 * var(--to-rem));
  }
}
.c-page-title__ja {
  position: relative;
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(40 * var(--to-rem));
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-page-title__ja {
    font-size: calc(24 * var(--to-rem));
    letter-spacing: 0.08em;
  }
}
/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-archive__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_pagination-* を設定する
 *   - 親の CSS ファイルに c-pagination のクラス名は書かない（コンポーネントのカプセル化）
 *
 * 上書き可能な変数: --_pagination-bg, --_pagination-text, --_pagination-text-hover,
 *   --_pagination-bg-hover, --_pagination-active-bg, --_pagination-active-text,
 *   --_pagination-border, --_pagination-border-hover
 */
.c-pagination {
  /* 色（ローカル変数。親の wrapper で上書き可能） */
  --_pagination-bg: var(--color-white, #fff);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: #374151;
  --_pagination-bg-hover: #f9fafb;
  --_pagination-active-bg: var(--color-black, #000);
  --_pagination-active-text: var(--color-white, #fff);
  --_pagination-border: #d1d5db;
  --_pagination-border-hover: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  justify-content: center;
}
.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: calc(40 * var(--to-rem));
  min-width: calc(40 * var(--to-rem));
  padding: 0 calc(12 * var(--to-rem));
  border: 1px solid var(--_pagination-border);
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: calc(14 * var(--to-rem));
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    height: calc(44 * var(--to-rem));
    min-width: calc(44 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]) {
    border-color: var(--_pagination-border-hover);
    background-color: var(--_pagination-bg-hover);
    color: var(--_pagination-text-hover);
  }
}
.c-pagination__item[data-state=current] {
  border-color: var(--_pagination-active-bg);
  background-color: var(--_pagination-active-bg);
  color: var(--_pagination-active-text);
}
.c-pagination__item[data-state=dots] {
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
.c-pagination__item[data-state=dots]:hover {
  border-color: transparent;
  background-color: transparent;
}
.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  font-weight: var(--fw-medium, 500);
}
.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=disabled]:hover {
    border-color: var(--_pagination-border);
    background-color: var(--_pagination-bg);
    color: var(--_pagination-text);
  }
}
.c-section-title {
  position: relative;
  isolation: isolate;
  text-align: center;
}
.c-section-title__en {
  position: absolute;
  top: calc(-80 * var(--to-rem));
  left: 50%;
  z-index: 0;
  translate: -50% 0;
  color: var(--color-bg);
  font-family: var(--deco-font-family);
  font-size: max(300 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    top: calc(-26 * var(--to-rem));
    font-size: max(80 * var(--to-rem), 12px);
  }
}
.c-section-title__ja {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(40 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: max(28 * var(--to-rem), 12px);
  }
}
.c-triangle {
  display: inline-block;
  width: calc(64 * var(--to-rem));
  aspect-ratio: 1/1;
  background-color: var(--color-black);
}
.c-triangle[data-direction=top] {
  clip-path: var(--clip-triangle-top);
}
.c-triangle[data-direction=bottom] {
  clip-path: var(--clip-triangle-bottom);
}
.c-triangle[data-direction=left] {
  clip-path: var(--clip-triangle-left);
}
.c-triangle[data-direction=right] {
  clip-path: var(--clip-triangle-right);
}
.c-triangle[data-direction=lower-left] {
  clip-path: var(--clip-triangle-lower-left);
}
.c-triangle[data-direction=upper-left] {
  clip-path: var(--clip-triangle-upper-left);
}
.c-triangle[data-direction=lower-right] {
  clip-path: var(--clip-triangle-lower-right);
}
.c-triangle[data-direction=upper-right] {
  clip-path: var(--clip-triangle-upper-right);
}
.p-footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(60 * var(--to-rem));
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(100 * var(--to-rem));
  padding-inline: calc(170 * var(--to-rem));
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-footer {
    padding-inline: calc(60 * var(--to-rem));
    gap: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    flex-direction: column;
    gap: calc(40 * var(--to-rem));
    padding-block: calc(60 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
.p-footer__paws {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: calc(133 * var(--to-rem));
}
.p-footer__paws img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0);
  opacity: 0.55;
}
.p-footer__paws[data-pos=top-left] {
  top: 0;
  left: calc(279 * var(--to-rem));
}
.p-footer__paws[data-pos=middle] {
  top: calc(187 * var(--to-rem));
  left: calc(575 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__paws {
    display: none;
  }
}
.p-footer__dogs {
  position: absolute;
  right: 5.5%;
  bottom: calc(40 * var(--to-rem));
  width: 16.4%;
  max-width: calc(236 * var(--to-rem));
  pointer-events: none;
  z-index: 0;
}
.p-footer__dogs img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__dogs {
    position: static;
    width: 100%;
    max-width: calc(160 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-footer__address {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--to-rem));
  max-width: calc(320 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    max-width: none;
    gap: calc(20 * var(--to-rem));
  }
}
.p-footer__logo {
  margin: 0;
  max-width: calc(299 * var(--to-rem));
  color: var(--color-white);
}
.p-footer__logo svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentcolor;
}
.p-footer__addressGroup {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-footer__addressText {
  margin: 0;
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.4;
}
.p-footer__right {
  position: relative;
  z-index: 1;
  display: flex;
  gap: calc(80 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-footer__right {
    gap: calc(48 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-footer__right {
    flex-direction: column;
    gap: calc(32 * var(--to-rem));
  }
}
.p-footer__navGroup {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer__navGroup {
    gap: calc(24 * var(--to-rem));
  }
}
.p-footer__menu {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-footer__menuLink {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--duration);
}
.p-footer__menuLink::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(-4 * var(--to-rem));
  left: 0;
  height: 1px;
  background-color: currentcolor;
  opacity: 0;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__menuLink:hover {
    color: #429361;
  }
  .p-footer__menuLink:hover::after {
    opacity: 1;
  }
  .p-footer__sns:hover .p-footer__snsText {
    color: #429361;
  }
}
.p-footer__sns {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--to-rem));
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--duration);
}
.p-footer__snsIcon {
  flex-shrink: 0;
  width: calc(25 * var(--to-rem));
  aspect-ratio: 1;
}
.p-footer__snsIcon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.p-footer__snsText {
  margin: 0;
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.3;
}
.p-footer__license {
  display: flex;
  flex-direction: column;
  gap: calc(6 * var(--to-rem));
}
.p-footer__licenseTitle {
  margin: 0;
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
.p-footer__licenseList {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-footer__licenseItem {
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
.p-footer__copyright {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    text-align: left;
  }
}
.p-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--header-height);
  padding-block: calc(14 * var(--to-rem));
  padding-inline: calc(27 * var(--to-rem));
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-block: 0;
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-header__logo {
  flex-shrink: 0;
  max-width: calc(355 * var(--to-rem));
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: calc(165 * var(--to-rem));
  }
}
.p-header__logo a {
  display: block;
}
.p-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-header__right {
  display: flex;
  align-items: center;
  gap: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-header__right {
    display: none;
  }
}
.p-header__navList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(20 * var(--to-rem)) calc(40 * var(--to-rem));
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-header__navLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: calc(10 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--duration);
}
.p-header__navLink::before {
  content: "";
  flex-shrink: 0;
  width: calc(5 * var(--to-rem));
  height: calc(5 * var(--to-rem));
  background-color: currentcolor;
  border-radius: 50%;
}
.p-header__navLink::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(-6 * var(--to-rem));
  left: calc(15 * var(--to-rem));
  height: 1px;
  background-color: currentcolor;
  opacity: 0;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__navLink:hover {
    color: var(--color-nav-hover);
  }
  .p-header__navLink:hover::after {
    opacity: 1;
  }
}
.p-header__cta {
  position: relative;
}
.p-header__bubble {
  position: absolute;
  bottom: calc(100% - calc(6 * var(--to-rem)));
  left: 50%;
  z-index: 1;
  translate: -50% 0;
  pointer-events: none;
  white-space: nowrap;
}
.p-header__menuBtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__menuBtn {
    position: relative;
    z-index: calc(var(--z-index-header) + 2);
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: calc(50 * var(--to-rem));
    height: calc(50 * var(--to-rem));
    padding-block: 0;
    padding-inline: 0;
    background-color: transparent;
    border: 0;
    color: var(--color-text);
    cursor: pointer;
  }
}
.p-header__menuLines {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: calc(12 * var(--to-rem));
  width: calc(30 * var(--to-rem));
}
.p-header__menuLine {
  display: block;
  width: 100%;
  height: calc(3 * var(--to-rem));
  background-color: currentcolor;
  border-radius: calc(2 * var(--to-rem));
  transition: rotate var(--duration), translate var(--duration), background-color var(--duration);
}
.p-header__menuBtn.is-open {
  color: var(--color-white);
}
.p-header__menuBtn.is-open .p-header__menuLine:nth-child(1) {
  translate: 0 calc(7.5 * var(--to-rem));
  rotate: 45deg;
}
.p-header__menuBtn.is-open .p-header__menuLine:nth-child(2) {
  translate: 0 calc(-7.5 * var(--to-rem));
  rotate: -45deg;
}
.p-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    position: fixed;
    inset: 0 0 auto auto;
    z-index: calc(var(--z-index-header) + 1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: calc(280 * var(--to-rem));
    max-width: 100%;
    min-height: 100dvh;
    padding-block: calc(120 * var(--to-rem)) calc(15 * var(--to-rem));
    padding-inline: calc(30 * var(--to-rem));
    background-color: #3b3024;
    opacity: 0;
    pointer-events: none;
    translate: 100% 0;
    transition: opacity var(--duration), translate var(--duration);
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    translate: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawerNav {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawerList {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawerItem {
    width: calc(220 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawerLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: calc(56 * var(--to-rem));
    padding-block: calc(20 * var(--to-rem));
    border-bottom: calc(1 * var(--to-rem)) solid #251c12;
    color: var(--color-white);
    font-family: var(--base-font-family);
    font-size: max(16 * var(--to-rem), 12px);
    font-weight: var(--fw-medium);
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: opacity var(--duration);
  }
}
@media (any-hover: hover) {
  .p-header__drawerLink:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawerLinkText {
    flex: 1;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawerLinkArrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(16 * var(--to-rem));
    height: calc(16 * var(--to-rem));
    color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawerLinkArrow svg {
    width: 100%;
    height: 100%;
  }
}
.p-topMv {
  position: relative;
  width: 100%;
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
  background-color: var(--color-bg);
  overflow: hidden;
}
.p-topMv__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/665;
}
@media screen and (max-width: 767px) {
  .p-topMv__inner {
    aspect-ratio: auto;
    height: calc(506 * var(--to-rem));
    padding-bottom: 0;
  }
}
.p-topMv__deco {
  position: absolute;
  top: 6%;
  left: 2.4%;
  width: 40.1%;
  aspect-ratio: 577/625;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-topMv__deco {
    top: calc(197 * var(--to-rem));
    left: calc(35 * var(--to-rem));
    width: calc(285 * var(--to-rem));
    aspect-ratio: 285/308.71;
    max-width: none;
    translate: 0 0;
    z-index: 0;
    pointer-events: none;
  }
}
.p-topMv__decoImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}
.p-topMv__main {
  position: absolute;
  top: 0;
  left: 41.3%;
  width: 58.7%;
  aspect-ratio: 845/617;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-topMv__main {
    position: absolute;
    top: 0;
    left: calc(10 * var(--to-rem));
    width: calc(365 * var(--to-rem));
    height: calc(257 * var(--to-rem));
    aspect-ratio: auto;
    z-index: 1;
    border-radius: calc(50 * var(--to-rem)) 0 0 calc(50 * var(--to-rem));
    overflow: hidden;
  }
}
.p-topMv__mainImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topMv__access {
  position: absolute;
  top: 14.7%;
  left: 27.5%;
  width: 10.7%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background-color: var(--color-mv);
  color: var(--color-white);
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-topMv__access {
    top: 12.5%;
    left: 28.8%;
    width: 9.5%;
  }
}
@media screen and (max-width: 767px) {
  .p-topMv__access {
    top: calc(178 * var(--to-rem));
    left: calc(232 * var(--to-rem));
    width: calc(88 * var(--to-rem));
    height: calc(88 * var(--to-rem));
    aspect-ratio: 1;
    z-index: 2;
  }
}
.p-topMv__accessStation {
  font-family: var(--base-font-family);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-topMv__accessStation {
    font-size: calc(15 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topMv__accessStation {
    font-size: calc(11.5 * var(--to-rem));
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
}
.p-topMv__accessWalk {
  margin-top: calc(6 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-topMv__accessWalk {
    margin-top: calc(4 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topMv__accessWalk {
    margin-top: calc(4 * var(--to-rem));
    font-size: calc(13.3 * var(--to-rem));
    letter-spacing: 0.025em;
  }
}
.p-topMv__accessWalkNum {
  font-family: var(--title-font-family);
  font-size: max(32 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-topMv__accessWalkNum {
    font-size: max(24 * var(--to-rem), 12px);
  }
}
@media screen and (max-width: 767px) {
  .p-topMv__accessWalkNum {
    font-family: var(--deco-font-family);
    font-size: calc(22.2 * var(--to-rem));
    font-weight: var(--fw-regular);
  }
}
.p-topMv__copy {
  position: absolute;
  top: 33%;
  left: 9%;
  width: 27.3%;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .p-topMv__copy {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    margin: 0;
  }
}
.p-topMv__copyTag {
  position: relative;
  z-index: 5;
  display: inline-block;
  padding-block: calc(5 * var(--to-rem)) calc(8 * var(--to-rem));
  padding-inline: calc(10 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(5 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(18 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .p-topMv__copyTag {
    padding-block: calc(4 * var(--to-rem)) calc(6 * var(--to-rem));
    padding-inline: calc(8 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-topMv__copyTag {
    position: absolute;
    top: calc(250 * var(--to-rem));
    left: calc(55 * var(--to-rem));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(204 * var(--to-rem));
    height: calc(21 * var(--to-rem));
    padding-block: calc(3 * var(--to-rem)) calc(5 * var(--to-rem));
    padding-inline: calc(7 * var(--to-rem));
    border-radius: calc(3.4 * var(--to-rem));
    font-family: var(--title-font-family);
    font-size: calc(12.4 * var(--to-rem));
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
  }
}
.p-topMv__copyLead {
  position: relative;
  z-index: 4;
  margin-top: calc(9 * var(--to-rem));
  white-space: nowrap;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .p-topMv__copyLead {
    margin-top: calc(8 * var(--to-rem));
    font-size: max(20 * var(--to-rem), 12px);
    line-height: 1.35;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-topMv__copyLead {
    position: absolute;
    top: calc(278 * var(--to-rem));
    left: calc(52 * var(--to-rem));
    z-index: 2;
    margin-top: 0;
    font-size: calc(20.7 * var(--to-rem));
    letter-spacing: 0.1em;
    line-height: 1.3;
    white-space: nowrap;
  }
}
.p-topMv__copyTitle {
  position: relative;
  z-index: 4;
  margin-top: calc(4 * var(--to-rem));
  max-width: calc(386 * var(--to-rem));
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-topMv__copyTitle {
    position: absolute;
    top: calc(300 * var(--to-rem));
    left: calc(55 * var(--to-rem));
    z-index: 2;
    width: calc(266 * var(--to-rem));
    max-width: calc(266 * var(--to-rem));
    margin-top: 0;
  }
}
.p-topMv__copyTitleSvg {
  display: block;
  width: 100%;
  height: auto;
}
.p-topMv__dogs {
  position: absolute;
  top: 64.2%;
  left: 0.2%;
  width: 44.1%;
  aspect-ratio: 635/188;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topMv__dogs {
    position: absolute;
    top: calc(386 * var(--to-rem));
    left: calc(15 * var(--to-rem));
    width: calc(340 * var(--to-rem));
    aspect-ratio: 635/188;
    max-width: none;
    margin-top: 0;
    margin-inline: 0;
    z-index: 1;
  }
}
.p-topMv__dogsImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-topAbout {
  position: relative;
  width: 100%;
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(155 * var(--to-rem)) calc(130 * var(--to-rem));
  background-color: var(--color-bg);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-topAbout {
    padding-block: calc(100 * var(--to-rem)) calc(60 * var(--to-rem));
    overflow: visible;
  }
}
.p-topAbout__inner {
  position: relative;
  display: grid;
  grid-template-columns: calc(653 * var(--to-rem)) calc(610 * var(--to-rem));
  gap: calc(57 * var(--to-rem));
  align-items: start;
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(120 * var(--to-rem)) 0;
}
@media screen and (max-width: 1023px) {
  .p-topAbout__inner {
    gap: calc(30 * var(--to-rem));
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topAbout__inner {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-topAbout__left {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topAbout__left::before {
    content: "";
    position: absolute;
    top: calc(-72 * var(--to-rem));
    left: calc(151 * var(--to-rem));
    width: calc(192 * var(--to-rem));
    aspect-ratio: 192/132;
    background-image: url("../image_about_illust02.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
  }
}
.p-topAbout__verticalLabel {
  position: absolute;
  top: calc(188 * var(--to-rem));
  left: calc(-10 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topAbout__verticalLabel {
    position: static;
    display: block;
    margin-bottom: calc(10 * var(--to-rem));
  }
}
.p-topAbout__verticalLabelText {
  color: var(--color-text);
  font-family: var(--deco-font-family);
  font-size: max(18 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 1.3;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .p-topAbout__verticalLabelText {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: calc(18 * var(--to-rem));
    line-height: 1.3;
  }
}
.p-topAbout__verticalLabelLine {
  width: calc(1 * var(--to-rem));
  height: calc(650 * var(--to-rem));
  margin-top: calc(36 * var(--to-rem));
  background-color: var(--color-line);
}
@media screen and (max-width: 767px) {
  .p-topAbout__verticalLabelLine {
    display: none;
  }
}
.p-topAbout__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: calc(15 * var(--to-rem));
}
.p-topAbout__headingLogo {
  display: block;
  max-width: calc(378 * var(--to-rem));
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-topAbout__headingLogo {
    max-width: calc(192 * var(--to-rem));
  }
}
.p-topAbout__headingSuffix {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(30 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-topAbout__headingSuffix {
    padding-bottom: 0;
    font-size: calc(16 * var(--to-rem));
    letter-spacing: 0.1em;
  }
}
.p-topAbout__body {
  position: relative;
  margin-top: calc(112 * var(--to-rem));
  padding-left: calc(50 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-topAbout__body {
    margin-top: calc(60 * var(--to-rem));
    padding-left: calc(30 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topAbout__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(30 * var(--to-rem));
    width: 100%;
    margin-top: calc(50 * var(--to-rem));
    padding-left: 0;
  }
}
.p-topAbout__lead {
  position: relative;
  width: calc(100% + calc(40 * var(--to-rem)));
  max-width: none;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(36 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-topAbout__lead {
    width: 100%;
    font-size: calc(19 * var(--to-rem));
    font-weight: var(--fw-bold);
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
}
.p-topAbout__leadDeco {
  position: absolute;
  top: calc(-18 * var(--to-rem));
  right: calc(6 * var(--to-rem));
  width: calc(57 * var(--to-rem));
  aspect-ratio: 57/59;
}
@media screen and (max-width: 1023px) {
  .p-topAbout__leadDeco {
    top: calc(-12 * var(--to-rem));
    right: calc(-20 * var(--to-rem));
    width: calc(48 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topAbout__leadDeco {
    display: none;
  }
}
.p-topAbout__leadDecoSvg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-text);
}
.p-topAbout__textArea {
  margin-top: calc(44 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAbout__textArea {
    width: 100%;
    margin-top: 0;
  }
}
.p-topAbout__paragraph {
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-regular);
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-topAbout__paragraph {
    font-size: calc(14 * var(--to-rem));
    font-weight: var(--fw-medium);
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.p-topAbout__paragraph + .p-topAbout__paragraph {
  margin-top: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAbout__paragraph + .p-topAbout__paragraph {
    margin-top: calc(10 * var(--to-rem));
  }
}
.p-topAbout__paragraph strong {
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-topAbout__paragraph strong {
    font-weight: 900;
  }
}
.p-topAbout__btnWrap {
  margin-top: calc(47 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAbout__btnWrap {
    margin-top: 0;
    align-self: center;
  }
}
.p-topAbout__right {
  position: relative;
  margin-top: calc(-84 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAbout__right {
    margin-top: 0;
  }
}
.p-topAbout__rightStage {
  position: relative;
  width: 100%;
  aspect-ratio: 610/911;
}
@media screen and (max-width: 767px) {
  .p-topAbout__rightStage {
    aspect-ratio: auto;
    width: calc(355 * var(--to-rem));
    max-width: calc(355 * var(--to-rem));
    height: calc(414 * var(--to-rem));
    margin-inline: auto;
    overflow: hidden;
  }
}
.p-topAbout__decoIllust {
  position: absolute;
  top: -5.16%;
  left: -48.69%;
  width: 46.72%;
  aspect-ratio: 285/196;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topAbout__decoIllust {
    display: none;
  }
}
.p-topAbout__decoIllustImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-topAbout__main {
  position: absolute;
  top: 10.54%;
  left: 15.57%;
  width: 70.98%;
  aspect-ratio: 433/644;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-topAbout__main {
    position: absolute;
    top: calc(55 * var(--to-rem));
    left: calc(79 * var(--to-rem));
    width: calc(200 * var(--to-rem));
    height: calc(261 * var(--to-rem));
    aspect-ratio: auto;
    max-width: none;
    margin-inline: 0;
    overflow: hidden;
    border-radius: calc(99.77 * var(--to-rem)) calc(99.77 * var(--to-rem)) 0 0;
  }
}
.p-topAbout__mainImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAbout__mainImg {
    border-radius: 0;
    object-position: bottom;
  }
}
.p-topAbout__leonBadge {
  position: absolute;
  top: 35.34%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 27.7%;
  aspect-ratio: 1;
  z-index: 4;
  background-color: var(--color-leon);
  color: var(--color-white);
  border-radius: 50%;
  text-align: center;
  font-family: var(--title-font-family);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-topAbout__leonBadge {
    top: calc(83 * var(--to-rem));
    left: 0;
    right: auto;
    width: calc(97 * var(--to-rem));
    height: calc(97 * var(--to-rem));
    aspect-ratio: auto;
    font-size: calc(18 * var(--to-rem));
    line-height: 1.1;
    letter-spacing: 0;
  }
}
.p-topAbout__leonImg {
  position: absolute;
  top: 49.73%;
  left: 7.05%;
  width: 30.66%;
  aspect-ratio: 187/420;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-topAbout__leonImg {
    top: calc(158 * var(--to-rem));
    left: calc(25 * var(--to-rem));
    right: auto;
    width: calc(107 * var(--to-rem));
    height: calc(241 * var(--to-rem));
    aspect-ratio: auto;
  }
}
.p-topAbout__leonImgPicture {
  display: block;
}
.p-topAbout__leonImgPicture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-topAbout__anjuBadge {
  position: absolute;
  top: 43.03%;
  left: 65.57%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 27.7%;
  aspect-ratio: 1;
  z-index: 4;
  background-color: var(--color-cta);
  color: var(--color-white);
  border-radius: 50%;
  text-align: center;
  font-family: var(--title-font-family);
  font-size: max(20 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-topAbout__anjuBadge {
    top: calc(116 * var(--to-rem));
    left: calc(236 * var(--to-rem));
    right: auto;
    width: calc(97 * var(--to-rem));
    height: calc(97 * var(--to-rem));
    aspect-ratio: auto;
    font-size: calc(18 * var(--to-rem));
    line-height: 1.1;
    letter-spacing: 0;
  }
}
.p-topAbout__anjuImg {
  position: absolute;
  top: 56.09%;
  left: 61.15%;
  width: 33.11%;
  aspect-ratio: 202/400;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-topAbout__anjuImg {
    top: calc(184 * var(--to-rem));
    left: calc(221 * var(--to-rem));
    right: auto;
    width: calc(116 * var(--to-rem));
    height: calc(230 * var(--to-rem));
    aspect-ratio: auto;
  }
}
.p-topAbout__anjuImgPicture {
  display: block;
}
.p-topAbout__anjuImgPicture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-topAbout__handwriting {
  position: absolute;
  top: 0;
  left: 2.79%;
  width: 97.21%;
  aspect-ratio: 593/432;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topAbout__handwriting {
    top: calc(-8 * var(--to-rem));
    left: 50%;
    width: calc(300 * var(--to-rem));
    aspect-ratio: 593/432;
    translate: -50% 0;
  }
}
.p-topAbout__handwritingSvg {
  display: block;
  width: 100%;
  height: 100%;
}
.p-topAbout__pawsDeco {
  position: absolute;
  top: 68.52%;
  left: 36.11%;
  width: 25.97%;
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topAbout__pawsDeco {
    display: none;
  }
}
.p-topAbout__pawsDecoSvg {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.p-topAbout__cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-topAbout__cta {
    position: relative;
    display: block;
    width: calc(336 * var(--to-rem));
    margin: calc(80 * var(--to-rem)) auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-topAbout__cta .c-btn {
    width: calc(336 * var(--to-rem));
    min-width: 0;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-topAbout__ctaBubble {
    position: absolute;
    top: calc(-29 * var(--to-rem));
    left: 50%;
    z-index: 1;
    translate: -50% 0;
    width: calc(178 * var(--to-rem));
    height: calc(34 * var(--to-rem));
    min-height: 0;
    padding-inline: calc(16 * var(--to-rem));
    font-size: max(16 * var(--to-rem), 12px);
    line-height: 1.4;
    letter-spacing: 0;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .p-topAbout__ctaBubble[data-direction=bottom]::after {
    border-width: calc(18 * var(--to-rem)) calc(14 * var(--to-rem)) 0;
  }
}
.p-topService {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  background-color: var(--color-bg);
  background-image: url("../bg_news.webp");
  background-position: center top;
  background-size: calc(2000 * var(--to-rem)) auto;
  background-repeat: no-repeat;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-topService {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-topService::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.p-topService__title,
.p-topService__outer {
  position: relative;
  z-index: 1;
}
.p-topService__outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(60 * var(--to-rem));
  max-width: calc(1440 * var(--to-rem));
  margin-top: calc(60 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(120 * var(--to-rem));
  align-items: stretch;
}
@media screen and (max-width: 1023px) {
  .p-topService__outer {
    gap: calc(40 * var(--to-rem));
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topService__outer {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--to-rem));
    margin-top: calc(40 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-topService__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}
.p-topService__imageWrap {
  width: 100%;
  aspect-ratio: 570/350;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
}
.p-topService__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topService__txt {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topService__txt {
    margin-top: calc(24 * var(--to-rem));
  }
}
.p-topService__heading {
  display: flex;
  align-items: center;
  gap: calc(0 * var(--to-rem));
}
.p-topService__pawIcon {
  display: block;
  flex-shrink: 0;
  width: calc(38 * var(--to-rem));
  aspect-ratio: 38/33;
  color: var(--color-line);
}
@media screen and (max-width: 767px) {
  .p-topService__pawIcon {
    width: calc(30 * var(--to-rem));
  }
}
.p-topService__headingText {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(36 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-topService__headingText {
    font-size: max(24 * var(--to-rem), 12px);
  }
}
.p-topService__body {
  width: 100%;
  margin-top: calc(30 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-topService__body {
    margin-top: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-topService__btnWrap {
  margin-top: auto;
  padding-top: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topService__btnWrap {
    padding-top: calc(24 * var(--to-rem));
  }
}
.p-topNews {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  background-image: url("../bg_news.webp");
  background-position: center top;
  background-size: calc(2000 * var(--to-rem)) auto;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topNews {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-topNews::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.p-topNews > .c-section-title {
  position: relative;
  z-index: 1;
}
.p-topNews__outer {
  position: relative;
  z-index: 1;
  margin-top: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topNews__outer {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-topNews__slider {
  position: relative;
}
.p-topNews__viewport {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
.p-topNews__item {
  height: auto;
}
.p-topNews__card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
  overflow: hidden;
  text-decoration: none;
}
.p-topNews__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 462/278;
  background-color: var(--color-line);
  overflow: hidden;
}
.p-topNews__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topNews__body {
  flex: 1;
  padding-block: calc(24 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
}
.p-topNews__meta {
  display: flex;
  align-items: center;
  gap: calc(20 * var(--to-rem));
}
.p-topNews__date {
  color: #666666;
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
}
.p-topNews__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(10 * var(--to-rem));
  background-color: var(--color-leon);
  color: var(--color-white);
  border-radius: calc(4 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
}
.p-topNews__title {
  margin-top: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  min-height: 3.2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-topNews__btnWrap {
  margin-top: calc(16 * var(--to-rem));
  text-align: center;
}
.p-topNews__btnWrap .c-btn[data-variant=dark] {
  min-width: calc(170 * var(--to-rem));
  box-shadow: none;
}
.p-topNews__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-topNews__nav {
    display: none;
  }
}
.p-topNews__navBtn {
  position: absolute;
  top: calc(207 * var(--to-rem));
  width: calc(40 * var(--to-rem));
  aspect-ratio: 1;
  padding: 0;
  background-color: var(--color-white);
  color: var(--color-sub);
  border: calc(1 * var(--to-rem)) solid var(--color-sub);
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  pointer-events: auto;
  overflow: hidden;
  transition: background-color var(--duration), color var(--duration), opacity var(--duration);
}
@media (any-hover: hover) {
  .p-topNews__navBtn:hover {
    background-color: var(--color-sub);
    color: var(--color-white);
  }
}
.p-topNews__navBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (any-hover: hover) {
  .p-topNews__navBtn:disabled:hover {
    background-color: var(--color-white);
    color: var(--color-sub);
  }
}
.p-topNews__navBtn--prev {
  left: calc(var(--news-card-center, 50%) - var(--news-card-half, 230px) - 20px);
}
.p-topNews__navBtn--next {
  right: auto;
  left: calc(var(--news-card-center, 50%) + var(--news-card-half, 230px) - 20px);
}
.p-topNews__navBtnIcon {
  display: block;
  width: 100%;
  height: 100%;
}
.p-topNews__navBtn--prev .p-topNews__navBtnIcon {
  transform: scaleX(-1);
}
.p-topNews__moreLink {
  position: relative;
  z-index: 1;
  margin-top: calc(60 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topNews__moreLink {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-topGoods {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  background-color: var(--color-bg);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-topGoods {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-topGoods .c-section-title__en {
  top: calc(-90 * var(--to-rem));
  color: #f9f7e5;
}
@media screen and (max-width: 767px) {
  .p-topGoods .c-section-title__en {
    top: calc(-26 * var(--to-rem));
  }
}
.p-topGoods__lead {
  position: relative;
  z-index: 1;
  margin-top: calc(40 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topGoods__lead {
    margin-top: calc(24 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.9;
  }
}
.p-topGoods__outer {
  position: relative;
  z-index: 1;
  max-width: calc(1440 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(272 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-topGoods__outer {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topGoods__outer {
    margin-top: calc(30 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-topGoods__decoDog {
  position: absolute;
  right: calc(490 * var(--to-rem));
  bottom: calc(-330 * var(--to-rem));
  z-index: 2;
  width: calc(820 * var(--to-rem));
  height: auto;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-topGoods__decoDog {
    width: min(560 * var(--to-rem), 48vw);
    bottom: calc(-350 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topGoods__decoDog {
    width: calc(400 * var(--to-rem));
    right: auto;
    left: 50%;
    translate: -50% 0;
    bottom: calc(-220 * var(--to-rem));
  }
}
.p-topGoods__illust {
  position: absolute;
  top: calc(-110 * var(--to-rem));
  right: calc(315 * var(--to-rem));
  width: calc(238 * var(--to-rem));
  aspect-ratio: 238/197;
  z-index: 0;
  opacity: 0.57;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-topGoods__illust {
    top: calc(-80 * var(--to-rem));
    right: calc(60 * var(--to-rem));
    width: calc(180 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topGoods__illust {
    top: calc(-220 * var(--to-rem));
    right: calc(10 * var(--to-rem));
    width: calc(110 * var(--to-rem));
  }
}
.p-topGoods__illust img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
img.p-topGoods__illust {
  height: auto;
  object-fit: contain;
}
.p-topGoods__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(30 * var(--to-rem));
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-topGoods__grid {
    grid-template-columns: 1fr;
    gap: calc(20 * var(--to-rem));
  }
}
.p-topGoods__col {
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topGoods__col {
    gap: calc(20 * var(--to-rem));
  }
}
.p-topGoods__col + .p-topGoods__col {
  margin-top: calc(130 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topGoods__col + .p-topGoods__col {
    margin-top: 0;
  }
}
.p-topGoods__item {
  position: relative;
  width: 100%;
  aspect-ratio: 433/260;
}
.p-topGoods__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: calc(20 * var(--to-rem));
  background-color: var(--color-line);
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  transition: transform var(--duration), box-shadow var(--duration);
}
.p-topGoods__trigger:hover {
  transform: translateY(calc(-4 * var(--to-rem)));
  box-shadow: 0 calc(10 * var(--to-rem)) calc(20 * var(--to-rem)) rgba(0, 0, 0, 0.12);
}
.p-topGoods__trigger:focus-visible {
  outline: calc(3 * var(--to-rem)) solid var(--color-cta);
  outline-offset: calc(2 * var(--to-rem));
}
.p-topGoods__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration);
}
.p-topGoods__trigger:hover .p-topGoods__img {
  transform: scale(1.04);
}
.p-topGoodsModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(20 * var(--to-rem));
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration), visibility var(--duration);
}
.p-topGoodsModal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.p-topGoodsModal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(49, 47, 43, 0.8);
}
.p-topGoodsModal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(720 * var(--to-rem));
  padding: calc(60 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(20 * var(--to-rem));
  box-shadow: 0 calc(4 * var(--to-rem)) calc(20 * var(--to-rem)) rgba(68, 181, 194, 0.2);
}
@media screen and (max-width: 767px) {
  .p-topGoodsModal__dialog {
    max-width: calc(640 * var(--to-rem));
    padding: calc(40 * var(--to-rem)) calc(24 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-topGoodsModal__close {
  position: absolute;
  top: calc(30 * var(--to-rem));
  right: calc(30 * var(--to-rem));
  width: calc(25 * var(--to-rem));
  height: calc(25 * var(--to-rem));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  appearance: none;
  transition: opacity var(--duration);
}
.p-topGoodsModal__close:hover {
  opacity: 0.7;
}
.p-topGoodsModal__close svg {
  display: block;
  width: 100%;
  height: 100%;
}
.p-topGoodsModal__imgWrap {
  width: 100%;
  max-width: calc(600 * var(--to-rem));
  margin-inline: auto;
  aspect-ratio: 433/260;
  background-color: var(--color-line);
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
}
.p-topGoodsModal__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topGoodsModal__txt {
  margin-top: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topGoodsModal__txt {
    margin-top: calc(20 * var(--to-rem));
  }
}
.p-topGoodsModal__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4 * var(--to-rem));
}
.p-topGoodsModal__pawIcon {
  flex-shrink: 0;
  width: calc(38 * var(--to-rem));
  aspect-ratio: 38/33;
  color: var(--color-line);
}
@media screen and (max-width: 767px) {
  .p-topGoodsModal__pawIcon {
    width: calc(28 * var(--to-rem));
  }
}
.p-topGoodsModal__title {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(26 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-topGoodsModal__title {
    font-size: max(20 * var(--to-rem), 12px);
  }
}
.p-topGoodsModal__desc {
  margin-top: calc(30 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-topGoodsModal__desc {
    margin-top: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.7;
  }
}
.p-topGoodsModal__nav {
  position: absolute;
  top: calc(271 * var(--to-rem));
  right: calc(-22 * var(--to-rem));
  left: calc(-22 * var(--to-rem));
  z-index: 1;
  height: calc(45 * var(--to-rem));
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topGoodsModal__nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: calc(24 * var(--to-rem));
    height: auto;
    pointer-events: auto;
  }
}
.p-topGoodsModal__navBtn {
  position: absolute;
  top: 0;
  width: calc(45 * var(--to-rem));
  height: calc(45 * var(--to-rem));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-cta);
  cursor: pointer;
  appearance: none;
  transition: transform var(--duration);
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-topGoodsModal__navBtn {
    position: static;
  }
}
.p-topGoodsModal__navBtn:hover {
  transform: translateY(calc(-2 * var(--to-rem)));
}
.p-topGoodsModal__navBtn svg {
  display: block;
  width: 100%;
  height: 100%;
}
.p-topGoodsModal__navBtn--next svg {
  transform: scaleX(-1);
}
.p-topGoodsModal__navBtn--prev {
  left: 0;
}
.p-topGoodsModal__navBtn--next {
  right: 0;
}
body.is-goods-modal-open {
  overflow: hidden;
}
.p-topAccess {
  padding-block: calc(130 * var(--to-rem));
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-topAccess {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-topAccess__inner {
  max-width: calc(1440 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(170 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-topAccess__inner {
    padding-inline: calc(60 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topAccess__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-topAccess .c-section-title {
  justify-items: start;
  text-align: left;
}
.p-topAccess .c-section-title__en {
  top: calc(-90 * var(--to-rem));
  left: 0;
  translate: 0 0;
  color: #f9f7e5;
}
@media screen and (max-width: 767px) {
  .p-topAccess .c-section-title__en {
    top: calc(-26 * var(--to-rem));
  }
}
.p-topAccess__outer {
  display: grid;
  grid-template-columns: minmax(calc(380 * var(--to-rem)), calc(500 * var(--to-rem))) 1fr;
  gap: calc(50 * var(--to-rem));
  margin-top: calc(60 * var(--to-rem));
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-topAccess__outer {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--to-rem));
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-topAccess__info {
  position: relative;
  min-height: calc(474 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAccess__info {
    min-height: 0;
  }
}
.p-topAccess__address {
  position: relative;
  z-index: 2;
}
.p-topAccess__logoEn {
  display: block;
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
  letter-spacing: 0;
}
.p-topAccess__logoImg {
  display: block;
  width: 100%;
  max-width: calc(300 * var(--to-rem));
  height: auto;
  margin-top: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAccess__logoImg {
    max-width: calc(260 * var(--to-rem));
  }
}
.p-topAccess__addressList {
  margin-top: calc(20 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .p-topAccess__addressList {
    font-size: calc(15 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topAccess__addressList {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-topAccess__addressItem {
  margin-top: calc(12 * var(--to-rem));
}
.p-topAccess__addressItem:first-child {
  margin-top: 0;
}
.p-topAccess__tel {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration);
}
@media (any-hover: hover) {
  .p-topAccess__tel:hover {
    color: var(--color-leon);
  }
}
.p-topAccess__list {
  position: relative;
  z-index: 2;
  margin-top: calc(100 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAccess__list {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-topAccess__item {
  margin-top: calc(30 * var(--to-rem));
}
.p-topAccess__item:first-child {
  margin-top: 0;
}
.p-topAccess__itemHead {
  display: flex;
  align-items: center;
  gap: calc(6 * var(--to-rem));
}
.p-topAccess__itemIcon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: calc(25 * var(--to-rem));
  aspect-ratio: 1;
  color: var(--color-line);
  rotate: 15deg;
}
.p-topAccess__itemIcon svg {
  display: block;
  width: 100%;
  height: auto;
}
.p-topAccess__insta {
  position: absolute;
  top: calc(20 * var(--to-rem));
  left: calc(229 * var(--to-rem));
  z-index: 1;
  display: block;
  width: calc(311 * var(--to-rem));
  height: calc(286 * var(--to-rem));
  text-decoration: none;
}
.p-topAccess__insta:focus-visible {
  outline: calc(2 * var(--to-rem)) solid var(--color-cta);
  outline-offset: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topAccess__insta {
    display: none;
  }
}
.p-topAccess__instaDeco {
  position: absolute;
  top: 0;
  left: calc(4 * var(--to-rem));
  width: calc(298 * var(--to-rem));
  height: calc(286 * var(--to-rem));
  overflow: hidden;
  background-image: url("../image_access_insta_deco.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-topAccess__instaText {
  position: absolute;
  top: calc(145 * var(--to-rem));
  left: calc(57 * var(--to-rem));
  z-index: 2;
  display: grid;
  place-items: center;
  width: calc(191 * var(--to-rem));
  height: calc(54 * var(--to-rem));
  margin: 0;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.3;
  text-align: center;
  border-radius: calc(10 * var(--to-rem));
  transition: color var(--duration);
}
.p-topAccess__instaLink {
  position: absolute;
  top: calc(206 * var(--to-rem));
  left: calc(51 * var(--to-rem));
  z-index: 2;
  display: flex;
  align-items: center;
  gap: calc(10 * var(--to-rem));
  width: calc(204 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  margin: 0;
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  transition: color var(--duration);
}
.p-topAccess__instaIcon {
  display: block;
  flex-shrink: 0;
  width: calc(50 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  object-fit: contain;
}
.p-topAccess__instaLabel {
  display: block;
}
.p-topAccess__insta:hover .p-topAccess__instaLink,
.p-topAccess__insta:focus-visible .p-topAccess__instaLink {
  color: var(--color-cta);
}
.p-topAccess__instaDog {
  position: absolute;
  z-index: 3;
  display: block;
  object-fit: contain;
}
.p-topAccess__instaDog--leon {
  top: calc(150 * var(--to-rem));
  left: 0;
  width: calc(58 * var(--to-rem));
  height: calc(130 * var(--to-rem));
}
.p-topAccess__instaDog--anju {
  top: calc(157 * var(--to-rem));
  left: calc(249 * var(--to-rem));
  width: calc(62 * var(--to-rem));
  height: calc(123 * var(--to-rem));
}
.p-topAccess__itemTitle {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0;
}
.p-topAccess__itemBody {
  margin-top: calc(4 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .p-topAccess__itemBody {
    font-size: calc(15 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topAccess__itemBody {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-topAccess__mapWrap {
  position: relative;
  width: 100%;
  aspect-ratio: 550/474;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
  background-color: var(--color-line);
}
@media screen and (max-width: 767px) {
  .p-topAccess__mapWrap {
    aspect-ratio: 335/280;
  }
}
.p-topAccess__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.p-topContact {
  padding-block: calc(60 * var(--to-rem)) calc(100 * var(--to-rem));
  padding-inline: calc(170 * var(--to-rem));
  background-color: var(--color-bg);
  overflow: visible;
}
@media screen and (max-width: 1023px) {
  .p-topContact {
    padding-inline: calc(60 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topContact {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-topContact__inner {
  position: relative;
  max-width: calc(896 * var(--to-rem));
  margin-inline: auto;
}
.p-topContact__box {
  position: relative;
  z-index: 1;
  padding-block: calc(50 * var(--to-rem));
  padding-inline: 0;
  background-color: #e68262;
  border-radius: calc(20 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topContact__box {
    padding-block: calc(60 * var(--to-rem)) calc(50 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
    border-radius: calc(16 * var(--to-rem));
  }
}
.p-topContact__bubble {
  position: absolute;
  top: calc(-26 * var(--to-rem));
  left: 50%;
  z-index: 2;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-topContact__bubble {
    top: calc(-22 * var(--to-rem));
    width: calc(100% - calc(40 * var(--to-rem)));
  }
}
.p-topContact__bubble .c-bubble {
  min-height: calc(50 * var(--to-rem));
  width: calc(399 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topContact__bubble .c-bubble {
    display: flex;
    width: 100%;
    padding-block: calc(6 * var(--to-rem));
    padding-inline: calc(8 * var(--to-rem));
    font-size: max(16 * var(--to-rem), 12px);
    line-height: 1.4;
    text-align: center;
    white-space: normal;
  }
  .p-topContact__row .c-btn[data-variant=mail],
  .p-topContact__row .c-btn[data-variant=line] {
    padding-inline: calc(16 * var(--to-rem));
    font-size: max(16 * var(--to-rem), 12px);
  }
}
.p-topContact__title {
  color: var(--color-white);
  font-family: var(--title-font-family);
  font-size: max(40 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topContact__title {
    font-size: max(24 * var(--to-rem), 12px);
  }
}
.p-topContact__lead {
  width: calc(100% + calc(141 * var(--to-rem)));
  margin-left: calc(-70.5 * var(--to-rem));
  margin-top: calc(12 * var(--to-rem));
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topContact__lead {
    width: auto;
    margin-left: 0;
    margin-top: calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    text-align: left;
  }
}
.p-topContact__buttons {
  width: calc(662 * var(--to-rem));
  margin: calc(30 * var(--to-rem)) auto 0;
}
@media screen and (max-width: 767px) {
  .p-topContact__buttons {
    width: 100%;
    margin-top: calc(28 * var(--to-rem));
  }
}
.p-topContact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topContact__row {
    grid-template-columns: 1fr;
    gap: calc(12 * var(--to-rem));
  }
}
.p-topContact__button {
  display: inline-flex;
}
.p-topContact__button .c-btn {
  width: 100%;
}
.p-topContact__buttonTel {
  display: flex;
  justify-content: center;
  margin-top: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topContact__buttonTel {
    margin-top: calc(12 * var(--to-rem));
  }
}
.p-topContact__buttonTel .p-topContact__button {
  width: calc(316 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-topContact__buttonTel .p-topContact__button {
    width: 100%;
  }
}
.p-topContact__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(8 * var(--to-rem)) calc(40 * var(--to-rem));
  margin-top: calc(30 * var(--to-rem));
  color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: max(18 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-topContact__info {
    flex-direction: column;
    gap: calc(6 * var(--to-rem));
    margin-top: calc(24 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    text-align: center;
  }
}
.p-topContact__infoItem {
  margin: 0;
}
.p-topContact__dogs {
  position: absolute;
  top: calc(-50 * var(--to-rem));
  right: calc(-50 * var(--to-rem));
  z-index: 3;
  width: calc(243 * var(--to-rem));
  aspect-ratio: 243/247.374;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-topContact__dogs {
    top: calc(-30 * var(--to-rem));
    right: calc(-70 * var(--to-rem));
    width: calc(160 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topContact__dogs {
    top: auto;
    right: calc(-30 * var(--to-rem));
    bottom: calc(-30 * var(--to-rem));
    width: calc(110 * var(--to-rem));
  }
}
.p-topContact__dogsImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-topContact__paws {
  position: absolute;
  top: calc(372 * var(--to-rem));
  left: calc(-238 * var(--to-rem));
  width: calc(217 * var(--to-rem));
  aspect-ratio: 217/192;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-topContact__paws {
    left: calc(-252 * var(--to-rem));
    width: calc(180 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-topContact__paws {
    display: none;
  }
}
.p-topContact__pawsImg {
  display: block;
  width: 100%;
  height: 100%;
}
.p-aboutHero {
  position: relative;
  padding-block: calc(107 * var(--to-rem)) calc(87 * var(--to-rem));
  text-align: center;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-aboutHero {
    padding-block: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-aboutHero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.p-aboutHero__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-aboutHero__bgOverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.p-aboutHappiness {
  padding-block: calc(130 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .p-aboutHappiness {
    padding-block: calc(64 * var(--to-rem)) 0;
  }
}
.p-aboutHappiness__inner {
  text-align: center;
}
.p-aboutHappiness__title {
  color: var(--color-text);
}
.p-aboutHappiness__en {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-aboutHappiness__en {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-aboutHappiness__ja {
  margin: calc(16 * var(--to-rem)) 0 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(36 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-aboutHappiness__ja {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-aboutHappiness__body {
  display: flex;
  gap: calc(60 * var(--to-rem));
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-top: calc(50 * var(--to-rem));
  padding-inline: calc(170 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-aboutHappiness__body {
    gap: calc(40 * var(--to-rem));
    padding-inline: calc(80 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutHappiness__body {
    flex-direction: column;
    align-items: center;
    margin-top: calc(32 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutHappiness__media {
  flex-shrink: 0;
  width: 100%;
  max-width: calc(550 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
  aspect-ratio: 550/387;
}
@media screen and (max-width: 1023px) {
  .p-aboutHappiness__media {
    max-width: calc(440 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutHappiness__media {
    max-width: calc(420 * var(--to-rem));
  }
}
.p-aboutHappiness__mediaImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-aboutHappiness__txt {
  flex: 1;
  min-width: 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-black);
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-aboutHappiness__txt {
    width: 100%;
    font-size: calc(16 * var(--to-rem));
  }
}
.p-aboutHappiness__paragraph {
  margin: 0;
}
.p-aboutHappiness__paragraph + .p-aboutHappiness__paragraph {
  margin-top: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutHappiness__paragraph + .p-aboutHappiness__paragraph {
    margin-top: calc(20 * var(--to-rem));
  }
}
.p-aboutConcern {
  padding-block: calc(130 * var(--to-rem)) 0;
  padding-inline: calc(170 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-aboutConcern {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutConcern {
    padding-block: calc(64 * var(--to-rem)) 0;
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutConcern__inner {
  margin-inline: auto;
}
.p-aboutConcern__box {
  padding-block: calc(60 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  background-color: var(--color-line);
  border-radius: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-aboutConcern__box {
    padding-block: calc(40 * var(--to-rem)) calc(48 * var(--to-rem));
    border-radius: calc(24 * var(--to-rem));
  }
}
.p-aboutConcern__title {
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(36 * var(--to-rem));
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutConcern__title {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-aboutConcern__list {
  display: grid;
  grid-template-columns: repeat(4, calc(200 * var(--to-rem)));
  justify-content: center;
  column-gap: calc(50 * var(--to-rem));
  margin-top: calc(40 * var(--to-rem));
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-aboutConcern__list {
    column-gap: calc(30 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutConcern__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: calc(24 * var(--to-rem));
    row-gap: calc(24 * var(--to-rem));
    width: 100%;
    max-width: calc(420 * var(--to-rem));
    margin-inline: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-aboutConcern__list {
    grid-template-columns: 1fr;
    max-width: calc(260 * var(--to-rem));
  }
}
.p-aboutConcern__item {
  text-align: center;
}
.p-aboutConcern__illust {
  width: 100%;
  max-width: calc(200 * var(--to-rem));
  margin-inline: auto;
  aspect-ratio: 200/200;
}
.p-aboutConcern__illustImg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-aboutConcern__text {
  margin: calc(10 * var(--to-rem)) 0 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-black);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-aboutConcern__text {
    font-size: calc(14 * var(--to-rem));
    text-align: center;
  }
}
.p-aboutMission {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  padding-inline: calc(272 * var(--to-rem));
  isolation: isolate;
}
@media screen and (max-width: 1023px) {
  .p-aboutMission {
    padding-inline: calc(80 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutMission {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutMission__paws {
  position: absolute;
  top: calc(280 * var(--to-rem));
  inset-inline-end: calc(130 * var(--to-rem));
  z-index: -1;
  width: calc(350 * var(--to-rem));
  opacity: 0.6;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-aboutMission__paws {
    display: none;
  }
}
.p-aboutMission__pawsImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-aboutMission__inner {
  margin-inline: auto;
  text-align: center;
}
.p-aboutMission__title {
  color: var(--color-text);
}
.p-aboutMission__en {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-aboutMission__en {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-aboutMission__ja {
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.p-aboutMission__jaText {
  font-size: calc(36 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutMission__jaText {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-aboutMission__jaNum {
  font-size: calc(54 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutMission__jaNum {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-aboutMission__intro {
  margin-top: calc(50 * var(--to-rem));
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutMission__intro {
    margin-top: calc(32 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
    text-align: start;
  }
}
.p-aboutMission__introParagraph {
  margin: 0;
}
.p-aboutMission__list {
  width: 100%;
  max-width: calc(895 * var(--to-rem));
  margin-top: calc(50 * var(--to-rem));
  margin-inline: auto;
  padding: 0;
  list-style: none;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-aboutMission__list {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-aboutMission__item {
  display: flex;
  gap: calc(30 * var(--to-rem));
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-aboutMission__item {
    flex-direction: column;
    align-items: stretch;
  }
}
.p-aboutMission__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-aboutMission__item--reverse {
    flex-direction: column;
  }
}
.p-aboutMission__item + .p-aboutMission__item {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutMission__item + .p-aboutMission__item {
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-aboutMission__media {
  flex-shrink: 0;
  width: 100%;
  max-width: calc(447 * var(--to-rem));
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
  aspect-ratio: 447/360;
}
@media screen and (max-width: 1023px) {
  .p-aboutMission__media {
    max-width: calc(360 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutMission__media {
    max-width: calc(420 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-aboutMission__mediaImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-aboutMission__txt {
  position: relative;
  flex: 1;
  min-width: 0;
  isolation: isolate;
}
.p-aboutMission__numPaw {
  position: absolute;
  top: calc(-10 * var(--to-rem));
  left: calc(-18 * var(--to-rem));
  width: calc(80 * var(--to-rem));
  aspect-ratio: 1;
  transform: rotate(72.36deg);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-aboutMission__numPaw {
    width: calc(60 * var(--to-rem));
    top: calc(-8 * var(--to-rem));
    left: calc(-12 * var(--to-rem));
  }
}
.p-aboutMission__numPawImg {
  display: block;
  width: 100%;
  height: 100%;
}
.p-aboutMission__num {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(70 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0.05em;
  color: #aa9f94;
}
@media screen and (max-width: 767px) {
  .p-aboutMission__num {
    font-size: calc(48 * var(--to-rem));
  }
}
.p-aboutMission__itemTitle {
  margin: calc(20 * var(--to-rem)) 0 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(26 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutMission__itemTitle {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(20 * var(--to-rem));
  }
}
.p-aboutMission__body {
  margin: calc(20 * var(--to-rem)) 0 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutMission__body {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
.p-aboutMission__close {
  margin-top: calc(50 * var(--to-rem));
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutMission__close {
    margin-top: calc(40 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
    text-align: start;
  }
}
.p-aboutMission__closeLead,
.p-aboutMission__closeBody {
  margin: 0;
}
.p-aboutMission__closeBody {
  margin-top: calc(34 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutMission__closeBody {
    margin-top: calc(20 * var(--to-rem));
  }
}
.p-aboutWood {
  position: relative;
  isolation: isolate;
}
.p-aboutWood__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.p-aboutWood__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 253, 0.2);
}
.p-aboutWood__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-aboutStaff {
  padding-block: calc(130 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .p-aboutStaff {
    padding-block: calc(64 * var(--to-rem)) 0;
  }
}
.p-aboutStaff__inner {
  position: relative;
  text-align: center;
}
.p-aboutStaff__title {
  color: var(--color-text);
}
.p-aboutStaff__en {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-aboutStaff__en {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-aboutStaff__ja {
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(36 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-aboutStaff__ja {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-aboutStaff__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: calc(40 * var(--to-rem)) calc(30 * var(--to-rem));
  width: 100%;
  margin-top: calc(40 * var(--to-rem));
  padding-inline: calc(120 * var(--to-rem));
  list-style: none;
  text-align: start;
}
@media screen and (max-width: 1023px) {
  .p-aboutStaff__list {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutStaff__list {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutStaff__card {
  flex: 0 0 calc((100% - calc(60 * var(--to-rem))) / 3 - 1px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 0 calc(30 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutStaff__card {
    flex: 0 0 auto;
    width: 100%;
    padding-block: 0 calc(24 * var(--to-rem));
  }
}
.p-aboutStaff__media {
  width: calc(100% + calc(40 * var(--to-rem)));
  margin-inline: calc(-20 * var(--to-rem));
  border-radius: calc(10 * var(--to-rem)) calc(10 * var(--to-rem)) 0 0;
  overflow: hidden;
  aspect-ratio: 380/244;
  background-color: var(--color-gray);
}
.p-aboutStaff__media--empty {
  background: var(--color-gray);
}
.p-aboutStaff__mediaImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-aboutStaff__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 * var(--to-rem));
  width: 100%;
  margin-top: calc(20 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-aboutStaff__name--compact {
    gap: 0;
  }
}
.p-aboutStaff__namePaw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(34.48 * var(--to-rem));
  aspect-ratio: 1;
  flex-shrink: 0;
}
.p-aboutStaff__namePawImg {
  display: block;
  width: calc(25 * var(--to-rem));
  height: calc(25 * var(--to-rem));
  object-fit: contain;
  transform: rotate(57.78deg);
}
.p-aboutStaff__nameText {
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.2;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-aboutStaff__nameText {
    font-size: calc(18 * var(--to-rem));
    white-space: normal;
  }
}
.p-aboutStaff__nameText--compact {
  font-size: calc(18 * var(--to-rem));
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-aboutStaff__nameText--compact {
    font-size: calc(16 * var(--to-rem));
    letter-spacing: normal;
  }
}
.p-aboutStaff__block {
  width: 100%;
  margin-top: calc(20 * var(--to-rem));
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutStaff__block {
    margin-top: calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-aboutStaff__blockTitle {
  margin: 0;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: var(--color-leon);
}
.p-aboutStaff__blockBody {
  margin: calc(4 * var(--to-rem)) 0 0;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.p-aboutStaff__block--message .p-aboutStaff__blockBody {
  text-align: justify;
}
.p-aboutSchnauzer {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-aboutSchnauzer__paws {
  position: absolute;
  top: calc(78 * var(--to-rem));
  inset-inline-end: calc(406 * var(--to-rem));
  z-index: -1;
  width: calc(120 * var(--to-rem));
  opacity: 0.6;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-aboutSchnauzer__paws {
    inset-inline-end: calc(180 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__paws {
    top: calc(40 * var(--to-rem));
    inset-inline-end: calc(20 * var(--to-rem));
    width: calc(80 * var(--to-rem));
  }
}
.p-aboutSchnauzer__pawsImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-aboutSchnauzer__inner {
  text-align: center;
}
.p-aboutSchnauzer__title {
  color: var(--color-text);
}
.p-aboutSchnauzer__en {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__en {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-aboutSchnauzer__ja {
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(36 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__ja {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-aboutSchnauzer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  column-gap: calc(30 * var(--to-rem));
  width: 100%;
  margin-top: calc(40 * var(--to-rem));
  padding-inline: calc(272 * var(--to-rem));
  list-style: none;
  text-align: start;
}
@media screen and (max-width: 1023px) {
  .p-aboutSchnauzer__list {
    padding-inline: calc(80 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__list {
    grid-template-columns: 1fr;
    row-gap: calc(56 * var(--to-rem));
    margin-top: calc(32 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-aboutSchnauzer__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 0 calc(30 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__card {
    padding-block: 0 calc(24 * var(--to-rem));
  }
}
.p-aboutSchnauzer__badge {
  position: absolute;
  inset-block-start: calc(-15 * var(--to-rem));
  inset-inline-start: calc(-15 * var(--to-rem));
  z-index: 2;
  display: block;
  width: calc(100 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__badge {
    width: calc(72 * var(--to-rem));
  }
}
.p-aboutSchnauzer__media {
  width: calc(100% + calc(40 * var(--to-rem)));
  margin-inline: calc(-20 * var(--to-rem));
  border-radius: calc(10 * var(--to-rem)) calc(10 * var(--to-rem)) 0 0;
  overflow: hidden;
  aspect-ratio: 433/264;
}
.p-aboutSchnauzer__mediaImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-aboutSchnauzer__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  text-align: center;
}
.p-aboutSchnauzer__namePaw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(34.48 * var(--to-rem));
  aspect-ratio: 1;
  flex-shrink: 0;
}
.p-aboutSchnauzer__namePawImg {
  display: block;
  width: calc(25 * var(--to-rem));
  height: calc(25 * var(--to-rem));
  object-fit: contain;
  transform: rotate(57.78deg);
}
.p-aboutSchnauzer__nameText {
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__nameText {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-aboutSchnauzer__meta {
  margin: calc(20 * var(--to-rem)) 0 0;
  width: 100%;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__meta {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-aboutSchnauzer__block {
  width: 100%;
  margin-top: calc(20 * var(--to-rem));
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-aboutSchnauzer__block {
    margin-top: calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-aboutSchnauzer__blockTitle {
  margin: 0;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: var(--color-leon);
}
.p-aboutSchnauzer__blockBody {
  margin: calc(4 * var(--to-rem)) 0 0;
  line-height: 1.6;
  text-align: justify;
}
.p-serviceHero {
  position: relative;
  padding-block: calc(107 * var(--to-rem)) calc(87 * var(--to-rem));
  text-align: center;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-serviceHero {
    padding-block: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-serviceHero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.p-serviceHero__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-serviceHero__bgOverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.p-serviceReason {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  padding-inline: calc(170 * var(--to-rem));
  isolation: isolate;
}
@media screen and (max-width: 1023px) {
  .p-serviceReason {
    padding-inline: calc(80 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-serviceReason {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-serviceReason__paws {
  position: absolute;
  top: calc(-56 * var(--to-rem));
  inset-inline-end: calc(176 * var(--to-rem));
  z-index: -1;
  width: calc(350 * var(--to-rem));
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-serviceReason__paws {
    width: calc(220 * var(--to-rem));
    top: calc(-20 * var(--to-rem));
  }
}
.p-serviceReason__pawsImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-serviceReason__inner {
  text-align: center;
}
.p-serviceReason__title {
  color: var(--color-text);
}
.p-serviceReason__en {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-serviceReason__en {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-serviceReason__ja {
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(36 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-serviceReason__ja {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-serviceReason__list {
  width: 100%;
  max-width: calc(1100 * var(--to-rem));
  margin-top: calc(50 * var(--to-rem));
  margin-inline: auto;
  padding: 0;
  list-style: none;
  text-align: start;
}
.p-serviceReason__item {
  position: relative;
  width: 100%;
}
.p-serviceReason__item + .p-serviceReason__item {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceReason__item + .p-serviceReason__item {
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-serviceReason__num {
  position: relative;
  z-index: 2;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(190 * var(--to-rem));
  line-height: 1;
  letter-spacing: -0.05em;
  color: #aa9f94;
}
@media screen and (max-width: 767px) {
  .p-serviceReason__num {
    font-size: calc(56 * var(--to-rem));
  }
}
.p-serviceReason__numZero {
  position: relative;
  display: inline-block;
}
.p-serviceReason__numberPaw img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
}
.p-serviceReason__photoImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-serviceReason__heading {
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(26 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-serviceReason__heading {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-serviceReason__desc {
  margin: calc(20 * var(--to-rem)) 0 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-serviceReason__desc {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
@media screen and (min-width: 768px) {
  .p-serviceReason__frame {
    position: absolute;
    top: calc(30 * var(--to-rem));
    z-index: 1;
    background-color: var(--color-bg);
    border: calc(3 * var(--to-rem)) solid var(--color-line);
    border-radius: calc(20 * var(--to-rem));
  }
  .p-serviceReason__numberBox {
    position: absolute;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
  }
  .p-serviceReason__numberPaw {
    position: absolute;
    top: 47%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: calc(48 * var(--to-rem));
    height: calc(42 * var(--to-rem));
    pointer-events: none;
  }
  .p-serviceReason__photo {
    position: absolute;
    top: calc(60 * var(--to-rem));
    z-index: 3;
    width: calc(400 * var(--to-rem));
    aspect-ratio: 400/272;
    border-radius: calc(10 * var(--to-rem));
    overflow: hidden;
  }
  .p-serviceReason__txt {
    position: absolute;
    z-index: 2;
  }
  .p-serviceReason__item--01 {
    height: calc(332 * var(--to-rem));
  }
  .p-serviceReason__item--01 .p-serviceReason__frame {
    left: 0;
    width: calc(754 * var(--to-rem));
    height: calc(250 * var(--to-rem));
  }
  .p-serviceReason__item--01 .p-serviceReason__numberBox {
    left: calc(-3 * var(--to-rem));
    width: calc(157 * var(--to-rem));
    height: calc(143 * var(--to-rem));
  }
  .p-serviceReason__item--01 .p-serviceReason__photo {
    left: calc(700 * var(--to-rem));
  }
  .p-serviceReason__item--01 .p-serviceReason__txt {
    top: calc(69 * var(--to-rem));
    left: calc(184 * var(--to-rem));
    width: calc(480 * var(--to-rem));
  }
  .p-serviceReason__item--02 {
    height: calc(332 * var(--to-rem));
  }
  .p-serviceReason__item--02 .p-serviceReason__frame {
    inset-inline-end: 0;
    width: calc(755 * var(--to-rem));
    height: calc(270 * var(--to-rem));
  }
  .p-serviceReason__item--02 .p-serviceReason__numberBox {
    right: calc(-3 * var(--to-rem));
    width: calc(173 * var(--to-rem));
    height: calc(143 * var(--to-rem));
  }
  .p-serviceReason__item--02 .p-serviceReason__photo {
    left: 0;
  }
  .p-serviceReason__item--02 .p-serviceReason__txt {
    top: calc(33 * var(--to-rem));
    left: calc(85 * var(--to-rem));
    width: calc(549 * var(--to-rem));
  }
  .p-serviceReason__item--03 {
    height: calc(340 * var(--to-rem));
  }
  .p-serviceReason__item--03 .p-serviceReason__frame {
    left: 0;
    width: calc(754 * var(--to-rem));
    height: calc(270 * var(--to-rem));
  }
  .p-serviceReason__item--03 .p-serviceReason__numberBox {
    left: calc(-3 * var(--to-rem));
    width: calc(173 * var(--to-rem));
    height: calc(143 * var(--to-rem));
  }
  .p-serviceReason__item--03 .p-serviceReason__photo {
    top: calc(68 * var(--to-rem));
    left: calc(701 * var(--to-rem));
  }
  .p-serviceReason__item--03 .p-serviceReason__txt {
    top: calc(48 * var(--to-rem));
    left: calc(189 * var(--to-rem));
    width: calc(480 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-serviceReason__item {
    position: relative;
    display: flow-root;
  }
  .p-serviceReason__numberBox {
    position: absolute;
    top: 0;
    left: calc(16 * var(--to-rem));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(76 * var(--to-rem));
    height: calc(50 * var(--to-rem));
    padding-inline: calc(6 * var(--to-rem));
    background-color: var(--color-bg);
  }
  .p-serviceReason__numberPaw {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: calc(22 * var(--to-rem));
    height: calc(20 * var(--to-rem));
    pointer-events: none;
  }
  .p-serviceReason__item--02 .p-serviceReason__numberBox {
    left: auto;
    right: calc(16 * var(--to-rem));
  }
  .p-serviceReason__frame {
    position: relative;
    z-index: 1;
    margin-top: calc(25 * var(--to-rem));
    padding-block: calc(40 * var(--to-rem)) calc(24 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    background-color: var(--color-bg);
    border: calc(2 * var(--to-rem)) solid var(--color-line);
    border-radius: calc(16 * var(--to-rem));
  }
  .p-serviceReason__txt {
    position: static;
  }
  .p-serviceReason__photo {
    position: relative;
    width: 100%;
    margin-top: calc(20 * var(--to-rem));
    border-radius: calc(10 * var(--to-rem));
    overflow: hidden;
    aspect-ratio: 400/272;
  }
  .p-serviceReason__heading {
    font-size: calc(18 * var(--to-rem));
    letter-spacing: 0;
    text-autospace: no-autospace;
  }
  .p-serviceReason__num {
    font-size: calc(70 * var(--to-rem));
    letter-spacing: -0.04em;
  }
}
.p-serviceDaycare {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  padding-inline: calc(170 * var(--to-rem));
  isolation: isolate;
}
@media screen and (max-width: 1023px) {
  .p-serviceDaycare {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-serviceDaycare__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.p-serviceDaycare__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-serviceDaycare__bgOverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 253, 0.2);
}
.p-serviceDaycare__inner {
  text-align: center;
}
.p-serviceDaycare__title {
  color: var(--color-text);
}
.p-serviceDaycare__en {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__en {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-serviceDaycare__ja {
  margin: 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(36 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__ja {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-serviceDaycare__block {
  margin-top: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__block {
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-serviceDaycare__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4 * var(--to-rem));
  margin: 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(24 * var(--to-rem));
  line-height: 1.3;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__subtitle {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-serviceDaycare__pawIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(33 * var(--to-rem));
  height: calc(32 * var(--to-rem));
  flex-shrink: 0;
}
.p-serviceDaycare__pawIcon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-serviceDaycare__lead {
  width: 100%;
  max-width: calc(894 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  margin-inline: auto;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__lead {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-serviceDaycare__lead p {
  margin: 0;
}
.p-serviceDaycare__tableScroll {
  width: 100%;
  max-width: calc(896 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__tableScroll {
    max-width: none;
    margin-inline: calc(-20 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.p-serviceDaycare__table {
  width: 100%;
  background-color: var(--color-white);
  border: calc(1 * var(--to-rem)) solid var(--color-mv);
  border-collapse: collapse;
  border-radius: calc(10 * var(--to-rem));
  overflow: hidden;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__table {
    min-width: calc(720 * var(--to-rem));
  }
}
.p-serviceDaycare__th {
  padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
  background-color: var(--color-line);
  border-right: calc(1 * var(--to-rem)) solid var(--color-sub);
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__th {
    font-size: calc(14 * var(--to-rem));
    padding: calc(8 * var(--to-rem)) calc(12 * var(--to-rem));
  }
}
.p-serviceDaycare__th:last-child {
  border-right: 0;
}
.p-serviceDaycare__th--menu {
  width: calc(208 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__th--menu {
    width: calc(166 * var(--to-rem));
  }
}
.p-serviceDaycare__th--price {
  width: calc(214 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__th--price {
    width: calc(172 * var(--to-rem));
  }
}
.p-serviceDaycare__td {
  padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border: calc(1 * var(--to-rem)) solid var(--color-line);
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.4;
  color: #3f220a;
  text-align: start;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__td {
    font-size: calc(13 * var(--to-rem));
    padding: calc(8 * var(--to-rem)) calc(12 * var(--to-rem));
  }
}
.p-serviceDaycare__td--menu {
  width: calc(208 * var(--to-rem));
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__td--menu {
    width: calc(166 * var(--to-rem));
  }
}
.p-serviceDaycare__td--price {
  width: calc(214 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__td--price {
    width: calc(172 * var(--to-rem));
  }
}
.p-serviceDaycare__flow {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: calc(30 * var(--to-rem));
  width: 100%;
  margin-top: calc(20 * var(--to-rem));
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-serviceDaycare__flow {
    gap: calc(20 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__flow {
    flex-direction: column;
    gap: calc(20 * var(--to-rem));
    width: 100%;
    max-width: calc(420 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-serviceDaycare__flowItem {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
  text-align: center;
}
.p-serviceDaycare__flowItem + .p-serviceDaycare__flowItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(-15 * var(--to-rem));
  width: calc(4 * var(--to-rem));
  height: calc(80 * var(--to-rem));
  background-color: #755f4a;
  border-radius: calc(2 * var(--to-rem));
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-serviceDaycare__flowItem + .p-serviceDaycare__flowItem::before {
    left: calc(-10 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__flowItem + .p-serviceDaycare__flowItem::before {
    display: none;
  }
}
.p-serviceDaycare__flowBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(16 * var(--to-rem)) calc(16 * var(--to-rem)) calc(12 * var(--to-rem));
  background-color: #755f4a;
  border-radius: calc(300 * var(--to-rem));
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(32 * var(--to-rem));
  line-height: 0.9;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__flowBadge {
    font-size: calc(24 * var(--to-rem));
    padding: calc(12 * var(--to-rem)) calc(16 * var(--to-rem)) calc(10 * var(--to-rem));
  }
}
.p-serviceDaycare__flowIcon {
  display: block;
  width: calc(50 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  margin-top: calc(24 * var(--to-rem));
  object-fit: contain;
}
.p-serviceDaycare__flowTitle {
  margin: calc(20 * var(--to-rem)) 0 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__flowTitle {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-serviceDaycare__flowDesc {
  margin: calc(20 * var(--to-rem)) 0 0;
  width: 100%;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-text);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__flowDesc {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-serviceDaycare__special {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: calc(30 * var(--to-rem));
  width: 100%;
  max-width: calc(896 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__special {
    grid-template-columns: 1fr;
    gap: calc(20 * var(--to-rem));
  }
}
.p-serviceDaycare__specialItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: calc(30 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
  text-align: center;
}
.p-serviceDaycare__specialIcon {
  display: block;
  width: calc(50 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  object-fit: contain;
}
.p-serviceDaycare__specialTitle {
  margin: calc(24 * var(--to-rem)) 0 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(20 * var(--to-rem));
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__specialTitle {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-serviceDaycare__specialDesc {
  margin: calc(24 * var(--to-rem)) 0 0;
  width: 100%;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-text);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-serviceDaycare__specialDesc {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-serviceSchool {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  padding-inline: calc(170 * var(--to-rem));
  isolation: isolate;
}
@media screen and (max-width: 1023px) {
  .p-serviceSchool {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSchool {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-serviceSchool__paws {
  position: absolute;
  top: calc(-62 * var(--to-rem));
  inset-inline-start: calc(160 * var(--to-rem));
  z-index: -1;
  width: calc(301 * var(--to-rem));
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__paws {
    width: calc(220 * var(--to-rem));
    top: calc(-20 * var(--to-rem));
    inset-inline-start: calc(10 * var(--to-rem));
  }
}
.p-serviceSchool__pawsImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-serviceSchool__inner {
  text-align: center;
}
.p-serviceSchool__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text);
}
.p-serviceSchool__en {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__en {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-serviceSchool__ja {
  margin: calc(4 * var(--to-rem)) 0 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(36 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__ja {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-serviceSchool__block {
  margin-top: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__block {
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-serviceSchool__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4 * var(--to-rem));
  margin: 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(24 * var(--to-rem));
  line-height: 1.3;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__subtitle {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-serviceSchool__pawIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(33 * var(--to-rem));
  height: calc(32 * var(--to-rem));
  flex-shrink: 0;
}
.p-serviceSchool__pawIcon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-serviceSchool__lead {
  width: 100%;
  max-width: calc(894 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  margin-inline: auto;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__lead {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-serviceSchool__lead p {
  margin: 0;
}
.p-serviceSchool__tableScroll {
  width: 100%;
  max-width: calc(896 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__tableScroll {
    max-width: none;
    margin-inline: calc(-20 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.p-serviceSchool__table {
  width: 100%;
  background-color: var(--color-white);
  border: calc(1 * var(--to-rem)) solid var(--color-mv);
  border-collapse: collapse;
  border-radius: calc(10 * var(--to-rem));
  overflow: hidden;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__table {
    min-width: calc(720 * var(--to-rem));
  }
}
.p-serviceSchool__th {
  padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
  background-color: var(--color-line);
  border-right: calc(1 * var(--to-rem)) solid var(--color-sub);
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__th {
    padding: calc(8 * var(--to-rem)) calc(12 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-serviceSchool__th:last-child {
  border-right: 0;
}
.p-serviceSchool__th--menu {
  width: calc(264 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__th--menu {
    width: calc(212 * var(--to-rem));
  }
}
.p-serviceSchool__th--price {
  width: calc(214 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__th--price {
    width: calc(172 * var(--to-rem));
  }
}
.p-serviceSchool__td {
  padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border: calc(1 * var(--to-rem)) solid var(--color-line);
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.4;
  color: #3f220a;
  text-align: start;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__td {
    padding: calc(8 * var(--to-rem)) calc(12 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}
.p-serviceSchool__td--menu {
  width: calc(264 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__td--menu {
    width: calc(212 * var(--to-rem));
  }
}
.p-serviceSchool__td--price {
  width: calc(214 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceSchool__td--price {
    width: calc(172 * var(--to-rem));
  }
}
.p-serviceSelectshop {
  position: relative;
  padding-block: calc(130 * var(--to-rem));
  padding-inline: calc(170 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-serviceSelectshop {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop {
    padding-block: calc(64 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-serviceSelectshop__inner {
  text-align: center;
}
.p-serviceSelectshop__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text);
}
.p-serviceSelectshop__en {
  margin: 0;
  font-family: var(--deco-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop__en {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-serviceSelectshop__ja {
  margin: calc(4 * var(--to-rem)) 0 0;
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(36 * var(--to-rem));
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop__ja {
    font-size: calc(22 * var(--to-rem));
  }
}
.p-serviceSelectshop__block {
  margin-top: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop__block {
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-serviceSelectshop__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4 * var(--to-rem));
  margin: 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: calc(24 * var(--to-rem));
  line-height: 1.3;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop__subtitle {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-serviceSelectshop__pawIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(33 * var(--to-rem));
  height: calc(32 * var(--to-rem));
  flex-shrink: 0;
}
.p-serviceSelectshop__pawIcon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-serviceSelectshop__lead {
  margin: calc(16 * var(--to-rem)) 0 0;
  font-family: var(--base-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(18 * var(--to-rem));
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop__lead {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-serviceSelectshop__group {
  margin-top: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop__group {
    margin-top: calc(48 * var(--to-rem));
  }
}
.p-serviceSelectshop__photoList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(30 * var(--to-rem));
  width: 100%;
  max-width: calc(896 * var(--to-rem));
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop__photoList {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--to-rem));
    max-width: calc(420 * var(--to-rem));
  }
}
.p-serviceSelectshop__photoItem {
  border-radius: calc(10 * var(--to-rem));
  overflow: hidden;
  aspect-ratio: 433/260;
}
.p-serviceSelectshop__photoImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-serviceSelectshop__groupCaption {
  margin-top: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-serviceSelectshop__groupCaption {
    margin-top: calc(20 * var(--to-rem));
  }
}
.p-newsHero {
  position: relative;
  padding-block: calc(107 * var(--to-rem)) calc(87 * var(--to-rem));
  text-align: center;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-newsHero {
    padding-block: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-newsHero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.p-newsHero__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-newsHero__bgOverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.p-newsList {
  position: relative;
  padding-block: calc(80 * var(--to-rem)) calc(130 * var(--to-rem));
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-newsList {
    padding-block: calc(40 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-newsList__paws {
  position: absolute;
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}
.p-newsList__paws--topRight {
  top: calc(-56 * var(--to-rem));
  inset-inline-end: calc(176 * var(--to-rem));
  width: 24.31%;
  transform: rotate(15deg);
}
@media screen and (max-width: 767px) {
  .p-newsList__paws--topRight {
    top: calc(-20 * var(--to-rem));
    width: calc(220 * var(--to-rem));
    inset-inline-end: calc(-30 * var(--to-rem));
  }
}
.p-newsList__paws--bottomLeft {
  bottom: calc(80 * var(--to-rem));
  left: calc(34 * var(--to-rem));
  width: calc(217 * var(--to-rem));
  aspect-ratio: 217/192;
  z-index: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-newsList__paws--bottomLeft {
    display: none;
  }
}
.p-newsList__pawsImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-newsList__inner {
  max-width: calc(1160 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-newsList__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-newsList__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--to-rem)) calc(30 * var(--to-rem));
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .p-newsList__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-newsList__list {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--to-rem));
  }
}
.p-newsList__item {
  display: flex;
}
.p-newsList__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
  overflow: hidden;
}
.p-newsList__cardLink {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-newsList__cardLink:hover {
    opacity: 0.8;
  }
}
.p-newsList__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 462/278;
  background-color: var(--color-line);
  overflow: hidden;
}
.p-newsList__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-newsList__body {
  flex: 1;
  padding-block: calc(24 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
}
.p-newsList__meta {
  display: flex;
  align-items: center;
  gap: calc(20 * var(--to-rem));
}
.p-newsList__date {
  color: #666666;
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
}
.p-newsList__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(10 * var(--to-rem));
  background-color: var(--color-leon);
  color: var(--color-white);
  border-radius: calc(4 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
}
.p-newsList__title {
  margin-top: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-newsList__empty {
  text-align: center;
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  color: var(--color-text);
}
.p-newsList__pagination {
  margin-top: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-newsList__pagination {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-newsList__pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-newsList__pagination .page-numbers > li > .page-numbers,
.p-newsList__pagination .page-numbers > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(40 * var(--to-rem));
  aspect-ratio: 1;
  padding-inline: calc(8 * var(--to-rem));
  background-color: var(--color-white);
  color: var(--color-sub);
  border: calc(1 * var(--to-rem)) solid var(--color-sub);
  border-radius: 50%;
  font-family: var(--base-font-family);
  font-size: max(14 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .p-newsList__pagination .page-numbers > li > .page-numbers:hover,
  .p-newsList__pagination .page-numbers > li > span:hover {
    background-color: var(--color-sub);
    color: var(--color-white);
  }
}
.p-newsList__pagination .page-numbers > li > .page-numbers.current {
  background-color: var(--color-sub);
  color: var(--color-white);
}
.p-newsList__pagination .page-numbers > li > .page-numbers.dots {
  border: none;
}
@media (any-hover: hover) {
  .p-newsList__pagination .page-numbers > li > .page-numbers.dots:hover {
    background-color: transparent;
    color: var(--color-sub);
  }
}
.p-newsList__pagePrev,
.p-newsList__pageNext {
  display: block;
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border-top: calc(1.5 * var(--to-rem)) solid currentColor;
  border-right: calc(1.5 * var(--to-rem)) solid currentColor;
}
.p-newsList__pagePrev {
  transform: rotate(-135deg);
}
.p-newsList__pageNext {
  transform: rotate(45deg);
}
.p-newsArticle {
  position: relative;
  padding-block: calc(80 * var(--to-rem)) calc(130 * var(--to-rem));
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-newsArticle {
    padding-block: calc(40 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-newsArticle__paws {
  position: absolute;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}
.p-newsArticle__paws--topRight {
  top: calc(-56 * var(--to-rem));
  inset-inline-end: calc(176 * var(--to-rem));
  width: 24.31%;
  transform: rotate(20deg);
}
@media screen and (max-width: 767px) {
  .p-newsArticle__paws--topRight {
    top: calc(-20 * var(--to-rem));
    width: calc(220 * var(--to-rem));
    inset-inline-end: calc(-30 * var(--to-rem));
  }
}
.p-newsArticle__paws--bottomLeft {
  bottom: calc(120 * var(--to-rem));
  left: calc(34 * var(--to-rem));
  width: calc(217 * var(--to-rem));
  aspect-ratio: 217/192;
  z-index: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-newsArticle__paws--bottomLeft {
    display: none;
  }
}
.p-newsArticle__pawsImg {
  display: block;
  width: 100%;
  height: auto;
}
.p-newsArticle__inner {
  max-width: calc(880 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-newsArticle__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-newsArticle__body {
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
  padding-block: calc(48 * var(--to-rem));
  padding-inline: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-newsArticle__body {
    padding-block: calc(32 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-newsArticle__meta {
  display: flex;
  align-items: center;
  gap: calc(20 * var(--to-rem));
}
.p-newsArticle__date {
  color: #666666;
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
}
.p-newsArticle__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(10 * var(--to-rem));
  background-color: var(--color-leon);
  color: var(--color-white);
  border-radius: calc(4 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
}
.p-newsArticle__title {
  margin-top: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(28 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-newsArticle__title {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-newsArticle__thumb {
  margin-top: calc(32 * var(--to-rem));
  margin-inline: 0;
  border-radius: calc(10 * var(--to-rem));
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: var(--color-line);
}
@media screen and (max-width: 767px) {
  .p-newsArticle__thumb {
    margin-top: calc(24 * var(--to-rem));
  }
}
.p-newsArticle__thumbImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-newsArticle__content {
  margin-top: calc(32 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.8;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-newsArticle__content {
    margin-top: calc(24 * var(--to-rem));
  }
}
.p-newsArticle__content > * + * {
  margin-top: calc(20 * var(--to-rem));
}
.p-newsArticle__content > h2 {
  margin-top: calc(40 * var(--to-rem));
  font-family: var(--title-font-family);
  font-size: calc(22 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-newsArticle__content > h2 {
    margin-top: calc(32 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}
.p-newsArticle__content > h3 {
  margin-top: calc(32 * var(--to-rem));
  font-family: var(--title-font-family);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-newsArticle__content > h3 {
    margin-top: calc(24 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}
.p-newsArticle__content > ul,
.p-newsArticle__content > ol {
  padding-left: calc(24 * var(--to-rem));
}
.p-newsArticle__content > ul > li,
.p-newsArticle__content > ol > li {
  margin-top: calc(8 * var(--to-rem));
}
.p-newsArticle__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: calc(6 * var(--to-rem));
}
.p-newsArticle__content a {
  color: var(--color-leon);
  text-decoration: underline;
  text-underline-offset: calc(3 * var(--to-rem));
}
.p-newsArticle__content blockquote {
  border-left: calc(3 * var(--to-rem)) solid var(--color-line);
  padding-left: calc(16 * var(--to-rem));
  color: #666666;
}
.p-newsArticle__backWrap {
  margin-top: calc(60 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-newsArticle__backWrap {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-contactHero {
  position: relative;
  padding-block: calc(107 * var(--to-rem)) calc(87 * var(--to-rem));
  text-align: center;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-contactHero {
    padding-block: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-contactHero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.p-contactHero__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-contactHero__bgOverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.p-contactForm {
  padding-block: calc(60 * var(--to-rem)) calc(130 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-contactForm {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-contactForm__inner {
  position: relative;
  max-width: calc(896 * var(--to-rem));
  margin-inline: auto;
}
.p-contactForm__paws {
  position: absolute;
  top: calc(-132 * var(--to-rem));
  left: calc(777 * var(--to-rem));
  z-index: 0;
  width: calc(333 * var(--to-rem));
  aspect-ratio: 333/264;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-contactForm__paws {
    display: none;
  }
}
.p-contactForm__pawsImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-contactForm__title {
  position: relative;
  z-index: 1;
  font-family: var(--title-font-family);
  font-size: max(24 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contactForm__title {
    font-size: max(20 * var(--to-rem), 12px);
  }
}
.p-contactForm__lead {
  position: relative;
  z-index: 1;
  margin-top: calc(50 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: max(18 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-contactForm__lead {
    margin-top: calc(28 * var(--to-rem));
    font-size: max(15 * var(--to-rem), 12px);
  }
}
.p-contactForm__body {
  position: relative;
  z-index: 1;
  margin-top: calc(50 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactForm__body {
    margin-top: calc(28 * var(--to-rem));
  }
}
.p-contactForm__body .wpcf7 {
  margin: 0;
}
.p-contactForm__body .wpcf7-form {
  padding-block: calc(56 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  border: 1px solid var(--color-text);
  border-radius: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactForm__body .wpcf7-form {
    padding-block: calc(36 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    border-radius: calc(20 * var(--to-rem));
  }
}
.p-contactForm__item + .p-contactForm__item {
  margin-top: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactForm__item + .p-contactForm__item {
    margin-top: calc(24 * var(--to-rem));
  }
}
.p-contactForm__itemHead {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
.p-contactForm__itemLabel {
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #111;
}
.p-contactForm__itemBadge {
  flex-shrink: 0;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(10 * var(--to-rem));
  border-radius: calc(5 * var(--to-rem));
  background-color: var(--color-cta);
  font-family: var(--base-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--color-white);
}
.p-contactForm__itemControl {
  margin-top: calc(10 * var(--to-rem));
}
.p-contactForm__itemControl .wpcf7-form-control-wrap {
  display: block;
}
.p-contactForm__itemControl .wpcf7-form-control {
  display: block;
  width: 100%;
  border: 1.5px solid #aa9f94;
  border-radius: calc(6 * var(--to-rem));
  background-color: var(--color-white);
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--color-text);
}
.p-contactForm__itemControl .wpcf7-text,
.p-contactForm__itemControl .wpcf7-tel,
.p-contactForm__itemControl .wpcf7-email {
  height: calc(56 * var(--to-rem));
  padding-block: 0;
  padding-inline: calc(25 * var(--to-rem));
}
.p-contactForm__itemControl .wpcf7-textarea {
  min-height: calc(220 * var(--to-rem));
  padding-block: calc(17 * var(--to-rem));
  padding-inline: calc(25 * var(--to-rem));
  resize: vertical;
}
.p-contactForm__itemControl .wpcf7-form-control::placeholder {
  color: #aa9f94;
  opacity: 1;
}
.p-contactForm__action {
  margin-top: calc(60 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contactForm__action {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-contactForm__submitBtn {
  appearance: none;
  width: calc(316 * var(--to-rem));
  max-width: 100%;
  height: calc(56 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem)) 0;
  border: none;
  border-radius: calc(40 * var(--to-rem));
  background-color: var(--color-cta);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M2.625 5.625H21.375V19.875H2.625V5.625Z' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/><path d='M3.375 6.375L12 13.875L20.625 6.375' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: calc(24 * var(--to-rem)) calc(24 * var(--to-rem));
  background-position: left calc(102 * var(--to-rem)) center;
  font-family: var(--base-font-family);
  font-size: max(18 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  transition: opacity var(--duration) ease;
}
.p-contactForm__submitBtn:hover {
  opacity: 0.8;
}
.p-contactForm__action .wpcf7-spinner {
  margin-inline-start: calc(12 * var(--to-rem));
  vertical-align: middle;
}
.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid {
  border-color: #aa9f94;
}
.p-contactForm__itemControl .wpcf7-not-valid {
  border-color: #d9492c;
}
.p-contactForm__itemControl .wpcf7-not-valid-tip {
  display: block;
  margin-top: calc(6 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: max(13 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #d9492c;
}
.p-contactForm__body .wpcf7-response-output {
  margin-block: calc(24 * var(--to-rem)) 0;
  margin-inline: 0;
  padding-block: calc(14 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
  font-family: var(--base-font-family);
  font-size: max(14 * var(--to-rem), 12px);
  line-height: 1.6;
}
.p-thanksHero {
  position: relative;
  padding-block: calc(107 * var(--to-rem)) calc(87 * var(--to-rem));
  text-align: center;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-thanksHero {
    padding-block: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-thanksHero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.p-thanksHero__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-thanksHero__bgOverlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.p-thanks {
  padding-block: calc(80 * var(--to-rem)) calc(130 * var(--to-rem));
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-block: calc(50 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-thanks__inner {
  max-width: calc(800 * var(--to-rem));
  text-align: center;
}
.p-thanks__heading {
  font-family: var(--title-font-family);
  font-size: max(28 * var(--to-rem), 12px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__heading {
    font-size: max(22 * var(--to-rem), 12px);
  }
}
.p-thanks__message {
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-thanks__message {
    margin-top: calc(24 * var(--to-rem));
  }
}
.p-thanks__text {
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  font-weight: var(--fw-medium);
  line-height: 1.9;
  color: var(--color-text);
}
.p-thanks__text + .p-thanks__text {
  margin-top: calc(24 * var(--to-rem));
}
.p-thanks__btnWrap {
  margin-top: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-thanks__btnWrap {
    margin-top: calc(36 * var(--to-rem));
  }
}
.p-thanks__btnWrap .c-btn[data-variant=dark] .c-btn__text {
  flex: 0 1 auto;
}
.p-thanks__btnWrap .c-btn[data-variant=dark] .c-btn__arrow {
  position: static;
  margin-left: 0;
  translate: none;
}
.p-privacyHero {
  position: relative;
  padding-block: calc(107 * var(--to-rem)) calc(87 * var(--to-rem));
  text-align: center;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-privacyHero {
    padding-block: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-privacyHero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.p-privacyHero__bgImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-privacyHero__bgOverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.p-privacy {
  padding-block: calc(80 * var(--to-rem)) calc(130 * var(--to-rem));
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding-block: calc(40 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}
.p-privacy__inner {
  max-width: calc(880 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-privacy__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-privacy__body {
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
  padding-block: calc(64 * var(--to-rem));
  padding-inline: calc(64 * var(--to-rem));
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.9;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-privacy__body {
    padding-block: calc(40 * var(--to-rem));
    padding-inline: calc(28 * var(--to-rem));
    font-size: max(15 * var(--to-rem), 12px);
    line-height: 1.85;
  }
}
@media screen and (max-width: 600px) {
  .p-privacy__body {
    padding-block: calc(32 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-privacy__lead {
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.9;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-privacy__lead {
    font-size: max(15 * var(--to-rem), 12px);
  }
}
.p-privacy__section {
  margin-top: calc(56 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-privacy__section {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-privacy__heading {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--to-rem));
  padding-bottom: calc(12 * var(--to-rem));
  border-bottom: 1px solid var(--color-line);
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: calc(22 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-privacy__heading {
    gap: calc(10 * var(--to-rem));
    padding-bottom: calc(10 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}
.p-privacy__headingNum {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(32 * var(--to-rem));
  height: calc(32 * var(--to-rem));
  padding-inline: calc(8 * var(--to-rem));
  background-color: var(--color-cta);
  color: var(--color-white);
  border-radius: calc(4 * var(--to-rem));
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-privacy__headingNum {
    min-width: calc(28 * var(--to-rem));
    height: calc(28 * var(--to-rem));
    font-size: max(14 * var(--to-rem), 12px);
  }
}
.p-privacy__text {
  margin-top: calc(20 * var(--to-rem));
}
.p-privacy__list {
  margin-top: calc(20 * var(--to-rem));
  padding-left: 0;
  list-style: none;
}
.p-privacy__listItem {
  position: relative;
  padding-left: calc(20 * var(--to-rem));
}
.p-privacy__listItem + .p-privacy__listItem {
  margin-top: calc(8 * var(--to-rem));
}
.p-privacy__listItem::before {
  content: "";
  position: absolute;
  top: 0.95em;
  left: calc(4 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  height: calc(6 * var(--to-rem));
  border-radius: 50%;
  background-color: var(--color-cta);
  transform: translateY(-50%);
}
.p-privacy__info {
  margin-top: calc(24 * var(--to-rem));
  border-top: 1px solid var(--color-line);
}
.p-privacy__infoRow {
  display: grid;
  grid-template-columns: calc(192 * var(--to-rem)) 1fr;
  gap: calc(24 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  border-bottom: 1px solid var(--color-line);
}
@media screen and (max-width: 767px) {
  .p-privacy__infoRow {
    grid-template-columns: 1fr;
    gap: calc(4 * var(--to-rem));
    padding-block: calc(14 * var(--to-rem));
  }
}
.p-privacy__infoTerm {
  font-family: var(--title-font-family);
  font-weight: var(--fw-medium);
  font-size: max(15 * var(--to-rem), 12px);
  line-height: 1.6;
  color: var(--color-sub);
  letter-spacing: 0.04em;
}
.p-privacy__infoDesc {
  margin: 0;
  font-size: max(16 * var(--to-rem), 12px);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-privacy__infoDesc {
    font-size: max(15 * var(--to-rem), 12px);
  }
}
.p-privacy__infoLink {
  color: var(--color-leon);
  text-decoration: underline;
  text-underline-offset: calc(3 * var(--to-rem));
  transition: opacity var(--duration) ease;
}
.p-privacy__infoLink:hover {
  opacity: 0.7;
}
.p-privacy__meta {
  margin-top: calc(56 * var(--to-rem));
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: calc(20 * var(--to-rem));
  padding-top: calc(20 * var(--to-rem));
  border-top: 1px solid var(--color-line);
  font-size: max(14 * var(--to-rem), 12px);
  color: var(--color-sub);
}
@media screen and (max-width: 767px) {
  .p-privacy__meta {
    margin-top: calc(40 * var(--to-rem));
    gap: calc(6 * var(--to-rem));
    justify-content: flex-start;
    flex-direction: column;
  }
}
.p-privacy__metaItem {
  letter-spacing: 0.04em;
}
:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}
@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}
@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}
.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;
}
.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}
.u-text__inline-block {
  display: inline-block;
}
.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}