@charset "UTF-8";
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner（sass変数を使用） */
  /* z-index */
  --z-index-header: 100;
  --z-index-modal: 200;
  --z-index-overlay: 900;
  /* color */
  --color-base: #fff;
  --color-text: #000;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #014099;
  --color-secondary: #00f;
  --color-orange: #de8430;
  /* font-family */
  --ff-base: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --ff-en: "Poppins", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 72px;
}
@media screen and (width < 1024px) {
  :root {
    --header-height: 56px;
  }
}

/*! kiso.css v1.2.4 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:-moz-any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where(input:is([type=radio i], [type=checkbox i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

:where(input[type=search i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-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(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::-moz-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)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(p) {
  margin: 0;
}

html {
  font-size: 100%;
}

body {
  color: var(--color-text);
  font-family: var(--ff-base);
  font-weight: 400;
}

a[href^=tel] {
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
  transition: opacity var(--duration) ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img,
svg {
  vertical-align: middle;
}

picture {
  display: block;
}

video,
object {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

:where(:-moz-any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

input,
textarea,
select {
  font: inherit;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
}

button {
  margin: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

textarea {
  field-sizing: content;
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-header);
}

.l-inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: min(100%, 37.5rem);
    max-width: 37.5rem;
    padding-inline: 1.25rem;
  }
}

/**
 * パンくずリスト（c-breadcrumb）
 *
 * 構造:
 *   .c-breadcrumb（外枠）
 *   .c-breadcrumb__inner（l-inner）
 *   .c-breadcrumb__nav > .c-breadcrumb__list > .c-breadcrumb__item
 * 区切りは .c-breadcrumb__item + .c-breadcrumb__item::before で表示
 */
.c-breadcrumb {
  padding-block: 0.5rem 2.75rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-block: 0.625rem;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .c-breadcrumb__inner {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: 0;
    padding-inline: 1.25rem;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-breadcrumb__item {
  display: inline-flex;
  align-items: flex-start;
  max-width: 100%;
  color: var(--color-text, #333);
  font-size: 0.875rem;
  font-weight: 500;
  /* 2番目以降の項目の前に矢印を表示 */
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item {
    font-size: 0.75rem;
  }
}
.c-breadcrumb__item:first-child {
  font-family: var(--ff-en);
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  display: inline-block;
  margin: 0 0.875rem;
  flex-shrink: 0;
  color: #ccc;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item + .c-breadcrumb__item::before {
    margin: 0 0.625rem;
  }
}
.c-breadcrumb__item:not(:last-child) {
  white-space: nowrap;
}

.c-breadcrumb__link {
  min-width: 0;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    opacity: 0.7;
    text-decoration: underline;
  }
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  min-width: 15rem;
  min-height: 3.5rem;
  padding: 0;
  border: 1px solid var(--color-white);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.45s ease;
}
@media screen and (max-width: 767px) {
  .c-button {
    min-width: 12.5rem;
    width: 100%;
    min-height: 3.25rem;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
.c-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-black);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .c-button:hover::before {
    transform: scaleX(1);
  }
}

.c-button__text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  padding: 0.25rem 3rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-button__text {
    padding: 0.25rem 2.5rem;
  }
}

.c-button__arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.5rem;
}

.c-button__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 2.5rem;
  background-color: currentcolor;
  opacity: 0.3;
  translate: 0 -50%;
}

.c-button__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}

@media (any-hover: hover) {
  .c-button:hover .c-button__arrow-icon {
    translate: 0.5rem 0;
  }
}
.c-button[data-color=black] {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-button[data-color=black]::before {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .c-button[data-color=black]:hover {
    color: var(--color-black);
  }
}

.c-button--small .c-button__text {
  padding: 0.25rem 1.25rem;
}

.c-button--external .c-button__arrow-icon {
  width: 0.9375rem;
  height: 0.9375rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.85 14.85'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M7.78,0h7.07v7.07' /%3E%3Cpath class='cls-1' d='M.71,14.14L13.44,1.41' /%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.85 14.85'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M7.78,0h7.07v7.07' /%3E%3Cpath class='cls-1' d='M.71,14.14L13.44,1.41' /%3E%3C/svg%3E");
}

@media (any-hover: hover) {
  .c-button--external:hover .c-button__arrow-icon {
    translate: 0.25rem -0.25rem;
  }
}
.c-contact-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 7.4375rem 9rem;
  border-block-start: 1px solid #ececec;
}
@media screen and (max-width: 1023px) {
  .c-contact-cta {
    padding-block: 5rem 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-contact-cta {
    padding-block: 3.75rem 4.375rem;
  }
}

.c-contact-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__inner {
    padding-inline: 1.25rem;
  }
}

.c-contact-cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 20rem;
  padding: 2.5rem 2.5rem 2rem;
  border: 2px solid var(--color-primary);
  border-radius: 0.75rem;
  background-color: var(--color-white);
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.45s ease;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__button {
    min-height: 15rem;
    padding: 2.5rem 1.25rem 1.5rem;
  }
}
.c-contact-cta__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-primary);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0);
}
@media (any-hover: hover) {
  .c-contact-cta__button:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .c-contact-cta__button:hover::before {
    transform: translateX(100%);
  }
}

.c-contact-cta__en {
  position: absolute;
  top: 4.5rem;
  left: 5rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__en {
    top: 3.25rem;
    left: 1.125rem;
    gap: 1rem;
    font-size: 0.9375rem;
  }
}
.c-contact-cta__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: currentcolor;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.c-contact-cta__ja {
  position: relative;
  z-index: 1;
  color: inherit;
  font-size: clamp(2rem, 1.67rem + 0.69vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-contact-cta__ja {
    font-size: 2rem;
  }
}

.c-contact-cta__marquee {
  position: absolute;
  bottom: clamp(0.5rem, -0.17rem + 1.39vw, 1.5rem);
  left: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__marquee {
    bottom: 0.75rem;
  }
}

.c-contact-cta__marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: c-contact-cta-marquee 60s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .c-contact-cta__marquee-track {
    animation: none;
  }
}

.c-contact-cta__marquee-text {
  flex-shrink: 0;
  padding-inline-end: 0.4em;
  color: #f0f0f0;
  font-family: var(--ff-en);
  font-size: clamp(4rem, -1.67rem + 11.81vw, 12.5rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-contact-cta__marquee-text {
    font-size: 6.25rem;
  }
}

@keyframes c-contact-cta-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/**
 * ブロックエディタ本文の共通スタイル
 * フロント・他テーマでも .c-entry-content を付ければ同じ見た目になる
 */
.c-entry-content > *:first-child {
  margin-block-start: 0;
}
.c-entry-content h1,
.c-entry-content h2,
.c-entry-content h3,
.c-entry-content h4,
.c-entry-content h5,
.c-entry-content h6 {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.c-entry-content h1 {
  margin-block-start: 2.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h1 {
    margin-block-start: 2rem;
    font-size: 1.375rem;
  }
}
.c-entry-content h2 {
  position: relative;
  margin-block-start: 2.5rem;
  padding-block-end: 0.75rem;
  border-block-end: 1px solid var(--color-border);
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h2 {
    margin-block-start: 2rem;
    padding-block-end: 0.625rem;
    font-size: 1.25rem;
  }
}
.c-entry-content h2::after {
  content: "";
  position: absolute;
  inset-block-end: -1px;
  inset-inline-start: 0;
  width: 4rem;
  height: 2px;
  background-color: var(--color-primary);
}
.c-entry-content h3 {
  margin-block-start: 2rem;
  padding-inline-start: 0.875rem;
  border-inline-start: 3px solid var(--color-primary);
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h3 {
    margin-block-start: 1.75rem;
    padding-inline-start: 0.75rem;
    font-size: 1.125rem;
  }
}
.c-entry-content h4 {
  margin-block-start: 1.75rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h4 {
    margin-block-start: 1.5rem;
    font-size: 1rem;
  }
}
.c-entry-content h5 {
  margin-block-start: 1.5rem;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h5 {
    margin-block-start: 1.25rem;
    font-size: 0.9375rem;
  }
}
.c-entry-content h6 {
  margin-block-start: 1.25rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-entry-content h6 {
    font-size: 0.875rem;
  }
}
.c-entry-content p {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .c-entry-content p {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
.c-entry-content ul,
.c-entry-content ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-entry-content ul,
  .c-entry-content ol {
    padding-inline-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.c-entry-content ul {
  list-style-type: disc;
}
.c-entry-content ul ::marker {
  color: var(--color-primary);
}
.c-entry-content ol {
  list-style-type: decimal;
}
.c-entry-content ol ::marker {
  color: var(--color-primary);
}
.c-entry-content li {
  margin-block-start: 0.5rem;
}
.c-entry-content a:not(.wp-block-button__link) {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .c-entry-content a:not(.wp-block-button__link):hover {
    opacity: 0.7;
  }
}
.c-entry-content img,
.c-entry-content .wp-block-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-block-start: 1.5rem;
}
.c-entry-content .wp-block-image {
  margin-block-start: 1.5rem;
}
.c-entry-content figure {
  margin-block-start: 1.5rem;
}
.c-entry-content figcaption {
  margin-block-start: 0.5rem;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}
.c-entry-content blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline-start: 1.5rem;
  padding-inline-end: 1.25rem;
  border-inline-start: 3px solid var(--color-primary);
  border-radius: 0.25rem;
  background-color: #d4d4d4;
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .c-entry-content blockquote {
    padding-inline-start: 1rem;
    padding-inline-end: 0.875rem;
  }
}
.c-entry-content blockquote p {
  margin-block-start: 0;
}
.c-entry-content blockquote blockquote {
  margin-block-start: 0.75rem;
  padding-block: 0;
  padding-inline-start: 1rem;
  padding-inline-end: 0;
  border-radius: 0;
  background-color: transparent;
  font-style: inherit;
}
.c-entry-content code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
}
.c-entry-content pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
.c-entry-content pre code {
  padding: 0;
  background-color: transparent;
}
.c-entry-content table {
  width: 100%;
  margin-block-start: 1.5rem;
  border: 1px solid var(--color-border);
  border-collapse: collapse;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-entry-content table {
    font-size: 0.8125rem;
  }
}
.c-entry-content th,
.c-entry-content td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  border: 1px solid var(--color-border);
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-entry-content th,
  .c-entry-content td {
    padding-block: 0.625rem;
    padding-inline: 0.75rem;
  }
}
.c-entry-content th:not([class*=has-text-align]),
.c-entry-content td:not([class*=has-text-align]) {
  text-align: start;
}
.c-entry-content .wp-block-table {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.c-entry-content .wp-block-table table {
  margin-block-start: 0;
}
.c-entry-content .wp-block-table td,
.c-entry-content .wp-block-table th {
  border: 1px solid #d8dde5;
}
.c-entry-content .wp-block-table thead {
  border-block-end: none;
}
.c-entry-content .wp-block-table thead th {
  background-color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  font-weight: 700;
}
.c-entry-content .wp-block-table tbody th {
  background-color: #eef3f9;
  color: var(--color-text);
  font-weight: 700;
}
.c-entry-content .wp-block-table tbody td {
  background-color: var(--color-white);
}
.c-entry-content .wp-block-table tbody tr:nth-child(even) td {
  background-color: #f5f8fc;
}
.c-entry-content .wp-block-table tbody tr:nth-child(even) th {
  background-color: #e4ecf6;
}
.c-entry-content th {
  background-color: var(--color-gray);
  font-weight: 700;
}
.c-entry-content hr {
  margin-block-start: 2rem;
  border: none;
  border-block-start: 1px solid var(--color-border);
}
.c-entry-content strong {
  font-weight: 700;
}
.c-entry-content em {
  font-style: italic;
}
.c-entry-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-start: 1.5rem;
}
.c-entry-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding-block: 0.75rem;
  padding-inline: 1.75rem;
  border: 1px solid var(--color-black);
  border-radius: 0.25rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration), color var(--duration);
}
@media (any-hover: hover) {
  .c-entry-content .wp-block-button__link:hover {
    background-color: var(--color-white);
    color: var(--color-black);
  }
}
.c-entry-content .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: var(--color-text);
}
@media (any-hover: hover) {
  .c-entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: var(--color-black);
    color: var(--color-white);
  }
}
.c-entry-content .wp-block-quote,
.c-entry-content .wp-block-pullquote {
  margin-block-start: 1.5rem;
}
.c-entry-content .wp-block-quote .wp-block-quote,
.c-entry-content .wp-block-quote .wp-block-pullquote,
.c-entry-content .wp-block-quote blockquote,
.c-entry-content .wp-block-pullquote .wp-block-quote,
.c-entry-content .wp-block-pullquote .wp-block-pullquote,
.c-entry-content .wp-block-pullquote blockquote {
  margin-block-start: 0.75rem;
}
.c-entry-content .wp-block-embed,
.c-entry-content .wp-block-video,
.c-entry-content .wp-block-audio {
  margin-block-start: 1.5rem;
}

.c-notice {
  width: 100%;
}

.c-notice__item {
  border: 3px solid #c2c2c2;
  border-radius: 0.5rem;
}

.c-notice__item.is-opened .c-notice__item-summary-inner::after {
  rotate: 90deg;
}

.c-notice__item-summary {
  display: block;
  width: 100%;
  list-style: none;
  cursor: pointer;
}

.c-notice__item-summary::-webkit-details-marker {
  display: none;
}

.c-notice__item-summary-inner {
  display: block;
  position: relative;
  padding: 1.25rem 1.875rem;
  text-align: center;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner {
    padding: 1.25rem;
  }
}
.c-notice__item-summary-inner::before, .c-notice__item-summary-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  border-radius: 100vmax;
  background: var(--color-text);
}
.c-notice__item-summary-inner::before {
  right: 2.5rem;
  width: 1rem;
  height: 0.125rem;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner::before {
    right: 1.25rem;
    width: 1.25rem;
  }
}
.c-notice__item-summary-inner::after {
  right: 2.9375rem;
  width: 0.125rem;
  height: 1rem;
  rotate: 0deg;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner::after {
    height: 1.25rem;
    right: 1.8125rem;
  }
}
@media (any-hover: hover) {
  .c-notice__item-summary-inner:hover {
    background-color: color-mix(in srgb, var(--color-primary) 5%, white);
  }
}

.c-notice__item-summary-text {
  margin: 0;
  display: inline-block;
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-text {
    display: inline-block;
    padding-inline: 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-notice__item-content {
  overflow: hidden;
}

.c-notice__item-content-inner {
  padding: 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-notice__item-content-inner {
    padding: 1rem 1.25rem;
  }
}

.c-notice__item-content-text {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-notice__item-content-text-item {
  position: relative;
  padding-inline-start: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.63;
}
@media screen and (max-width: 767px) {
  .c-notice__item-content-text-item {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
.c-notice__item-content-text-item::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-archive__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_pagination-* を設定する
 *   - 親の CSS ファイルに c-pagination のクラス名は書かない（コンポーネントのカプセル化）
 *
 * 上書き可能な変数: --_pagination-bg, --_pagination-text, --_pagination-text-hover,
 *   --_pagination-bg-hover, --_pagination-active-bg, --_pagination-active-text,
 *   --_pagination-border, --_pagination-border-hover
 */
.c-pagination {
  /* 色（ローカル変数。親の wrapper で上書き可能） */
  --_pagination-bg: var(--color-white, #fff);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: #374151;
  --_pagination-bg-hover: #f9fafb;
  --_pagination-active-bg: var(--color-black, #000);
  --_pagination-active-text: var(--color-white, #fff);
  --_pagination-border: #d1d5db;
  --_pagination-border-hover: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--_pagination-border);
  border-radius: 0.375rem;
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    height: 2.5rem;
    min-width: 2.5rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]) {
    border-color: var(--_pagination-border-hover);
    background-color: var(--_pagination-bg-hover);
    color: var(--_pagination-text-hover);
  }
}

.c-pagination__item[data-state=current] {
  border-color: var(--_pagination-active-bg);
  background-color: var(--_pagination-active-bg);
  color: var(--_pagination-active-text);
}

.c-pagination__item[data-state=dots] {
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
.c-pagination__item[data-state=dots]:hover {
  border-color: transparent;
  background-color: transparent;
}

.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  font-weight: 500;
}

.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=disabled]:hover {
    border-color: var(--_pagination-border);
    background-color: var(--_pagination-bg);
    color: var(--_pagination-text);
  }
}

.c-related-links {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-related-links {
    padding-block: 3rem 3.5rem;
  }
}

.c-related-links__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-related-links__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-inline: 1.25rem;
  }
}

.c-related-links__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  gap: 1rem;
  min-height: 7.5rem;
  padding: 1.5rem 2.5rem;
  border-radius: 0.375rem;
  background-color: #f4f4f4;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.45s ease;
}
.c-related-links__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-black);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .c-related-links__link:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .c-related-links__link:hover::before {
    transform: scaleX(1);
  }
  .c-related-links__link:hover .c-related-links__arrow {
    translate: 0.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .c-related-links__link {
    min-height: 4.5rem;
    padding: 1.25rem;
  }
}

.c-related-links__text {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-related-links__text {
    font-size: 1rem;
  }
}

.c-related-links__arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath fill='%23fff' d='M15,0l5,5-5,5'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M0,5h18'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath fill='%23fff' d='M15,0l5,5-5,5'/%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M0,5h18'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-icon {
  background: color-mix(in srgb, var(--color-primary) 85%, transparent);
}

@media print {
  .scroll-hint-icon-wrap,
  .scroll-hint-icon {
    display: none !important;
  }
}
.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    gap: 0.5rem;
  }
}
.c-section-title[data-align=center] {
  align-items: center;
  text-align: center;
}
.c-section-title[data-align=right] {
  align-items: flex-end;
  text-align: right;
}

.c-section-title__en {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1rem, 0.92rem + 0.17vw, 1.125rem);
  font-weight: 600;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: 0.9375rem;
  }
}
.c-section-title__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-section-title__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.c-section-title[data-align=center] .c-section-title__en {
  justify-content: center;
}

.c-section-title[data-align=right] .c-section-title__en {
  justify-content: flex-end;
}

.c-section-title__ja {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2rem, 1.43rem + 0.89vw, 2.5rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: 1.375rem;
    line-height: 1.375;
  }
}

.c-section-title--large {
  gap: 0.875rem;
}
.c-section-title--large .c-section-title__ja {
  font-size: clamp(3rem, 2.33rem + 1.39vw, 4rem);
}
@media screen and (max-width: 767px) {
  .c-section-title--large .c-section-title__ja {
    font-size: 2rem;
  }
}

.p-60th-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 40rem;
  padding-block: 7rem 23.9375rem;
  background: url("../images/bg_60th_hero.webp") no-repeat center bottom/cover;
  overflow: hidden;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-60th-hero {
    min-height: 38.75rem;
    padding-block: 4.5rem 11.875rem;
  }
}

.p-60th-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-60th-hero__en {
  margin: 0;
  color: #db9b35;
  font-family: var(--ff-en);
  font-size: clamp(1.25rem, 0.96rem + 0.45vw, 1.5rem);
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-60th-hero__en {
    font-size: 0.75rem;
  }
}

.p-60th-hero__heading {
  margin-block-start: 1.5rem;
  color: var(--color-white);
  font-size: clamp(3rem, 1.86rem + 1.79vw, 4rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-hero__heading {
    margin-block-start: 0.875rem;
    font-size: 1.5rem;
  }
}

.p-60th-hero__logo {
  display: block;
  width: 22.5rem;
  height: auto;
  margin-block-start: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-60th-hero__logo {
    width: 8.75rem;
    margin-block-start: 1.75rem;
  }
}

.p-60th-hero__texts {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-60th-hero__texts {
    margin-block-start: 2.5rem;
  }
}

.p-60th-hero__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-hero__text {
    font-size: 0.875rem;
    line-height: 1.8;
    text-align: left;
  }
}

.p-60th-history {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-60th-history {
    padding-block: 3.5rem;
  }
}

.p-60th-history__lead {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-history__lead {
    font-size: 0.875rem;
    line-height: 1.85;
  }
}

.p-60th-history__layout {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-block-start: 4.75rem;
}
@media screen and (max-width: 1023px) {
  .p-60th-history__layout {
    gap: 2.5rem;
    margin-block-start: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-history__layout {
    flex-direction: column;
    gap: 2rem;
    margin-block-start: 2.25rem;
  }
}

.p-60th-history__nav {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  flex-shrink: 0;
  width: 15rem;
  padding: 2.125rem 2.5rem;
  border-radius: 0.25rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 1023px) {
  .p-60th-history__nav {
    width: 10.5rem;
    padding: 1.5rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-history__nav {
    position: static;
    width: 100%;
    padding: 1.25rem 1rem;
  }
}

.p-60th-history__nav-title {
  font-family: var(--ff-en);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.58;
}
@media screen and (max-width: 767px) {
  .p-60th-history__nav-title {
    margin-block-end: 0.75rem;
    font-size: 0.875rem;
  }
}

.p-60th-history__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
  margin-block-start: 1.125rem;
  padding-inline-start: 1.5rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-60th-history__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    min-width: 100%;
    padding-inline-start: 0.75rem;
  }
}

.p-60th-history__nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #666;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-60th-history__nav-link {
    gap: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}
.p-60th-history__nav-link::before {
  content: "";
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color var(--duration);
}
@media (any-hover: hover) {
  .p-60th-history__nav-link:hover {
    opacity: 1;
    color: var(--color-text);
  }
}
.p-60th-history__nav-link.is-active {
  color: var(--color-text);
}
.p-60th-history__nav-link.is-active::before {
  background-color: var(--color-primary);
}

.p-60th-history__nav-num,
.p-60th-history__era-heading-num,
.p-60th-history__era-date-num {
  font-family: var(--ff-en);
}

.p-60th-history__timeline {
  flex: 1;
  min-width: 0;
}

.p-60th-history__eras {
  position: relative;
  margin-block-start: -0.5rem;
}
.p-60th-history__eras::before {
  content: "";
  position: absolute;
  top: calc(2rem * 1.37 + 1.25rem + 0.5rem + 0.375rem);
  bottom: 0;
  left: calc(11.75rem + 1.25rem + 0.5rem);
  z-index: 0;
  width: 1px;
  background-color: var(--color-text);
  translate: -50% 0;
}
@media screen and (max-width: 1023px) {
  .p-60th-history__eras::before {
    top: calc(1.5rem * 1.37 + 1.25rem + 0.5rem + 0.375rem);
    left: calc(7.5rem + 1rem + 0.3125rem);
  }
}
@media screen and (max-width: 767px) {
  .p-60th-history__eras::before {
    top: calc(0.375rem + 0.375rem);
    left: 0.3125rem;
    translate: none;
  }
}

.p-60th-history__era {
  position: relative;
  z-index: 1;
}

.p-60th-history__era + .p-60th-history__era {
  margin-block-start: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-60th-history__era + .p-60th-history__era {
    margin-block-start: 2rem;
  }
}

.p-60th-history__era-heading {
  display: grid;
  grid-template-columns: 11.75rem 1rem minmax(0, 1fr);
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  align-items: flex-start;
  margin: 0 0 1.25rem;
  color: var(--color-text);
  font-size: clamp(1.75rem, 1.46rem + 0.45vw, 2rem);
  font-weight: 700;
  line-height: 1.37;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-60th-history__era-heading {
    grid-template-columns: 7.5rem 0.625rem minmax(0, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-60th-history__era-heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-history__era-heading {
    display: none;
  }
}

.p-60th-history__era-heading-text {
  grid-column: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-60th-history__era-heading-text {
    text-align: left;
  }
}

.p-60th-history__era-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-60th-history__era-list {
    gap: 1.25rem;
  }
}

.p-60th-history__era-item {
  display: grid;
  grid-template-columns: 11.75rem 1rem minmax(0, 1fr);
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-60th-history__era-item {
    grid-template-columns: 7.5rem 0.625rem minmax(0, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-history__era-item {
    grid-template-columns: 1rem 1fr;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

.p-60th-history__era-date {
  grid-column: 1;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: right;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-history__era-date {
    grid-column: 2;
    grid-row: 1;
    margin-block-end: 0.25rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-60th-history__era-marker {
  display: block;
  grid-column: 2;
  width: 0.75rem;
  height: 0.75rem;
  margin-block-start: 0.5rem;
  margin-inline: auto;
  border-radius: 50%;
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-60th-history__era-marker {
    grid-column: 1;
    grid-row: 1/span 2;
    margin-block-start: 0.375rem;
    margin-inline: 0;
  }
}

.p-60th-history__era-text {
  grid-column: 3;
  padding-inline-start: 1.625rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-60th-history__era-text {
    padding-inline-start: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-history__era-text {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.p-60th-history__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.9375rem 0 0;
  padding-inline-start: 3.5rem;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-60th-history__gallery {
    padding-inline-start: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-history__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-inline: auto;
    margin-block-start: 2.5rem;
    padding-inline-start: 0;
  }
}

.p-60th-history__gallery-item {
  aspect-ratio: 266/200;
  overflow: hidden;
  border-radius: 0.375rem;
  line-height: 0;
  background-color: #ddd;
}

.p-60th-history__archives {
  display: grid;
  gap: 2rem;
  margin-block-start: 2rem;
  padding-inline-start: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .p-60th-history__archives {
    padding-inline-start: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-history__archives {
    gap: 1.25rem;
    margin-block-start: 1.5rem;
    padding-inline-start: 0;
  }
}

.p-60th-history__archive {
  background-color: transparent;
}

.p-60th-history__archive-image {
  display: block;
  height: auto;
  border-radius: 0.375rem;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
}

.p-60th-history__archive-caption {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-history__archive-caption {
    margin-block-start: 0.5rem;
    font-size: 0.75rem;
  }
}

.p-60th-message {
  padding-block: 6.875rem 7rem;
}
@media screen and (max-width: 1023px) {
  .p-60th-message {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-message {
    padding-block: 3.75rem;
  }
}

.p-60th-message__inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-60th-message__inner {
    padding-inline: 1.25rem;
  }
}

.p-60th-message__content {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .p-60th-message__content {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-message__content {
    flex-direction: column;
    gap: 2rem;
    margin-block-start: 1.5rem;
  }
}

.p-60th-message__portrait {
  flex-shrink: 0;
  width: 43.3333333333%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-60th-message__portrait {
    width: 100%;
    max-width: 27.5rem;
    margin-inline: auto;
  }
}

.p-60th-message__media {
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
  aspect-ratio: 520/390;
  border-radius: 0.375rem;
  margin-block-start: 0.75rem;
}

.p-60th-message__caption {
  display: flex;
  flex-direction: column;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-60th-message__caption {
    margin-block-start: 1rem;
  }
}

.p-60th-message__role {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-60th-message__name {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-message__name {
    font-size: 1.125rem;
  }
}

.p-60th-message__body {
  flex: 1;
  min-width: 0;
}

.p-60th-message__lead {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.5rem, 1.36rem + 1.79vw, 3.5rem);
  font-weight: 700;
  line-height: 1.35;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-message__lead {
    font-size: 1.25rem;
    line-height: 1.55;
  }
}

.p-60th-message__texts {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-60th-message__texts {
    gap: 1rem;
    margin-block-start: 1.75rem;
  }
}

.p-60th-message__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-message__text {
    font-size: 0.875rem;
    line-height: 1.85;
  }
}
.p-60th-message__text strong {
  font-weight: 700;
}

.p-60th-next {
  padding-block: 6.875rem 7rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 1023px) {
  .p-60th-next {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-next {
    padding-block: 3.75rem;
  }
}

.p-60th-next__inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-60th-next__inner {
    padding-inline: 1.25rem;
  }
}

.p-60th-next__content {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .p-60th-next__content {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-60th-next__content {
    flex-direction: column;
    gap: 2rem;
    margin-block-start: 2.5rem;
  }
}

.p-60th-next__body {
  flex: 1;
  min-width: 0;
}

.p-60th-next__lead {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.5rem, 1.36rem + 1.79vw, 3.5rem);
  font-weight: 700;
  line-height: 1.357;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-next__lead {
    font-size: 1.25rem;
    line-height: 1.55;
  }
}

.p-60th-next__lead-en {
  font-family: var(--ff-en);
}

.p-60th-next__texts {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-60th-next__texts {
    gap: 1rem;
    margin-block-start: 1.75rem;
  }
}

.p-60th-next__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-next__text {
    font-size: 0.875rem;
    line-height: 1.85;
  }
}
.p-60th-next__text strong {
  font-weight: 700;
}

.p-60th-next__portrait {
  flex-shrink: 0;
  width: 43.3333333333%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-60th-next__portrait {
    width: 100%;
    max-width: 27.5rem;
    margin-inline: auto;
  }
}

.p-60th-next__media {
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
  aspect-ratio: 1/1;
  border-radius: 0.375rem;
  margin-block-start: 0.75rem;
}

.p-60th-next__caption {
  display: flex;
  flex-direction: column;
  margin-block-start: 2rem;
}

.p-60th-next__role {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-60th-next__name {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-60th-next__name {
    font-size: 1.125rem;
  }
}

.p-about-anniversary {
  padding-block: 7.5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-about-anniversary {
    padding-block: 3.5rem;
  }
}

.p-about-anniversary__card {
  display: flex;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-about-anniversary__card {
    flex-direction: column;
  }
}

.p-about-anniversary__visual {
  flex-shrink: 0;
  width: 45%;
  min-height: 22.5rem;
  background-color: #040008;
}
@media screen and (max-width: 767px) {
  .p-about-anniversary__visual {
    width: 100%;
    min-height: 13.75rem;
  }
}

.p-about-anniversary__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-about-anniversary__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 1.875rem 3.5rem;
}
@media screen and (max-width: 1023px) {
  .p-about-anniversary__body {
    padding: 1.875rem 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-anniversary__body {
    padding: 1.75rem 1.25rem;
  }
}

.p-about-anniversary__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.p-about-anniversary__en {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1rem, 0.92rem + 0.17vw, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-about-anniversary__en {
    font-size: 0.9375rem;
  }
}
.p-about-anniversary__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-about-anniversary__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-about-anniversary__heading {
  color: var(--color-text);
  font-size: clamp(1.5rem, 1.17rem + 0.69vw, 2rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-anniversary__heading {
    font-size: 1.375rem;
    line-height: 1.375;
  }
}

.p-about-anniversary__text {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-anniversary__text {
    margin-block-start: 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-about-anniversary__button {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-about-anniversary__button {
    margin-block-start: 1.5rem;
  }
}

.p-about-contents {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-contents {
    padding-block: 3.5rem;
  }
}

.p-about-contents__list {
  display: flex;
  gap: 1.5rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-contents__list {
    flex-direction: column;
    gap: 1rem;
    margin-block-start: 1.75rem;
  }
}

.p-about-contents__item {
  flex: 1;
  min-width: 0;
}

.p-about-contents__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-about-contents__card {
    padding: 1.5rem 1.25rem;
  }
}

.p-about-contents__heading {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-contents__heading {
    font-size: 1.25rem;
  }
}

.p-about-contents__text {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-contents__text {
    font-size: 0.8125rem;
    line-height: 1.75;
  }
}

.p-about-contents__button {
  margin-block-start: auto;
  padding-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-contents__button {
    padding-block-start: 1.25rem;
  }
}

.p-about-contents__button .c-button {
  border-color: var(--color-black);
}

.p-about-identity {
  padding-block: 2.5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-identity {
    padding-block: 1.5rem 3.75rem;
  }
}

.p-about-identity__lead {
  margin-block-start: 2rem;
}

.p-about-identity__lead-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-identity__lead-text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-about-identity__list {
  display: flex;
  gap: 1.5rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-identity__list {
    flex-direction: column;
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-about-identity__item {
  flex: 1;
  min-width: 0;
}

.p-about-identity__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 2.25rem 1.8125rem 2.3125rem;
  border-radius: 0.375rem;
  background-color: #f5f5f5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-identity__card {
    padding: 1.75rem 1.25rem;
  }
}

.p-about-identity__label {
  align-self: flex-start;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  font-feature-settings: "palt";
}

.p-about-identity__label-num {
  color: var(--color-primary);
}

.p-about-identity__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-block-start: 0.875rem;
  border-radius: 50%;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-about-identity__icon-wrap {
    width: 4rem;
    height: 4rem;
    margin-block-start: 0.75rem;
  }
}

.p-about-identity__icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-identity__icon {
    width: 2rem;
    height: 2rem;
  }
}

.p-about-identity__heading {
  margin-block-start: 1.25rem;
  color: var(--color-text);
  font-size: clamp(1rem, 0.64rem + 0.75vw, 1.25rem);
  font-weight: 700;
  line-height: 1.83;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-about-identity__heading {
    font-size: 1.125rem;
  }
}

.p-about-identity__text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about-identity__text {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-about-intro {
  padding-block: 6.25rem 5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-about-intro {
    padding-block: 3rem 2.5rem;
  }
}

.p-about-intro__inner {
  display: flex;
  justify-content: center;
}

.p-about-intro__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-intro__text {
    font-size: 0.875rem;
    line-height: 1.71;
    text-align: left;
  }
}

.p-about-intro__em {
  font-weight: 700;
  color: var(--color-primary);
}

.p-archive {
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive {
    padding-block: calc(80 * var(--to-rem));
  }
}

.p-archive__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}

.p-archive__header {
  margin-block-end: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__header {
    margin-block-end: calc(60 * var(--to-rem));
  }
}

.p-archive__title {
  margin-block-end: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__title {
    margin-block-end: calc(24 * var(--to-rem));
  }
}

.p-archive__description {
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__description {
    margin-block-start: calc(24 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}

.p-archive__list {
  display: grid;
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(32 * var(--to-rem));
  }
}
@media screen and (max-width: 1023px) {
  .p-archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-archive__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(16 * var(--to-rem));
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  background-color: var(--color-white);
  text-decoration: none;
  transition: translate 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-archive__link {
    padding: calc(20 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-archive__link:hover {
    box-shadow: 0 8px 24px oklch(from var(--color-black) l c h/10%);
    translate: 0 calc(-4 * var(--to-rem));
  }
}

.p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-archive__thumbnail {
    margin-block-end: calc(20 * var(--to-rem));
  }
}

.p-archive__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease;
}

@media (any-hover: hover) {
  .p-archive__link:hover .p-archive__thumbnail img {
    scale: 1.05;
  }
}
.p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
}

.p-archive__item-title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-archive__item-title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__meta {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive__date {
  display: inline-block;
}

.p-archive__categories {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
}

.p-archive__category {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__category {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-archive__excerpt {
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__excerpt {
    font-size: calc(16 * var(--to-rem));
  }
}

.p-archive__pagination {
  margin-block-start: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__pagination {
    margin-block-start: calc(60 * var(--to-rem));
  }
}

.p-archive__empty {
  padding-block: calc(60 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__empty {
    padding-block: calc(80 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}

.p-single__back {
  margin-block-start: calc(48 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single__back {
    margin-block-start: calc(60 * var(--to-rem));
  }
}

.p-archive--works .p-archive__link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) oklch(from var(--color-black) l c h/8%);
  background-color: var(--color-white);
  text-decoration: none;
}

.p-archive--works .p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: 0;
  border-radius: 12px 12px 0 0;
}

.p-archive--works .p-archive__thumbnail img {
  transition: scale 0.5s ease;
}

@media (any-hover: hover) {
  .p-archive--works .p-archive__link:has(.p-archive__thumbnail):hover .p-archive__thumbnail img {
    scale: 1.1;
  }
}
.p-archive--works .p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
}

.p-archive--works .p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__meta {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive--works .p-archive__date {
  display: inline-block;
}

.p-archive--works .p-archive__category {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__category {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-archive--works .p-archive__item-title {
  margin: 0;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__item-title {
    margin-block-end: calc(12 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
    line-height: 1.6;
  }
}

.p-archive--works .p-archive__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-block-start: 0;
  color: var(--color-text);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__excerpt {
    font-size: calc(14 * var(--to-rem));
    line-height: 1.8;
  }
}

.p-archive--works .p-archive__client,
.p-archive--works .p-archive__period {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__client,
  .p-archive--works .p-archive__period {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive--works .p-archive__client-label,
.p-archive--works .p-archive__period-label {
  font-weight: 500;
}

.p-archive--works .p-archive__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(12 * var(--to-rem));
}

.p-archive--works .p-archive__technology {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__technology {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(320 * var(--to-rem)), 1fr));
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-card-list {
    gap: calc(32 * var(--to-rem));
  }
}

.p-column-list {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-column-list {
    padding-block: 3rem 3.75rem;
  }
}

.p-column-list__filters {
  margin-block-end: 3rem;
}
@media screen and (max-width: 767px) {
  .p-column-list__filters {
    margin-block-end: 2rem;
  }
}

.p-column-list__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-column-list__filter-list {
    gap: 0.5rem;
    overflow-x: auto;
    padding-block-end: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

.p-column-list__filter-item {
  flex-shrink: 0;
}

.p-column-list__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding-block: 0.625rem;
  padding-inline: 1.25rem;
  border: 1px solid var(--color-black);
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration), background-color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-column-list__filter {
    min-height: 2.5rem;
    padding-inline: 1rem;
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-column-list__filter:hover {
    background-color: var(--color-gray);
  }
}

.p-column-list__filter.is-active {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-column-list__filter.is-active:hover {
    background-color: var(--color-black);
    color: var(--color-white);
  }
}

.p-column-list__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-column-list__list {
    gap: 2.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-column-list__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-column-list__item {
  min-width: 0;
}

.p-column-list__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-column-list__card:hover .p-column-list__image {
    scale: 1.06;
  }
}

.p-column-list__visual {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 374/255;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-gray);
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-column-list__visual {
    aspect-ratio: 280/190;
  }
}

.p-column-list__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-column-list__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-column-list__body {
    margin-block-start: 0.75rem;
  }
}

.p-column-list__heading {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .p-column-list__heading {
    font-size: 1rem;
    line-height: 1.55;
  }
}

.p-column-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-block-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-column-list__meta {
    gap: 0.5rem 0.625rem;
    margin-block-start: 0.5rem;
  }
}

.p-column-list__date {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-column-list__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-column-list__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-column-list__tag {
    min-width: 5.3125rem;
    min-height: 1.625rem;
    font-size: 0.8125rem;
  }
}

.p-column-list__pagination {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-column-list__pagination {
    margin-block-start: 2.5rem;
  }
}

.p-column-list__empty {
  padding-block: 3.75rem;
  color: #666;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-column-list__empty {
    padding-block: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-company-profile {
  padding-block: 7.125rem 7.5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-company-profile {
    padding-block: 3rem 2.5rem;
  }
}

.p-company-profile__list {
  margin-block-start: 3rem;
  border-block-start: 1px solid #d4d4d4;
}
@media screen and (max-width: 767px) {
  .p-company-profile__list {
    margin-block-start: 1.75rem;
  }
}

.p-company-profile__row {
  display: grid;
  grid-template-columns: 13.75rem minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-block-end: 1px solid #d4d4d4;
}
@media screen and (max-width: 767px) {
  .p-company-profile__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-block: 1.25rem;
  }
}

.p-company-profile__term {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-company-profile__term {
    font-size: 0.875rem;
  }
}

.p-company-profile__desc {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-company-profile__desc {
    font-size: 0.875rem;
  }
}

.p-company-profile__text + .p-company-profile__text {
  margin-block-start: 0.5rem;
}

.p-company-profile__sub-list {
  margin-block-start: 0.75rem;
  padding-inline-start: 1.5rem;
  list-style-type: disc;
}

.p-company-profile__sub-list li + li {
  margin-block-start: 0.5rem;
}

.p-company-profile__link {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-company-profile__link:hover {
    opacity: 0.7;
  }
}

.p-company-profile__business + .p-company-profile__business {
  margin-block-start: 1.25rem;
}

.p-company-profile__business-heading {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-company-profile__business-heading {
    font-size: 0.875rem;
  }
}

.p-company-profile__business-list {
  margin-block-start: 0.5rem;
  padding-inline-start: 2.5rem;
  list-style-type: disc;
}

.p-company-profile__business-list li + li {
  margin-block-start: 0.25rem;
}

.p-company-profile__map-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3rem;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__map-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    margin-block-start: 2rem;
  }
}

.p-company-profile__map {
  flex: 1;
  overflow: hidden;
  border-radius: 0.375rem;
  background-color: #eeeeee;
  aspect-ratio: 1200/480;
}
@media screen and (max-width: 767px) {
  .p-company-profile__map {
    aspect-ratio: 16/10;
  }
}

.p-company-profile__map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-company-profile__map-visual {
  flex: 1;
  overflow: hidden;
  border-radius: 0.375rem;
  background-color: #eeeeee;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .p-company-profile__map-visual {
    aspect-ratio: 16/10;
  }
}

.p-contact-thanks {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks {
    padding-block: 3.5rem;
  }
}

.p-contact-thanks__panel {
  width: min(100%, 62.5rem);
  margin-inline: auto;
  padding: 3rem 2.5rem;
  background-color: var(--color-gray);
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__panel {
    padding: 2rem 1.25rem;
  }
}

.p-contact-thanks__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-contact-thanks__button {
  display: flex;
  justify-content: center;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__button {
    margin-block-start: 2rem;
  }
}

.p-contact {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 3.5rem;
  }
}

.p-contact__notice {
  width: min(100%, 62.5rem);
  margin-inline: auto;
}

.p-contact__form-wrap {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-wrap {
    margin-block-start: 2.5rem;
  }
}

.p-contact-tel__button {
  flex-direction: column;
  gap: 0.5rem;
}

.p-contact-tel__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.p-contact-tel__label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-contact-tel__label {
    font-size: 1rem;
  }
}

.p-contact-tel__number {
  font-size: clamp(1.75rem, 0.67rem + 2.26vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-contact-tel__number {
    font-size: 1.75rem;
  }
}

.p-contact-tel__hours {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .p-contact-tel__hours {
    font-size: 0.8125rem;
  }
}

.p-dev-notice {
  padding-block: calc(24 * var(--to-rem));
  background-color: #fff3cd;
}
@media screen and (max-width: 767px) {
  .p-dev-notice {
    padding-block: calc(32 * var(--to-rem));
  }
}

.p-dev-notice__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}

.p-dev-notice__content {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__content {
    gap: calc(20 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}

.p-dev-notice__title {
  color: var(--color-text);
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-dev-notice__text code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__text code {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-dev-notice__list {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  margin: 0;
  padding-inline-start: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__list {
    gap: calc(16 * var(--to-rem));
    padding-inline-start: calc(32 * var(--to-rem));
  }
}

.p-dev-notice__item {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  line-height: 1.8;
}

.p-dev-notice__item strong {
  color: var(--color-primary);
  font-weight: 700;
}

.p-dev-notice__item code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__item code {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-entry-thanks {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry-thanks {
    padding-block: 3.5rem;
  }
}

.p-entry-thanks__panel {
  width: min(100%, 62.5rem);
  margin-inline: auto;
  padding: 3rem 2.5rem;
  background-color: var(--color-gray);
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-entry-thanks__panel {
    padding: 2rem 1.25rem;
  }
}

.p-entry-thanks__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-entry-thanks__text {
    font-size: 0.875rem;
  }
}

.p-entry-thanks__button {
  display: flex;
  justify-content: center;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-entry-thanks__button {
    margin-block-start: 2rem;
  }
}

.p-entry {
  padding-block: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry {
    padding-block: 3.5rem 1.5rem;
  }
}

.p-entry--confirm {
  padding-block: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry--confirm {
    padding-block: 3.5rem 1.5rem;
  }
}

.p-entry__notice {
  width: min(100%, 62.5rem);
  margin-inline: auto;
}

.p-entry__form-wrap {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form-wrap {
    margin-block-start: 2.5rem;
  }
}

.p-entry--confirm .p-entry__form {
  margin-block-start: 0;
}

.p-error {
  padding-block: 7.5rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: 3.75rem;
  }
}

.p-error__inner {
  margin-inline: auto;
  text-align: center;
}

.p-error__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-error__text {
    font-size: 0.875rem;
  }
}

.p-error__button {
  margin-block-start: 2rem;
  text-align: center;
}

.p-footer {
  width: 100%;
  padding-block: 0 1.25rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    position: relative;
    padding-block: 0 1rem;
    padding-inline: 1.25rem;
  }
}

.p-footer__inner {
  display: flex;
  gap: 0.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column-reverse;
  }
}

.p-footer__panel {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  background-color: #cccccc;
}
@media screen and (max-width: 1023px) {
  .p-footer__panel {
    padding: 2.5rem 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__panel {
    padding: 2rem 1.25rem;
  }
}

.p-footer__panel--info {
  flex: 0 1 41.4893617021%;
  min-width: 0;
  justify-content: space-between;
  gap: 3rem;
  padding: 6.875rem clamp(2.5rem, -1.11rem + 7.52vw, 5rem) 7.6875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__panel--info {
    flex: none;
    width: 100%;
    gap: 1.375rem;
    padding: 2.25rem 1.25rem 2.25rem;
  }
}

.p-footer__panel--nav {
  position: relative;
  flex: 1 1 58.2978723404%;
  min-width: 0;
  justify-content: space-between;
  gap: 6.375rem;
  padding: 7.25rem clamp(2.5rem, -1.11rem + 7.52vw, 5rem) 7.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__panel--nav {
    position: static;
    flex: none;
    width: 100%;
    gap: 1.75rem;
    padding: 2.25rem 1.25rem 2.25rem;
  }
}

.p-footer__catch {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.75rem, 0.89rem + 1.34vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-footer__catch {
    font-size: 1.375rem;
  }
}

.p-footer__company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-footer__company-name,
.p-footer__company-address,
.p-footer__company-tel {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-footer__company-name,
  .p-footer__company-address,
  .p-footer__company-tel {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-footer__company-name {
  font-weight: 700;
}

.p-footer__company-tel a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__company-tel a:hover {
    opacity: 0.7;
  }
}

.p-footer__logo-wrapper {
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-wrapper {
    margin-block-start: 2.25rem;
  }
}

.p-footer__logo {
  display: block;
  line-height: 0;
  transition: opacity var(--duration);
  width: min(100%, 23.375rem);
  height: auto;
  aspect-ratio: 234/37;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: min(100%, 14.625rem);
  }
}
@media (any-hover: hover) {
  .p-footer__logo:hover {
    opacity: 0.8;
  }
}

.p-footer__nav {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-footer__nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  flex: 1;
  min-width: 0;
  max-width: 21.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-col {
    gap: 1.375rem;
  }
}

.p-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-group {
    gap: 0.5rem;
  }
}

.p-footer__nav-parent {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__nav-parent {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-parent:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-footer__nav-children {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  padding-inline-start: 1rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-children {
    gap: 0.25rem;
    padding-inline-start: 1.25rem;
  }
}

.p-footer__nav-children-link {
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__nav-children-link {
    font-size: 0.875rem;
    line-height: 1.77;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-children-link:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-footer__nav-children-link--en {
  font-family: var(--ff-en);
  font-weight: 700;
}

.p-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 20rem;
}

.p-footer__privacy {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}
@media (any-hover: hover) {
  .p-footer__privacy:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-footer__copyright {
  color: #666666;
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-block-start: 2.25rem;
    text-align: center;
    width: 100%;
  }
}

.p-footer__pagetop-wrapper {
  position: absolute;
  bottom: 4.375rem;
  right: 4.375rem;
  margin-block-start: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop-wrapper {
    bottom: 6.875rem;
    right: 3.0625rem;
  }
}

.p-footer__pagetop {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 40'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M0,5L5,0l5,5' /%3E%3Cpath class='cls-1' d='M5,40V2' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--duration);
}
.p-footer__pagetop::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 1.25rem;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop {
    width: 0.625rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 32'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath d='M0,5L5,0l5,5' /%3E%3Cpath class='cls-1' d='M5,32V2' /%3E%3C/svg%3E ");
  }
}
@media (any-hover: hover) {
  .p-footer__pagetop:hover {
    transform: translateY(calc(-6 * var(--to-rem)));
  }
}

.p-form {
  --_form-color-text: var(--color-text);
  --_form-color-bg: var(--color-white);
  --_form-color-badge-text: var(--color-white);
  --_form-color-badge-bg: var(--color-orange);
  --_form-color-accent: var(--color-primary);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
  max-width: 62.5rem;
  margin-inline: auto;
}
.p-form > * + * {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form > * + * {
    margin-block-start: 2rem;
  }
}
.p-form > *:nth-last-child(2) {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-form > *:nth-last-child(2) {
    margin-block-start: 1.5rem;
  }
}

.p-form.p-form--confirm .p-form__label {
  margin-block-start: 0;
}

.cf7msm-ro {
  display: block;
  width: 100%;
  white-space: pre-wrap;
}

.p-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__actions {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-form__actions .p-form__submit {
  margin-block-start: 0;
}

.p-form__submit--back .c-button {
  border-color: var(--color-black);
}

.p-form__item {
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__item {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
  min-width: 15.625rem;
  margin-block-start: 0.9em;
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    gap: 1rem;
    min-width: auto;
  }
}

.p-form__label-note {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--_form-color-text);
}

.p-form__label-required {
  display: inline-block;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  border-radius: 4px;
  background-color: var(--_form-color-badge-bg);
  color: var(--_form-color-badge-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__label-required {
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
  }
}

.p-form__data {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-form__data {
    flex: auto;
    width: 100%;
  }
}

.p-form__data-inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-form__data-inner > * {
  flex: 1;
}

.p-form__address {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--_form-color-border);
  border-radius: 0.375rem;
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: 0.875rem 1.25rem;
  }
}

.p-form__input::-moz-placeholder, .p-form__select::-moz-placeholder, .p-form__textarea::-moz-placeholder {
  color: oklch(from var(--_form-color-text) l c h/50%);
}

.p-form__input::placeholder,
.p-form__select::placeholder,
.p-form__textarea::placeholder {
  color: oklch(from var(--_form-color-text) l c h/50%);
}

.p-form__input:focus,
.p-form__select:focus,
.p-form__textarea:focus {
  border-color: var(--_form-color-accent);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__input:hover:not(:focus),
.p-form__select:hover:not(:focus),
.p-form__textarea:hover:not(:focus) {
  border-color: var(--_form-color-accent);
  opacity: 0.7;
}

.p-form__input.is-error,
.p-form__select.is-error,
.p-form__textarea.is-error {
  border-color: var(--_form-color-badge-bg);
}

.p-form__select {
  position: relative;
  padding-inline-end: 3rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-form__select option {
  color: var(--_form-color-text);
}

.p-form__select-wrap {
  position: relative;
}

.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 1.75rem;
  right: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 0.75rem;
  height: 0.5rem;
  border: none;
  background-color: var(--_form-color-primary);
  pointer-events: none;
  translate: 0 -50%;
}

.p-form__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.625rem;
}

.p-form__date {
  width: 100%;
}

.p-form__date-unit {
  flex-shrink: 0;
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
}

.p-form__select-wrap--year {
  width: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__select-wrap--year {
    width: 6.25rem;
  }
}

.p-form__select-wrap--month,
.p-form__select-wrap--day {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .p-form__select-wrap--month,
  .p-form__select-wrap--day {
    width: 4.5rem;
  }
}

.p-form__select-wrap--year .p-form__select,
.p-form__select-wrap--month .p-form__select,
.p-form__select-wrap--day .p-form__select {
  padding-inline: 0.875rem 2.25rem;
}

.p-form__select-wrap--year::after,
.p-form__select-wrap--month::after,
.p-form__select-wrap--day::after {
  right: 0.75rem;
}

.p-form__birthday-confirm {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.375rem;
}
.p-form__birthday-confirm .cf7msm-ro {
  display: inline;
  width: auto;
}

.p-form__textarea {
  min-height: 10rem;
  resize: vertical;
}

.p-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 2rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__radio-group {
    flex-flow: row wrap;
    gap: 0.5rem;
  }
}

.p-form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}

.p-form__radio input[type=radio] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__radio input[type=radio]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}

.p-form__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--_form-color-bg);
  translate: -50% -50%;
}

.p-form__radio input[type=radio]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__radio input[type=radio]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__radio-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-form__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  cursor: pointer;
}

.p-form__checkbox input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__checkbox input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}

.p-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}

.p-form__checkbox input[type=checkbox]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__checkbox input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__checkbox-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-form__acceptance {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance {
    text-align: left;
  }
}

.p-form__acceptance-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
}
.p-form__acceptance-text + * {
  display: block;
  margin-block-start: 1rem;
}

.p-form__privacy {
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
}

.p-form__acceptance .p-form__data-checkbox {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__data-checkbox {
    display: flex;
    justify-content: center;
  }
}

.p-form__acceptance input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__acceptance input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}
.p-form__acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}

.p-form__acceptance input[type=checkbox]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__acceptance .p-form__label-required {
  margin-inline-end: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__label-required {
    margin-inline-end: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__checkbox-text {
    font-size: 0.875rem;
  }
}

.p-form__link {
  color: var(--_form-color-accent);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-form__link:hover {
    opacity: 0.8;
  }
}

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

.p-form__submit .c-button {
  min-width: 17.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__submit .c-button {
    min-width: 0;
  }
}

.p-form__submit .c-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (any-hover: hover) {
  .p-form__submit .c-button:disabled:hover {
    color: var(--color-white);
  }
  .p-form__submit .c-button:disabled:hover::before {
    transform: scaleX(0);
  }
}
.p-form__error {
  display: block;
  color: var(--_form-color-badge-bg);
  font-size: 0.875rem;
}

.p-form__success {
  padding: 1.5rem;
  border: 1px solid var(--_form-color-accent);
  border-radius: 8px;
  background-color: rgba(64, 143, 149, 0.1);
  color: var(--_form-color-accent);
  font-size: 1rem;
  text-align: center;
}

.wpcf7-list-item {
  display: flex;
  margin: 0;
}

.p-form__radio .wpcf7-list-item-label,
.p-form__radio .wpcf7-li label {
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.p-form__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

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

.p-form__item .wpcf7-list-item {
  display: flex;
  align-items: center;
}

.p-header {
  width: 100%;
  height: var(--header-height);
}
.p-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: var(--color-white);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.p-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  height: inherit;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding-inline: 1rem;
  }
}

.p-header__logo {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.p-header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  height: inherit;
  color: var(--color-primary);
  text-decoration: none;
}

.p-header__logo-mark {
  display: block;
  width: clamp(11.25rem, 6.26rem + 7.8vw, 15.625rem);
  height: auto;
  aspect-ratio: 250/40;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .p-header__logo-mark {
    width: 12.5rem;
  }
}

.p-header__nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 0.75rem;
  min-width: 0;
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.25rem;
  height: inherit;
}

.p-header__nav-item {
  display: flex;
  align-items: stretch;
  height: inherit;
}

.p-header__nav-item--has-mega {
  position: relative;
}

.p-header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: clamp(0.125rem, -0.16rem + 0.45vw, 0.375rem);
  height: inherit;
  padding-inline: clamp(0.25rem, -0.04rem + 0.45vw, 0.5rem);
  color: var(--color-text);
  font-size: clamp(0.625rem, 0.2rem + 0.67vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration);
}
.p-header__nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--color-primary);
  opacity: 0;
  transition: opacity var(--duration);
}
.p-header__nav-link.is-current {
  color: var(--color-primary);
}
.p-header__nav-link.is-current::after {
  opacity: 1;
}

.p-header__nav-label {
  display: block;
}

.p-header__nav-icon {
  display: block;
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.09375rem solid currentcolor;
  border-bottom: 0.09375rem solid currentcolor;
  rotate: 45deg;
  translate: 0 -0.0625rem;
  transform-origin: center 75%;
  transition: rotate 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-header__nav-item--has-mega.is-open .p-header__nav-link,
.p-header__nav-item--has-mega:focus-within .p-header__nav-link,
.p-header__nav-item.is-current > .p-header__nav-link {
  color: var(--color-primary);
}

.p-header__nav-item.is-current > .p-header__nav-link::after {
  opacity: 1;
}

.p-header__nav-item--has-mega.is-open .p-header__nav-icon,
.p-header__nav-item--has-mega:focus-within .p-header__nav-icon {
  rotate: 225deg;
}

.p-header__mega {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.p-header__mega::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  height: 1rem;
}

.p-header__mega-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: default;
}

.p-header__nav-item--has-mega.is-open .p-header__mega,
.p-header__nav-item--has-mega:focus-within .p-header__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-header__nav-item--has-mega.is-open .p-header__mega-overlay,
.p-header__nav-item--has-mega:focus-within .p-header__mega-overlay {
  opacity: 1;
}

.p-header__mega-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.1);
}

.p-header__mega-inner {
  padding-block: 1.5rem 2.5rem;
}

.p-header__mega-title {
  padding-block-end: 1rem;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
.p-header__mega-title a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__mega-title a:hover {
    opacity: 0.75;
  }
}

.p-header__mega-title-arrow {
  display: block;
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.15625rem solid var(--color-primary);
  border-bottom: 0.15625rem solid var(--color-primary);
  rotate: -45deg;
}

.p-header__mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 3rem;
  margin-block-start: 1.25rem;
}
.p-header__mega-list:has(> :only-child) {
  grid-template-columns: minmax(0, 1fr);
  max-width: 25rem;
}

.p-header__mega-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  color: var(--color-text);
  font-size: clamp(0.8125rem, 0.67rem + 0.22vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity var(--duration);
  font-feature-settings: "palt";
}
.p-header__mega-link::before {
  content: "";
  flex-shrink: 0;
  width: 0.625rem;
  height: 2px;
  background-color: var(--color-primary);
}

.p-header__mega-link--en {
  font-family: var(--ff-en);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.p-header__nav-item--divider {
  align-self: center;
  width: 0;
  height: 1.25rem;
  margin-inline: clamp(0.25rem, -0.04rem + 0.45vw, 0.5rem);
  border-left: 1px dotted var(--color-text);
}

.p-header__contact {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-width: clamp(6.25rem, 1.97rem + 6.69vw, 10rem);
  height: 3rem;
  padding-inline: 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.25rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(0.625rem, 0.2rem + 0.67vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.45s ease;
}
.p-header__contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-white);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-header__contact:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .p-header__contact:hover::before {
    transform: scaleX(1);
  }
}

.p-header__hamburger {
  position: relative;
  z-index: 3;
  display: none;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: var(--color-text);
  translate: -50% -50%;
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67), rotate calc(var(--duration) * 1.67);
}
.p-header__hamburger span:nth-of-type(1) {
  top: calc(50% - 7px);
}
.p-header__hamburger span:nth-of-type(2) {
  top: 50%;
}
.p-header__hamburger span:nth-of-type(3) {
  top: calc(50% + 7px);
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 50%;
  rotate: 22deg;
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.is-open span:nth-of-type(3) {
  top: 50%;
  rotate: -22deg;
}

.p-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  display: none;
  overflow-y: auto;
  width: 100%;
  height: 100svh;
  padding-block: 5.125rem 2.5rem;
  padding-inline: 2.5rem;
  background-color: var(--color-white);
  scrollbar-width: none;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .p-header__drawer {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-header__drawer {
    display: block;
  }
  .p-header__drawer.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.p-header__drawer-nav {
  width: 100%;
  max-width: 25rem;
  margin-inline: auto;
}

.p-header__drawer-list {
  display: flex;
  flex-direction: column;
}

.p-header__drawer-item--divider {
  width: 100%;
  height: 0;
  margin-block: 1rem;
  border-top: 1px dotted var(--color-text);
}

.p-header__drawer-link {
  display: block;
  padding-block: 0.8125rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--duration);
}
.p-header__drawer-link.is-current {
  color: var(--color-primary);
}

.p-header__drawer-parent {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.p-header__drawer-parent .p-header__drawer-link {
  flex: 1;
  min-width: 0;
}

.p-header__drawer-toggle {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  margin-inline-end: -0.625rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.p-header__drawer-toggle .p-header__nav-icon {
  width: 0.5rem;
  height: 0.5rem;
}

.p-header__drawer-item--has-child.is-open .p-header__nav-icon {
  rotate: 225deg;
}

.p-header__drawer-content {
  overflow: hidden;
}

.p-header__drawer-sublist {
  display: flex;
  flex-direction: column;
  padding-block-end: 0.5rem;
}

.p-header__drawer-sublink {
  display: block;
  padding-block: 0.625rem;
  padding-inline-start: 1.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  font-feature-settings: "palt";
}
.p-header__drawer-sublink.is-current {
  color: var(--color-primary);
}

.p-header__drawer-sublink--en {
  font-family: var(--ff-en);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.p-header__drawer-item--contact {
  margin-block-start: 1.0625rem;
}

.p-header__drawer-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 3.25rem;
  padding-inline: 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.25rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 0.45s ease;
}
.p-header__drawer-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-white);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-header__drawer-contact:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .p-header__drawer-contact:hover::before {
    transform: scaleX(1);
  }
}

@media (any-hover: hover) {
  .p-header__nav-item--has-mega:hover > .p-header__nav-link {
    color: var(--color-primary);
  }
  .p-header__nav-item--has-mega:hover > .p-header__nav-link .p-header__nav-icon {
    rotate: 225deg;
  }
  .p-header__nav-item:not(.p-header__nav-item--has-mega) .p-header__nav-link:hover,
  .p-header__drawer-link:hover,
  .p-header__drawer-sublink:hover {
    opacity: 1;
    color: var(--color-primary);
  }
  .p-header__mega-link:hover {
    opacity: 0.75;
  }
}
.p-message {
  padding-block: 6.25rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-block: 3rem 2.5rem;
  }
}

.p-message__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-message__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__content {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-message__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.p-message__texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-message__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-message__signature {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-block-start: 2.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-message__signature {
    margin-block-start: 1.75rem;
    font-size: 0.875rem;
  }
}

.p-message__name {
  font-weight: 700;
}

.p-message__visual {
  flex-shrink: 0;
  overflow: hidden;
  width: 46.6666666667%;
  line-height: 0;
  border-radius: 0.375rem;
  background-color: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-message__visual {
    width: 100%;
    max-width: 30rem;
    margin-inline: auto;
  }
}

.p-message__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 560/410;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100svh;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: 37.5rem;
  }
}

.p-mv__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(81.25rem, 100%);
  height: 100svh;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    align-items: flex-start;
    justify-content: center;
    width: min(100%, 500px);
    padding-inline: 1.25rem;
    height: 100%;
  }
}

.p-mv__title-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  margin-block-start: -2.5rem;
}
@media screen and (max-width: 1440px) {
  .p-mv__title-wrap {
    gap: 2.5rem;
    margin-block-start: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    gap: 1.5rem;
    margin-block-start: 6.625rem;
  }
}

.p-mv__title {
  margin: 0;
  color: var(--color-text);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1440px) {
  .p-mv__title {
    font-size: clamp(3rem, -0.68rem + 5.76vw, 4.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: clamp(2.375rem, -2.13rem + 20vw, 2.75rem);
  }
}

.p-mv__text {
  padding-inline-start: 0.75rem;
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1440px) {
  .p-mv__text {
    font-size: clamp(1.125rem, -0.41rem + 2.4vw, 1.75rem);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    padding-inline-start: 0;
    font-size: clamp(1rem, -2rem + 13.33vw, 1.25rem);
    line-height: 1.7;
  }
}

.p-mv__visual {
  position: absolute;
  top: 50%;
  right: -20%;
  z-index: 1;
  width: clamp(62.5rem, 16.34rem + 72.2vw, 75rem);
  translate: 0 -50%;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .p-mv__visual {
    right: -15vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__visual {
    top: auto;
    bottom: 1.25rem;
    right: auto;
    left: 50%;
    translate: -50% 0;
    width: min(110vw, 30rem);
  }
}

.p-mv__video {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
}

.p-news-list {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: 3rem 3.75rem;
  }
}

.p-news-list__inner {
  max-width: 62.5rem;
}

.p-news-list__filters {
  margin-block-end: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__filters {
    margin-block-end: 2rem;
  }
}

.p-news-list__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__filter-list {
    gap: 0.5rem;
    overflow-x: auto;
    padding-block-end: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

.p-news-list__filter-item {
  flex-shrink: 0;
}

.p-news-list__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding-block: 0.625rem;
  padding-inline: 1.25rem;
  border: 1px solid var(--color-black);
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration), background-color var(--duration), border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-news-list__filter {
    min-height: 2.5rem;
    padding-inline: 1rem;
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-news-list__filter:hover {
    background-color: var(--color-gray);
  }
}

.p-news-list__filter.is-active {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-news-list__filter.is-active:hover {
    background-color: var(--color-black);
    color: var(--color-white);
  }
}

.p-news-list__list {
  border-block-start: 1px solid #d4d4d4;
}

.p-news-list__item {
  border-block-end: 1px solid #d4d4d4;
}

.p-news-list__link {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-block: 1.75rem;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-news-list__link {
    gap: 0.75rem;
    padding-block: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-news-list__link:hover .p-news-list__arrow-icon {
    translate: 0.5rem 0;
  }
}

.p-news-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__meta {
    gap: 0.625rem;
  }
}

.p-news-list__date {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-news-list__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.p-news-list__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-news-list__tag {
    min-width: 5.3125rem;
    min-height: 1.625rem;
    font-size: 0.8125rem;
  }
}

.p-news-list__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__row {
    gap: 1.5rem;
  }
}

.p-news-list__heading {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  min-width: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .p-news-list__heading {
    font-size: 0.875rem;
    line-height: 1.71;
    -webkit-line-clamp: 3;
  }
}

.p-news-list__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__arrow {
    margin-block-start: 0.625rem;
  }
}

.p-news-list__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-news-list__arrow-icon {
    width: 1rem;
    height: 0.5rem;
  }
}

.p-news-list__pagination {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__pagination {
    margin-block-start: 2.5rem;
  }
}

.p-news-list__empty {
  padding-block: 3.75rem;
  color: #666;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__empty {
    padding-block: 2.5rem;
    font-size: 0.875rem;
  }
}

.p-privacy-policy {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    padding-block: 2.5rem;
  }
}

.p-privacy-policy__inner {
  width: min(100%, 68.75rem);
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__inner {
    width: min(100%, 37.5rem);
  }
}

.p-privacy-policy__intro {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__intro {
    font-size: 0.875rem;
  }
}

.p-privacy-policy__section {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__section {
    margin-block-start: 2rem;
  }
}

.p-privacy-policy__heading {
  position: relative;
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.96rem + 0.45vw, 1.5rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__heading {
    padding-inline: 0.9375rem;
    padding-block-end: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-privacy-policy__texts {
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__texts {
    margin-block-start: 0.5rem;
  }
}

.p-privacy-policy__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__text {
    font-size: 0.875rem;
  }
}

.p-privacy-policy__text + .p-privacy-policy__text {
  margin-block-start: 0.25rem;
}

.p-privacy-policy__link {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-privacy-policy__link:hover {
    opacity: 0.8;
  }
}

.p-privacy-policy__signature {
  margin-block-start: 2.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__signature {
    margin-block-start: 2rem;
    font-size: 0.875rem;
  }
}

.p-privacy-policy__button {
  margin-block-start: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__button {
    margin-block-start: 2.5rem;
  }
}

.p-privacy-policy__home-button {
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__home-button {
    width: 100%;
    max-width: 18.75rem;
  }
}

.p-purewater-consult {
  padding-block: 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-purewater-consult {
    padding-block: 3.5rem;
  }
}

.p-purewater-consult__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30.375rem;
  padding: 7.875rem 3.75rem 5.75rem;
  border-radius: 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-purewater-consult__banner {
    min-height: 0;
    padding: 6.875rem 1.5rem 3.875rem;
  }
}

.p-purewater-consult__label {
  position: absolute;
  top: 4.8125rem;
  left: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-purewater-consult__label {
    top: 3.5rem;
    left: 1.25rem;
    gap: 1rem;
    font-size: 0.9375rem;
  }
}

.p-purewater-consult__label-dot {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-purewater-consult__label-dot {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-purewater-consult__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 56.25rem);
}

.p-purewater-consult__heading {
  color: var(--color-white);
  font-size: clamp(2rem, 1.67rem + 0.69vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-consult__heading {
    font-size: 1.375rem;
    line-height: 1.45;
  }
}

.p-purewater-consult__text {
  margin-block-start: 1.875rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-consult__text {
    margin-block-start: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}

.p-purewater-consult__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: min(100%, 52.5rem);
  margin-block-start: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-consult__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    margin-block-start: 2.125rem;
  }
}

.p-purewater-consult__link {
  position: relative;
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-width: 17.5rem;
  min-height: 5rem;
  padding: 1rem 2rem;
  border: 1px solid var(--color-white);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  transition: color 0.45s ease;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-consult__link {
    flex: auto;
    width: 100%;
    min-width: 0;
    min-height: 4.5rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
  }
}
.p-purewater-consult__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-primary);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-purewater-consult__link:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .p-purewater-consult__link:hover::before {
    transform: scaleX(1);
  }
}

.p-purewater-industries {
  padding-block: 6.25rem 5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-purewater-industries {
    padding-block: 3rem 2.5rem;
  }
}

.p-purewater-industries__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-purewater-industries__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-purewater-industries__list {
    gap: 0.75rem;
    margin-block-start: 1.75rem;
  }
}

.p-purewater-industries__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 1.75rem 1rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-purewater-industries__card {
    align-items: center;
    padding: 1.25rem;
    text-align: left;
  }
}

.p-purewater-industries__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-industries__icon-wrap {
    grid-row: 1/3;
  }
}

.p-purewater-industries__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-purewater-industries__heading {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-industries__heading {
    margin-block-start: 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-purewater-industries__text {
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-industries__text {
    margin-block-start: 0.25rem;
    font-size: 0.75rem;
  }
}

.p-purewater-intro {
  padding-block: 6.25rem 5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-purewater-intro {
    padding-block: 3rem 2.5rem;
  }
}

.p-purewater-intro__title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-purewater-intro__en {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1rem, 0.92rem + 0.17vw, 1.125rem);
  font-weight: 600;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__en {
    font-size: 0.9375rem;
  }
}
.p-purewater-intro__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-purewater-intro__heading {
  color: var(--color-text);
  font-size: clamp(2rem, 1.33rem + 1.39vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__heading {
    font-size: 1.5rem;
    line-height: 1.45;
  }
}

.p-purewater-intro__texts {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__texts {
    margin-block-start: 1.5rem;
  }
}

.p-purewater-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-purewater-intro__partner {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-block-start: 3rem;
  padding: 2.5rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__partner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    margin-block-start: 1.75rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-purewater-intro__partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  min-height: 5rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__partner-logo {
    width: 100%;
    max-width: 13.75rem;
    margin-inline: auto;
  }
}

.p-purewater-intro__partner-image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-purewater-intro__partner-body {
  flex: 1;
  min-width: 0;
}

.p-purewater-intro__partner-heading {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__partner-heading {
    font-size: 1rem;
  }
}

.p-purewater-intro__partner-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.3s;
}
.p-purewater-intro__partner-link::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  margin-inline-start: 0.375rem;
  vertical-align: -0.1em;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0.75C6 0.351562 6.32812 0 6.75 0H9.72656C9.84375 0 9.9375 0.0234375 10.0312 0.0703125C10.1016 0.09375 10.1953 0.164062 10.2656 0.234375C10.4062 0.375 10.4766 0.5625 10.5 0.75V3.75C10.5 4.17188 10.1484 4.5 9.75 4.5C9.32812 4.5 9 4.17188 9 3.75V2.57812L5.01562 6.53906C4.73438 6.84375 4.24219 6.84375 3.96094 6.53906C3.65625 6.25781 3.65625 5.76562 3.96094 5.48438L7.92188 1.5H6.75C6.32812 1.5 6 1.17188 6 0.75ZM0 2.25C0 1.42969 0.65625 0.75 1.5 0.75H3.75C4.14844 0.75 4.5 1.10156 4.5 1.5C4.5 1.92188 4.14844 2.25 3.75 2.25H1.5V9H8.25V6.75C8.25 6.35156 8.57812 6 9 6C9.39844 6 9.75 6.35156 9.75 6.75V9C9.75 9.84375 9.07031 10.5 8.25 10.5H1.5C0.65625 10.5 0 9.84375 0 9V2.25Z' fill='%23000000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (any-hover: hover) {
  .p-purewater-intro__partner-link:hover {
    opacity: 0.7;
  }
}

.p-purewater-intro__partner-text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-intro__partner-text {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}

.p-purewater-products {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-products {
    padding-block: 3rem 3.5rem;
  }
}

.p-purewater-products__lead {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-products__lead {
    margin-block-start: 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-purewater-products__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-purewater-products__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-purewater-products__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 1.75rem;
  }
}

.p-purewater-products__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}

.p-purewater-products__visual {
  overflow: hidden;
  line-height: 0;
  background-color: var(--color-white);
  aspect-ratio: 16/9;
}

.p-purewater-products__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-purewater-products__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-products__body {
    padding: 1.25rem;
  }
}

.p-purewater-products__heading {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-products__heading {
    font-size: 1rem;
  }
}

.p-purewater-products__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-products__text {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}

.p-purewater-products__button {
  display: flex;
  justify-content: center;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-products__button {
    margin-block-start: 1.75rem;
  }
}
.p-purewater-products__button .c-button:not([data-color=black]) {
  border-color: var(--color-black);
}

.p-purewater-synergy {
  padding-block: 6.25rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-synergy {
    padding-block: 3rem 2.5rem;
  }
}

.p-purewater-synergy__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-purewater-synergy__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-purewater-synergy__content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.p-purewater-synergy__body {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-purewater-synergy__body {
    display: contents;
  }
}

.p-purewater-synergy__text {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-purewater-synergy__text {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-purewater-synergy__button {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-purewater-synergy__button {
    order: 2;
    margin-block-start: 1.5rem;
  }
}

.p-purewater-synergy__visual {
  flex-shrink: 0;
  overflow: hidden;
  width: 43.3333333333%;
  line-height: 0;
  border-radius: 0.375rem;
  background-color: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-purewater-synergy__visual {
    order: 1;
    width: 100%;
    margin-block-start: 2rem;
  }
}

.p-purewater-synergy__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520/390;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-recruit-intro {
  padding-block: 6.25rem 6.25rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-recruit-intro {
    padding-block: 3.5rem 3.5rem;
  }
}

.p-recruit-intro__inner {
  max-width: 56.25rem;
  margin-inline: auto;
  text-align: center;
}

.p-recruit-intro__heading {
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.89rem + 0.75vw, 1.5rem);
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-recruit-intro__heading {
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: left;
  }
}

.p-recruit-intro__texts {
  display: grid;
  gap: 0.25rem;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-intro__texts {
    margin-block-start: 1.25rem;
    text-align: left;
  }
}

.p-recruit-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-recruit-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-recruit-jobs {
  padding-block: 3.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs {
    padding-block: 2rem 3.5rem;
  }
}

.p-recruit-jobs__list {
  display: grid;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__list {
    gap: 4rem;
  }
}

.p-recruit-jobs__empty {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-jobs__empty {
    font-size: 0.875rem;
  }
}

.p-recruit-job__heading {
  padding-block-end: 1rem;
  color: var(--color-text);
  font-size: clamp(1.5rem, 0.78rem + 1.5vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-recruit-job__heading {
    font-size: 1.25rem;
    padding-block-end: 0.75rem;
  }
}

.p-recruit-job__list {
  margin-block-start: 2.5rem;
  border-block-start: 1px solid #d4d4d4;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__list {
    margin-block-start: 1.75rem;
  }
}

.p-recruit-job__row {
  display: grid;
  grid-template-columns: 13.75rem minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-block-end: 1px solid #d4d4d4;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-block: 1.25rem;
  }
}

.p-recruit-job__term {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-recruit-job__term {
    font-size: 0.875rem;
  }
}

.p-recruit-job__desc {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-recruit-job__desc {
    font-size: 0.875rem;
  }
}

.p-recruit-job__button {
  display: flex;
  justify-content: center;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-job__button {
    margin-block-start: 1.75rem;
  }
}

.p-single {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-block: 3rem 3.75rem;
  }
}

.p-single__inner {
  width: min(100%, 68.75rem);
  margin-inline: auto;
}

.p-single__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    gap: 0.625rem;
  }
}

.p-single__date {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.p-single__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__category {
    min-width: 5.3125rem;
    min-height: 1.625rem;
  }
}
@media (any-hover: hover) {
  .p-single__category:hover {
    opacity: 0.7;
  }
}

.p-single__title {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.p-single__subtitle {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    font-size: 0.875rem;
  }
}

.p-single__summary {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.25rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__summary {
    margin-block-start: 1.25rem;
    padding-inline: 1rem;
  }
}

.p-single__author {
  color: var(--color-text);
  font-size: 0.875rem;
}

.p-single__thumbnail,
.p-single__featured-image {
  overflow: hidden;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail,
  .p-single__featured-image {
    margin-block-start: 1.75rem;
  }
}
.p-single__thumbnail img,
.p-single__featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-single__content {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-block-start: 2rem;
  }
}

.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 3rem;
  padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-single__tags {
    margin-block-start: 2rem;
  }
}

.p-single__tag {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__tag:hover {
    opacity: 0.7;
  }
}

.p-single__tag--custom {
  cursor: default;
}

.p-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-single__nav {
    gap: 0.75rem;
    margin-block-start: 2.5rem;
  }
}

.p-single__nav-prev {
  min-width: 0;
}

.p-single__nav-center {
  justify-self: center;
}

.p-single__nav-next {
  min-width: 0;
  text-align: end;
}

.p-single__nav-link {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__nav-link {
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-single__nav-link:hover {
    opacity: 0.7;
  }
}

.p-single__nav-button {
  display: flex;
  justify-content: center;
}

.p-single__nav-back {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 2.75rem;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background-color: transparent;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.45s ease, border-color 0.45s ease;
}
.p-single__nav-back::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-black);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media screen and (max-width: 767px) {
  .p-single__nav-back {
    min-height: 2.5rem;
    padding-inline: 1.25rem;
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-single__nav-back:hover {
    opacity: 1;
    border-color: var(--color-black);
    color: var(--color-white);
  }
  .p-single__nav-back:hover::before {
    transform: scaleX(1);
  }
}

.p-single__content-pagination {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination {
    margin-block-start: 2.5rem;
  }
}

.p-single__content-pagination-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-inner {
    gap: 0.75rem;
  }
}

.p-single__content-pagination-prev {
  min-width: 0;
}

.p-single__content-pagination-center {
  justify-self: center;
}

.p-single__content-pagination-next {
  min-width: 0;
  text-align: end;
}

.p-single__content-pagination-link {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-link {
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-single__content-pagination-link:hover {
    opacity: 0.7;
  }
}

.p-single__content-pagination-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__content-pagination-button:hover {
    opacity: 0.7;
  }
}

.p-single__content-pagination-button-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.p-single__content-pagination-button-arrow {
  width: 1rem;
  height: 0.5rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath d='M15,0l5,5-5,5' fill='%23fff'/%3E%3Cpath d='M0,5h18' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath d='M15,0l5,5-5,5' fill='%23fff'/%3E%3Cpath d='M0,5h18' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.p-single__related {
  margin-block-start: 3rem;
  padding-block-start: 2rem;
  border-block-start: 1px solid var(--color-border);
}

.p-single__related-title {
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
}

.p-single__related-list {
  display: grid;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__related-list {
    gap: 1rem;
  }
}

.p-single__related-link {
  display: grid;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.p-single__related-thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--color-gray);
}
.p-single__related-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__related-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-single__related-date {
  color: #666;
  font-size: 0.75rem;
}

.p-single__related-item-title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-ss-intro {
  padding-block: 6.25rem 5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-ss-intro {
    padding-block: 3rem 2.5rem;
  }
}

.p-ss-intro__title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-ss-intro__en {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1rem, 0.92rem + 0.17vw, 1.125rem);
  font-weight: 600;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .p-ss-intro__en {
    font-size: 0.9375rem;
  }
}
.p-ss-intro__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-ss-intro__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-ss-intro__heading {
  color: var(--color-text);
  font-size: clamp(2rem, 1.33rem + 1.39vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-intro__heading {
    font-size: 1.5rem;
    line-height: 1.45;
  }
}

.p-ss-intro__texts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-block-start: 2.5rem;
  max-width: 56.25rem;
}
@media screen and (max-width: 767px) {
  .p-ss-intro__texts {
    margin-block-start: 1.5rem;
  }
}

.p-ss-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-ss-locations {
  padding-block: 6.25rem 5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-ss-locations {
    padding-block: 3rem 2.5rem;
  }
}

.p-ss-locations__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-ss-locations__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ss-locations__content {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
}

.p-ss-locations__body {
  flex: 1;
  min-width: 0;
}

.p-ss-locations__text {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-locations__text {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-ss-locations__button {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ss-locations__button {
    margin-block-start: 1.5rem;
  }
}

.p-ss-locations__visual {
  flex-shrink: 0;
  overflow: hidden;
  width: 46.6666666667%;
  line-height: 0;
  border-radius: 0.375rem;
  background-color: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-ss-locations__visual {
    width: 100%;
  }
}

.p-ss-locations__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 560/400;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ss-news {
  width: 100%;
  padding-block: 7.125rem 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-ss-news {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ss-news {
    padding-block: 3.5rem 3.75rem;
  }
}

.p-ss-news__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-ss-news__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ss-news__content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.25rem;
  }
}

.p-ss-news__title {
  flex-shrink: 0;
}

.p-ss-news__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  max-width: 55rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ss-news__body {
    margin-block-start: 0;
    max-width: none;
  }
}

.p-ss-news__list {
  border-block-start: 1px solid #d4d4d4;
}

.p-ss-news__item {
  border-block-end: 1px solid #d4d4d4;
}

.p-ss-news__link {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-block: 1.9375rem;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-ss-news__link {
    gap: 0.75rem;
    padding-block: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-ss-news__link:hover .p-ss-news__arrow-icon {
    translate: 0.5rem 0;
  }
}

.p-ss-news__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ss-news__meta {
    gap: 0.625rem;
  }
}

.p-ss-news__date {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-news__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ss-news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-news__tag {
    min-width: 5.3125rem;
    min-height: 1.625rem;
  }
}

.p-ss-news__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ss-news__row {
    gap: 1.5rem;
  }
}

.p-ss-news__heading {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  min-width: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .p-ss-news__heading {
    font-size: 0.875rem;
    line-height: 1.71;
    -webkit-line-clamp: 3;
  }
}

.p-ss-news__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-ss-news__arrow {
    margin-block-start: 0.625rem;
  }
}

.p-ss-news__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ss-news__arrow-icon {
    width: 1rem;
    height: 0.5rem;
  }
}

.p-ss-news__button {
  display: flex;
  justify-content: flex-end;
  margin-block-start: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-ss-news__button {
    margin-block-start: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-ss-news__button .c-button {
    width: 100%;
  }
}

.p-ss-reserve {
  padding-block: 0 7.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ss-reserve {
    padding-block: 0 3.75rem;
  }
}

.p-ss-reserve__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30.375rem;
  padding: 7.875rem 3.75rem 5.75rem;
  border-radius: 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ss-reserve__banner {
    min-height: 0;
    padding: 6.875rem 1.5rem 3.875rem;
  }
}

.p-ss-reserve__label {
  position: absolute;
  top: 4.8125rem;
  left: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--ff-en);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-ss-reserve__label {
    top: 3.5rem;
    left: 1.25rem;
    gap: 1rem;
    font-size: 0.9375rem;
  }
}

.p-ss-reserve__label-dot {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-ss-reserve__label-dot {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-ss-reserve__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 56.25rem);
}

.p-ss-reserve__heading {
  color: var(--color-white);
  font-size: clamp(2rem, 1.67rem + 0.69vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-reserve__heading {
    font-size: 1.375rem;
    line-height: 1.45;
  }
}

.p-ss-reserve__text {
  margin-block-start: 1.875rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-reserve__text {
    margin-block-start: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}

.p-ss-reserve__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: min(100%, 52.5rem);
  margin-block-start: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-ss-reserve__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.375rem;
    width: 100%;
    margin-block-start: 2.125rem;
  }
}

.p-ss-reserve__link {
  position: relative;
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-width: 25rem;
  min-height: 5rem;
  padding: 1rem 2rem;
  border: 1px solid var(--color-white);
  border-radius: 0.25rem;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  transition: color 0.45s ease;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-reserve__link {
    flex: auto;
    width: 100%;
    min-width: 0;
    min-height: 4.5rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
  }
}
.p-ss-reserve__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--color-primary);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scaleX(0);
  transform-origin: left center;
}
@media (any-hover: hover) {
  .p-ss-reserve__link:hover {
    opacity: 1;
    color: var(--color-white);
  }
  .p-ss-reserve__link:hover::before {
    transform: scaleX(1);
  }
}

.p-ss-service-detail {
  padding-block: 5rem;
  background-color: var(--color-white);
  scroll-margin-block-start: var(--header-height);
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail {
    padding-block: 2rem;
  }
}
.p-ss-service-detail:last-child {
  padding-block-end: 0;
}

.p-ss-service-detail__content {
  display: grid;
  grid-template-columns: minmax(0, 25rem) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .p-ss-service-detail__content {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-ss-service-detail__visual {
  overflow: hidden;
  line-height: 0;
  border-radius: 0.375rem;
  background-color: #e8e8e8;
}

.p-ss-service-detail__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ss-service-detail__heading {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__heading {
    font-size: 1.25rem;
  }
}

.p-ss-service-detail__text {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__text {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-ss-service-detail__contact {
  margin-block-start: 1.25rem;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ss-service-detail__tel {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-ss-service-detail__tel:hover {
    text-decoration: underline;
  }
}

.p-ss-service-detail__panel {
  margin-block-start: 2rem;
  padding: 3rem;
  background-color: #f4f4f4;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__panel {
    margin-block-start: 1.5rem;
    padding: 2rem 1.25rem;
  }
}

.p-ss-service-detail__subheading {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
.p-ss-service-detail__subheading:first-child {
  margin-block-start: 0;
}

.p-ss-service-detail__table-wrap {
  position: relative;
  overflow-x: auto;
  margin-block-start: 1rem;
  -webkit-overflow-scrolling: touch;
}
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table,
.p-ss-service-detail__table-wrap .wp-block-table {
  margin: 0;
}
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
.p-ss-service-detail__table-wrap .wp-block-table table,
.p-ss-service-detail__table-wrap > table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  .p-ss-service-detail__table-wrap .wp-block-table table,
  .p-ss-service-detail__table-wrap > table {
    min-width: 45rem;
    font-size: 0.875rem;
  }
}
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.p-ss-service-detail__table-wrap .wp-block-table table th,
.p-ss-service-detail__table-wrap .wp-block-table table td,
.p-ss-service-detail__table-wrap > table th,
.p-ss-service-detail__table-wrap > table td {
  padding: 0.75rem 1rem !important;
  border: 1px solid #e0e0e0 !important;
  vertical-align: middle !important;
}
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead tr th,
.p-ss-service-detail__table-wrap .wp-block-table table thead th,
.p-ss-service-detail__table-wrap > table thead th {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
  font-weight: 700 !important;
  text-align: center !important;
}
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody tr th,
.p-ss-service-detail__table-wrap .wp-block-table table tbody th,
.p-ss-service-detail__table-wrap > table tbody th {
  width: 28%;
  background-color: #ccc !important;
  color: var(--color-text) !important;
  font-weight: 700 !important;
  text-align: left !important;
  white-space: nowrap;
}
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody tr td,
.p-ss-service-detail__table-wrap .wp-block-table table td,
.p-ss-service-detail__table-wrap > table td {
  background-color: var(--color-white) !important;
  color: var(--color-text) !important;
  font-weight: 500 !important;
  text-align: center !important;
  white-space: nowrap;
}
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody tr:has(.u-emphasis) td,
.p-ss-service-detail__table-wrap .wp-block-table table tr:has(.u-emphasis) td,
.p-ss-service-detail__table-wrap > table tr:has(.u-emphasis) td,
.p-ss-service-detail__table-wrap .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody tr td.u-emphasis,
.p-ss-service-detail__table-wrap .wp-block-table table td.u-emphasis,
.p-ss-service-detail__table-wrap > table td.u-emphasis {
  background-color: #e5f0f7 !important;
  font-weight: 700 !important;
}
.p-ss-service-detail__table-wrap .wp-block-paragraph:empty {
  display: none;
}

.p-ss-service-detail__note {
  margin-block-start: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__note {
    margin-block-start: 0.5rem;
  }
}

.p-ss-service-detail__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__benefits {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.p-ss-service-detail__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  text-align: center;
}

.p-ss-service-detail__benefit-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 0;
}

.p-ss-service-detail__benefit-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-ss-service-detail__benefit-heading {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: clamp(1rem, 0.64rem + 0.75vw, 1.25rem);
  font-weight: 700;
  line-height: 1.8;
  font-feature-settings: "palt";
}

.p-ss-service-detail__benefit-text {
  margin-block-start: 0.25rem;
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  font-feature-settings: "palt";
}

.p-ss-service-detail__discount {
  margin-block-start: 1rem;
}

.p-ss-service-detail__discount-list {
  border: 1px solid #e0e0e0;
}

.p-ss-service-detail__discount-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.32fr) minmax(0, 1fr);
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__discount-row {
    grid-template-columns: 1fr;
  }
}
.p-ss-service-detail__discount-row:not(:last-child) {
  border-block-end: 1px solid #e0e0e0;
}

.p-ss-service-detail__discount-term,
.p-ss-service-detail__discount-desc {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__discount-term,
  .p-ss-service-detail__discount-desc {
    font-size: 0.875rem;
  }
}

.p-ss-service-detail__discount-term {
  border-inline-end: 1px solid #e0e0e0;
  background-color: #ccc;
  color: var(--color-text);
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__discount-term {
    border-block-end: 1px solid #e0e0e0;
    border-inline-end: 0;
    white-space: normal;
  }
}

.p-ss-service-detail__discount-desc {
  background-color: var(--color-white);
  color: var(--color-text);
  font-weight: 500;
}
.p-ss-service-detail__discount-desc strong {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__discount-desc {
    font-size: 0.875rem;
  }
}

.p-ss-service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__actions {
    flex-direction: column;
    margin-block-start: 1.25rem;
  }
}

.p-ss-service-detail__action .c-button {
  min-height: 2.75rem;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-ss-service-detail__action .c-button {
    width: 100%;
  }
}
.p-ss-service-detail__action .c-button:not([data-color=black]) {
  border-color: var(--color-black);
}
.p-ss-service-detail__action .c-button__text {
  padding-inline: 1.25rem;
}
.p-ss-service-detail__action .c-button__arrow {
  width: 2.5rem;
}

.p-ss-service-nav {
  background-color: #f4f4f4;
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-ss-service-nav {
    padding-block: 2.5rem;
  }
}

.p-ss-service-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-ss-service-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.p-ss-service-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid #808080;
  border-radius: 0.25rem;
  background-color: var(--color-white);
  text-align: center;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.025em;
  text-decoration: none;
  font-feature-settings: "palt";
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-ss-service-nav__link {
    display: flex;
    justify-content: center;
    height: 100%;
    min-height: 2.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    text-align: left;
  }
}
@media (any-hover: hover) {
  .p-ss-service-nav__link:hover {
    opacity: 1;
    border-color: var(--color-black);
    background-color: var(--color-black);
    color: var(--color-white);
  }
}

.p-ss-service-nav__text {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-ss-service-nav__text {
    white-space: normal;
  }
}

.p-ss-service-nav__arrow {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.5rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 0.707031L6.70703 6.70703' stroke='black' stroke-linecap='square'/%3E%3Cpath d='M12.707 0.707031L6.70703 6.70703' stroke='black' stroke-linecap='square'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.707031 0.707031L6.70703 6.70703' stroke='black' stroke-linecap='square'/%3E%3Cpath d='M12.707 0.707031L6.70703 6.70703' stroke='black' stroke-linecap='square'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.p-ss-service {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-ss-service {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-ss-services {
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-ss-services {
    padding-block: 3rem 3.5rem;
  }
}

.p-ss-services__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-ss-services__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-ss-services__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 1.75rem;
  }
}

.p-ss-services__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}

.p-ss-services__visual {
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
  aspect-ratio: 16/9;
}

.p-ss-services__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-ss-services__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-ss-services__body {
    padding: 1.25rem;
  }
}

.p-ss-services__heading {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-services__heading {
    font-size: 1rem;
  }
}

.p-ss-services__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-services__text {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}

.p-ss-services__button {
  display: flex;
  justify-content: center;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-ss-services__button {
    margin-block-start: 1.75rem;
  }
}

.p-ss-store {
  padding-block: 7.5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-ss-store {
    padding-block: 3.5rem;
  }
}

.p-ss-store__list {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ss-store__list {
    gap: 1.5rem;
  }
}

.p-ss-store__card {
  display: grid;
  grid-template-columns: minmax(0, 33.3333333333%) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-ss-store__card {
    gap: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-ss-store__card {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-ss-store__visual {
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-ss-store__visual {
    aspect-ratio: 16/9;
  }
}

.p-ss-store__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-ss-store__image {
    aspect-ratio: 16/9;
  }
}

.p-ss-store__body {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-ss-store__body {
    padding: 1.5rem 1.25rem;
  }
}

.p-ss-store__heading {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-store__heading {
    font-size: 1.125rem;
  }
}

.p-ss-store__catch {
  margin-block-start: 0.25rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

.p-ss-store__info {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ss-store__info {
    font-size: 0.8125rem;
  }
}

.p-ss-store__tel-link {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-ss-store__tel-link:hover {
    text-decoration: underline;
  }
}

.p-ss-store__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 1rem;
}

.p-ss-store__feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}

.p-ss-store__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-ss-store__actions {
    flex-direction: column;
    margin-block-start: 1rem;
  }
}

.p-ss-store__action .c-button {
  min-width: 0;
  min-height: 2.75rem;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-ss-store__action .c-button {
    width: 100%;
  }
}
.p-ss-store__action .c-button:not([data-color=black]) {
  border-color: var(--color-black);
}
.p-ss-store__action .c-button__text {
  padding-inline: 1.25rem;
}
.p-ss-store__action .c-button__arrow {
  width: 2.5rem;
}

.p-ss-store__empty {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.p-synergy-cases {
  padding-block: 6.25rem 5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-synergy-cases {
    padding-block: 3rem 2.5rem;
  }
}

.p-synergy-cases__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-synergy-cases__list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-block-start: 1.75rem;
  }
}

.p-synergy-cases__card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-synergy-cases__card {
    gap: 1rem;
    padding: 1.25rem;
  }
}

.p-synergy-cases__icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #f4f4f4;
}

.p-synergy-cases__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-synergy-cases__body {
  flex: 1;
  min-width: 0;
}

.p-synergy-cases__heading {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-synergy-cases__heading {
    font-size: 1rem;
  }
}

.p-synergy-cases__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-synergy-cases__text {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}

.p-synergy-effect {
  padding-block: 6.25rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-synergy-effect {
    padding-block: 3.5rem;
  }
}

.p-synergy-effect__texts {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-synergy-effect__texts {
    margin-block-start: 1.5rem;
  }
}

.p-synergy-effect__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-synergy-effect__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-synergy-effect__diagram {
  width: min(49.875rem, 100%);
  height: auto;
  aspect-ratio: 2396/1917;
  margin-block-start: 3.5rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 0.375rem;
  background-color: #f4f4f4;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-synergy-effect__diagram {
    margin-block-start: 2rem;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}

.p-synergy-effect__diagram-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-synergy-intro {
  padding-block: 6.25rem 5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-synergy-intro {
    padding-block: 3rem 2.5rem;
  }
}

.p-synergy-intro__title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-synergy-intro__en {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1rem, 0.86rem + 0.22vw, 1.125rem);
  font-weight: 600;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .p-synergy-intro__en {
    font-size: 0.9375rem;
  }
}
.p-synergy-intro__en::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-synergy-intro__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-synergy-intro__heading {
  color: var(--color-text);
  font-size: clamp(2rem, 0.86rem + 1.79vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-synergy-intro__heading {
    font-size: 1.5rem;
    line-height: 1.45;
  }
}

.p-synergy-intro__texts {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-synergy-intro__texts {
    margin-block-start: 1.5rem;
  }
}

.p-synergy-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-synergy-intro__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-synergy-merits {
  padding-block: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-synergy-merits {
    padding-block: 3rem 0;
  }
}

.p-synergy-merits__list {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-synergy-merits__list {
    margin-block-start: 1.75rem;
  }
}

.p-synergy-merits__item {
  display: flex;
  gap: 2.5rem;
  padding-block: 3rem;
  border-block-end: 1px solid #eee;
}
.p-synergy-merits__item:last-child {
  border-block-end: 0;
}
@media screen and (max-width: 767px) {
  .p-synergy-merits__item {
    flex-direction: column;
    gap: 0.75rem;
    padding-block: 2rem;
  }
}

.p-synergy-merits__number {
  flex-shrink: 0;
  width: 5rem;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-synergy-merits__number {
    width: auto;
    font-size: 2.5rem;
    text-align: left;
  }
}

.p-synergy-merits__body {
  flex: 1;
  min-width: 0;
}

.p-synergy-merits__heading {
  color: var(--color-text);
  font-size: clamp(1.25rem, 0.89rem + 0.75vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-synergy-merits__heading {
    font-size: 1.125rem;
  }
}

.p-synergy-merits__texts {
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-synergy-merits__texts {
    margin-block-start: 0.75rem;
  }
}

.p-synergy-merits__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-synergy-merits__text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.p-top-about {
  width: 100%;
  background-color: #f4f4f4;
}

.p-top-about__inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-block: 7.125rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1023px) {
  .p-top-about__inner {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    padding-block: 3.75rem 0;
    padding-inline: 1.25rem;
  }
}

.p-top-about__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-about__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
  }
}

.p-top-about__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-top-about__body {
    max-width: none;
  }
}

.p-top-about__title {
  margin: 0;
}

.p-top-about__texts {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__texts {
    gap: 1.5rem;
    margin-block-start: 2rem;
  }
}

.p-top-about__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.p-top-about__actions {
  margin-block-start: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__actions {
    width: 100%;
    margin-block-start: 2.25rem;
  }
}

.p-top-about__actions .c-button {
  width: 100%;
}

.p-top-about__visual {
  flex-shrink: 0;
  width: 46.6666666667%;
  margin-block-start: 3.125rem;
  line-height: 0;
  border-radius: 0.375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-about__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block-start: 0;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    max-height: 18.75rem;
    border-radius: 0;
  }
  .p-top-about__visual img {
    -o-object-position: center;
       object-position: center;
    width: 100%;
    height: auto;
  }
}

.p-top-business {
  width: 100%;
  --top-business-sticky-gap: 0.75rem;
}
@media (width >= 768px) {
  .p-top-business {
    --top-business-sticky-gap: 1.5rem;
  }
}

.p-top-business__inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-block: 7.125rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1023px) {
  .p-top-business__inner {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__inner {
    padding-block: 3.375rem;
    padding-inline: 1.25rem;
  }
}

.p-top-business__content {
  width: 100%;
}
@media (width >= 768px) {
  .p-top-business__content {
    --top-business-title-gap: 3.4375rem;
  }
}
@media screen and (max-width: 1023px) and (width >= 768px) {
  .p-top-business__content {
    --top-business-title-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__content {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}

@media (width >= 768px) {
  .p-top-business__head {
    position: sticky;
    top: var(--top-business-title-offset, calc(var(--header-height) + var(--top-business-sticky-gap, 24px)));
    z-index: 5;
    padding-block-end: var(--top-business-title-gap, 3.4375rem);
    background-color: var(--color-base);
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__head {
    margin-block-end: 2.375rem;
    max-width: 35rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
  }
}

.p-top-business__list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-top-business__list {
    gap: 3rem;
  }
}

.p-top-business__item {
  position: sticky;
  top: var(--top-business-sticky-offset, calc(var(--header-height) + var(--top-business-sticky-gap, 24px)));
}

.p-top-business__card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
  padding: 4.75rem 5rem;
  background-color: #f8f8f8;
}
@media screen and (max-width: 1023px) {
  .p-top-business__card {
    gap: 2.5rem;
    padding: 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__card {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding: 2.375rem 2rem 2.625rem;
  }
}

.p-top-business__item:nth-child(1) {
  z-index: 1;
}

.p-top-business__item:nth-child(2) {
  z-index: 2;
}

.p-top-business__item:nth-child(3) {
  z-index: 3;
}

.p-top-business__item:nth-child(4) {
  z-index: 4;
}

.p-top-business__item:nth-child(2) .p-top-business__card {
  background-color: #ececec;
}

.p-top-business__item:nth-child(3) .p-top-business__card {
  background-color: #e0e0e0;
}

.p-top-business__item:nth-child(4) .p-top-business__card {
  background-color: #d4d4d4;
}

.p-top-business__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-top-business__body {
    max-width: 35rem;
    margin-inline: auto;
  }
}

.p-top-business__label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-business__label {
    font-size: 0.8125rem;
  }
}

.p-top-business__number {
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
}

.p-top-business__heading {
  margin-block-start: 0.375rem;
  color: var(--color-text);
  font-size: clamp(1.75rem, 1.58rem + 0.35vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-business__heading {
    font-size: 1.25rem;
  }
}

.p-top-business__text {
  margin-block-start: 3.25rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-business__text {
    margin-block-start: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
  }
}

.p-top-business__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__actions {
    gap: 1.25rem;
    width: 100%;
    margin-block-start: 2.125rem;
  }
}

.p-top-business__visual {
  margin-block-start: 2.5rem;
  flex-shrink: 0;
  width: 42.3076923077%;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-top-business__visual {
    margin-block-start: 0;
    width: 100%;
    max-width: 35rem;
    margin-inline: auto;
  }
}

.p-top-business__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 440/330;
  border-radius: 0.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.p-top-column {
  width: 100%;
  padding-block: 7.125rem 7.5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-column {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-column {
    padding-block: 3.75rem;
  }
}

.p-top-column__inner {
  display: flex;
  flex-direction: column;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-column__title {
  margin: 0;
}

.p-top-column__slider.swiper {
  width: 100%;
  margin-block-start: 4.25rem;
}
@media screen and (max-width: 1023px) {
  .p-top-column__slider.swiper {
    margin-block-start: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-column__slider.swiper {
    width: 100vw;
    margin-block-start: 2.25rem;
    margin-inline: calc(50% - 50vw);
    padding-inline: 0;
    overflow: hidden;
  }
}
@media (width >= 768px) {
  .p-top-column__slider.swiper {
    overflow: visible;
  }
}

.p-top-column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-top-column__list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-column__list {
    display: flex;
    gap: 0;
  }
}

@media (width >= 768px) {
  .p-top-column__list.swiper-wrapper {
    display: grid;
    transform: none;
    transition: none;
  }
}

.p-top-column__item {
  margin: 0;
  min-width: 0;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-column__item {
    height: auto;
  }
}

.p-top-column__item.swiper-slide {
  height: auto;
}
@media (width >= 768px) {
  .p-top-column__item.swiper-slide {
    width: auto;
    height: auto;
    margin: 0;
  }
}

.p-top-column__pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-column__pagination {
    position: static;
    inset: auto;
    bottom: auto;
    left: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-block-start: 2.4375rem;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .p-top-column__slider.swiper-horizontal > .p-top-column__pagination {
    position: static;
    inset: auto;
    bottom: auto;
    left: auto;
    width: auto;
    transform: none;
  }
}

.p-top-column__slider.swiper-horizontal > .p-top-column__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;
  border-radius: 50%;
  background-color: var(--color-text);
  opacity: 1;
}

.p-top-column__slider.swiper-horizontal > .p-top-column__pagination .swiper-pagination-bullet-active {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-primary);
}

.p-top-column__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-block-end: 1.25rem;
  border-block-end: 0.125rem solid #d4d4d4;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-column__card {
    padding-block-end: 1rem;
  }
}
@media (any-hover: hover) {
  .p-top-column__card:hover .p-top-column__image {
    scale: 1.06;
  }
  .p-top-column__card:hover .p-top-column__arrow-icon {
    translate: 0.5rem 0;
  }
}

.p-top-column__visual {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 374/255;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-top-column__visual {
    aspect-ratio: 280/190;
  }
}

.p-top-column__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-top-column__body {
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__body {
    padding-inline: 0;
  }
}

.p-top-column__heading {
  display: -webkit-box;
  margin: 0;
  margin-block-start: 2rem;
  overflow: hidden;
  color: var(--color-text);
  font-size: clamp(1.25rem, 1.08rem + 0.35vw, 1.5rem);
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767px) {
  .p-top-column__heading {
    margin-block-start: 1rem;
    font-size: 1.125rem;
    line-height: 1.55;
  }
}

.p-top-column__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__meta {
    gap: 0.75rem;
    margin-block-start: 0.75rem;
  }
}

.p-top-column__date {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-column__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-top-column__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  min-height: 2rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: clamp(0.875rem, 0.69rem + 0.38vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-column__tag {
    min-width: 5.875rem;
    min-height: 1.625rem;
    font-size: 0.875rem;
  }
}

.p-top-column__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-block-start: auto;
  padding-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__arrow {
    padding-block-start: 1.125rem;
    padding-inline-end: 1.125rem;
  }
}

.p-top-column__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-column__arrow-icon {
    width: 1rem;
    height: 0.5rem;
  }
}

.p-top-column__actions {
  display: flex;
  justify-content: flex-end;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__actions {
    margin-block-start: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-column__actions .c-button {
    width: 100%;
  }
}

.p-top-heritage {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #f4f4f4;
}

.p-top-heritage__inner {
  display: flex;
  flex-direction: column;
  gap: 3.4375rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-block: 7.125rem 0;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 1023px) {
  .p-top-heritage__inner {
    gap: 2.5rem;
    padding-block: 5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-heritage__inner {
    gap: 1.75rem;
    padding-block: 3.375rem 0;
    padding-inline: 1.25rem;
  }
}

.p-top-heritage__title {
  margin: 0;
}

.p-top-heritage__content {
  display: flex;
  justify-content: space-between;
  gap: 4.375rem;
  padding-block-end: 7.125rem;
}
@media screen and (max-width: 1023px) {
  .p-top-heritage__content {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-heritage__content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding-block-end: clamp(11.25rem, -2.05rem + 54.55vw, 18.75rem);
  }
}

.p-top-heritage__body {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 32.5rem;
}
@media screen and (max-width: 1440px) {
  .p-top-heritage__body {
    max-width: 30rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-heritage__body {
    max-width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-heritage__body {
    gap: 1.625rem;
    max-width: none;
    padding-block-end: 0;
  }
}

.p-top-heritage__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-heritage__text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.p-top-heritage__visual {
  position: absolute;
  bottom: 0;
  right: 5rem;
  width: min(45.8333333333vw, 55rem);
  line-height: 0;
}
@media (min-width: 1921px) {
  .p-top-heritage__visual {
    right: auto;
    left: 50%;
    translate: calc(-50% + 26.875rem) 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-heritage__visual {
    right: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-heritage__visual {
    left: 50%;
    translate: -50% 0;
    width: min(90%, 37.1875rem);
    margin-inline: auto;
  }
}

.p-top-heritage__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(1, 64, 153, 0.1));
}

.p-top-news {
  width: 100%;
  padding-block: 7.125rem 7.5rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 1023px) {
  .p-top-news {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-block: 3.5rem 3.75rem;
  }
}

.p-top-news__inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-news__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-news__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.25rem;
  }
}

.p-top-news__title {
  flex-shrink: 0;
  margin: 0;
}

.p-top-news__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  max-width: 55rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__body {
    margin-block-start: 0;
    max-width: none;
  }
}

.p-top-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-block-start: 1px solid #d4d4d4;
}

.p-top-news__item {
  margin: 0;
  border-block-end: 1px solid #d4d4d4;
}

.p-top-news__link {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-block: 1.9375rem;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-news__link {
    gap: 0.75rem;
    padding-block: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-top-news__link:hover .p-top-news__arrow-icon {
    translate: 0.5rem 0;
  }
}

.p-top-news__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__meta {
    gap: 0.625rem;
  }
}

.p-top-news__date {
  color: #666;
  font-family: var(--ff-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-news__date {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}

.p-top-news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  background-color: #e0e0e0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-news__tag {
    min-width: 5.3125rem;
    min-height: 1.625rem;
  }
}

.p-top-news__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__row {
    gap: 1.5rem;
  }
}

.p-top-news__heading {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-news__heading {
    font-size: 0.875rem;
    line-height: 1.71;
    -webkit-line-clamp: 3;
  }
}

.p-top-news__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__arrow {
    margin-block-start: 0.625rem;
  }
}

.p-top-news__arrow-icon {
  width: 1.25rem;
  height: 0.625rem;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D .cls-2 %7B fill: none; stroke: %23fff; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M15,0l5,5-5,5' /%3E%3Cpath class='cls-2' d='M0,5h18' /%3E%3C/svg%3E%0A");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-news__arrow-icon {
    width: 1rem;
    height: 0.5rem;
  }
}

.p-top-news__actions {
  display: flex;
  justify-content: flex-end;
  margin-block-start: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__actions {
    margin-block-start: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-news__actions .c-button {
    width: 100%;
  }
}

.p-top-recruit {
  width: 100%;
  padding-block: 7.125rem 7.5rem;
}
@media screen and (max-width: 1023px) {
  .p-top-recruit {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    padding-block: 3.5rem 3.75rem;
  }
}

.p-top-recruit__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-top-recruit__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__body {
    width: 100%;
  }
}

.p-top-recruit__title {
  margin: 0;
}

.p-top-recruit__catch {
  margin: 0;
  margin-block-start: 3.5rem;
  color: var(--color-text);
  font-size: clamp(2.75rem, 1.32rem + 2.23vw, 4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__catch {
    font-size: clamp(2rem, 0.86rem + 1.79vw, 3rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__catch {
    margin-block-start: 1.75rem;
    font-size: 2rem;
    line-height: 1.37;
    letter-spacing: 0.05em;
  }
}

.p-top-recruit__texts {
  display: flex;
  flex-direction: column;
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__texts {
    margin-block-start: 1.25rem;
  }
}

.p-top-recruit__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-recruit__text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.p-top-recruit__actions {
  margin-block-start: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__actions {
    width: 100%;
    margin-block-start: 2.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-recruit__actions .c-button {
    width: 100%;
  }
}

.p-top-recruit__visual {
  position: absolute;
  top: 2.9375rem;
  right: 3.125rem;
  z-index: 0;
  width: 43.0769230769%;
  max-width: 40rem;
  aspect-ratio: 560/420;
  border-radius: 0.375rem;
  line-height: 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__visual {
    width: 39.0625%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__visual {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-height: 18.75rem;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
    max-width: none;
    translate: none;
  }
}

.p-under-mv {
  margin-block-start: var(--header-height);
}

.p-under-mv__inner {
  display: flex;
  align-items: center;
  width: min(100%, 81.25rem);
  min-height: 20.9375rem;
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-under-mv__inner {
    min-height: 15rem;
    padding-inline: 1.25rem;
  }
}

.p-under-mv__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  translate: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-under-mv__title {
    translate: 0 0.25rem;
  }
}

.p-under-mv__en {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: clamp(1.25rem, 1.08rem + 0.35vw, 1.5rem);
  font-weight: 600;
  line-height: 1.58;
}
@media screen and (max-width: 767px) {
  .p-under-mv__en {
    gap: 0.625rem;
    font-size: 1.125rem;
  }
}

.p-under-mv__en::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-under-mv__en::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-under-mv__ja {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.75rem, 2.25rem + 1.04vw, 3.5rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-under-mv__ja {
    font-size: 1.75rem;
    line-height: 1.375;
  }
}

@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

@media (width <= 767px) {
  .u-pc-hidden {
    display: block;
  }
}
@media (width >= 768px) {
  .u-pc-hidden {
    display: none;
  }
}

.js-animation,
.c-section-title {
  opacity: 0;
  translate: 0 1.875rem;
}
.js-animation.is-animatable,
.c-section-title.is-animatable {
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), translate 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, translate;
}
.js-animation.is-inview,
.c-section-title.is-inview {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .js-animation,
  .c-section-title {
    opacity: 1;
    translate: none;
    transition: none;
    will-change: auto;
  }
}
@media (width >= 768px) {
  .u-sp-hidden {
    display: block;
  }
}
@media (width <= 767px) {
  .u-sp-hidden {
    display: none;
  }
}

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

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}