@charset "UTF-8";
/* ==========================================================================
  Foundation
============================================================================*/
/*! kiso.css v1.2.2 | 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%;`.
  */
  -webkit-box-sizing: border-box;
  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%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  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(h1, h2, h3, h4, h5, h6) {
  /* 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. */
  -webkit-padding-start: unset;
  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. */
  -webkit-margin-start: unset;
  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;
}

/* ======================================================
//  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, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

: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. */
  -webkit-font-feature-settings: initial;
  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., `⇒`).
  */
  -webkit-font-variant-ligatures: none;
  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
  */
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  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:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * 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;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  -webkit-text-decoration-line: unset;
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* 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(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) {
  /* 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
// ====================================================== */
::-webkit-file-upload-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(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(:-moz-placeholder)) {
  /*
  * 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(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-ms-input-placeholder)) {
  /*
  * 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(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;
}

::-webkit-file-upload-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])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

::-webkit-file-upload-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,
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.
  */
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

:where(:enabled)::-webkit-file-upload-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

: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;
}

::-webkit-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

:-ms-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::-ms-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: 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)::-ms-backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 0.3);
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 0.3);
}

: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;
}

/* ======================================================
//  Modal
// ======================================================*/
:root:has(:modal) {
  overflow: hidden;
}

@-webkit-keyframes hamclick-top {
  0% {
    -webkit-transform: translateY(-8px) rotate(0);
    transform: translateY(-8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(12px) rotate(0deg);
    transform: translateY(12px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateY(12px) rotate(0deg);
    transform: translateY(12px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(12px) rotate(755deg);
    transform: translateY(12px) rotate(755deg);
  }
}

@keyframes hamclick-top {
  0% {
    -webkit-transform: translateY(-8px) rotate(0);
    transform: translateY(-8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(12px) rotate(0deg);
    transform: translateY(12px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateY(12px) rotate(0deg);
    transform: translateY(12px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(12px) rotate(755deg);
    transform: translateY(12px) rotate(755deg);
  }
}
@-webkit-keyframes hamclick-bottom {
  0% {
    -webkit-transform: translateY(8px) rotate(0);
    transform: translateY(8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(-12px) rotate(0deg);
    transform: translateY(-12px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateY(-12px) rotate(0deg);
    transform: translateY(-12px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-12px) rotate(-755deg);
    transform: translateY(-12px) rotate(-755deg);
  }
}
@keyframes hamclick-bottom {
  0% {
    -webkit-transform: translateY(8px) rotate(0);
    transform: translateY(8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(-12px) rotate(0deg);
    transform: translateY(-12px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateY(-12px) rotate(0deg);
    transform: translateY(-12px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-12px) rotate(-755deg);
    transform: translateY(-12px) rotate(-755deg);
  }
}
@-webkit-keyframes spnav-click {
  0% {
    opacity: 0;
    height: 0;
  }
  1% {
    opacity: 1;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@keyframes spnav-click {
  0% {
    opacity: 0;
    height: 0;
  }
  1% {
    opacity: 1;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@-webkit-keyframes top-concept-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes top-concept-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes top-concept-rotate-plus {
  0% {
    rotate: -5deg;
  }
  70% {
    rotate: -5deg;
  }
  100% {
    rotate: 0deg;
  }
}
@keyframes top-concept-rotate-plus {
  0% {
    rotate: -5deg;
  }
  70% {
    rotate: -5deg;
  }
  100% {
    rotate: 0deg;
  }
}
@-webkit-keyframes top-concept-rotate-minus {
  0% {
    rotate: 0;
  }
  60% {
    rotate: -710deg;
  }
  65% {
    rotate: -710deg;
  }
  100% {
    rotate: -720deg;
  }
}
@keyframes top-concept-rotate-minus {
  0% {
    rotate: 0;
  }
  60% {
    rotate: -710deg;
  }
  65% {
    rotate: -710deg;
  }
  100% {
    rotate: -720deg;
  }
}
@-webkit-keyframes top-concept-scale {
  0% {
    scale: 0;
  }
  60% {
    scale: 1;
  }
  100% {
    scale: 1;
  }
}
@keyframes top-concept-scale {
  0% {
    scale: 0;
  }
  60% {
    scale: 1;
  }
  100% {
    scale: 1;
  }
}
@-webkit-keyframes top-kv-pc {
  0% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0;
    bottom: -20%;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    bottom: 0;
  }
}
@keyframes top-kv-pc {
  0% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0;
    bottom: -20%;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    bottom: 0;
  }
}
@-webkit-keyframes top-kv-sp {
  0% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0;
    right: -20%;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    right: 0;
  }
}
@keyframes top-kv-sp {
  0% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0;
    right: -20%;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    right: 0;
  }
}
@-webkit-keyframes top-imagearea {
  0% {
    opacity: 0;
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes top-imagearea {
  0% {
    opacity: 0;
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
html {
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
  overflow-x: hidden;
  /* min-height: 100dvh; */
}

body {
  width: 100%;
  min-height: 100lvh;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.6;
  color: #333;
  /* opacity: 0; */
  -webkit-transition: 2s;
  transition: 2s;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
}
body.show {
  opacity: 1;
}
body::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  -webkit-transition: background 0.48s ease-in-out;
  transition: background 0.48s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  body.ham-active {
    overflow-y: hidden;
  }
  body.ham-active::before {
    background: rgba(0, 0, 0, 0.2);
    pointer-events: all;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.--blank {
  visibility: hidden;
  pointer-events: none;
}

#strengths,
#plan,
#case,
#faq {
  scroll-margin-block-start: 100px;
}

@media screen and (min-width: 800px) {
  br.sp-only {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  br.sp-only {
    display: block;
  }
}

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

/*==================================
test
====================================*/
.test {
  outline: 2px solid blue !important;
}

/* ==========================================================================
  layout
============================================================================*/
.l-footer {
  padding-block: 96px;
  background-color: #530000;
  color: #fff;
}
.l-footer .l-inner {
  max-width: 1240px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .l-footer .l-inner {
    padding-inline: 20px;
  }
}
.l-footer .--3col {
  display: -ms-grid;
  display: grid;
  gap: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
}
@media screen and (min-width: 800px) {
  .l-footer .--3col {
    -ms-grid-columns: auto 1fr 1fr;
    grid-template-columns: auto 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .l-footer .--3col {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}
.l-footer .title {
  -webkit-margin-after: 20px;
  margin-block-end: 20px;
}
.l-footer .title > a {
  position: relative;
}
.l-footer .title > a::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: -0.25em;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.48s ease-in-out;
  transition: -webkit-transform 0.48s ease-in-out;
  transition: transform 0.48s ease-in-out;
  transition: transform 0.48s ease-in-out, -webkit-transform 0.48s ease-in-out;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@media (any-hover: hover) {
  .l-footer .title > a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.l-footer .contarea .logoarea {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer .contarea .logoarea a {
  opacity: 1;
  -webkit-transition: opacity 0.48s ease-in-out;
  transition: opacity 0.48s ease-in-out;
}
@media (any-hover: hover) {
  .l-footer .contarea .logoarea a:hover {
    opacity: 0.7;
  }
}
.l-footer .contarea .logo {
  width: 180px;
}
.l-footer .contarea .insta {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  -webkit-margin-start: 60px;
  margin-inline-start: 60px;
}
.l-footer .contarea .insta.--tiktok {
  -webkit-margin-start: 20px;
  margin-inline-start: 20px;
}
.l-footer .contarea .add, .l-footer .contarea .tel {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 8px;
  line-height: 180%;
}
@media screen and (min-width: 800px) {
  .l-footer .contarea .add, .l-footer .contarea .tel {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
  }
}
@media screen and (max-width: 800px) {
  .l-footer .contarea .add, .l-footer .contarea .tel {
    -webkit-margin-before: 28px;
    margin-block-start: 28px;
  }
}
.l-footer .contarea .add .desvg path, .l-footer .contarea .tel .desvg path {
  stroke: #fff;
}
@media screen and (min-width: 800px) {
  .l-footer .contarea .tel {
    pointer-events: none;
  }
}
.l-footer .contarea article:has(.logo-terrace) {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
.l-footer .contarea .logo-terrace {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(13.375rem, 11.9225352113rem + 6.1971830986vw, 17.5rem);
  opacity: 1;
  -webkit-transition: opacity 0.48s ease-in-out;
  transition: opacity 0.48s ease-in-out;
}
@media (any-hover: hover) {
  .l-footer .contarea .logo-terrace:hover {
    opacity: 0.7;
  }
}
.l-footer .copyright {
  -webkit-margin-before: 72px;
  margin-block-start: 72px;
}
.l-footer .copyright > p {
  letter-spacing: 0.1em;
}

.l-header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 80px;
  background-color: #fff;
}
@media screen and (min-width: 1032px) {
  .l-header {
    border-bottom: 1px solid #F7F7F2;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.l-header .l-inner {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  gap: 20px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1032px) {
  .l-header .l-inner {
    padding-inline: clamp(1.25rem, 0.8098591549rem + 1.8779342723vw, 2.5rem);
  }
}
@media screen and (max-width: 1032px) {
  .l-header .l-inner {
    -webkit-padding-start: clamp(1.25rem, 0.8098591549rem + 1.8779342723vw, 2.5rem);
    padding-inline-start: clamp(1.25rem, 0.8098591549rem + 1.8779342723vw, 2.5rem);
  }
}
.l-header .l-header__logo {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(8.75rem, 7.3195422535rem + 6.103286385vw, 12.8125rem);
}
.l-header a.l-header__logo {
  opacity: 1;
  -webkit-transition: opacity 0.48s ease-in-out;
  transition: opacity 0.48s ease-in-out;
}
@media (any-hover: hover) {
  .l-header a.l-header__logo:hover {
    opacity: 0.7;
  }
}

#header {
  -webkit-transition: opacity 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}

#header.--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#header.--hidden {
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

@media screen and (min-width: 1032px) {
  .l-main {
    -webkit-padding-before: 80px;
    padding-block-start: 80px;
  }
}

/* ==========================================================================
  object
============================================================================*/
.c-hideText {
  position: relative;
}
.c-hideText__txt {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

.c-title.--h1.--lower02 {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-margin-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  margin-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
}
.c-title.--h1.--lower02 span.--en {
  color: var(--grandgate_main, #530000);
  font-size: clamp(2rem, 1.823943662rem + 0.7511737089vw, 2.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
}
.c-title.--h1.--lower02 span.--jp {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_main, #530000);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
.c-title.--h1.--lower02 + p {
  -webkit-margin-before: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  margin-block-start: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  .c-title.--h1.--lower02 + p {
    line-height: 230%; /* 36.8px */
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .c-title.--h1.--lower02 + p {
    line-height: 180%; /* 28.8px */
  }
}

.c-button.--link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  position: relative;
}
.c-button.--link::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  scale: 0 1;
  position: absolute;
  bottom: -0.15em;
  left: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: scale 0.24s ease-in-out;
  transition: scale 0.24s ease-in-out;
}
.c-button.--link .arrow {
  -webkit-margin-start: 0.5em;
  margin-inline-start: 0.5em;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  .c-button.--link:hover::before {
    scale: 1 1;
  }
}
.c-button.--main {
  display: -ms-grid;
  display: grid;
  place-items: center;
  max-width: 325px;
  padding: 16px;
  border: 1px solid #530000;
  background-color: #530000;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  text-align: center;
  -webkit-transition: background-color 0.48s ease-in-out, color 0.48s ease-in-out;
  transition: background-color 0.48s ease-in-out, color 0.48s ease-in-out;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  .c-button.--main:hover {
    background-color: #fff;
    color: #530000;
  }
}
.c-button.--back {
  background-color: #333;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  .c-button.--back:hover {
    color: #333;
  }
}
.c-button.--contact-footer {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-columns: 24px auto;
  grid-template-columns: 24px auto;
  gap: 16px;
  width: 320px;
  height: 64px;
  line-height: 1;
  position: relative;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
.c-button.--contact-footer .desvg path {
  -webkit-transition: stroke 0.48s ease-in-out;
  transition: stroke 0.48s ease-in-out;
}
.c-button.--contact-footer.--mail {
  background-color: #fff;
}
.c-button.--contact-footer.--tel {
  background-color: #F7F7F2;
  letter-spacing: 2px;
}
@media (any-hover: hover) {
  .c-button.--contact-footer:hover {
    color: #530000;
  }
  .c-button.--contact-footer:hover .desvg path {
    stroke: #530000;
  }
}

.c-ham {
  z-index: 9999;
}

.l-header {
  z-index: 9998;
}
@media screen and (max-width: 1032px) {
  .l-header {
    position: relative;
    z-index: 9998;
  }
}

.c-nav.--header.--sp {
  z-index: 9000;
}

.c-nav.--cva {
  z-index: 8888;
}

@media screen and (min-width: 1032px) {
  nav.c-nav.--header.--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
  }
  nav.c-nav.--header.--pc .c-nav__ul.--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
  }
  nav.c-nav.--header.--pc .c-nav__ul.--main li.--sp-only {
    display: none;
  }
  nav.c-nav.--header.--pc .--inlink {
    position: relative;
  }
  nav.c-nav.--header.--pc .c-nav__link {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    position: relative;
  }
  nav.c-nav.--header.--pc .c-nav__link::before {
    display: block;
    content: "";
    width: 32px;
    height: 1px;
    background-color: #530000;
    position: absolute;
    inset: 0;
    margin: auto auto -0.5em;
    z-index: 0;
    scale: 0 1;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: scale 0.48s ease-in-out;
    transition: scale 0.48s ease-in-out;
  }
  nav.c-nav.--header.--pc .c-nav__link > span {
    color: #530000;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
  }
  nav.c-nav.--header.--pc .c-nav__link > span.--jp {
    -webkit-margin-after: 0.4em;
    margin-block-end: 0.4em;
    letter-spacing: -0.31px;
  }
  nav.c-nav.--header.--pc .c-nav__link.active::before {
    scale: 1 1;
  }
}
@media screen and (min-width: 1032px) and (any-hover: hover) {
  nav.c-nav.--header.--pc .c-nav__link:hover::before {
    scale: 1 1;
  }
}
@media screen and (min-width: 1032px) {
  nav.c-nav.--header.--pc .c-nav__ul.--shoplist {
    min-height: 0;
    height: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 8px 24px -10px rgba(83, 0, 0, 0.16);
    box-shadow: 0px 8px 24px -10px rgba(83, 0, 0, 0.16);
    overflow: hidden;
    z-index: 3;
    padding-inline: 20px;
    position: absolute;
    top: calc(80px - 1.25lh);
    left: -20px;
    -webkit-transition: min-height 0.25s;
    transition: min-height 0.25s;
  }
  nav.c-nav.--header.--pc .c-nav__ul.--shoplist.active {
    min-height: 180px;
  }
  nav.c-nav.--header.--pc .c-nav__ul.--shoplist li:first-of-type {
    -webkit-margin-before: 0.8lh;
    margin-block-start: 0.8lh;
  }
  nav.c-nav.--header.--pc .c-nav__ul.--shoplist li:not(:first-of-type) {
    -webkit-margin-before: 0.5lh;
    margin-block-start: 0.5lh;
  }
  nav.c-nav.--header.--pc .c-nav__ul.--shoplist a {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 20px auto;
    grid-template-columns: 20px auto;
    gap: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    color: #530000;
    position: relative;
  }
  nav.c-nav.--header.--pc .c-nav__ul.--shoplist a::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #530000;
    position: absolute;
    bottom: -0.25em;
    left: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: -webkit-transform 0.48s ease-in-out;
    transition: -webkit-transform 0.48s ease-in-out;
    transition: transform 0.48s ease-in-out;
    transition: transform 0.48s ease-in-out, -webkit-transform 0.48s ease-in-out;
  }
}
@media screen and (min-width: 1032px) and (any-hover: hover) {
  nav.c-nav.--header.--pc .c-nav__ul.--shoplist a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 1032px) {
  nav.c-nav.--header.--pc {
    display: none;
  }
}
@media screen and (min-width: 1032px) {
  nav.c-nav.--header.--sp {
    display: none;
  }
}
@media screen and (max-width: 1032px) {
  nav.c-nav.--header.--sp {
    width: 100%;
    height: 100svh;
    /* padding-block: calc($headerHeight + 20px) 40px; */
    padding-block: 40px;
    padding-inline: 20px;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    -webkit-transition: right 0.4s ease-in-out;
    transition: right 0.4s ease-in-out;
  }
  nav.c-nav.--header.--sp.is-active {
    right: 0;
  }
  nav.c-nav.--header.--sp > .inner {
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  nav.c-nav.--header.--sp > .inner::-webkit-scrollbar {
    display: none;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main {
    max-width: 240px;
    margin-inline: auto;
    /* overflow-y: scroll; */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main::-webkit-scrollbar {
    display: none;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main > li {
    border-bottom: 1px solid rgba(83, 0, 0, 0.2);
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main > li:not(:first-of-type) {
    /* margin-block-start: .5lh; */
    font-size: 16px;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main > li:last-of-type {
    -webkit-margin-after: 0.5lh;
    margin-block-end: 0.5lh;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main a {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    padding-block: 8px;
    color: #530000;
    text-align: center;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main a .--jp {
    font-size: 14px;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main a .--jp + .--marcellus {
    font-size: 11px;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main a .--marcellus {
    text-transform: uppercase;
    letter-spacing: 10%;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main .c-nav__ul.--shoplist a {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20px auto;
    grid-template-columns: 20px auto;
    gap: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main .c-nav__ul.--shoplist a .icon {
    position: relative;
    top: 0.15em;
  }
  nav.c-nav.--header.--sp .c-nav__ul.--main .c-nav__ul.--shoplist {
    /* margin-block-start: 1em; */
    /* padding-inline-start: 1em; */
  }
}
nav.c-nav .c-nav__ul.--reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1032px) {
  nav.c-nav .c-nav__ul.--reserve {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 240px;
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
    margin-inline: auto;
  }
}
nav.c-nav .c-nav__ul.--reserve a {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 1fr 24px;
  grid-template-columns: 1fr 24px;
  gap: 10px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(83, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #530000;
  line-height: 1;
  text-align: center;
  z-index: 5;
  -webkit-transition: border 0.48s ease-in-out, background 0.48s ease-in-out, color 0.48s ease-in-out;
  transition: border 0.48s ease-in-out, background 0.48s ease-in-out, color 0.48s ease-in-out;
}
@media screen and (max-width: 1032px) {
  nav.c-nav .c-nav__ul.--reserve a {
    min-height: 64px;
    padding: 0px 16px;
  }
}
nav.c-nav .c-nav__ul.--reserve a > span.text > span:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 8px;
  -webkit-margin-after: 4px;
  margin-block-end: 4px;
}
nav.c-nav .c-nav__ul.--reserve a > span.text span {
  text-transform: uppercase;
}
nav.c-nav .c-nav__ul.--reserve a .desvg path:first-of-type {
  fill: #530000;
  -webkit-transition: fill 0.48s ease-in-out;
  transition: fill 0.48s ease-in-out;
}
nav.c-nav .c-nav__ul.--reserve a .desvg path:last-of-type {
  stroke: #530000;
  -webkit-transition: stroke 0.48s ease-in-out;
  transition: stroke 0.48s ease-in-out;
}
@media (any-hover: hover) {
  nav.c-nav .c-nav__ul.--reserve a:hover {
    border: 1px solid #530000;
    background: #530000;
    color: #fff;
  }
  nav.c-nav .c-nav__ul.--reserve a:hover .desvg path:first-of-type {
    fill: #fff;
  }
  nav.c-nav .c-nav__ul.--reserve a:hover .desvg path:last-of-type {
    stroke: #fff;
  }
}
nav.c-nav.--cva {
  opacity: 0;
}
@media screen and (min-width: 1032px) {
  nav.c-nav.--cva {
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  nav.c-nav.--cva.active {
    opacity: 1;
    pointer-events: all;
  }
}
@media screen and (max-width: 1032px) {
  nav.c-nav.--cva {
    width: 100%;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    position: fixed;
    bottom: 0;
    left: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  nav.c-nav.--cva.active {
    opacity: 1;
    pointer-events: all;
  }
}
nav.c-nav.--cva .c-nav__ul {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 1032px) {
  nav.c-nav.--cva .c-nav__ul {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    gap: 16px;
  }
}
@media screen and (max-width: 1032px) {
  nav.c-nav.--cva .c-nav__ul {
    -ms-grid-columns: 1fr 1fr 48px;
    grid-template-columns: 1fr 1fr 48px;
    gap: 1px;
  }
}
nav.c-nav.--cva li {
  background-color: #530000;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1032px) {
  nav.c-nav.--cva li:not(:first-of-type) {
    border-left: 1px solid #fff;
  }
}
nav.c-nav.--cva li a .arrow .desvg path {
  stroke: #fff;
}
nav.c-nav.--cva .--dining a, nav.c-nav.--cva .--beer a {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-columns: auto 24px;
  grid-template-columns: auto 24px;
  gap: 2px;
  height: 55px;
  -webkit-transition: background 0.48s ease-in-out;
  transition: background 0.48s ease-in-out;
}
@media screen and (min-width: 1032px) {
  nav.c-nav.--cva .--dining a, nav.c-nav.--cva .--beer a {
    min-width: 210px;
    padding-inline: 16px;
    border: 1px solid #530000;
  }
}
@media screen and (max-width: 1032px) {
  nav.c-nav.--cva .--dining a, nav.c-nav.--cva .--beer a {
    padding-inline: 8px;
    -webkit-padding-after: 8px;
    padding-block-end: 8px;
  }
}
nav.c-nav.--cva .--dining a .desvg path, nav.c-nav.--cva .--beer a .desvg path {
  -webkit-transition: fill 0.48s ease-in-out, stroke 0.48s ease-in-out;
  transition: fill 0.48s ease-in-out, stroke 0.48s ease-in-out;
}
@media (any-hover: hover) {
  nav.c-nav.--cva .--dining a:hover, nav.c-nav.--cva .--beer a:hover {
    color: #530000;
    background-color: #fff;
  }
  nav.c-nav.--cva .--dining a:hover .icon .desvg path, nav.c-nav.--cva .--beer a:hover .icon .desvg path {
    fill: #530000;
  }
  nav.c-nav.--cva .--dining a:hover .arrow .desvg path, nav.c-nav.--cva .--beer a:hover .arrow .desvg path {
    stroke: #530000;
  }
}
@media screen and (max-width: 400px) {
  nav.c-nav.--cva .--beer a span.icon {
    scale: 0.86;
  }
}
@media screen and (min-width: 1032px) {
  nav.c-nav.--cva .--tel {
    display: none;
  }
}
@media screen and (max-width: 1032px) {
  nav.c-nav.--cva .--tel {
    display: -ms-grid;
    display: grid;
    place-items: center;
    padding: 10px;
  }
}
nav.c-nav.--cva .--tel .desvg path {
  stroke: #fff;
}
nav.c-nav.--footer .c-nav__ul.--pagelist li:not(:first-of-type) {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}
@media screen and (min-width: 800px) {
  nav.c-nav.--footer .c-nav__ul.--shoplist li:not(:first-of-type) {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
  }
}
@media screen and (max-width: 800px) {
  nav.c-nav.--footer .c-nav__ul.--shoplist li:not(:first-of-type) {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
  }
}
nav.c-nav.--footer .c-nav__ul.--shoplist a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  position: relative;
}
nav.c-nav.--footer .c-nav__ul.--shoplist a::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: -0.25em;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.48s ease-in-out;
  transition: -webkit-transform 0.48s ease-in-out;
  transition: transform 0.48s ease-in-out;
  transition: transform 0.48s ease-in-out, -webkit-transform 0.48s ease-in-out;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@media (any-hover: hover) {
  nav.c-nav.--footer .c-nav__ul.--shoplist a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@media screen and (min-width: 1032px) {
  .c-ham {
    display: none;
  }
}
@media screen and (max-width: 1032px) {
  .c-ham {
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    background-color: rgba(83, 0, 0, 0);
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    pointer-events: all;
  }
  .c-ham .c-ham__bar {
    display: block;
    content: "";
    width: 22px;
    height: 2px;
    background-color: #530000;
    position: absolute;
    inset: 0;
    margin: auto;
    -webkit-transition: translate 0.1s linear, rotate 0.1s linear, opacity 0.1s linear;
    transition: translate 0.1s linear, rotate 0.1s linear, opacity 0.1s linear;
  }
  .c-ham .c-ham__bar:nth-of-type(1) {
    translate: -4px -6px;
  }
  .c-ham .c-ham__bar:nth-of-type(2) {
    translate: 0 0;
    opacity: 1;
  }
  .c-ham .c-ham__bar:nth-of-type(3) {
    translate: 4px 6px;
  }
  .c-ham.is-active .c-ham__bar:nth-of-type(1) {
    translate: 0 0;
    rotate: -45deg;
  }
  .c-ham.is-active .c-ham__bar:nth-of-type(2) {
    translate: 200% 0;
    opacity: 0;
  }
  .c-ham.is-active .c-ham__bar:nth-of-type(3) {
    translate: 0 0;
    rotate: 45deg;
  }
}

body.--shop-lower .c-ham {
  mix-blend-mode: difference;
  background-blend-mode: difference;
}
body.--shop-lower .c-ham .c-ham__wrapper {
  background-color: transparent;
}
body.--shop-lower .c-ham .c-ham__bar {
  background-color: #fff;
}
body.--shop-lower .c-ham.is-active {
  mix-blend-mode: normal;
}
body.--shop-lower .c-ham.is-active .c-ham__wrapper {
  background-color: normal;
}
body.--shop-lower .c-ham.is-active .c-ham__bar {
  mix-blend-mode: normal;
  background-color: #530000;
}

@media screen and (min-width: 800px) {
  .c-pageTop {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .c-pageTop {
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #0053DB;
    -webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
    position: fixed;
    right: 16px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.48s ease-in-out;
    transition: opacity 0.48s ease-in-out;
  }
  .c-pageTop.is-active {
    opacity: 1;
    pointer-events: all;
  }
  .c-pageTop > img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
  }
}

.c-contact-footer {
  background-color: #333;
}
@media screen and (min-width: 800px) {
  .c-contact-footer {
    padding-block: 72px 100px;
  }
}
@media screen and (max-width: 800px) {
  .c-contact-footer {
    padding-block: 100px 80px;
  }
}
.c-contact-footer .shoplink__ul {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 800px) {
  .c-contact-footer .shoplink__ul {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1000px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1040px) {
  .c-contact-footer .shoplink__ul {
    max-width: 100%;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 800px) {
  .c-contact-footer .shoplink__ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.c-contact-footer .shoplink {
  display: -ms-grid;
  display: grid;
  place-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  -webkit-transition: background 0.48s ease-in-out;
  transition: background 0.48s ease-in-out;
}
@media screen and (min-width: 800px) {
  .c-contact-footer .shoplink {
    aspect-ratio: 330/336;
  }
}
@media screen and (max-width: 800px) {
  .c-contact-footer .shoplink {
    aspect-ratio: 334/180;
    -webkit-margin-before: 0 !important;
    margin-block-start: 0 !important;
  }
}
.c-contact-footer .shoplink::before, .c-contact-footer .shoplink::after {
  display: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transition: width 0.48s ease-in-out, height 0.48s ease-in-out, border 0.48s ease-in-out;
  transition: width 0.48s ease-in-out, height 0.48s ease-in-out, border 0.48s ease-in-out;
}
@media (any-hover: hover) {
  .c-contact-footer .shoplink:hover::before, .c-contact-footer .shoplink:hover::after {
    border: 1px solid rgba(255, 255, 255, 0.6);
  }
  .c-contact-footer .shoplink:hover::before {
    width: calc(100% - 10px - 10px);
    height: calc(100% - 10px - 10px);
  }
  .c-contact-footer .shoplink:hover::after {
    width: calc(100% - 20px - 20px);
    height: calc(100% - 20px - 20px);
  }
}
@media screen and (min-width: 800px) {
  .c-contact-footer .shoplink.--libera {
    background-image: url(../img/common/contact-footer-libera-pc.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  .c-contact-footer .shoplink.--libera:hover {
    background-image: url(../img/common/contact-footer-libera-pc-hover.webp);
  }
}
@media screen and (max-width: 800px) {
  .c-contact-footer .shoplink.--libera {
    background-image: url(../img/common/contact-footer-libera-sp.webp);
  }
}
.c-contact-footer .shoplink.--libera > img {
  width: 57.5757575758%;
  width: 190px;
}
@media screen and (min-width: 800px) {
  .c-contact-footer .shoplink.--bakers {
    background-image: url(../img/common/contact-footer-bakers-pc.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  .c-contact-footer .shoplink.--bakers:hover {
    background-image: url(../img/common/contact-footer-bakers-pc-hover.webp);
  }
}
@media screen and (max-width: 800px) {
  .c-contact-footer .shoplink.--bakers {
    background-image: url(../img/common/contact-footer-bakers-sp.webp);
  }
}
.c-contact-footer .shoplink.--bakers > img {
  width: 164px;
}
@media screen and (min-width: 800px) {
  .c-contact-footer .shoplink.--thebase {
    background-image: url(../img/common/contact-footer-thebase-pc.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  .c-contact-footer .shoplink.--thebase:hover {
    background-image: url(../img/common/contact-footer-thebase-pc-hover.webp);
  }
}
@media screen and (max-width: 800px) {
  .c-contact-footer .shoplink.--thebase {
    background-image: url(../img/common/contact-footer-thebase-sp.webp);
  }
}
.c-contact-footer .shoplink.--thebase > img {
  width: 120px;
}
.c-contact-footer h2 {
  color: #fff;
  font-size: clamp(1.375rem, 0.9788732394rem + 1.6901408451vw, 2.5rem);
  letter-spacing: 2.2px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .c-contact-footer h2 {
    -webkit-margin-before: 54px;
    margin-block-start: 54px;
  }
}
@media screen and (max-width: 800px) {
  .c-contact-footer h2 {
    -webkit-margin-before: 80px;
    margin-block-start: 80px;
  }
}
.c-contact-footer h2 + p {
  -webkit-margin-before: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  margin-block-start: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  color: #fff;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
.c-contact-footer .cva__ul {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.5rem, 1.1478873239rem + 1.5023474178vw, 2.5rem);
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .c-contact-footer .cva__ul {
    max-width: 1000px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }
}
@media screen and (max-width: 1048px) {
  .c-contact-footer .cva__ul {
    max-width: 100%;
    justify-items: center;
    padding-inline: 28px;
  }
}
@media screen and (max-width: 800px) {
  .c-contact-footer .cva__ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-margin-before: 80px;
    margin-block-start: 80px;
  }
}

.c-access {
  background-color: #F7F7F2;
}
@media screen and (min-width: 800px) {
  .c-access {
    padding-block: 100px;
  }
}
@media screen and (max-width: 800px) {
  .c-access {
    padding-block: 120px 92px;
  }
}
.c-access h2 {
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  line-height: 150%; /* 48px */
  text-align: center;
}
.c-access h2 + p {
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-weight: 300;
  line-height: 180%; /* 25.2px */
  text-align: center;
}
.c-access .googlemap {
  max-width: 1000px;
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
  margin-inline: auto;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
@media screen and (min-width: 800px) {
  .c-access .googlemap {
    aspect-ratio: 1000/330;
  }
}
@media screen and (max-width: 800px) {
  .c-access .googlemap {
    width: calc(100% - 20px);
    aspect-ratio: 355/260;
    margin-inline: 0 20px;
  }
}
.c-access .googlemap > iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-access .googlemap > a {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-grid-columns: 24px auto 24px;
  grid-template-columns: 24px auto 24px;
  -webkit-margin-before: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  margin-block-start: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  -webkit-margin-start: 20px;
  margin-inline-start: 20px;
  opacity: 1;
  -webkit-transition: opacity 0.24s ease-in-out;
  transition: opacity 0.24s ease-in-out;
}
.c-access .googlemap > a .icon:first-of-type {
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
}
.c-access .googlemap > a .icon:last-of-type {
  -webkit-margin-start: 4px;
  margin-inline-start: 4px;
}
@media (any-hover: hover) {
  .c-access .googlemap > a:hover {
    opacity: 0.7;
  }
}
.c-access .information {
  display: -ms-grid;
  display: grid;
  max-width: 1000px;
  -webkit-margin-before: 48px;
  margin-block-start: 48px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .c-access .information {
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 24px auto 24px auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: "time add" "time map" "time link";
    gap: 24px;
  }
}
@media screen and (max-width: 1040px) {
  .c-access .information {
    max-width: 100%;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 800px) {
  .c-access .information {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 20px auto 20px auto 20px auto;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "time" "add" "map" "link";
    gap: 20px;
  }
}
.c-access .information > article {
  background-color: #fff;
}
@media screen and (min-width: 800px) {
  .c-access .information > article {
    padding: 24px;
  }
}
@media screen and (max-width: 800px) {
  .c-access .information > article {
    padding: 32px;
  }
}
.c-access .information > article.--time {
  grid-area: time;
}
.c-access .information > article.--add {
  grid-area: add;
}
.c-access .information > article.--accessmap {
  grid-area: map;
}
@media screen and (min-width: 800px) {
  .c-access .information > article.--accessmap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 180px;
    grid-template-columns: 1fr 180px;
    gap: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
  }
}
@media screen and (max-width: 800px) {
  .c-access .information > article.--accessmap .map {
    width: 100%;
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
  }
}
@media screen and (min-width: 800px) {
  .c-access .information > article .wrapper {
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
  }
}
.c-access .information > article h3 {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 24px auto;
  grid-template-columns: 24px auto;
  gap: 16px;
  -webkit-margin-after: 12px;
  margin-block-end: 12px;
}
.c-access .information > article p + h4 {
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
}
.c-access .information > article h4 {
  /* margin-block-end: 8px; */
}
.c-access .information > article p {
  line-height: 180%;
}
.c-access .information > article .note {
  display: block;
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
  -webkit-padding-start: 1em;
  padding-inline-start: 1em;
  text-indent: -1em;
}
.c-access .information .--link {
  grid-area: link;
  margin-inline: auto 0;
  position: relative;
}
@media screen and (min-width: 800px){
  .c-access .information > article.--time {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }
  .c-access .information > article.--add {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .c-access .information > article.--accessmap {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .c-access .information .--link {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
}
@media screen and (max-width: 800px){
  .c-access .information > article.--time {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .c-access .information > article.--add {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .c-access .information > article.--accessmap {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .c-access .information .--link {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
}
.c-access .information .--link .arrow {
  -webkit-margin-start: 0.5em;
  margin-inline-start: 0.5em;
}
.c-access .information .--link::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: -webkit-transform 0.48s ease-in-out;
  transition: -webkit-transform 0.48s ease-in-out;
  transition: transform 0.48s ease-in-out;
  transition: transform 0.48s ease-in-out, -webkit-transform 0.48s ease-in-out;
  position: absolute;
  top: 1lh;
  left: 0;
}
@media (any-hover: hover) {
  .c-access .information .--link:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.c-breadcrumb {
  -webkit-margin-before: clamp(0.5rem, 0.323943662rem + 0.7511737089vw, 1rem);
  margin-block-start: clamp(0.5rem, 0.323943662rem + 0.7511737089vw, 1rem);
}
.c-breadcrumb .c-breadcrumb__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 8px;
}
@media screen and (max-width: 1240px) {
  .c-breadcrumb .c-breadcrumb__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-inline: 20px;
  }
}
.c-breadcrumb span {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.312px;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
.c-breadcrumb span.current-item {
  color: rgba(51, 51, 51, 0.6);
}
.c-breadcrumb .arrow {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon-breadcrumb.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (any-hover: hover) {
  .c-breadcrumb a:hover span {
    color: #530000;
  }
}

body.--the-terrace .c-breadcrumb span {
  color: #fff;
}
body.--the-terrace .c-breadcrumb .arrow {
  background-image: url(../img/common/icon-breadcrumb-white.webp);
}

body.p-top .kv {
  aspect-ratio: 1112/644;
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
  position: relative;
}
@media screen and (min-width: 800px) {
  body.p-top .kv .kv__contents {
    -webkit-margin-before: 5.1041666667vw;
    margin-block-start: 5.1041666667vw;
    -webkit-margin-start: 2.0833333333vw;
    margin-inline-start: 2.0833333333vw;
    z-index: 10;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .kv .kv__contents {
    padding-inline: 20px;
  }
}
body.p-top .kv .kv__contents h1, body.p-top .kv .kv__contents p {
  position: relative;
}
@media screen and (min-width: 800px) {
  body.p-top .kv .kv__contents span {
    mix-blend-mode: difference;
  }
}
body.p-top .kv .kv__contents span.--main {
  color: #333;
}
@media screen and (min-width: 800px) {
  body.p-top .kv .kv__contents span.--white {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .kv .kv__contents span.--white {
    display: none;
  }
}
body.p-top .kv .kv__contents h1 {
  /* font-family: "Zen Old Mincho", serif; */
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: var(--grandgate_main, #530000);
  font-size: clamp(2rem, 1.823943662rem + 0.7511737089vw, 2.5rem);
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 44.8px */
}
body.p-top .kv .kv__contents p {
  -webkit-margin-before: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  margin-block-start: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  color: var(--grandgate_main, #530000);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
}
body.p-top .kv .kv__contents p + p {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
body.p-top .kv .kv__images {
  display: block;
  width: 76%;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  body.p-top .kv .kv__images {
    aspect-ratio: 1112/644;
    margin-inline: auto 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .kv .kv__images {
    display: block;
    width: 89.3333333333%;
    aspect-ratio: 335/572;
    -webkit-margin-before: 48px;
    margin-block-start: 48px;
    margin-inline: auto 0;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
    position: relative;
  }
}
body.p-top .kv .kv__images img {
  opacity: 0;
  position: absolute;
}
@media screen and (min-width: 800px) {
  body.p-top .kv .kv__images img {
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .kv .kv__images img {
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 800px) {
  body.p-top .kv .kv__images.is-active picture:nth-of-type(1) img {
    -webkit-animation: top-kv-pc 1s ease-in-out forwards;
    animation: top-kv-pc 1s ease-in-out forwards;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .kv .kv__images.is-active picture:nth-of-type(1) img {
    -webkit-animation: top-kv-sp 1s ease-in-out forwards;
    animation: top-kv-sp 1s ease-in-out forwards;
  }
}
@media screen and (min-width: 800px) {
  body.p-top .kv .kv__images.is-active picture:nth-of-type(2) img {
    -webkit-animation: top-kv-pc 1s 0.3s ease-in-out forwards;
    animation: top-kv-pc 1s 0.3s ease-in-out forwards;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .kv .kv__images.is-active picture:nth-of-type(2) img {
    -webkit-animation: top-kv-sp 1s 0.3s ease-in-out forwards;
    animation: top-kv-sp 1s 0.3s ease-in-out forwards;
  }
}
@media screen and (min-width: 800px) {
  body.p-top .kv .kv__images.is-active picture:nth-of-type(3) img {
    -webkit-animation: top-kv-pc 1s 0.6s ease-in-out forwards;
    animation: top-kv-pc 1s 0.6s ease-in-out forwards;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .kv .kv__images.is-active picture:nth-of-type(3) img {
    -webkit-animation: top-kv-sp 1s 0.6s ease-in-out forwards;
    animation: top-kv-sp 1s 0.6s ease-in-out forwards;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .shoplink {
    -webkit-margin-before: clamp(7.5rem, 6.6197183099rem + 3.7558685446vw, 10rem);
    margin-block-start: clamp(7.5rem, 6.6197183099rem + 3.7558685446vw, 10rem);
  }
}
body.p-top .shoplink > .inner {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 1140px) {
  body.p-top .shoplink > .inner {
    padding-inline: 20px;
  }
}
body.p-top .shoplink h2 {
  color: var(--grandgate_bk, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
}
body.p-top .shoplink h2 + p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 25.2px */
}
body.p-top .shoplink .shoplist {
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-top .shoplink .shoplist {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .shoplink .shoplist {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 72px;
  }
}
body.p-top .shoplink .shoplist > li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-padding-after: 8px;
  padding-block-end: 8px;
  border-bottom: 1px solid #333;
  position: relative;
  overflow: hidden;
}
body.p-top .shoplink .shoplist > li a {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
body.p-top .shoplink .shoplist > li figure {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #333;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li figure {
    aspect-ratio: 1;
    -webkit-transition: background 0.48s ease-in-out;
    transition: background 0.48s ease-in-out;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .shoplink .shoplist > li figure {
    aspect-ratio: 335/200;
  }
}
body.p-top .shoplink .shoplist > li figure {
  position: relative;
}
body.p-top .shoplink .shoplist > li figure img {
  height: 30%;
  position: absolute;
  inset: 0;
  margin: auto;
}
body.p-top .shoplink .shoplist > li figure figcaption {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
  position: absolute;
}
@media screen and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li figure figcaption {
    bottom: 16px;
    left: 16px;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .shoplink .shoplist > li figure figcaption {
    bottom: 8px;
    left: 10px;
  }
}
body.p-top .shoplink .shoplist > li h3 {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}
body.p-top .shoplink .shoplist > li h3 .--en {
  display: block;
  color: var(--grandgate_bk, #333);
  font-family: Marcellus;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
body.p-top .shoplink .shoplist > li h3 .--main {
  display: block;
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
}
@media screen and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li h3 .--main {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .shoplink .shoplist > li h3 .--main {
    font-size: 20px;
  }
}
body.p-top .shoplink .shoplist > li .tabarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px 8px;
  width: 100%;
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  padding: 8px 20px;
  background: var(--grandgate_glay, #F7F7F2);
}
body.p-top .shoplink .shoplist > li .tabarea li {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 133.333% */
}
body.p-top .shoplink .shoplist > li p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-top .shoplink .shoplist > li p .arrow {
  -webkit-margin-start: 0.5em;
  margin-inline-start: 0.5em;
  -webkit-transition: margin 0.24s ease-in-out;
  transition: margin 0.24s ease-in-out;
}
@media screen and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(1) figure {
    background-image: url(../img/common/contact-footer-libera-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(1) figure {
    background-image: url(../img/common/contact-footer-libera-sp.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(1) a:hover ~ figure {
    background-image: url(../img/common/contact-footer-libera-pc-hover.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-top .shoplink .shoplist > li:nth-of-type(1) a:hover ~ p .arrow {
    -webkit-margin-start: 0.8em;
    margin-inline-start: 0.8em;
  }
}
@media screen and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(2) figure {
    background-image: url(../img/common/contact-footer-bakers-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(2) figure {
    background-image: url(../img/common/contact-footer-bakers-sp.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(2) a:hover ~ figure {
    background-image: url(../img/common/contact-footer-bakers-pc-hover.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-top .shoplink .shoplist > li:nth-of-type(2) a:hover ~ p .arrow {
    -webkit-margin-start: 0.8em;
    margin-inline-start: 0.8em;
  }
}
@media screen and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(3) figure {
    background-image: url(../img/common/contact-footer-thebase-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(3) figure {
    background-image: url(../img/common/contact-footer-thebase-sp.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) and (min-width: 800px) {
  body.p-top .shoplink .shoplist > li:nth-of-type(3) a:hover ~ figure {
    background-image: url(../img/common/contact-footer-thebase-pc-hover.webp);
  }
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-top .shoplink .shoplist > li:nth-of-type(3) a:hover ~ p .arrow {
    -webkit-margin-start: 0.8em;
    margin-inline-start: 0.8em;
  }
}
body.p-top .floormap {
  -webkit-margin-before: clamp(7.5rem, 6.6197183099rem + 3.7558685446vw, 10rem);
  margin-block-start: clamp(7.5rem, 6.6197183099rem + 3.7558685446vw, 10rem);
  -webkit-padding-after: 120px;
  padding-block-end: 120px;
}
body.p-top .floormap > .inner {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 1140px) {
  body.p-top .floormap > .inner {
    padding-inline: 20px;
  }
}
body.p-top .floormap h2 {
  color: var(--grandgate_bk, #333);
  text-align: center;
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
}
body.p-top .floormap h2 + picture {
  display: block;
  -webkit-margin-before: clamp(7.5rem, 7.0598591549rem + 1.8779342723vw, 8.75rem);
  margin-block-start: clamp(7.5rem, 7.0598591549rem + 1.8779342723vw, 8.75rem);
}
body.p-top .scene {
  padding-block: clamp(6.25rem, 5.8098591549rem + 1.8779342723vw, 7.5rem) 100px;
  background: var(--grandgate_glay, #F7F7F2);
}
body.p-top .scene > .inner {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 1140px) {
  body.p-top .scene > .inner {
    padding-inline: 20px;
  }
}
body.p-top .scene h2 {
  color: var(--grandgate_bk, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
}
body.p-top .scene h2 + p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-top .scene .scene-container {
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
}
body.p-top .scene .scene-container .slider.--top-scene.--thumb {
  background: var(--grandgate_main, #530000);
}
@media screen and (min-width: 800px) {
  body.p-top .scene .scene-container .slider.--top-scene.--thumb {
    padding: 8px;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .scene .scene-container .slider.--top-scene.--thumb {
    padding: 16px 12px;
  }
}
body.p-top .scene .scene-container .slider.--top-scene.--thumb .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 4px;
}
body.p-top .scene .scene-container .slider.--top-scene.--thumb .swiper-slide {
  display: -ms-grid;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  -webkit-transition: background-color 0.48s ease-in-out;
  transition: background-color 0.48s ease-in-out;
}
body.p-top .scene .scene-container .slider.--top-scene.--thumb .swiper-slide::before {
  display: block;
  content: "";
  width: 96%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50vw;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 0;
  -webkit-transition: background-color 0.48s ease-in-out;
  transition: background-color 0.48s ease-in-out;
}
@media screen and (max-width: 800px) {
  body.p-top .scene .scene-container .slider.--top-scene.--thumb .swiper-slide {
    width: 33.3333333333% !important;
  }
}
@media screen and (any-hover: hover) and (min-width: 800px) {
  body.p-top .scene .scene-container .slider.--top-scene.--thumb .swiper-slide:hover::before {
    background-color: white;
  }
  body.p-top .scene .scene-container .slider.--top-scene.--thumb .swiper-slide:hover span {
    color: #530000;
  }
}
body.p-top .scene .scene-container .slider.--top-scene.--thumb .swiper-slide.swiper-slide-thumb-active .category {
  background-color: white;
}
body.p-top .scene .scene-container .slider.--top-scene.--thumb .swiper-slide.swiper-slide-thumb-active span {
  color: #530000;
}
body.p-top .scene .scene-container .slider.--top-scene.--thumb .category {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 96%;
  padding: 4px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50vw;
  -webkit-transition: background-color 0.48s ease-in-out;
  transition: background-color 0.48s ease-in-out;
}
body.p-top .scene .scene-container .slider.--top-scene.--thumb .category span {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.15px;
  text-align: center;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
  position: relative;
  z-index: 5;
}
body.p-top .scene .scene-container .slider.--top-scene.--main {
  -webkit-margin-before: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  margin-block-start: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
}
body.p-top .scene .scene-container .slider.--top-scene.--main .slider.--top-scene_content article figure {
  width: 100%;
  aspect-ratio: 480/326;
  overflow: hidden;
}
body.p-top .scene .scene-container .slider.--top-scene.--main .slider.--top-scene_content article figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-top .scene .scene-container .slider.--top-scene.--main .slider.--top-scene_content article h3 {
  display: block;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
body.p-top .scene .scene-container .slider.--top-scene.--main .slider.--top-scene_content article p {
  display: block;
  -webkit-margin-before: 4px;
  margin-block-start: 4px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
}
body.p-top .scene .scene-container .slider.--top-scene.--main .slider.--top-scene_content article a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: Marcellus;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
  text-transform: uppercase;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
  pointer-events: all;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-top .scene .scene-container .slider.--top-scene.--main .slider.--top-scene_content article a:hover {
    color: #530000;
  }
}
body.p-top .movie {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 800px) {
  body.p-top .movie {
    aspect-ratio: 1440/500;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .movie {
    aspect-ratio: 375/410;
  }
}
body.p-top .movie::after {
  /* content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  background-image: radial-gradient($color-main 20%, transparent 20%),
  radial-gradient($color-main 20%, transparent 20%);
  background-size: 4px 4px;
  background-position: 0 0, 1px 1px;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2; */
}
body.p-top .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-top .concept {
  padding-block: clamp(7.5rem, 6.6197183099rem + 3.7558685446vw, 10rem) clamp(4.375rem, 3.2746478873rem + 4.6948356808vw, 7.5rem);
}
body.p-top .concept > .inner {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 1140px) {
  body.p-top .concept > .inner {
    padding-inline: 20px;
  }
}
body.p-top .concept > .inner {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-top .concept > .inner {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "img title" "img desc";
  }
}
@media screen and (max-width: 800px) {
  body.p-top .concept > .inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: "title" "desc" "img";
  }
}
body.p-top .concept h2 {
  grid-area: title;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
}
@media screen and (max-width: 800px) {
  body.p-top .concept h2 {
    text-align: center;
  }
}
body.p-top .concept h2 .small {
  display: block;
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  color: var(--grandgate_bk, #333);
  font-family: Marcellus;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  body.p-top .concept h2 .small {
    text-align: center;
  }
}
body.p-top .concept p {
  display: block;
  grid-area: desc;
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  position: relative;
}
body.p-top .concept figure {
  grid-area: img;
  width: 100%;
  max-width: 454px;
  aspect-ratio: 1;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 800px){
  body.p-top .concept h2 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  body.p-top .concept p {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  body.p-top .concept figure {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 800px){
  body.p-top .concept h2 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  body.p-top .concept p {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  body.p-top .concept figure {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .concept figure {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
  }
}
body.p-top .concept figure > img {
  position: absolute;
  inset: 0;
  margin: auto;
}
body.p-top .concept figure > img:nth-of-type(1) {
  z-index: 3;
  opacity: 0;
}
body.p-top .concept figure > img:nth-of-type(2) {
  z-index: 3;
  opacity: 0;
}
body.p-top .concept figure > img:nth-of-type(3) {
  z-index: 3;
  opacity: 0;
}
body.p-top .concept figure > img:nth-of-type(4) {
  z-index: 3;
  opacity: 0;
}
body.p-top .concept figure > img:nth-of-type(5) {
  z-index: 2;
  opacity: 0;
}
body.p-top .concept figure > img:nth-of-type(6) {
  z-index: 1;
  opacity: 0;
}
body.p-top .concept figure.is-active > img:nth-of-type(1) {
  -webkit-animation: top-concept-opacity 0.8s 1.4s ease-in-out forwards;
  animation: top-concept-opacity 0.8s 1.4s ease-in-out forwards;
}
body.p-top .concept figure.is-active > img:nth-of-type(2) {
  -webkit-animation: top-concept-opacity 0.8s 1.6s ease-in-out forwards;
  animation: top-concept-opacity 0.8s 1.6s ease-in-out forwards;
}
body.p-top .concept figure.is-active > img:nth-of-type(3) {
  -webkit-animation: top-concept-opacity 0.8s 1.8s ease-in-out forwards;
  animation: top-concept-opacity 0.8s 1.8s ease-in-out forwards;
}
body.p-top .concept figure.is-active > img:nth-of-type(4) {
  -webkit-animation: top-concept-opacity 0.8s 2s ease-in-out forwards;
  animation: top-concept-opacity 0.8s 2s ease-in-out forwards;
}
body.p-top .concept figure.is-active > img:nth-of-type(5) {
  -webkit-animation: top-concept-opacity 2s ease-in-out forwards;
  animation: top-concept-opacity 2s ease-in-out forwards;
}
body.p-top .concept figure.is-active > img:nth-of-type(6) {
  -webkit-animation: top-concept-opacity 2s ease-in-out forwards;
  animation: top-concept-opacity 2s ease-in-out forwards;
}
body.p-top .imagearea > figure {
  position: relative;
}
body.p-top .imagearea > figure > picture:not(:first-of-type) {
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  inset: 0;
  margin: auto;
}
body.p-top .imagearea > figure.is-active > picture:nth-of-type(2) {
  -webkit-animation: top-imagearea 0.8s 0.2s ease-in-out forwards;
  animation: top-imagearea 0.8s 0.2s ease-in-out forwards;
}
body.p-top .imagearea > figure.is-active > picture:nth-of-type(3) {
  -webkit-animation: top-imagearea 0.8s 0.4s ease-in-out forwards;
  animation: top-imagearea 0.8s 0.4s ease-in-out forwards;
}
body.p-top .imagearea > figure.is-active > picture:nth-of-type(4) {
  -webkit-animation: top-imagearea 0.8s 0.8s ease-in-out forwards;
  animation: top-imagearea 0.8s 0.8s ease-in-out forwards;
}
body.p-top .imagearea > figure.is-active > picture:nth-of-type(5) {
  -webkit-animation: top-imagearea 0.8s 1s ease-in-out forwards;
  animation: top-imagearea 0.8s 1s ease-in-out forwards;
}
body.p-top .topics {
  padding-block: clamp(7.5rem, 6.6197183099rem + 3.7558685446vw, 10rem) clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
}
body.p-top .topics > .inner {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 1140px) {
  body.p-top .topics > .inner {
    padding-inline: 20px;
  }
}
body.p-top .topics > .inner {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-top .topics > .inner {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .topics > .inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
body.p-top .topics .titlearea h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 33px */
}
@media screen and (max-width: 800px) {
  body.p-top .topics .titlearea h2 {
    text-align: center;
  }
}
body.p-top .topics .titlearea h2 + p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 25.2px */
}
@media screen and (max-width: 800px) {
  body.p-top .topics .titlearea h2 + p {
    text-align: center;
  }
}
body.p-top .topics .contentarea ul li {
  border-top: 1px solid rgba(51, 51, 51, 0.5);
}
body.p-top .topics .contentarea ul li:last-of-type {
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
body.p-top .topics .contentarea ul li dl {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 800px) {
  body.p-top .topics .contentarea ul li dl {
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .topics .contentarea ul li dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
body.p-top .topics .contentarea ul li dt {
  color: var(--grandgate_bk, #333);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
body.p-top .topics .contentarea ul li dd {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
@media screen and (min-width: 800px) {
  body.p-top .topics .contentarea ul li dd {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 800px) {
  body.p-top .topics .contentarea ul li dd {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
}
body.p-top .topics .contentarea ul li a {
  display: block;
  padding-block: clamp(1.75rem, 1.485915493rem + 1.1267605634vw, 2.5rem);
  background-color: rgba(247, 247, 242, 0);
  -webkit-transition: background 0.48s ease-in-out;
  transition: background 0.48s ease-in-out;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-top .topics .contentarea ul li a:hover {
    background-color: rgba(247, 247, 242, 0.5);
  }
}
body.p-top .topics .contentarea ul + a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  margin-inline: auto 0;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  position: relative;
}
body.p-top .topics .contentarea ul + a::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  scale: 0 1;
  position: absolute;
  bottom: -0.15em;
  left: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: scale 0.24s ease-in-out;
  transition: scale 0.24s ease-in-out;
}
body.p-top .topics .contentarea ul + a .arrow {
  -webkit-margin-start: 0.5em;
  margin-inline-start: 0.5em;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-top .topics .contentarea ul + a:hover::before {
    scale: 1 1;
  }
}

body.p-page.--contact .inner {
  -webkit-margin-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  margin-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  -webkit-margin-after: 160px;
  margin-block-end: 160px;
}
body.p-page.--contact .inner {
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (max-width: 840px) {
  body.p-page.--contact .inner {
    padding-inline: 20px;
  }
}
body.p-page.--contact .c-button.--main {
  width: 325px;
  height: 60px;
  position: relative;
}
body.p-page.--contact .c-button.--main input {
  border: none;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  position: absolute;
  inset: 0;
  margin: auto;
}
body.p-page.--contact.--contact .inner .buttonarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-margin-before: 54px;
  margin-block-start: 54px;
}
@media screen and (max-width: 800px) {
  body.p-page.--contact.--contact .inner .buttonarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.p-page.--contact.--contact .inner .wpcf7 {
  -webkit-margin-before: 54px;
  margin-block-start: 54px;
}
body.p-page.--contact.--contact .inner .wpcf7 label:not(:first-of-type) {
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
}
body.p-page.--contact.--contact .inner .wpcf7 label .title {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--contact.--contact .inner .wpcf7 label .title .small {
  -webkit-margin-start: 0.25em;
  margin-inline-start: 0.25em;
  font-size: 13px;
}
body.p-page.--contact.--contact .inner .wpcf7 label .required {
  display: inline grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-start: 8px;
  margin-inline-start: 8px;
  padding: 2px 9.5px;
  background-color: #530000;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 15.4px */
  letter-spacing: 1.1px;
  position: relative;
  top: -0.15em;
}
body.p-page.--contact.--contact .inner .wpcf7 label span.input {
  width: 100%;
}
body.p-page.--contact.--contact .inner .wpcf7 label input, body.p-page.--contact.--contact .inner .wpcf7 label textarea {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
  padding: 14px 16px;
  border: none;
  background: var(--grandgate_glay, #F7F7F2);
  color: var(--grandgate-bk-60, #858585);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--contact.--contact .inner .wpcf7 label input:focus, body.p-page.--contact.--contact .inner .wpcf7 label textarea:focus {
  outline: 1px solid #530000;
}
body.p-page.--contact.--contact .inner .wpcf7 label input[type=text], body.p-page.--contact.--contact .inner .wpcf7 label input[type=email], body.p-page.--contact.--contact .inner .wpcf7 label input[type=tel], body.p-page.--contact.--contact .inner .wpcf7 label textarea[type=text], body.p-page.--contact.--contact .inner .wpcf7 label textarea[type=email], body.p-page.--contact.--contact .inner .wpcf7 label textarea[type=tel] {
  width: 100%;
}
body.p-page.--contact.--contact .inner .wpcf7 label textarea {
  width: 100%;
}
body.p-page.--contact.--contact .inner .wpcf7 label .checkbox {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--contact.--contact .inner .wpcf7 label .checkbox .wpcf7-list-item {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
}
body.p-page.--contact.--contact .inner .wpcf7 label .checkbox .wpcf7-list-item input[type=checkbox] {
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
}
body.p-page.--contact.--contact .inner .wpcf7 .wpcf7-acceptance {
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
}
body.p-page.--contact.--contact .inner .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
}
body.p-page.--contact.--contact .inner h2 {
  -webkit-margin-before: 54px;
  margin-block-start: 54px;
  color: var(--black, #333);
  /* h4/NSJ_18px */
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
@media screen and (min-width: 800px) {
  body.p-page.--contact.--contact .inner h2 {
    text-align: center;
  }
}
body.p-page.--contact.--contact .inner .privacy {
  width: 100%;
  height: 180px;
  overflow-y: auto;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  padding: 24px clamp(0.625rem, -0.5193661972rem + 4.882629108vw, 3.875rem);
  border: 1px solid var(--grandgate_bk, #333);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
}
body.p-page.--contact.--contact .inner .privacy h3 {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
body.p-page.--contact.--contact .inner .privacy h3 + p {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}
body.p-page.--contact.--contact .inner .privacy ol {
  list-style-type: decimal;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  padding-left: 1.5em;
}
body.p-page.--contact.--contact .inner .privacy ol > li {
  list-style-type: inherit;
  -webkit-margin-before: 0.5em;
  margin-block-start: 0.5em;
}
body.p-page.--contact.--contact .inner .privacy ol > li ol {
  -webkit-margin-before: 0.5em;
  margin-block-start: 0.5em;
  position: relative;
  list-style-type: none;
}
body.p-page.--contact.--contact .inner .privacy ol > li ol > li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 0.5em;
  counter-increment: number;
}
body.p-page.--contact.--contact .inner .privacy ol > li ol > li::before {
  display: inline;
  content: "(" counter(number) ")";
}
body.p-page.--contact.--contact .inner .privacy ol > li ol > li p {
  display: inline;
}
body.p-page.--contact.--contact .inner .privacy ol + p {
  -webkit-margin-before: 1.5em;
  margin-block-start: 1.5em;
}
body.p-page.--contact.--contact .wpcf7 form .wpcf7-response-output {
  border: none;
}
body.p-page.--contact.--check .inner h1, body.p-page.--contact.--thanks .inner h1 {
  -webkit-margin-before: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  margin-block-start: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  color: var(--grandgate_bk, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
}
body.p-page.--contact.--check .inner h1 + .wpcf7 {
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
}
body.p-page.--contact.--check .inner p:has(label):not(:first-of-type) {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
body.p-page.--contact.--check .inner label {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-page.--contact.--check .inner label {
    -ms-grid-columns: auto 200px 1em 1fr 1em;
    grid-template-columns: auto 200px 1em 1fr 1em;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--contact.--check .inner label {
    -ms-grid-columns: 1em 1fr;
    grid-template-columns: 1em 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  body.p-page.--contact.--check .inner label * {
    text-align: left;
  }
}
body.p-page.--contact.--thanks .inner h1 + p {
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
}
body.p-page.--contact.--thanks .inner h1 + p + p {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
body.p-page.--contact.--thanks .inner p {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 230%; /* 36.8px */
  text-align: center;
}

body.p-page.--404 .inner {
  -webkit-margin-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  margin-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  -webkit-margin-after: 160px;
  margin-block-end: 160px;
}
body.p-page.--404 .inner {
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (max-width: 840px) {
  body.p-page.--404 .inner {
    padding-inline: 20px;
  }
}
body.p-page.--404 .inner h1 + p {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 230%; /* 36.8px */
  text-align: center;
}
body.p-page.--404 .inner .buttonarea {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-margin-before: 54px;
  margin-block-start: 54px;
}
body.p-page.--404 .inner .buttonarea .c-button {
  width: 320px;
}

.p-kv {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  -webkit-margin-before: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  margin-block-start: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
}
@media screen and (min-width: 800px) {
  .p-kv {
    aspect-ratio: 1200/460;
  }
}
@media screen and (max-width: 1296px) {
  .p-kv {
    padding-inline: 48px;
  }
}
@media screen and (max-width: 800px) {
  .p-kv {
    aspect-ratio: 281/240;
  }
}
.p-kv .is-lowerkv {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 800px) {
  body.--access .p-kv .is-lowerkv {
    background-image: url("../img/access/kv-pc.webp");
  }
}
@media screen and (max-width: 800px) {
  body.--access .p-kv .is-lowerkv {
    background-image: url("../img/access/kv-sp.webp");
  }
}

@media screen and (min-width: 800px) {
  body.--shop .p-kv .is-lowerkv {
    background-image: url("../img/shop/kv-pc.webp");
  }
}
@media screen and (max-width: 800px) {
  body.--shop .p-kv .is-lowerkv {
    background-image: url("../img/shop/kv-sp.webp");
  }
}

@media screen and (min-width: 800px) {
  body.--news .p-kv .is-lowerkv {
    background-image: url("../img/news/kv-pc.webp");
  }
}
@media screen and (max-width: 800px) {
  body.--news .p-kv .is-lowerkv {
    background-image: url("../img/news/kv-sp.webp");
  }
}

body.p-page.--access .inner {
  -webkit-margin-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  margin-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  -webkit-margin-after: 160px;
  margin-block-end: 160px;
}
body.p-page.--access .inner {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1040px) {
  body.p-page.--access .inner {
    padding-inline: 20px;
  }
}
body.p-page.--access .inner {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-page.--access .inner {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--access .inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
body.p-page.--access .inner h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
}
@media screen and (max-width: 800px) {
  body.p-page.--access .inner h2 {
    text-align: center;
  }
}
body.p-page.--access .inner p {
  -webkit-margin-before: clamp(2rem, 1.3838028169rem + 2.6291079812vw, 3.75rem);
  margin-block-start: clamp(2rem, 1.3838028169rem + 2.6291079812vw, 3.75rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 230%; /* 36.8px */
  color: var(--grandgate_bk, #333);
}
body.p-page.--access .inner p + p {
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
}

body.p-page.--news .inner {
  -webkit-margin-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  margin-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  -webkit-margin-after: 160px;
  margin-block-end: 160px;
}
body.p-page.--news .inner {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1040px) {
  body.p-page.--news .inner {
    padding-inline: 20px;
  }
}
body.p-page.--news .inner {
  display: -ms-grid;
  display: grid;
  gap: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--news .inner {
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--news .inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.p-page.--news .inner .navarea .newsnav__title {
  color: var(--grandgate_bk, #333);
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
body.p-page.--news .inner .navarea ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5rem, 0.411971831rem + 0.3755868545vw, 0.75rem);
  -webkit-margin-before: clamp(1.25rem, 1.073943662rem + 0.7511737089vw, 1.75rem);
  margin-block-start: clamp(1.25rem, 1.073943662rem + 0.7511737089vw, 1.75rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--news .inner .navarea ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--news .inner .navarea ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
body.p-page.--news .inner .navarea ul li {
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: relative;
}
body.p-page.--news .inner .navarea ul li a {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  background-color: #EDE9E9;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 123.077% */
  text-align: center;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
body.p-page.--news .inner .navarea ul li a.--active {
  background-color: #DCD0D0;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-page.--news .inner .navarea ul li a:hover {
    color: #530000;
  }
}
body.p-page.--news .inner .navarea .newsnav.--dropdown {
  -webkit-margin-before: clamp(2rem, 1.823943662rem + 0.7511737089vw, 2.5rem);
  margin-block-start: clamp(2rem, 1.823943662rem + 0.7511737089vw, 2.5rem);
}
body.p-page.--news .inner .navarea .newsnav.--dropdown select {
  width: 100%;
  height: 100%;
  -webkit-margin-before: clamp(1.25rem, 1.073943662rem + 0.7511737089vw, 1.75rem);
  margin-block-start: clamp(1.25rem, 1.073943662rem + 0.7511737089vw, 1.75rem);
  padding: 10px 20px;
  border: none;
  background-color: #EDE9E9;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 123.077% */
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body.p-page.--news .inner .contentsarea h2.archive__title {
  -webkit-margin-after: 20px;
  margin-block-end: 20px;
  color: var(--grandgate_bk, #333);
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  letter-spacing: 0.02em;
  text-align: center;
}
body.p-page.--news .inner .contentsarea .news__item {
  padding-block: 16px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.6);
  position: relative;
}
body.p-page.--news .inner .contentsarea .news__item:nth-of-type(1) {
  border-top: 1px solid rgba(51, 51, 51, 0.6);
}
body.p-page.--news .inner .contentsarea .news__item .news__item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 0.735915493rem + 1.1267605634vw, 1.75rem);
}
body.p-page.--news .inner .contentsarea .news__item figure {
  width: 160px;
  aspect-ratio: 160/100;
  overflow: hidden;
}
body.p-page.--news .inner .contentsarea .news__item figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  scale: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: scale 0.48s ease-in-out;
  transition: scale 0.48s ease-in-out;
}
body.p-page.--news .inner .contentsarea .news__item .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
body.p-page.--news .inner .contentsarea .news__item .content .date {
  color: var(--grandgate_bk, #333);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
body.p-page.--news .inner .contentsarea .news__item .content .cat {
  -webkit-margin-start: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
  margin-inline-start: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
  color: var(--grandgate_main, #530000);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
}
body.p-page.--news .inner .contentsarea .news__item .content .title {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 800px) {
  body.p-page.--news .inner .contentsarea .news__item .content .title {
    -webkit-line-clamp: 1;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--news .inner .contentsarea .news__item .content .title {
    -webkit-line-clamp: 2;
  }
}
body.p-page.--news .inner .contentsarea .news__item a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-page.--news .inner .contentsarea .news__item a:hover ~ .news__item__inner figure > img {
    scale: 1.05;
  }
  body.p-page.--news .inner .contentsarea .news__item a:hover ~ .news__item__inner * {
    color: #530000;
  }
}
body.p-page.--news .inner .contentsarea .news__item.is-hidden {
  display: none;
}
body.p-page.--news .inner .buttonarea {
  text-align: right;
}
body.p-page.--news .inner .buttonarea .js-more-btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  margin-inline: auto 0;
  border: 0;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: right;
  cursor: pointer;
  position: relative;
}
body.p-page.--news .inner .buttonarea .js-more-btn::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: -0.15em;
  left: 0;
  -webkit-transition: width 0.48s ease-in-out;
  transition: width 0.48s ease-in-out;
}
body.p-page.--news .inner .buttonarea .js-more-btn .arrow {
  -webkit-margin-start: 0.5em;
  margin-inline-start: 0.5em;
}
@media screen and (min-width: 800px) and (any-hover: hover) {
  body.p-page.--news .inner .buttonarea .js-more-btn:hover::after {
    width: 100%;
  }
}

body.p-single .inner {
  -webkit-margin-before: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  margin-block-start: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  -webkit-margin-after: 160px;
  margin-block-end: 160px;
}
body.p-single .inner {
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (max-width: 840px) {
  body.p-single .inner {
    padding-inline: 20px;
  }
}
body.p-single .inner .thumbnail {
  -webkit-margin-after: 20px;
  margin-block-end: 20px;
}
body.p-single .inner .cat {
  display: inline grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background-color: #EDE9E9;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 123.077% */
  text-align: center;
}
body.p-single .inner .date {
  -webkit-margin-start: 20px;
  margin-inline-start: 20px;
  color: var(--grandgate_bk, #333);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
}
body.p-single .inner h1 {
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  -webkit-margin-after: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  margin-block-end: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 43.2px */
}
body.p-single .inner .contentarea h2 {
  -webkit-margin-before: 5em;
  margin-block-start: 5em;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 39.6px */
}
body.p-single .inner .contentarea h3 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 39.6px */
}
body.p-single .inner .contentarea h4 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 39.6px */
}
body.p-single .inner .contentarea * {
  -webkit-margin-before: 3em;
  margin-block-start: 3em;
}
body.p-single .inner .contentarea p {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-single .inner .contentarea .has-background, body.p-single .inner .contentarea blockquote {
  -webkit-margin-before: 3em;
  margin-block-start: 3em;
  padding: 2em;
  background-color: #F7F7F2;
}
body.p-single .inner .contentarea a {
  text-decoration: underline;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
@media (any-hover: hover) {
  body.p-single .inner .contentarea a:hover {
    color: #530000;
  }
}
body.p-single .inner .pagenation {
  -webkit-margin-before: 100px;
  margin-block-start: 100px;
}
@media screen and (min-width: 800px) {
  body.p-single .inner .pagenation > ul {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  body.p-single .inner .pagenation > ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  body.p-single .inner .pagenation .pagenation__link {
    width: 100%;
    -webkit-padding-after: 16px;
    padding-block-end: 16px;
    border-top: 1px solid rgba(51, 51, 51, 0.6);
  }
  body.p-single .inner .pagenation .pagenation__link.--prev {
    border-bottom: 1px solid rgba(51, 51, 51, 0.6);
  }
}
body.p-single .inner .pagenation .pagenation__link a {
  display: block;
  width: 270px;
  -webkit-padding-before: 16px;
  padding-block-start: 16px;
}
body.p-single .inner .pagenation .pagenation__link a .text {
  display: block;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
}
body.p-single .inner .pagenation .pagenation__link a .wrapper {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 100px 1fr;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
}
body.p-single .inner .pagenation .pagenation__link a .wrapper figure {
  width: 100%;
  aspect-ratio: 100/64;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}
body.p-single .inner .pagenation .pagenation__link a .wrapper figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-single .inner .pagenation .pagenation__link a .wrapper .title {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 800px) {
  body.p-single .inner .pagenation .pagenation__link.--prev a {
    margin-inline: auto 0;
  }
}
body.p-single .inner .pagenation .pagenation__link.--prev .text {
  text-align: right;
}
body.p-single .inner .pagenation .pagenation__link.--prev .wrapper {
  -ms-grid-columns: 1fr 100px;
  grid-template-columns: 1fr 100px;
}
body.p-single .inner .pagenation .pagenation__link.--blank {
  visibility: hidden;
  width: 270px;
}
body.p-single .inner .pagenation .parent__link {
  color: var(--grandgate_bk, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  font-family: "Noto Sans JP";
  text-align: center;
}
body.p-single .inner .pagenation .parent__link a {
  text-decoration: underline;
  text-underline-offset: 8px;
}
@media screen and (max-width: 800px) {
  body.p-single .inner .pagenation li.pc-only {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  body.p-single .inner .pagenation li.sp-only {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  body.p-single .inner .pagenation li.sp-only {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }
}
body.p-single .inner .pagenation a {
  opacity: 1;
  -webkit-transition: opacity 0.48s ease-in-out;
  transition: opacity 0.48s ease-in-out;
}
@media (any-hover: hover) {
  body.p-single .inner .pagenation a:hover {
    opacity: 0.7;
  }
}

body.p-page.--shop-lower .inner {
  -webkit-margin-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  margin-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  -webkit-margin-after: 160px;
  margin-block-end: 160px;
}
body.p-page.--shop-lower .kv__shop {
  display: -ms-grid;
  display: grid;
  place-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 40px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower .kv__shop {
    aspect-ratio: 1440/640;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower .kv__shop {
    aspect-ratio: 375/592;
  }
}
body.p-page.--shop-lower .kv__shop h1 {
  display: block;
  margin-inline: auto;
}
body.p-page.--shop-lower .kv__shop p.catch.--main {
  -webkit-margin-before: 45px;
  margin-block-start: 45px;
  color: var(--grandgate_wh, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.1478873239rem + 1.5023474178vw, 2.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 60px */
  text-transform: uppercase;
}
body.p-page.--shop-lower .kv__shop p.catch.--sub {
  -webkit-margin-before: 45px;
  margin-block-start: 45px;
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
body.p-page.--shop-lower .reservearea > div {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
  -webkit-margin-before: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
  margin-block-start: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower .reservearea > div {
    -ms-grid-columns: 240px 240px;
    grid-template-columns: 240px 240px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower .reservearea > div {
    -ms-grid-columns: 240px;
    grid-template-columns: 240px;
  }
}
body.p-page.--shop-lower .reservearea > div > a {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 240px;
  height: 65px;
  text-align: center;
  background-color: #EDE9E9;
  -webkit-transition: background 0.48s ease-in-out;
  transition: background 0.48s ease-in-out;
}
body.p-page.--shop-lower .reservearea > div > a.--reserve span {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
body.p-page.--shop-lower .reservearea > div > a.--reserve .icon {
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  -webkit-margin-start: 8px;
  margin-inline-start: 8px;
  position: relative;
  top: 0.25em;
}
body.p-page.--shop-lower .reservearea > div > a.--reserve .icon > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower .reservearea > div > a.--reserve .icon .desvg path:nth-of-type(1) {
  fill: #333;
  -webkit-transition: fill 0.48s ease-in-out;
  transition: fill 0.48s ease-in-out;
}
body.p-page.--shop-lower .reservearea > div > a.--reserve .icon .desvg path:nth-of-type(2) {
  stroke: #333;
  -webkit-transition: stroke 0.48s ease-in-out;
  transition: stroke 0.48s ease-in-out;
}
body.p-page.--shop-lower .reservearea > div > a.--tel .small {
  display: block;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 21.6px */
  letter-spacing: 1.2px;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
body.p-page.--shop-lower .reservearea > div > a.--tel .icon {
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
  position: relative;
  top: 0.25em;
}
body.p-page.--shop-lower .reservearea > div > a.--tel .icon > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower .reservearea > div > a.--tel .icon .desvg path {
  stroke: #333;
  -webkit-transition: stroke 0.48s ease-in-out;
  transition: stroke 0.48s ease-in-out;
}
body.p-page.--shop-lower .reservearea > div > a.--tel .number {
  color: var(--grandgate_bk, #333);
  font-family: Marcellus;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
@media (any-hover: hover) {
  body.p-page.--shop-lower .reservearea > div > a:hover.--reserve span {
    color: #530000;
  }
  body.p-page.--shop-lower .reservearea > div > a:hover.--reserve .icon .desvg path:nth-of-type(1) {
    fill: #530000;
  }
  body.p-page.--shop-lower .reservearea > div > a:hover.--reserve .icon .desvg path:nth-of-type(2) {
    stroke: #530000;
  }
  body.p-page.--shop-lower .reservearea > div > a:hover.--tel .small {
    color: #530000;
  }
  body.p-page.--shop-lower .reservearea > div > a:hover.--tel .icon .desvg path {
    stroke: #530000;
  }
  body.p-page.--shop-lower .reservearea > div > a:hover.--tel .number {
    color: #530000;
  }
}
body.p-page.--shop-lower .catch .catch__inner {
  max-width: 1290px;
  margin-inline: auto;
}
@media screen and (max-width: 1330px) {
  body.p-page.--shop-lower .catch .catch__inner {
    padding-inline: 20px;
  }
}
body.p-page.--shop-lower .catch h2 {
  -webkit-margin-before: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  margin-block-start: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop-lower .catch .catcharea {
  display: -ms-grid;
  display: grid;
  gap: clamp(2.5rem, 1.1795774648rem + 5.6338028169vw, 6.25rem);
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower .catch .catcharea {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower .catch .catcharea {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.p-page.--shop-lower .catch .catcharea .catchtext {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower .catch .catcharea .catchtext {
    max-width: 400px;
    margin-inline: auto 0;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower .catch .catcharea .catchtext {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
body.p-page.--shop-lower .catch .catcharea .catchtext > p + p {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
body.p-page.--shop-lower .catch .catcharea figure {
  aspect-ratio: 645/500;
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower .catch .catcharea figure {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
body.p-page.--shop-lower section.mind {
  padding-block: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
}
body.p-page.--shop-lower section.mind > .inner {
  max-width: 880px;
}
@media screen and (max-width: 920px) {
  body.p-page.--shop-lower section.mind > .inner {
    padding-inline: 20px;
  }
}
body.p-page.--shop-lower section.mind > .inner h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.mind > .inner h2 + p {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.mind > .inner h2 + p {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
  }
}
body.p-page.--shop-lower section.mind > .inner h2 + p {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
body.p-page.--shop-lower section.mind > .inner ul {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.mind > .inner ul {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
body.p-page.--shop-lower section.mind > .inner ul > li {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-height: 236px;
  padding: 32px 16px;
  background-color: #F7F7F2;
  text-align: center;
}
body.p-page.--shop-lower section.mind > .inner ul > li figure {
  width: 40px;
  aspect-ratio: 1;
}
body.p-page.--shop-lower section.mind > .inner ul > li figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower section.mind > .inner ul > li h3 {
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  text-align: center;
}
body.p-page.--shop-lower section.mind > .inner ul > li p {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
  text-align: center;
}
body.p-page.--shop-lower section.scene {
  padding-block: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  background-color: #F7F7F2;
}
body.p-page.--shop-lower section.scene > .inner h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop-lower section.scene > .inner > article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  body.p-page.--shop-lower section.scene > .inner > article > * {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
body.p-page.--shop-lower section.scene > .inner > article figure {
  aspect-ratio: 500/322;
}
body.p-page.--shop-lower section.scene > .inner > article figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article > div {
    padding-inline: 3.125vw;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article > div {
    -webkit-padding-before: 20px;
    padding-block-start: 20px;
  }
}
body.p-page.--shop-lower section.scene > .inner > article > div p.small {
  color: var(--grandgate_bk, #333);
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article > div p.small {
    font-size: 13px;
    line-height: 180%; /* 23.4px */
    letter-spacing: 1.3px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article > div p.small {
    color: var(--grandgate_bk, #333);
    font-size: 12px;
    line-height: 160%; /* 19.2px */
    letter-spacing: 1.2px;
  }
}
body.p-page.--shop-lower section.scene > .inner > article > div h3 {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 43.2px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article > div p.desc {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.scene > .inner > article > div p.desc {
    -webkit-margin-before: 8px;
    margin-block-start: 8px;
  }
}
body.p-page.--shop-lower section.scene > .inner > article > div p.desc {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--shop-lower section.infoarea {
  padding-block: 160px;
}
body.p-page.--shop-lower section.infoarea .inner h2 img {
  display: block;
  margin-inline: auto;
}
body.p-page.--shop-lower section.infoarea .inner h2 + a.--insta {
  display: block;
  width: 28px;
  -webkit-margin-before: 28px;
  margin-block-start: 28px;
  margin-inline: auto;
  opacity: 1;
  -webkit-transition: opacity 0.48s ease-in-out;
  transition: opacity 0.48s ease-in-out;
}
body.p-page.--shop-lower section.infoarea .inner h2 + a.--insta > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col {
  display: -ms-grid;
  display: grid;
  -webkit-margin-before: 80px;
  margin-block-start: 80px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 0.4718309859rem + 2.2535211268vw, 2.5rem);
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col div:first-of-type dl:first-of-type {
  border-top: 1px solid rgba(51, 51, 51, 0.6);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col div:not(:first-of-type) dl:first-of-type {
    border-top: 1px solid rgba(51, 51, 51, 0.6);
  }
}
body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  min-height: 84px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.6);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl {
    padding-block: 16px;
    padding-inline: 14px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl {
    padding-block: 20px;
    padding-inline: 10px;
  }
}
body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl dd {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}
body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl dd a {
  text-decoration: underline;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl dd a.--tellink {
  text-decoration: none;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl dd a.--tellink {
    pointer-events: none;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl dd a.--tellink {
    pointer-events: all;
  }
}
body.p-page.--shop-lower section.infoarea .inner .--maininformation.--2col dl dd > img {
  display: inline;
  width: 16px;
  -webkit-margin-start: 0.25em;
  margin-inline-start: 0.25em;
  position: relative;
  top: -0.25em;
}
body.p-page.--shop-lower section.infoarea .inner .accordion {
  -webkit-margin-before: 120px;
  margin-block-start: 120px;
}
body.p-page.--shop-lower section.infoarea .inner .accordion details {
  border-bottom: 1px solid rgba(51, 51, 51, 0.6);
}
@media screen and (any-hover: hover) and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion details:not(.is-opened) summary:hover {
    background-color: #ede9e9;
    -webkit-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
  }
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary {
  display: block;
  background-color: rgba(237, 233, 233, 0);
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion summary {
    padding-block: 16px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion summary {
    padding-block: 20px;
  }
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary::-webkit-details-marker {
  display: none;
}
body.p-page.--shop-lower section.infoarea .inner .accordion .summary_inner {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 20px 1fr 20px;
  grid-template-columns: 20px 1fr 20px;
  gap: 8px;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion .summary_inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion .summary_inner {
    padding-inline: 10px 8px;
  }
}
body.p-page.--shop-lower section.infoarea .inner .accordion .summary_inner span.title {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 32.4px */
}
body.p-page.--shop-lower section.infoarea .inner .accordion .summary_inner span.arrow {
  -webkit-transition: scale 0.24s ease-in-out;
  transition: scale 0.24s ease-in-out;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner {
    padding-inline: 40px;
    -webkit-padding-after: 20px;
    padding-block-end: 20px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner {
    padding-inline: 10px;
    -webkit-padding-after: 10px;
    padding-block-end: 10px;
  }
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner .buttonarea {
  display: grid inline;
  gap: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
  -webkit-margin-after: 30px;
  margin-block-end: 30px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner .buttonarea {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner .buttonarea {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner .buttonarea a {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  color: var(--grandgate_bk, #333);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.125rem, 0.9929577465rem + 0.5633802817vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  position: relative;
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner .buttonarea a::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner dl + dl {
  -webkit-margin-before: 1.5em;
  margin-block-start: 1.5em;
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner dl dt {
  font-weight: 400;
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner ul {
  -webkit-padding-start: 1.5em;
  padding-inline-start: 1.5em;
  list-style: disc;
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner ul li {
  list-style: disc;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner .--2col {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
body.p-page.--shop-lower section.infoarea .inner .accordion summary + .content .content__inner .small {
  font-size: 12px;
}
body.p-page.--shop-lower section.infoarea .inner .accordion details.is-opened summary span.arrow {
  scale: 1 -1;
}
body.p-page.--shop-lower section.cva-lower {
  max-width: 1000px;
  margin-inline: auto;
  padding-block: clamp(3.5rem, 2.7517605634rem + 3.1924882629vw, 5.625rem);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.cva-lower {
    -webkit-margin-after: 8.3333333333vw;
    margin-block-end: 8.3333333333vw;
  }
}
body.p-page.--shop-lower section.cva-lower > .inner {
  margin-block: 0;
}
body.p-page.--shop-lower section.cva-lower > .inner h2 {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop-lower section.cva-lower > .inner h2 + p {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  line-height: 180%; /* 28.8px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower section.cva-lower > .inner h2 + p {
    font-weight: 400;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower section.cva-lower > .inner h2 + p {
    font-weight: 300;
  }
}
body.p-page.--shop-lower section.cva-lower > .inner .reservearea {
  -webkit-margin-before: clamp(1.5rem, 0.8838028169rem + 2.6291079812vw, 3.25rem);
  margin-block-start: clamp(1.5rem, 0.8838028169rem + 2.6291079812vw, 3.25rem);
}
body.p-page.--shop-lower section.cva-lower > .inner .reservearea .desc {
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
  text-align: center;
}
body.p-page.--shop-lower.--libera-terrace .inner {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1040px) {
  body.p-page.--shop-lower.--libera-terrace .inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace .kv__shop {
    background-image: url(../img/shop-libera/kv-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace .kv__shop {
    background-image: url(../img/shop-libera/kv-sp.webp);
  }
}
body.p-page.--shop-lower.--libera-terrace .kv__shop h1 {
  width: clamp(10.8125rem, 8.8538732394rem + 8.3568075117vw, 16.375rem);
}
body.p-page.--shop-lower.--libera-terrace section.catch + article.cva-lower01 {
  -webkit-margin-before: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem);
  margin-block-start: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem);
}
body.p-page.--shop-lower.--libera-terrace article.cva-lower01 {
  max-width: 1000px;
  margin-inline: auto;
  padding-block: clamp(3.75rem, 3.485915493rem + 1.1267605634vw, 4.5rem);
  background-color: #530000;
  color: #fff;
  text-align: center;
}
body.p-page.--shop-lower.--libera-terrace article.cva-lower01 > p {
  font-weight: 300;
}
body.p-page.--shop-lower.--libera-terrace section.pattern {
  -webkit-padding-before: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  padding-block-start: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
}
body.p-page.--shop-lower.--libera-terrace section.pattern > h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop-lower.--libera-terrace section.pattern > h2 > span.small {
  display: block;
  -webkit-margin-after: 16px;
  margin-block-end: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 230%; /* 36.8px */
  text-align: center;
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea {
  max-width: 880px;
  -webkit-margin-before: clamp(2.5rem, 1.1795774648rem + 5.6338028169vw, 6.25rem);
  margin-block-start: clamp(2.5rem, 1.1795774648rem + 5.6338028169vw, 6.25rem);
  margin-inline: auto;
}
@media screen and (max-width: 920px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea {
    padding-inline: 20px;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul {
  display: -ms-grid;
  display: grid;
  gap: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li {
  position: relative;
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a {
  border: 1px solid #530000;
  position: relative;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    min-height: 234px;
    padding: 12px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns: auto 1fr auto;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 16px;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .figure {
  width: 40px;
  aspect-ratio: 1;
  margin-inline: auto;
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .wrapper {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
    text-align: center;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .wrapper > .title {
  color: var(--black, #333);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .wrapper > .title {
    text-align: center;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .wrapper > .time {
  display: block;
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--black, #333);
  font-family: Marcellus;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .wrapper > .time {
    text-align: center;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .pattern__navarea > nav > ul > li > a > .arrow > .click {
    display: none;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .imgarea__lunch {
  -webkit-margin-before: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
  margin-block-start: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .imgarea__lunch {
    aspect-ratio: 1440/400;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .imgarea__lunch {
    aspect-ratio: 375/284;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .imgarea__lunch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .imgarea__dinner {
  -webkit-margin-before: clamp(4.5rem, 2.5633802817rem + 8.2629107981vw, 10rem);
  margin-block-start: clamp(4.5rem, 2.5633802817rem + 8.2629107981vw, 10rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .imgarea__dinner {
    aspect-ratio: 1440/400;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern > .imgarea__dinner {
    aspect-ratio: 375/284;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern > .imgarea__dinner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner h3 {
  color: var(--grandgate_bk, #333);
  font-family: "Marcellus", "Noto Serif JP", serif;
  font-size: clamp(1.375rem, 0.9788732394rem + 1.6901408451vw, 2.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner h3 {
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner h3 {
    letter-spacing: 2.2px;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner h3 > .small {
  display: block;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Marcellus", "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  text-align: center;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner h4 {
  -webkit-margin-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  margin-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner h4 + p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner h4 + p {
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner h4 + p {
    text-align: left;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(0.5rem, 0.1478873239rem + 1.5023474178vw, 1.5rem);
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > ul > li > figure {
  aspect-ratio: 1;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > ul > li > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > a.--pdf {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 16px auto;
  grid-template-columns: 16px auto;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: clamp(1.75rem, 1.485915493rem + 1.1267605634vw, 2.5rem);
  margin-block-start: clamp(1.75rem, 1.485915493rem + 1.1267605634vw, 2.5rem);
  margin-inline: auto;
  -webkit-padding-after: 8px;
  padding-block-end: 8px;
  padding-inline: 1em;
  border-bottom: 1px solid #333;
  -webkit-transition: border 0.48s ease-in-out;
  transition: border 0.48s ease-in-out;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > a.--pdf .icon {
  aspect-ratio: 1;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > a.--pdf .icon > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > a.--pdf .icon .desvg path {
  -webkit-transition: stroke 0.48s ease-in-out;
  transition: stroke 0.48s ease-in-out;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > a.--pdf .text {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.9375rem, 0.9154929577rem + 0.0938967136vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
@media (any-hover: hover) {
  body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > a.--pdf:hover {
    border-bottom: 1px solid #530000;
  }
  body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > a.--pdf:hover .text {
    color: #530000;
  }
  body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content > .inner > a.--pdf:hover .desvg path {
    stroke: #530000;
  }
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content.--lunch {
  -webkit-margin-before: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
  margin-block-start: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content.--cafe {
  max-width: 1000px;
  margin-inline: auto;
  -webkit-padding-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  padding-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  -webkit-padding-after: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  padding-block-end: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  background-color: #F7F7F2;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content.--cafe .inner {
  margin-block: 0;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content.--cafe .inner > ul {
  display: block;
  max-width: 584px;
  margin-inline: auto;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content.--cafe .inner > ul > li > figure {
  aspect-ratio: 584/322;
}
body.p-page.--shop-lower.--libera-terrace section.pattern article.pattern__content.--dinner {
  -webkit-margin-before: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
  margin-block-start: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
}
body.p-page.--shop-lower.--libera-terrace section.pattern + article.cva-lower01 {
  -webkit-margin-before: clamp(6.25rem, 5.8098591549rem + 1.8779342723vw, 7.5rem);
  margin-block-start: clamp(6.25rem, 5.8098591549rem + 1.8779342723vw, 7.5rem);
}
body.p-page.--shop-lower.--libera-terrace section.chef {
  -webkit-margin-before: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  margin-block-start: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  padding-block: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  background-color: #F7F7F2;
}
body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col {
  display: -ms-grid;
  display: grid;
  gap: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div figure {
    aspect-ratio: 500/700;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div figure {
    aspect-ratio: 335/300;
  }
}
body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
}
body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div h2 + p {
  -webkit-margin-before: clamp(2rem, 1.823943662rem + 0.7511737089vw, 2.5rem);
  margin-block-start: clamp(2rem, 1.823943662rem + 0.7511737089vw, 2.5rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div h3 {
  -webkit-margin-before: clamp(2rem, 1.3838028169rem + 2.6291079812vw, 3.75rem);
  margin-block-start: clamp(2rem, 1.3838028169rem + 2.6291079812vw, 3.75rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 36px */
}
body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div h3 > .small {
  display: block;
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--grandgate_bk, #333);
  font-family: "Marcellus", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div h4 {
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
body.p-page.--shop-lower.--libera-terrace section.chef > .inner > .--2col > div h4 + p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
}
body.p-page.--shop-lower.--libera-terrace section.infoarea > .inner > h2 img {
  width: 262px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.cva-lower {
    background-image: url(../img/shop-libera/cva-lower-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--libera-terrace section.cva-lower {
    background-image: url(../img/shop-libera/cva-lower-sp.webp);
  }
}
body.p-page.--shop-lower.--the-standard-bakers .inner {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1040px) {
  body.p-page.--shop-lower.--the-standard-bakers .inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers .kv__shop {
    background-image: url(../img/shop-bakers/kv-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers .kv__shop {
    background-image: url(../img/shop-bakers/kv-sp.webp);
  }
}
body.p-page.--shop-lower.--the-standard-bakers .kv__shop h1 {
  width: clamp(10.8125rem, 8.8538732394rem + 8.3568075117vw, 16.375rem);
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner h2 + p {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner h2 + p {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
  }
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner h2 + p {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents {
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents .note {
  color: var(--grandgate_bk, #333);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: 1.2px;
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  row-gap: 24px;
  -webkit-column-gap: clamp(0.5rem, 0.3459507042rem + 0.6572769953vw, 0.9375rem);
  -moz-column-gap: clamp(0.5rem, 0.3459507042rem + 0.6572769953vw, 0.9375rem);
  column-gap: clamp(0.5rem, 0.3459507042rem + 0.6572769953vw, 0.9375rem);
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul li figure {
  width: 100%;
  aspect-ratio: 1;
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul li figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul li p.title {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul li p.price {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  font-family: "Marcellus", "Noto Sans JP", sans-serif;
  color: var(--grandgate_bk, #333);
  font-family: Marcellus;
  font-size: clamp(0.75rem, 0.7279929577rem + 0.0938967136vw, 0.8125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul + p {
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
  color: var(--grandgate_bk, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul + p + .insta__link {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul + p + .insta__link {
    -ms-grid-columns: 20px auto;
    grid-template-columns: 20px auto;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul + p + .insta__link {
    -ms-grid-columns: 16px auto;
    grid-template-columns: 16px auto;
  }
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul + p + .insta__link span {
  color: var(--grandgate_bk, #333);
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul + p + .insta__link .desvg path {
  stroke: #333;
  -webkit-transition: stroke 0.48s ease-in-out;
  transition: stroke 0.48s ease-in-out;
}
@media (any-hover: hover) {
  body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul + p + .insta__link:hover span {
    color: #530000;
  }
  body.p-page.--shop-lower.--the-standard-bakers section.pickup > .inner .pickup__contents ul + p + .insta__link:hover .desvg path {
    stroke: #530000;
  }
}
body.p-page.--shop-lower.--the-standard-bakers section.menu {
  -webkit-padding-before: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  padding-block-start: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  -webkit-padding-after: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
  padding-block-end: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
  background-color: #F7F7F2;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner h2 + p {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner h2 + p {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
  }
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner h2 + p {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article {
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article h3 {
  color: var(--grandgate_bk, #333);
  font-family: Marcellus;
  font-size: clamp(1.375rem, 1.3309859155rem + 0.1877934272vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
  text-align: center;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article h3 span {
  display: block;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article h3 span:nth-of-type(2) {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7279929577rem + 0.0938967136vw, 0.8125rem);
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 19.2px */
  letter-spacing: 1.2px;
  text-align: center;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article h3 span:nth-of-type(3) {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: Marcellus;
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article h3 span:nth-of-type(3) {
    letter-spacing: 1.8px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article h3 span:nth-of-type(3) {
    letter-spacing: 1.4px;
  }
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner {
  display: -ms-grid;
  display: grid;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article figure {
  display: block;
  aspect-ratio: 480/260;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article h4 {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  -webkit-margin-after: 8px;
  margin-block-end: 8px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article h4 > span {
  color: var(--grandgate_bk, #333);
  font-family: "Marcellus", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article h4 > span {
    -webkit-margin-start: 1em;
    margin-inline-start: 1em;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article h4 > span {
    display: block;
    -webkit-margin-before: 8px;
    margin-block-start: 8px;
  }
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article p, body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article ul {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article ul, body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article ul li {
  list-style-type: disc;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article ul {
  -webkit-padding-start: 1.5em;
  padding-inline-start: 1.5em;
}
body.p-page.--shop-lower.--the-standard-bakers section.menu > .inner > article .menu__inner > article .note {
  -webkit-margin-before: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
  margin-block-start: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 20.8px */
  letter-spacing: 1.3px;
}
body.p-page.--shop-lower.--the-standard-bakers section.infoarea > .inner h2 img {
  width: 174px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.cva-lower {
    background-image: url(../img/shop-bakers/cva-lower-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-standard-bakers section.cva-lower {
    background-image: url(../img/shop-bakers/cva-lower-sp.webp);
  }
}
body.p-page.--shop-lower.--the-standard-bakers section.cva-lower .reservearea > div {
  -ms-grid-columns: 240px;
  grid-template-columns: 240px;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base .inner {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1040px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base .inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base .kv__shop {
    background-image: url(../img/shop-beer/kv-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base .kv__shop {
    background-image: url(../img/shop-beer/kv-sp.webp);
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base .kv__shop h1 {
  width: clamp(4.375rem, 3.4947183099rem + 3.7558685446vw, 6.875rem);
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 {
  max-width: 1000px;
  -webkit-margin-before: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem);
  margin-block-start: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem);
  margin-inline: auto;
  padding-block: clamp(4rem, 3.8679577465rem + 0.5633802817vw, 4.375rem);
  background-color: #530000;
}
@media screen and (max-width: 1040px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 {
    max-width: 100%;
    padding-inline: 20px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 > p {
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea a span {
  color: #333;
  -webkit-transition: color 0.48s ease-in-out;
  transition: color 0.48s ease-in-out;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea a.--reserve .desvg path:nth-of-type(1) {
  fill: #333;
  -webkit-transition: fill 0.48s ease-in-out;
  transition: fill 0.48s ease-in-out;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea a.--reserve .desvg path:nth-of-type(2) {
  stroke: #333;
  -webkit-transition: stroke 0.48s ease-in-out;
  transition: stroke 0.48s ease-in-out;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea a.--tel .desvg path {
  stroke: #333;
  -webkit-transition: stroke 0.48s ease-in-out;
  transition: stroke 0.48s ease-in-out;
}
@media (any-hover: hover) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea a:hover span {
    color: #530000;
  }
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea a:hover.--reserve .desvg path:nth-of-type(1) {
    fill: #530000;
  }
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea a:hover.--reserve .desvg path:nth-of-type(2) {
    stroke: #530000;
  }
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.cva-lower01 .reservearea a:hover.--tel .desvg path {
    stroke: #530000;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner h2 {
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner h2 + p {
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner h2 + p {
    -webkit-margin-before: 28px;
    margin-block-start: 28px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner h2 + p {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul {
  display: -ms-grid;
  display: grid;
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  max-width: 910px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul {
    grid-template-columns: repeat(auto-fit, minmax(194px, 1fr));
    gap: 60px 40px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px 15px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li figure {
  aspect-ratio: 1;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li h3 {
  -webkit-margin-before: clamp(0.625rem, 0.4929577465rem + 0.5633802817vw, 1rem);
  margin-block-start: clamp(0.625rem, 0.4929577465rem + 0.5633802817vw, 1rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li h3 {
    line-height: 180%; /* 32.4px */
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li h3 {
    line-height: 120%; /* 19.2px */
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li .desc {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li .note {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  padding: 8px;
  background-color: #F7F7F2;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li .note > h4 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 1.2px;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner > ul > li .note > p {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 19.2px */
  letter-spacing: 1.2px;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea {
  -webkit-margin-before: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
  margin-block-start: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
  background-color: #F7F7F2;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea {
    padding: 48px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea {
    padding: 40px 48px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div {
  display: -ms-grid;
  display: grid;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div:nth-of-type(1) {
  place-items: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div:nth-of-type(1) {
    border-right: 1px solid #858585;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div:nth-of-type(1) {
    -webkit-padding-after: 40px;
    padding-block-end: 40px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div:nth-of-type(2) > * {
  text-align: left;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div:nth-of-type(2) {
    -webkit-padding-start: 3.5416666667vw;
    padding-inline-start: 3.5416666667vw;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div:nth-of-type(2) {
    -webkit-padding-before: 40px;
    padding-block-start: 40px;
    border-top: 1px solid #858585;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table tr:nth-of-type(2) td {
  -webkit-padding-before: 24px;
  padding-block-start: 24px;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table tr:nth-of-type(3) td, body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table tr:nth-of-type(4) td {
  -webkit-padding-before: 32px;
  padding-block-start: 32px;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table th {
  width: 50%;
  text-align: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table th img {
  width: auto;
  height: 40px;
  margin-inline: auto;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table th:nth-of-type(2) img {
  margin-inline: auto 0;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table td {
  width: 50%;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table td:nth-of-type(1) {
  color: var(--grandgate_bk, #333);
  font-family: "Marcellus", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div table td:nth-of-type(2) {
  color: var(--grandgate_bk, #333);
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 1.8px;
  text-align: right;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div h2 + p {
  -webkit-margin-before: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  margin-block-start: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  color: #4A5565;
  font-family: "Marcellus", serif;
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div p.desc {
  -webkit-margin-before: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  margin-block-start: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.beer > .inner article.pricearea > .--2col > div p.desc span.small {
  display: block;
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 21.6px */
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food {
  -webkit-padding-before: clamp(5rem, 2.3591549296rem + 11.2676056338vw, 12.5rem);
  padding-block-start: clamp(5rem, 2.3591549296rem + 11.2676056338vw, 12.5rem);
  -webkit-padding-after: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  padding-block-end: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  background-color: #F7F7F2;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner h2 {
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner h2 + p {
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner h2 + p {
    -webkit-margin-before: 28px;
    margin-block-start: 28px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner h2 + p {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul {
  -webkit-margin-before: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  margin-block-start: clamp(3.75rem, 2.8697183099rem + 3.7558685446vw, 6.25rem);
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 80px 40px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul > li > figure {
  aspect-ratio: 480/260;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul > li > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul > li > h3 {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul > li > h3 > span.price {
  color: var(--grandgate_bk, #333);
  font-family: "Marcellus", "Noto Serif JP", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul > li > h3 > span.price {
    -webkit-margin-start: 1em;
    margin-inline-start: 1em;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul > li > h3 > span.price {
    display: block;
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.food > .inner > ul > li > p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.imgarea > figure {
    aspect-ratio: 1440/400;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.imgarea > figure {
    aspect-ratio: 375/360;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base article.imgarea > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour {
  -webkit-padding-before: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
  padding-block-start: clamp(5rem, 4.5598591549rem + 1.8779342723vw, 6.25rem);
  -webkit-padding-after: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  padding-block-end: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  background-color: #EDE9E9;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner h2 {
  color: var(--grandgate_main, #530000);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
  text-align: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner h2 + p {
  color: var(--grandgate_main, #530000);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner h2 + p {
    -webkit-margin-before: 28px;
    margin-block-start: 28px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner h2 + p {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner h2 + p.--marcellus {
  font-family: "Marcellus", serif;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner h2 + p > .small {
  display: block;
  color: var(--grandgate_main, #530000);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  -webkit-padding-before: 48px;
  padding-block-start: 48px;
  border-top: 1px solid #530000;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea > p.catch {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  text-align: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content {
  display: -ms-grid;
  display: grid;
  gap: clamp(2.25rem, 1.4577464789rem + 3.3802816901vw, 4.5rem);
  -webkit-margin-before: clamp(3rem, 2.735915493rem + 1.1267605634vw, 3.75rem);
  margin-block-start: clamp(3rem, 2.735915493rem + 1.1267605634vw, 3.75rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > figure {
  aspect-ratio: 500/343;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > figure {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > h3 {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 43.2px */
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > h3 {
    padding-inline: 24px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .price {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
  color: var(--grandgate_bk, #333);
  font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .price {
    padding-inline: 24px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .desc {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .desc {
    padding-inline: 24px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .desc > span.plus {
  display: block;
  font-size: 10px;
  text-align: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .note {
  -webkit-margin-before: 28px;
  margin-block-start: 28px;
  background-color: #fff;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .note {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .note {
    padding: 20px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .note > h4 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .note > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0 1em;
  -webkit-padding-start: 1.4em;
  padding-inline-start: 1.4em;
  list-style: disc;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.happyhour > .inner .happyhour__contentarea .happyhour__content > div > .note > ul > li {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 25.2px */
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about {
  padding-block: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  background-color: #F7F7F2;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about > .inner > .--2col {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about > .inner > .--2col {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about > .inner > .--2col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about > .inner > .--2col > div:nth-of-type(1) figure {
  aspect-ratio: 500/384;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about > .inner > .--2col > div:nth-of-type(1) figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about > .inner > .--2col > div:nth-of-type(2) h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 0.8169014085rem + 1.3145539906vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about > .inner > .--2col > div:nth-of-type(2) h2 + p {
  -webkit-margin-before: clamp(1.5rem, 1.1478873239rem + 1.5023474178vw, 2.5rem);
  margin-block-start: clamp(1.5rem, 1.1478873239rem + 1.5023474178vw, 2.5rem);
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.about > .inner > .--2col > div:nth-of-type(2) h2 + p + p {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.mind {
  -webkit-padding-after: 0;
  padding-block-end: 0;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.mind > .inner > ul > li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto 1fr;
  grid-template-rows: auto auto 1fr;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.mind > .inner > ul > li p {
  text-align: left;
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.scene {
  -webkit-margin-before: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
  margin-block-start: clamp(5rem, 3.2394366197rem + 7.5117370892vw, 10rem);
}
body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.infoarea > .inner h2 img {
  width: 152px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.cva-lower {
    background-image: url(../img/shop-beer/cva-lower-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.cva-lower {
    background-image: url(../img/shop-beer/cva-lower-sp.webp);
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.cva-lower .reservearea > div {
    -ms-grid-columns: 240px 240px;
    grid-template-columns: 240px 240px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--hiroshima-kita-beer-the-base section.cva-lower .reservearea > div {
    -ms-grid-columns: 240px;
    grid-template-columns: 240px;
  }
}
body.p-page.--shop-lower.--the-terrace {
  background-color: #332C2D;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .kv__shop {
    background-image: url(../img/shop-terrace/kv-pc.webp);
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .kv__shop {
    background-image: url(../img/shop-terrace/kv-sp.webp);
  }
}
body.p-page.--shop-lower.--the-terrace .kv__shop h1 {
  width: clamp(14rem, 12.7235915493rem + 5.4460093897vw, 17.625rem);
}
body.p-page.--shop-lower.--the-terrace .catch h2 {
  color: var(--grandgate_wh, #FFF);
}
body.p-page.--shop-lower.--the-terrace .catch .catchtext p {
  color: var(--grandgate_wh, #FFF);
}
body.p-page.--shop-lower.--the-terrace .ticket {
  -webkit-margin-before: 80px;
  margin-block-start: 80px;
}
body.p-page.--shop-lower.--the-terrace .ticket .inner h2 {
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
}
body.p-page.--shop-lower.--the-terrace .ticket .inner h2 + p {
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .ticket .inner h2 + p {
    -webkit-margin-before: 28px;
    margin-block-start: 28px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .ticket .inner h2 + p {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
  }
}
body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col {
  display: -ms-grid;
  display: grid;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col article {
  padding-block: 32px;
  border: 1px solid var(--grandgate_wh, #FFF);
  position: relative;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col article {
    padding-inline: 32px 8px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col article {
    padding-inline: 8px;
  }
}
body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col article h3 {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 16px;
  background-color: var(--grandgate_wh, #FFF);
  color: var(--grandgate_bk, #333);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px; /* 145% */
  letter-spacing: 2.4px;
  position: absolute;
  top: 0;
  left: 32px;
  translate: 0 -50%;
}
body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col article .ticket__inner {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.25rem, 0.4577464789rem + 3.3802816901vw, 3.5rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col article .ticket__inner {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col article .ticket__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
body.p-page.--shop-lower.--the-terrace .ticket .inner .--2col article .ticket__inner p {
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--shop-lower.--the-terrace .benefits {
  -webkit-margin-before: 80px;
  margin-block-start: 80px;
}
body.p-page.--shop-lower.--the-terrace .benefits .inner h2 {
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.985915493rem + 1.1267605634vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  text-align: center;
}
body.p-page.--shop-lower.--the-terrace .benefits .inner h2 + p {
  -webkit-margin-before: 12px;
  margin-block-start: 12px;
}
body.p-page.--shop-lower.--the-terrace .benefits .inner p {
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .benefits .inner p {
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .benefits .inner p {
    text-align: left;
  }
}
body.p-page.--shop-lower.--the-terrace .benefits .inner p + p {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .benefits .inner p + p {
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .benefits .inner p + p {
    text-align: left;
  }
}
body.p-page.--shop-lower.--the-terrace .benefits .inner p.--note {
  font-size: 13px;
}
body.p-page.--shop-lower.--the-terrace .benefits .inner .buttonarea {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-margin-before: 48px;
  margin-block-start: 48px;
}
body.p-page.--shop-lower.--the-terrace .benefits .inner .buttonarea .c-button.--link {
  color: #fff;
}
body.p-page.--shop-lower.--the-terrace .benefits .inner .buttonarea .c-button.--link::before {
  background-color: #fff;
  scale: 1 1;
}
body.p-page.--shop-lower.--the-terrace .benefits .inner .buttonarea .c-button.--link .arrow {
  -webkit-transition: margin 0.48s ease-in-out;
  transition: margin 0.48s ease-in-out;
}
body.p-page.--shop-lower.--the-terrace .imgarea {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .imgarea {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop-lower.--the-terrace .imgarea {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.p-page.--shop-lower.--the-terrace .infoarea {
  background-color: #F7F7F2;
}
body.p-page.--shop-lower.--the-terrace .infoarea > .inner h2 img {
  width: 302px;
}
body.p-page.--shop-lower.--the-terrace .inner {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1040px) {
  body.p-page.--shop-lower.--the-terrace .inner {
    padding-inline: 20px;
  }
}

body.p-page.--shop .inner {
  width: 100%;
  max-width: 1000px;
  -webkit-margin-before: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  margin-block-start: clamp(3.75rem, 2.4295774648rem + 5.6338028169vw, 7.5rem);
  -webkit-margin-after: 160px;
  margin-block-end: 160px;
  margin-inline: auto;
}
@media screen and (max-width: 1040px) {
  body.p-page.--shop .inner {
    max-width: 100%;
    padding-inline: 20px;
  }
}
body.p-page.--shop section.map {
  padding-block: 80px 100px;
}
body.p-page.--shop section.map > .inner h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop section.map > .inner h2 + p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 230%; /* 36.8px */
  text-align: center;
}
body.p-page.--shop section.map > .inner figure {
  -webkit-margin-before: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  margin-block-start: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
}
body.p-page.--shop section.introduction {
  -webkit-padding-before: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem);
  padding-block-start: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem);
  -webkit-padding-before: clamp(6.25rem, 4.9295774648rem + 5.6338028169vw, 10rem);
  padding-block-start: clamp(6.25rem, 4.9295774648rem + 5.6338028169vw, 10rem);
  background: #F7F7F2;
}
body.p-page.--shop section.introduction > h2 {
  padding-inline: 20px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop section.introduction > h2 + p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  padding-inline: 20px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 230%; /* 36.8px */
  text-align: center;
}
body.p-page.--shop section.introduction > .introduction__container {
  position: relative;
  background: #F7F7F2;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container {
    height: 100svh;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container {
    height: auto;
  }
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop {
  width: 100%;
  height: inherit;
  background: #F7F7F2;
  border-top: 1px solid var(--grandgate-main-5, #EDE9E9);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop {
    position: absolute;
    inset: 0 0 auto 0;
    top: auto;
  }
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner {
  margin-block: 0;
  max-width: 100%;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .titlearea {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 72px;
  background-color: #F7F7F2;
  z-index: 10;
  /* padding-block: 20px; */
  text-align: center;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .titlearea > p {
  display: block;
  width: 250px;
  text-align: left;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .titlearea .num {
  color: var(--grandgate_main, #530000);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 1.3px;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .titlearea .title {
  -webkit-margin-start: 42px;
  margin-inline-start: 42px;
  color: var(--grandgate_main, #530000);
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9559859155rem + 0.1877934272vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .titlearea.titlearea__active {
    height: 0;
    padding: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .titlearea.titlearea__active {
    display: none;
  }
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .titlearea.titlearea__active {
  /* transition: 
    height 0.24s ease-in-out,
    padding 0.24s ease-in-out,
    visibility 0.24s ease-in-out; */
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col {
  display: -ms-grid;
  display: grid;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  padding-inline: clamp(1.25rem, 0.0616197183rem + 5.0704225352vw, 4.625rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) > * {
    max-width: 380px;
    margin-inline: auto;
  }
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) h3 > img {
  display: block;
  margin-inline: auto;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) h3 > .small {
  display: block;
  -webkit-margin-before: 12px;
  margin-block-start: 12px;
  color: var(--grandgate_bk, #333);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.15px;
  text-align: center;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) h4 {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  color: var(--grandgate_bk, #333);
  /* h4/NSJ_18px */
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  text-align: center;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) ul > li {
  padding-inline: 8px;
  background-color: #EDE9E9;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) .information {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) .information {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
  }
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) .information > dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--grandgate-bk-60, #858585);
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) .information > dl:first-of-type {
  border-top: 1px solid var(--grandgate-bk-60, #858585);
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) .information > dl dt {
  position: relative;
  top: 0.15em;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) .information > dl dd {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 25.2px */
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) > .linkarea {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) > .linkarea {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) > .linkarea {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
  }
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) > .linkarea > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 16px;
  grid-template-columns: auto 16px;
  gap: clamp(0.25rem, 0.161971831rem + 0.3755868545vw, 0.5rem);
  padding-block: 8px;
  border-bottom: 1px solid #333;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 28.8px */
  -webkit-transition: border-bottom 0.48s ease-in-out, color 0.48s ease-in-out;
  transition: border-bottom 0.48s ease-in-out, color 0.48s ease-in-out;
}
@media (any-hover: hover) {
  body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(1) > .linkarea > a:hover {
    border-bottom: 1px solid #530000;
    color: #530000;
  }
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(2) figure {
  aspect-ratio: 645/500;
}
body.p-page.--shop section.introduction > .introduction__container > article.introduction__shop > .inner > .--2col > div:nth-of-type(2) figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(1) > article.introduction__shop {
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
  z-index: 1;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(1) > article.introduction__shop h3 img {
  width: 184px;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(1) > article.introduction__shop.is-active .titlearea {
  position: fixed;
  top: 0;
  left: 0;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(1) > article.introduction__shop.is-active .--2col {
  height: calc(100svh - 72px);
  -webkit-padding-after: 100px;
  padding-block-end: 100px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(1) > article.introduction__shop.is-active .--2col::-webkit-scrollbar {
  display: none;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop {
  z-index: 2;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop h3 img {
  width: 123px;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop .--2col > div:nth-of-type(1) .linkarea {
  -ms-grid-columns: auto;
  grid-template-columns: auto;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop .--2col > div:nth-of-type(1) .linkarea {
    /* margin-inline: auto 0; */
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop .--2col > div:nth-of-type(1) .linkarea > a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop.is-active .titlearea__active {
    border-top: 1px solid var(--grandgate-main-5, #EDE9E9);
    height: 72px;
    padding-block: 20px;
    visibility: visible;
  }
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop.is-active .titlearea__active:first-of-type {
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop.is-active .titlearea__active {
    display: none;
  }
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop.is-active .--2col {
  height: calc(100svh - 72px - 72px);
  -webkit-padding-after: 100px;
  padding-block-end: 100px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(2) > article.introduction__shop.is-active .--2col::-webkit-scrollbar {
  display: none;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(3) > article.introduction__shop {
  z-index: 3;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(3) > article.introduction__shop h3 img {
  width: 119px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(3) > article.introduction__shop.is-active .titlearea__active {
    border-top: 1px solid var(--grandgate-main-5, #EDE9E9);
    height: 72px;
    padding-block: 20px;
    visibility: visible;
  }
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(3) > article.introduction__shop.is-active .titlearea__active:first-of-type {
    position: fixed;
    top: 0;
    left: 0;
  }
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(3) > article.introduction__shop.is-active .titlearea__active:nth-of-type(2) {
    position: fixed;
    top: 72px;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(3) > article.introduction__shop.is-active .titlearea__active {
    display: none;
  }
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(3) > article.introduction__shop.is-active .--2col {
  height: calc(100svh - 72px - 72px - 72px);
  -webkit-padding-after: 100px;
  padding-block-end: 100px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.p-page.--shop section.introduction > .introduction__container:nth-of-type(3) > article.introduction__shop.is-active .--2col::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(even) .--2col > div:nth-of-type(1) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container:nth-of-type(even) .--2col > div:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
body.p-page.--shop section.introduction > .introduction__container:last-of-type {
  z-index: 5;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.introduction > .introduction__container:last-of-type {
    height: auto;
    min-height: 1000px;
  }
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table {
  max-width: 1000px;
  -webkit-padding-before: clamp(7.5rem, 4.8591549296rem + 11.2676056338vw, 15rem);
  padding-block-start: clamp(7.5rem, 4.8591549296rem + 11.2676056338vw, 15rem);
}
@media screen and (min-width: 1041px) {
  body.p-page.--shop section.introduction > .introduction__container article.introduction__table {
    margin-inline: auto;
  }
}
@media screen and (max-width: 1040px) {
  body.p-page.--shop section.introduction > .introduction__container article.introduction__table {
    width: 100%;
    padding-inline: 20px;
    margin-inline: 0 auto;
  }
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner {
  padding: 48px;
  background-color: #fff;
  overflow-x: scroll;
}
@media screen and (min-width: 1000px) {
  body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
@media screen and (min-width: 1000px) {
  body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner::-webkit-scrollbar {
    display: none;
  }
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner > table {
  width: 904px;
  margin-inline: auto;
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner > table tr:first-of-type th {
  -webkit-padding-after: 20px;
  padding-block-end: 20px;
  border-bottom: 1px solid var(--grandgate-bk-60, #858585);
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner > table tr:first-of-type th .logo {
  display: block;
  width: auto;
  height: 80px;
  margin-inline: auto;
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner > table tr:first-of-type th .logo > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner > table tr:first-of-type th .shop {
  display: block;
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
  text-align: center;
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner > table tr:not(:first-of-type) th {
  width: 10em;
  padding-block: 12px;
  -webkit-padding-start: 8px;
  padding-inline-start: 8px;
  border-bottom: 1px solid var(--grandgate-bk-60, #858585);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--shop section.introduction > .introduction__container article.introduction__table > .introduction__table__inner > table tr:not(:first-of-type) td {
  width: calc((100% - 10em) / 3);
  padding-block: 12px;
  border-bottom: 1px solid var(--grandgate-bk-60, #858585);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
body.p-page.--shop section.scene > .inner h2 {
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop section.scene > .inner h2 + p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.scene > .inner h2 + p {
    line-height: 150%; /* 48px */
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.scene > .inner h2 + p {
    line-height: 180%;
  }
}
body.p-page.--shop section.scene > .inner h2 + p + .small {
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.scene > .inner h2 + p + .small {
    line-height: 150%;
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.scene > .inner h2 + p + .small {
    text-align: left;
  }
}
body.p-page.--shop section.scene > .inner ul {
  -webkit-margin-before: 80px;
  margin-block-start: 80px;
}
body.p-page.--shop section.scene > .inner ul > li .--2col {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.scene > .inner ul > li .--2col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.scene > .inner ul > li .--2col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
body.p-page.--shop section.scene > .inner ul > li .--2col > div:nth-of-type(1) figure {
  aspect-ratio: 500/322;
}
body.p-page.--shop section.scene > .inner ul > li .--2col > div:nth-of-type(1) figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.scene > .inner ul > li .--2col > div:nth-of-type(2) {
    padding-inline: clamp(1.25rem, 0.3697183099rem + 3.7558685446vw, 3.75rem);
  }
}
body.p-page.--shop section.scene > .inner ul > li .--2col > div:nth-of-type(2) h3 > .small {
  display: block;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1.3px;
}
body.p-page.--shop section.scene > .inner ul > li .--2col > div:nth-of-type(2) h3 > .text {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 43.2px */
}
body.p-page.--shop section.scene > .inner ul > li .--2col > div:nth-of-type(2) p {
  -webkit-margin-before: clamp(1.25rem, 0.8098591549rem + 1.8779342723vw, 2.5rem);
  margin-block-start: clamp(1.25rem, 0.8098591549rem + 1.8779342723vw, 2.5rem);
  color: var(--grandgate_bk, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
}
body.p-page.--shop section.scene > .inner ul > li:nth-of-type(2) {
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.scene > .inner ul > li:nth-of-type(even) .--2col > div:nth-of-type(1) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.scene > .inner ul > li:nth-of-type(even) .--2col > div:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
body.p-page.--shop section.theterrace {
  background-color: #333333;
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.theterrace > figure.catch {
    aspect-ratio: 1440/504;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.theterrace > figure.catch {
    aspect-ratio: 375/320;
  }
}
body.p-page.--shop section.theterrace > figure.catch > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop section.theterrace > .inner {
  -webkit-margin-after: 0;
  margin-block-end: 0;
  padding-block: clamp(5rem, 4.1197183099rem + 3.7558685446vw, 7.5rem) clamp(7.5rem, 6.6197183099rem + 3.7558685446vw, 10rem);
}
body.p-page.--shop section.theterrace > .inner h2 {
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: clamp(1.375rem, 1.1549295775rem + 0.9389671362vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  text-align: center;
}
body.p-page.--shop section.theterrace > .inner h2 + p {
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
body.p-page.--shop section.theterrace > .inner .logo {
  width: 264px;
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
  margin-inline: auto;
}
body.p-page.--shop section.theterrace > .inner .logo > .small {
  display: block;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: #D4D4D4;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
body.p-page.--shop section.theterrace > .inner .information {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  margin-inline: auto;
}
body.p-page.--shop section.theterrace > .inner .information dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px auto;
  grid-template-columns: 20px auto;
  gap: 12px;
}
body.p-page.--shop section.theterrace > .inner .information dl:not(:first-of-type) {
  -webkit-margin-before: 12px;
  margin-block-start: 12px;
}
body.p-page.--shop section.theterrace > .inner .information dl > dt {
  position: relative;
  top: 0.15em;
}
body.p-page.--shop section.theterrace > .inner .information dl > dt figure {
  width: 20px;
  aspect-ratio: 1;
}
body.p-page.--shop section.theterrace > .inner .information dl > dt figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body.p-page.--shop section.theterrace > .inner .information dl > dd {
  color: #E5E5E5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.312px;
}
body.p-page.--shop section.theterrace > .inner .linkarea {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.5rem, 1.1478873239rem + 1.5023474178vw, 2.5rem);
  -webkit-margin-before: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
  margin-block-start: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
}
@media screen and (min-width: 800px) {
  body.p-page.--shop section.theterrace > .inner .linkarea {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 800px) {
  body.p-page.--shop section.theterrace > .inner .linkarea {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
}
body.p-page.--shop section.theterrace > .inner .linkarea > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 16px;
  grid-template-columns: auto 16px;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-padding-after: 8px;
  padding-block-end: 8px;
  color: var(--grandgate_wh, #FFF);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  position: relative;
}
body.p-page.--shop section.theterrace > .inner .linkarea > a::before, body.p-page.--shop section.theterrace > .inner .linkarea > a::after {
  display: block;
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
body.p-page.--shop section.theterrace > .inner .linkarea > a::before {
  width: 100%;
  background-color: #fff;
}
body.p-page.--shop section.theterrace > .inner .linkarea > a::after {
  width: 0%;
  background-color: #530000;
  -webkit-transition: width 0.48s ease-in-out;
  transition: width 0.48s ease-in-out;
}
@media (any-hover: hover) {
  body.p-page.--shop section.theterrace > .inner .linkarea > a:hover::after {
    width: 100%;
  }
}

.--en {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.--marcellus {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.u-fw-300 {
  font-weight: 300;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-ta-c {
  text-align: center;
}

.u-text-large {
  display: block;
  scale: 1.24;
}

.u-fs-8 {
  font-size: 8px;
}

.u-fs-9 {
  font-size: 9px;
}

.u-fs-10 {
  font-size: 10px;
}

.u-fs-11 {
  font-size: 11px;
}

.u-fs-12 {
  font-size: 12px;
}

.u-fs-13 {
  font-size: 13px;
}

.u-fs-14 {
  font-size: 14px;
}

.u-fs-15 {
  font-size: 15px;
}

.u-fs-16 {
  font-size: 16px;
}

.u-fs-17 {
  font-size: 17px;
}

.u-fs-18 {
  font-size: 18px;
}

.u-fs-19 {
  font-size: 19px;
}

.u-fs-20 {
  font-size: 20px;
}

.u-fs-21 {
  font-size: 21px;
}

.u-fs-22 {
  font-size: 22px;
}

.u-fs-23 {
  font-size: 23px;
}

.u-fs-24 {
  font-size: 24px;
}

.u-fs-25 {
  font-size: 25px;
}

.u-fs-26 {
  font-size: 26px;
}

.u-fs-27 {
  font-size: 27px;
}

.u-fs-28 {
  font-size: 28px;
}

.u-fs-29 {
  font-size: 29px;
}

.u-fs-30 {
  font-size: 30px;
}

.u-fs-31 {
  font-size: 31px;
}

.u-fs-32 {
  font-size: 32px;
}

.u-fs-33 {
  font-size: 33px;
}

.u-fs-34 {
  font-size: 34px;
}

.u-fs-35 {
  font-size: 35px;
}

.u-fs-36 {
  font-size: 36px;
}

.u-fs-37 {
  font-size: 37px;
}

.u-fs-38 {
  font-size: 38px;
}

.u-fs-39 {
  font-size: 39px;
}

.u-fs-40 {
  font-size: 40px;
}

.u-fs-41 {
  font-size: 41px;
}

.u-fs-42 {
  font-size: 42px;
}

.u-fs-43 {
  font-size: 43px;
}

.u-fs-44 {
  font-size: 44px;
}

.u-fs-45 {
  font-size: 45px;
}

.u-fs-46 {
  font-size: 46px;
}

.u-fs-47 {
  font-size: 47px;
}

.u-fs-48 {
  font-size: 48px;
}

.u-fs-49 {
  font-size: 49px;
}

.u-fs-50 {
  font-size: 50px;
}

.u-fs-51 {
  font-size: 51px;
}

.u-fs-52 {
  font-size: 52px;
}

.u-fs-53 {
  font-size: 53px;
}

.u-fs-54 {
  font-size: 54px;
}

.u-fs-55 {
  font-size: 55px;
}

.u-fs-56 {
  font-size: 56px;
}

.u-fs-57 {
  font-size: 57px;
}

.u-fs-58 {
  font-size: 58px;
}

.u-fs-59 {
  font-size: 59px;
}

.u-fs-60 {
  font-size: 60px;
}

.u-fs-61 {
  font-size: 61px;
}

.u-fs-62 {
  font-size: 62px;
}

.u-fs-63 {
  font-size: 63px;
}

.u-fs-64 {
  font-size: 64px;
}

.u-fs-65 {
  font-size: 65px;
}

.u-fs-66 {
  font-size: 66px;
}

.u-fs-67 {
  font-size: 67px;
}

.u-fs-68 {
  font-size: 68px;
}

.u-fs-69 {
  font-size: 69px;
}

.u-fs-70 {
  font-size: 70px;
}

.u-fs-71 {
  font-size: 71px;
}

.u-fs-72 {
  font-size: 72px;
}

.u-fs-73 {
  font-size: 73px;
}

.u-fs-74 {
  font-size: 74px;
}

.u-fs-75 {
  font-size: 75px;
}

.u-fs-76 {
  font-size: 76px;
}

.u-fs-77 {
  font-size: 77px;
}

.u-fs-78 {
  font-size: 78px;
}

.u-fs-79 {
  font-size: 79px;
}

.u-fs-80 {
  font-size: 80px;
}

.u-fs-81 {
  font-size: 81px;
}

.u-fs-82 {
  font-size: 82px;
}

.u-fs-83 {
  font-size: 83px;
}

.u-fs-84 {
  font-size: 84px;
}

.u-fs-85 {
  font-size: 85px;
}

.u-fs-86 {
  font-size: 86px;
}

.u-fs-87 {
  font-size: 87px;
}

.u-fs-88 {
  font-size: 88px;
}

.u-fs-89 {
  font-size: 89px;
}

.u-fs-90 {
  font-size: 90px;
}

.u-fs-91 {
  font-size: 91px;
}

.u-fs-92 {
  font-size: 92px;
}

.u-fs-93 {
  font-size: 93px;
}

.u-fs-94 {
  font-size: 94px;
}

.u-fs-95 {
  font-size: 95px;
}

.u-fs-96 {
  font-size: 96px;
}

.u-fs-97 {
  font-size: 97px;
}

.u-fs-98 {
  font-size: 98px;
}

.u-fs-99 {
  font-size: 99px;
}

.u-fs-100 {
  font-size: 100px;
}

_::-webkit-full-page-media, _:future, :root nav.c-nav.--cva .c-nav__ul li a span {
  translate: 0 -18%;
}

_::-webkit-full-page-media, _:future, :root nav.c-nav .c-nav__ul.--reserve a {
  -webkit-padding-before: 4px;
  padding-block-start: 4px;
}

_::-webkit-full-page-media, _:future, :root body.p-top .kv .kv__contents h1 span {
  white-space: nowrap;
}
/*# sourceMappingURL=map/style.css.map */