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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}
:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}
:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}
:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 30%);
}
:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}
/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}
[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}
/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled="true" i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}
[hidden]:not([hidden="until-found" i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}
:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}
:where(p) {
  margin: 0;
}
html {
  font-size: 100%;
  font-family: var(--base-font-family);
  /* トップページ内のアンカー（#contact 等）でスムーススクロール */
  scroll-behavior: smooth;
}
a[href^=tel] {
  text-decoration: none;
}
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}
a:hover {
  text-decoration: none;
}
img,
svg {
  vertical-align: middle;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}
:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}
:focus:not(:focus-visible) {
  outline: none;
}
input[type=text] {
  font-size: 1rem;
  /* = 16px */
}
textarea {
  field-sizing: content;
}
body {
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  font-size: calc(14 * var(--to-rem));
}
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  /* inner */
  --inner: min(1280px, 100%);
  --inner-sp: min(500px, 100%);
  --padding-inner: 15px;
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #FFFFFF;
  --color-black: #323B4D;
  --color-gray: #F7F8FA;
  --color-gray-border: #efefef;
  --color-green: #32899A;
  --color-orange: #F5B025;
  --color-background: #F7F8FA;
  --color-background-footer: #222A3A;
  --color-text: #323B4D;
  --color-border-gray: #b0b0b2;
  --color-border: #e0e0e0;
  --color-primary: #1e6fbd;
  --color-primary-dark: #1e4b83;
  --color-blue: #3d93d4;
  --color-blue-sky: #53a9db;
  --color-blue-medium: #3e7ba9;
  --color-blue-light: #3693b3;
  --color-teal: #49BEBF;
  --color-button-blue: #2d83be;
  --color-drawer-bg: #132C89;
  --color-header-bg: #eff4f5;
  --color-about-blue: #4682e6;
  --color-about-cyan: #3693b3;
  --color-about-glow: #6bb0d0;
  --color-fv-border: #83b5c2;
  --color-fv-bg: #9fc5dc;
  --color-fv-gradient-from: #a0b6d0;
  --color-fv-gradient-mid1: #99c9e5;
  --color-fv-gradient-mid2: #a6cfd7;
  --color-fv-gradient-to: #96c3e5;
  --color-form-border: #A0A0A0;
  --color-form-placeholder: #b0b0b2;
  --color-loading: #3b82f6;
  --color-dev-warning: #fff3cd;
  --color-form-focus-bg: rgb(64 143 149 / 10%);
  --color-shadow: rgb(0 0 0 / 10%);
  --color-overlay-light: rgb(0 0 0 / 5%);
  --color-shadow-25: rgba(0, 0, 0, 0.25);
  --color-gray-light: #eee;
  /* FVグラデーション用の白の透明度 */
  --color-white-98: rgba(255, 255, 255, 0.98);
  --color-white-92: rgba(255, 255, 255, 0.92);
  --color-white-82: rgba(255, 255, 255, 0.82);
  --color-white-55: rgba(255, 255, 255, 0.55);
  --color-white-25: rgba(255, 255, 255, 0.25);
  /* gradient（変数参照） */
  --gradient-accent__main: linear-gradient(135deg, var(--color-primary-dark), var(--color-blue-sky), var(--color-green), var(--color-blue));
  --gradient-accent__sub: linear-gradient(135deg, var(--color-teal), var(--color-green));
  --gradient-accent__cta: linear-gradient(125deg, rgba(50, 137, 154, 0.75) 4.88%, rgba(54, 147, 179, 0.75) 24.31%, rgba(57, 153, 195, 0.75) 36.44%, rgba(20, 105, 176, 0.75) 81.64%, rgba(30, 75, 131, 0.75) 104.05%);
  /* font-weight */
  --fw-exlight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  /* font-family（Google Fonts から読み込み） */
  --base-font-family: "Roboto", sans-serif;
  --fv-font-family: "Figtree", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.5s;
  /* header height */
  --header-height: 60px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 72px;
  }
}
.l-header {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-header);
}
.l-inner {
  padding-inline: var(--padding-inner);
}
@media screen and (min-width: 1024px) {
  .l-inner {
    width: min(1340px, 100%);
    padding-inline: 30px;
    margin-inline: auto;
  }
}
.l-main {
  margin-block-start: var(--header-height);
  overflow: hidden;
}
.home .l-main, .front-page .l-main {
  margin-block-start: 0;
}
.c-button {
  display: inline-block;
  font-size: calc(12 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: calc(1.2 * var(--to-rem));
  padding: calc(9 * var(--to-rem)) calc(22 * var(--to-rem));
  border-radius: calc(18 * var(--to-rem));
  width: calc(222 * var(--to-rem));
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: 200% 200%;
  background-position: 100% 0;
  transition: background-position var(--duration) ease, border-color var(--duration) ease, color var(--duration) ease, background-color var(--duration) ease;
  color: var(--color-white);
  border: calc(1 * var(--to-rem)) solid var(--color-primary);
  background-color: var(--color-primary);
  background-image: linear-gradient(45deg, var(--color-white) 0%, var(--color-white) 50%, var(--color-primary) 50%, var(--color-primary) 100%);
}
@media (any-hover: hover) {
  .c-button:hover {
    background-position: 0 100%;
    background-color: var(--color-white);
    color: var(--color-primary);
  }
}
.c-button--orange {
  border-color: var(--color-orange);
  background-color: var(--color-orange);
  background-image: linear-gradient(45deg, var(--color-white) 0%, var(--color-white) 50%, var(--color-orange) 50%, var(--color-orange) 100%);
}
@media (any-hover: hover) {
  .c-button--orange:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
  }
}
@media screen and (min-width: 1024px) {
  .c-button--orange {
    width: min(400 * var(--to-rem), 100%);
    padding: calc(12 * var(--to-rem)) calc(24 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
    border-radius: calc(40 * var(--to-rem));
  }
}
.c-button--transparent {
  font-weight: var(--fw-bold);
  border-color: var(--color-blue-light);
  border-width: calc(2 * var(--to-rem));
  color: var(--color-blue-light);
  background-color: transparent;
  background-image: linear-gradient(45deg, var(--color-blue-light) 0%, var(--color-blue-light) 50%, transparent 50%, transparent 100%);
}
@media (any-hover: hover) {
  .c-button--transparent:hover {
    color: var(--color-white);
  }
}
@media screen and (min-width: 1024px) {
  .c-button--transparent {
    width: min(400 * var(--to-rem), 100%);
    padding: calc(12 * var(--to-rem)) calc(24 * var(--to-rem));
    font-size: calc(24 * var(--to-rem));
    border-radius: calc(40 * var(--to-rem));
  }
}
/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 * - 呼び出し元で親クラスで 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);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-primary);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-primary);
  --_pagination-border-hover: var(--color-primary);
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  justify-content: center;
}
.c-pagination__item {
  font-size: calc(16 * var(--to-rem));
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(40 * var(--to-rem));
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: transparent;
  font-size: calc(14 * var(--to-rem));
  text-decoration: none;
  transition: opacity 0.2s ease;
  /* --- 【A】フォールバック：テキストをメイン色に --- */
  color: var(--_pagination-active-bg);
  /* --- 【B】テキストをグラデーションにする（全アイテム共通） --- */
}
@media screen and (min-width: 1024px) {
  .c-pagination__item {
    width: calc(44 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .c-pagination__item {
    background-image: var(--gradient-accent__main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-origin: border-box;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]):not([data-state=disabled]) {
    opacity: 0.7;
  }
}
.c-pagination__item[data-state=current] {
  isolation: isolate;
  /* --- 【A】フォールバック（単色背景 + 白抜き文字） --- */
  background-color: var(--_pagination-active-bg);
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  /* --- 【B】モダンブラウザ用：背景もグラデーションにする場合 --- */
}
@supports (background-clip: border-box) {
  .c-pagination__item[data-state=current] {
    background-image: var(--gradient-accent__main);
    background-clip: border-box;
    -webkit-background-clip: border-box;
    color: var(--color-white);
    -webkit-text-fill-color: var(--color-white);
    border-color: transparent;
  }
}
.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__icon {
  width: calc(40 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
}
.c-section-head {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}
.c-section-head--white .c-section-head__label-jp,
.c-section-head--white .c-section-head__label-en,
.c-section-head--white .c-section-head__lead {
  color: var(--color-white);
}
.c-section-head__title {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.118rem + 0.56vw, 0.625rem);
  font-family: var(--fv-font-family);
}
.c-section-head__label-jp {
  font-size: clamp(0.625rem, 0.493rem + 0.56vw, 1rem);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  letter-spacing: calc(2 * var(--to-rem));
}
.c-section-head__label-en {
  font-size: clamp(2.5rem, 1.18rem + 5.63vw, 6.25rem);
  font-weight: var(--fw-light);
  line-height: 1.2;
  color: var(--color-green);
  letter-spacing: calc(2 * var(--to-rem));
}
.c-section-head__lead {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
}
.c-section-title {
  display: grid;
  gap: calc(8 * var(--to-rem));
  justify-items: center;
  width: max-content;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-section-title {
    gap: calc(12 * var(--to-rem));
  }
}
.c-section-title[data-align=center] {
  justify-items: center;
  text-align: center;
}
.c-section-title[data-align=left] {
  justify-items: start;
  text-align: left;
}
.c-section-title[data-align=right] {
  justify-items: end;
  text-align: right;
}
.c-section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: calc(3 * var(--to-rem));
  background-color: var(--color-orange);
}
@media screen and (min-width: 1024px) {
  .c-section-title::after {
    width: 80%;
  }
}
.c-section-title__main {
  color: var(--color-text);
  font-family: var(--title-font-family);
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .c-section-title__main {
    font-size: calc(48 * var(--to-rem));
  }
}
.c-section-title__sub {
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .c-section-title__sub {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-about {
  position: relative;
  z-index: 0;
  padding-block: calc(239 * var(--to-rem)) clamp(5rem, 3.46rem + 6.57vw, 9.375rem);
}
.p-about__inner {
  position: relative;
  z-index: 1;
  padding-inline: calc(30 * var(--to-rem));
}
/* 見出し（About us） */
.p-about__head {
  align-items: center;
}
.p-about__head .c-section-head__label-jp {
  text-align: center;
}
.p-about__head .c-section-head__label-en {
  font-weight: var(--fw-exlight, 100);
  font-size: clamp(3.125rem, 1.695rem + 6.1vw, 7.188rem);
}
/* 左の白い円ブロック */
.p-about__circle-wrap {
  position: absolute;
  top: calc(-225 * var(--to-rem));
  left: calc(-18 * var(--to-rem));
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .p-about__circle-wrap {
    top: calc(-173 * var(--to-rem));
    left: calc(32 * var(--to-rem));
  }
}
.p-about__circle-wrap.u-fade-in {
  transition: opacity 1s ease, translate 1s ease;
}
.p-about__circle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(13.438rem, 11.345rem + 8.93vw, 15.625rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-about__circle {
    width: clamp(15.625rem, -1.946rem + 36.61vw, 31rem);
  }
}
.p-about__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(92.55% 92.55% at 23.49% 15.58%, var(--color-white) 0%, var(--color-gray-light) 100%);
}
.p-about__circle-label {
  font-size: calc(24 * var(--to-rem));
  color: var(--color-about-blue);
  font-family: var(--fv-font-family);
  letter-spacing: calc(4 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-about__circle-label {
    font-size: clamp(1.563rem, -0.795rem + 4.91vw, 3.625rem);
  }
}
.p-about__circle-label--small {
  letter-spacing: calc(2.9 * var(--rem));
  font-size: calc(23 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-about__circle-label--small {
    font-size: clamp(1.5rem, -0.714rem + 4.61vw, 3.438rem);
  }
}
.p-about__circle-sep {
  color: var(--color-about-blue);
  font-size: calc(20 * var(--to-rem));
  margin-block: -0.4em;
}
@media screen and (min-width: 768px) {
  .p-about__circle-sep {
    font-size: clamp(1.25rem, 0.7rem + 2.35vw, 2.813rem);
  }
}
.p-about__circle-tagline {
  color: var(--color-about-cyan);
  text-align: center;
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-light);
  line-height: 1.5;
  margin-block-start: calc(12 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-about__circle-tagline {
    font-size: clamp(0.75rem, -0.179rem + 1.93vw, 1.563rem);
    font-weight: var(--fw-regular);
  }
}
/* 右側本文ブロック */
.p-about__body {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: calc(46 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-about__body {
    width: min(550 * var(--to-rem), 100%);
    margin-inline-end: calc(64 * var(--to-rem));
  }
}
.p-about__text {
  color: var(--color-white);
  text-shadow: 0 0 calc(17.69 * var(--to-rem)) var(--color-about-glow);
  font-size: clamp(0.875rem, 0.765rem + 0.47vw, 1.188rem);
  line-height: 1.5;
  max-width: calc(460 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-about__text {
    text-shadow: 0 0 calc(37 * var(--to-rem)) var(--color-about-glow);
    max-width: calc(550 * var(--to-rem));
  }
}
.p-archive {
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .p-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(32 * var(--to-rem));
  }
}
@media screen and (min-width: 1280px) {
  .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 (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .p-archive__thumbnail {
    margin-block-end: calc(20 * var(--to-rem));
  }
}
.p-archive__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  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: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .p-archive__excerpt {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-archive__pagination {
  margin-block-start: calc(48 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .p-archive__empty {
    padding-block: calc(80 * var(--to-rem));
    font-size: calc(18 * 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 (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .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: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .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 (min-width: 1024px) {
  .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: var(--fw-medium);
}
.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 (min-width: 1024px) {
  .p-archive--works .p-archive__technology {
    font-size: calc(12 * var(--to-rem));
  }
}
.p-blog-list {
  background-color: var(--color-gray);
  padding-block-end: clamp(5rem, 3.46rem + 6.57vw, 9.375rem);
}
.p-blog-list__hero {
  height: clamp(16.188rem, 12.094rem + 17.46vw, 27.813rem);
  background-image: url(../images/bg-lower__top-sp.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .p-blog-list__hero {
    background-image: url(../images/bg-lower__top-pc.webp);
  }
}
.p-blog-list__head {
  align-items: flex-start;
  width: clamp(15.625rem, 4.621rem + 46.95vw, 46.875rem);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-blog-list__head {
    align-items: center;
  }
}
.p-blog-list__head .c-section-head__title {
  align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .p-blog-list__head .c-section-head__title {
    align-items: center;
  }
}
.p-blog-list__filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(32 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-blog-list__filter {
    gap: calc(12 * var(--to-rem));
    margin-block-start: calc(70 * var(--to-rem));
  }
}
.p-blog-list__filter-btn {
  padding: calc(8 * var(--to-rem)) calc(16 * var(--to-rem));
  line-height: 1.5;
  border: calc(1 * var(--to-rem)) solid transparent;
  background-color: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
@media (any-hover: hover) {
  .p-blog-list__filter-btn:hover:not(.is-active) {
    color: var(--color-blue);
  }
}
.p-blog-list__filter-btn.is-active {
  border-color: var(--color-blue);
}
.p-blog-list__grid {
  --_card-widht: calc(320 * var(--to-rem));
  display: grid;
  gap: calc(32 * var(--to-rem));
  margin-block-start: calc(40 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-blog-list__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: clamp(3.125rem, -1.49rem + 7.21vw, 5rem);
    margin-block-start: calc(100 * var(--to-rem));
  }
}
.p-blog-list__card {
  width: min(405 * var(--to-rem), 100%);
  margin-inline: auto;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .p-blog-list__card:hover .p-blog-list__thumbnail img {
    scale: 1.2;
  }
  .p-blog-list__card:hover .p-blog-list__card-title {
    color: var(--color-green);
  }
}
.p-blog-list__link {
  display: block;
}
.p-blog-list__thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 345/230;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-blog-list__thumbnail {
    aspect-ratio: 405/265;
  }
}
.p-blog-list__thumbnail img {
  transition: scale var(--duration) ease;
}
.p-blog-list__content {
  padding: calc(24 * var(--to-rem));
}
.p-blog-list__meta {
  display: flex;
  align-items: center;
  gap: calc(14 * var(--to-rem));
}
.p-blog-list__tag {
  color: var(--color-white);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  padding: calc(4 * var(--to-rem)) calc(8 * var(--to-rem));
  background-color: var(--color-blue-medium);
}
.p-blog-list__time {
  font-weight: var(--fw-semibold);
  line-height: 1.5;
}
.p-blog-list__card-title {
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  margin-block-start: calc(16 * var(--to-rem));
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color var(--duration) ease;
}
.p-blog-list__excerpt {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  margin-block-start: calc(12 * var(--to-rem));
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 1024px) {
  .p-blog-list__excerpt {
    margin-block-start: calc(10 * var(--to-rem));
  }
}
.p-blog-list__more {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(24 * var(--to-rem));
}
@media (any-hover: hover) {
  .p-blog-list__more:hover .p-blog-list__more-icon {
    translate: calc(10 * var(--to-rem)) 0;
  }
}
.p-blog-list__more-text {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
}
.p-blog-list__more-icon {
  width: calc(24 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  transition: translate var(--duration) ease;
}
.p-blog {
  background: var(--color-gray);
  padding-block: clamp(5rem, 3.46rem + 6.57vw, 9.375rem);
}
.p-blog__head.c-section-head {
  gap: clamp(0.75rem, 0.662rem + 0.38vw, 1rem);
}
.p-blog__head .c-section-head__title {
  gap: clamp(0.625rem, 0.493rem + 0.56vw, 1rem);
}
.p-blog__head .c-section-head__label-en {
  font-size: clamp(3.125rem, 1.695rem + 6.1vw, 7.188rem);
}
.p-blog__head .c-section-head__lead {
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
}
.p-blog__cards {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  margin-block-start: clamp(2.5rem, 1.62rem + 3.76vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .p-blog__cards {
    flex-direction: row;
    align-items: center;
  }
}
.p-blog__card {
  width: min(405 * var(--to-rem), 100%);
  margin-inline: auto;
  border-radius: calc(20 * var(--to-rem));
  overflow: hidden;
  background-color: var(--color-white);
}
.p-blog__card-imgWrap {
  width: 100%;
  height: auto;
  aspect-ratio: 405/264;
  overflow: hidden;
}
.p-blog__card-img {
  transition: scale 0.5s;
}
.p-blog__card-body {
  padding: calc(24 * var(--to-rem));
}
.p-blog__card-meta {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
.p-blog__card-tag {
  color: var(--color-white);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  padding: calc(4 * var(--to-rem)) calc(8 * var(--to-rem));
  background-color: var(--color-blue-medium);
}
.p-blog__card-time {
  font-weight: var(--fw-semibold);
  line-height: 1.5;
}
.p-blog__card-title {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  margin-block-start: calc(16 * var(--to-rem));
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-blog__card__description {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  margin-block-start: calc(8 * var(--to-rem));
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-blog__card-link {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
  margin-block-start: calc(24 * var(--to-rem));
}
.p-blog__card-more {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
}
.p-blog__card-icon {
  width: calc(24 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
}
.p-blog__more {
  text-align: center;
  margin-block-start: clamp(2.5rem, 1.752rem + 3.19vw, 4.625rem);
}
.p-blog__more .c-button {
  width: calc(300 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  border: calc(2 * var(--to-rem)) solid #3693b3;
  padding-block: calc(12 * var(--to-rem));
  border-radius: calc(26 * 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 (min-width: 1024px) {
  .p-card-list {
    gap: calc(32 * var(--to-rem));
  }
}
.p-cases {
  padding-block: clamp(5.125rem, 4.729rem + 1.69vw, 6.25rem) clamp(8.563rem, 7.374rem + 5.07vw, 11.938rem);
}
.p-cases__head {
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-cases__head.c-section-head {
    gap: calc(16 * var(--to-rem));
  }
}
.p-cases__head .c-section-head__title {
  gap: calc(16 * var(--to-rem));
}
.p-cases__head .c-section-head__label-en {
  font-size: clamp(3.125rem, 1.695rem + 6.1vw, 7.188rem);
}
.p-cases__head .c-section-head__lead {
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
}
@media screen and (min-width: 1024px) {
  .p-cases__head .c-section-head__lead br {
    display: none;
  }
}
.p-cases__cards {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: calc(32 * var(--to-rem));
  margin-block-start: calc(80 * var(--to-rem));
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-cases__cards {
    column-gap: calc(32 * var(--to-rem));
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-cases__card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: calc(12 * var(--to-rem));
  width: 100%;
  max-width: min(405 * var(--to-rem), 100%);
  margin-inline: auto;
  border-radius: calc(24 * var(--to-rem));
  overflow: hidden;
  background-color: var(--color-gray);
  text-align: left;
}
@media (any-hover: hover) {
  .p-cases__card:hover .p-cases__card-img img {
    scale: 1.1;
  }
  .p-cases__card:hover .p-cases__card-title {
    color: var(--color-primary);
  }
}
.p-cases__card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 345/230;
  overflow: hidden;
  border-radius: calc(24 * var(--to-rem));
  position: relative;
}
.p-cases__card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gradient-accent__main);
  opacity: 0.3;
  pointer-events: none;
}
.p-cases__card-img img {
  position: relative;
  z-index: 0;
  transition: scale var(--duration) ease;
}
/* body は 2〜4 行目を占有し、その中で title / text / meta を subgrid で 3 行に割り当て */
.p-cases__card-body {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: calc(12 * var(--to-rem));
  padding: 0 calc(20.5 * var(--to-rem)) calc(23 * var(--to-rem));
  min-height: 0;
}
.p-cases__card-title {
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
  line-height: 1.4;
  font-weight: var(--fw-medium);
  transition: color var(--duration) ease;
  margin-block-start: calc(12 * var(--to-rem));
}
.p-cases__card-text {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
}
.p-cases__card-meta {
  display: flex;
  align-items: center;
  margin-block-start: calc(12 * var(--to-rem));
}
@media (any-hover: hover) {
  .p-cases__card-meta:hover .p-cases__card-icon {
    translate: calc(10 * var(--to-rem)) 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-cases__card-meta {
    gap: calc(10 * var(--to-rem));
  }
}
.p-cases__card-more {
  font-size: calc(15 * var(--to-rem));
  line-height: 1.5;
}
.p-cases__card-icon {
  width: calc(24 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  transition: translate var(--duration) ease;
}
button {
  background: none;
  padding: 0;
  border: none;
}
:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}
body:has(dialog[open]) {
  overflow: hidden;
}
.wrapper:has(dialog[open]) {
  overflow-y: auto;
  scrollbar-gutter: stable;
}
dialog::backdrop {
  opacity: 0;
  transition: background 0.3s ease-in-out;
}
dialog.js-show.modal__content {
  opacity: 1;
}
dialog.js-show::backdrop {
  opacity: 1;
  background: var(--gradient-accent__main);
  opacity: 0.7;
  backdrop-filter: blur(calc(6 * var(--to-rem)));
}
.modal__content {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: min(600 * var(--to-rem), 95%);
  max-height: 80vh;
  background: var(--color-white);
  border-radius: calc(24 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .modal__content {
    width: min(clamp(50rem, 3.846rem + 72.12vw, 68.75rem), 100%);
  }
}
@media screen and (min-width: 1280px) {
  .modal__content {
    max-height: 70vh;
  }
}
.modal__inner {
  overflow-y: auto;
  height: 100%;
  position: relative;
}
.modal__body {
  height: fit-content;
}
.modal__close-btn {
  position: absolute;
  z-index: 2;
  top: calc(20 * var(--to-rem));
  right: calc(20 * var(--to-rem));
  font-size: calc(30 * var(--to-rem));
  background: var(--gradient-accent__main);
  width: calc(35 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  border: calc(1 * var(--to-rem)) solid transparent;
  opacity: 0.5;
  border-radius: calc(6 * var(--to-rem));
  transition: opacity var(--duration) ease;
}
.modal__close-btn::before {
  content: "";
  background-image: url("data:image/svg+xml,%3csvg%20width='29'%20height='29'%20viewBox='0%200%2029%2029'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1.5%201.5L27.5%2027.5'%20stroke='white'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cpath%20d='M27.5%201.5L1.5%2027.5'%20stroke='white'%20stroke-width='3'%20stroke-linecap='round'/%3e%3c/svg%3e");
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(26 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  transition: opacity var(--duration) ease;
}
@media (any-hover: hover) {
  .modal__close-btn:hover {
    opacity: 1;
  }
}
.p-cases__modal {
  padding: clamp(3.75rem, 3.662rem + 0.38vw, 4rem) calc(10 * var(--to-rem));
  display: flex;
  flex-direction: column;
  gap: calc(60 * var(--to-rem));
  border-radius: calc(24 * var(--to-rem));
  overflow: hidden;
  background-color: var(--color-white);
}
@media screen and (min-width: 1024px) {
  .p-cases__modal {
    padding-inline: calc(30 * var(--to-rem));
    width: 83.6538461538%;
    margin-inline: auto;
  }
}
.p-cases__modal-head {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
}
.p-cases__modal-content {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-cases__modal-name {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: calc(0.8 * var(--to-rem));
}
.p-cases__modal-title {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
}
.p-cases__modal-meta {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-cases__modal-meta {
    flex-direction: row;
    align-items: center;
    gap: calc(25 * var(--to-rem));
  }
}
.p-cases__modal-tag {
  color: var(--color-white);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: calc(0.64 * var(--to-rem));
  padding: calc(3.5 * var(--to-rem)) calc(14 * var(--to-rem));
  border-radius: calc(18 * var(--to-rem));
  background: var(--gradient-accent__main);
  width: fit-content;
}
.p-cases__modal-link {
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: calc(0.56 * var(--to-rem));
  text-decoration-line: underline;
  text-decoration-style: solid;
  transition: color var(--duration) ease;
}
@media (any-hover: hover) {
  .p-cases__modal-link:hover {
    color: var(--color-primary);
    text-decoration-line: underline;
  }
}
.p-cases__modal-boxes {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
}
.p-cases__modal-box {
  background-color: var(--color-gray);
  padding: calc(19 * var(--to-rem)) calc(26 * var(--to-rem));
  display: flex;
  flex-direction: column;
  gap: calc(15 * var(--to-rem));
  overflow: hidden;
  border-radius: calc(24 * var(--to-rem));
}
.p-cases__modal-label {
  display: flex;
  align-items: center;
  gap: calc(5 * var(--to-rem));
}
.p-cases__modal-icon {
  width: calc(31 * var(--to-rem));
  height: auto;
  aspect-ratio: 31/36;
}
.p-cases__modal-text {
  font-size: calc(20 * var(--to-rem));
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: calc(0.8 * var(--to-rem));
}
.p-cases__modal-description {
  font-size: calc(16 * var(--to-rem));
  font-style: normal;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: calc(0.64 * var(--to-rem));
}
.p-cases__bg-circle {
  position: absolute;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
}
.p-cases__bg-circle--small {
  top: calc(-79 * var(--to-rem));
  left: calc(50% + 42 * var(--to-rem));
  width: clamp(12.125rem, 10.651rem + 6.29vw, 16.313rem);
  border: clamp(0.813rem, 0.768rem + 0.19vw, 0.938rem) solid var(--color-teal);
}
@media screen and (min-width: 1024px) {
  .p-cases__bg-circle--small {
    top: calc(-125 * var(--to-rem));
    right: calc(-109 * var(--to-rem));
    left: auto;
  }
}
.p-cases__bg-circle--small.u-fade-in {
  transition: opacity 1s ease, translate 1s ease;
}
.p-cases__bg-circle--big {
  top: calc(100% - 225 * var(--to-rem));
  right: calc(50% - 27 * var(--to-rem));
  width: clamp(19.438rem, 16.951rem + 10.61vw, 26.5rem);
  border: calc(23 * var(--to-rem)) solid var(--color-blue);
}
@media screen and (min-width: 1024px) {
  .p-cases__bg-circle--big {
    top: calc(100% - 351 * var(--to-rem));
    right: auto;
    left: calc(-155 * var(--to-rem));
  }
}
.p-cases__bg-circle--big.u-fade-in {
  transition: opacity 2s ease, translate 2s ease;
}
.p-contact {
  padding-block: clamp(5rem, -5.769rem + 16.83vw, 9.375rem) clamp(5rem, 3.283rem + 7.32vw, 9.875rem);
  background: var(--gradient-accent__main);
  position: relative;
  z-index: 1;
}
.p-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-contact.webp) no-repeat center center/cover;
  z-index: -1;
  opacity: 0.2;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner {
    width: min(1164 * var(--to-rem) + 30 * var(--to-rem) * 2, 100%);
    padding-inline: calc(30 * var(--to-rem));
  }
}
@media screen and (min-width: 1024px) {
  .p-contact__head.c-section-head {
    gap: calc(24 * var(--to-rem));
  }
}
.p-contact__head .c-section-head__lead {
  font-weight: calc(16 * var(--to-rem));
}
.p-contact__contents {
  background-color: var(--color-white);
  padding: calc(60 * var(--to-rem)) clamp(0.625rem, -1.183rem + 7.72vw, 3.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 2.972rem + 2.25vw, 5rem);
  border-radius: calc(24 * var(--to-rem));
  overflow: hidden;
  width: min(600 * var(--to-rem), 100%);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-contact__contents {
    width: 100%;
    margin-inline: 0;
    padding-block-start: calc(65 * var(--to-rem));
    gap: calc(93 * var(--to-rem));
  }
}
.p-contact__head {
  align-items: center;
}
.p-contact__head .c-section-head__label-jp {
  font-size: clamp(1.75rem, 1.027rem + 3.09vw, 3rem);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: calc(1.4 * var(--to-rem));
}
.p-contact__head .c-section-head__lead {
  font-weight: var(--fw-light);
}
.p-contact__form-inner {
  display: flex;
  flex-direction: column;
  row-gap: clamp(2rem, 1.472rem + 2.25vw, 3.5rem);
}
@media screen and (min-width: 1024px) {
  .p-contact__form-inner {
    width: min(908 * var(--to-rem), 100%);
    margin-inline: auto;
  }
}
.p-contact__row {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: calc(8 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-contact__row {
    grid-template-columns: calc(280 * var(--to-rem)) 1fr;
    column-gap: clamp(3.125rem, -10.106rem + 20.67vw, 8.5rem);
  }
}
.p-contact__head {
  font-size: clamp(1.125rem, 0.993rem + 0.56vw, 1.5rem);
}
.p-contact__head span.--must {
  position: relative;
  display: inline-block;
}
.p-contact__head span.--must::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 1 * var(--to-rem));
  translate: 0 -50%;
  left: calc(100% + 16 * var(--to-rem));
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  display: inline-block;
  padding: calc(1 * var(--to-rem)) calc(7 * var(--to-rem));
  border-radius: calc(3 * var(--to-rem));
  background-color: var(--color-button-blue);
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-contact__head {
    padding-inline-start: calc(6 * var(--to-rem));
  }
}
input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  border: calc(2 * var(--to-rem)) solid var(--color-form-border);
  border-radius: calc(5 * var(--to-rem));
  width: 100%;
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--color-form-placeholder);
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: var(--fw-light);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}
textarea {
  resize: vertical;
  height: calc(125 * var(--to-rem));
}
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
.row.jc-center {
  justify-content: center;
}
.p-contact__submit {
  text-align: center;
  margin-block-start: calc(16 * var(--to-rem));
  /* Contact Form 7 の .wpcf7-form-control も含め、実際の submit 要素は親 .c-button の中で
     余計な装飾を持たないようにする（オレンジのボタンは .c-button 側で表現） */
}
.p-contact__submit input[type=submit],
.p-contact__submit .wpcf7-form-control.wpcf7-submit {
  display: inline-block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.p-contact__submit.c-button {
  width: min(280 * var(--to-rem), 100%);
  padding-block: calc(12 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
  font-size: clamp(1rem, 0.846rem + 0.66vw, 1.438rem);
  border-radius: calc(40 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-contact__submit.c-button {
    width: min(400 * var(--to-rem), 100%);
    padding-block: calc(14 * var(--to-rem));
    padding-inline: calc(40 * var(--to-rem));
  }
}
.wpcf7-response-output,
.wpcf7-spinner {
  display: none;
}
.p-cta {
  padding-block: clamp(3.75rem, 1.769rem + 8.45vw, 9.375rem) clamp(2.125rem, -0.428rem + 10.89vw, 9.375rem);
  background: var(--gradient-accent__cta);
  position: relative;
}
.p-cta::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.p-cta.is-bg-pattern-a::before {
  background-image: var(--cta-bg-image, url(../images/cta-bg__1.webp));
}
.p-cta.is-bg-pattern-b::before {
  background-image: var(--cta-bg-image, url(../images/cta-bg__2.webp));
}
.p-cta .c-button {
  display: block;
  font-size: clamp(1.25rem, 1.184rem + 0.28vw, 1.438rem);
  line-height: 1.5;
  letter-spacing: calc(1 * var(--to-rem));
  padding: calc(13 * var(--to-rem)) calc(30 * var(--to-rem));
  border-radius: calc(40 * var(--to-rem));
  width: clamp(21.563rem, 20.352rem + 5.16vw, 25rem);
  max-width: calc(400 * var(--to-rem));
  margin-inline: auto;
}
.p-cta__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.p-cta__title {
  color: var(--color-white);
  font-size: clamp(1.75rem, 1.31rem + 1.88vw, 3rem);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: calc(1.4 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-cta__title {
    letter-spacing: normal;
  }
}
.p-cta__text {
  color: var(--color-white);
  margin-block-start: calc(24 * var(--to-rem));
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-cta__text br {
    display: none;
  }
}
.p-cta__btn {
  margin-block-start: calc(40 * var(--to-rem));
}
@media screen and (min-width: 1280px) {
  .p-cta__btn {
    width: 39.0625%;
  }
}
.p-error {
  padding-block: calc(60 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-error {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-error__header {
  margin-block-end: calc(24 * var(--to-rem));
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-error__header {
    margin-block-end: calc(32 * var(--to-rem));
  }
}
.p-error__title {
  color: var(--color-text);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-error__title {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-error__content {
  max-width: calc(640 * var(--to-rem));
  margin-inline: auto;
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-error__content {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-error__content p + p {
  margin-block-start: calc(24 * var(--to-rem));
}
.p-faq {
  padding-block-end: clamp(5rem, 3.46rem + 6.57vw, 9.375rem);
}
@media screen and (min-width: 1024px) {
  .p-faq {
    padding-block-start: clamp(3.75rem, -2.404rem + 9.62vw, 6.25rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-faq__inner {
    width: min(1380 * var(--to-rem) + 30 * var(--to-rem) * 2, 100%);
  }
}
.p-faq__head.c-section-head {
  gap: clamp(0.75rem, 0.662rem + 0.38vw, 1rem);
}
@media screen and (min-width: 1024px) {
  .p-faq__head .c-section-head__title {
    gap: calc(14 * var(--to-rem));
  }
}
.p-faq__head .c-section-head__lead {
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
}
.p-faq__contents {
  display: flex;
  flex-direction: column;
  gap: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
  padding: clamp(3.75rem, 3.398rem + 1.5vw, 4.75rem) clamp(0.969rem, 0.21rem + 3.24vw, 3.125rem);
  background-color: var(--color-gray);
  border-radius: calc(45 * var(--to-rem));
  padding-block-start: clamp(4.313rem, 4.18rem + 0.56vw, 4.688rem);
}
.p-faq__head .c-section-head__label-en {
  font-size: clamp(3.125rem, -6.875rem + 15.63vw, 7.188rem);
}
/* 5個目は border-bottom を付けない（6件目以降ブロックの境目） */
.p-faq__list > .p-faq__item:nth-of-type(5) {
  border-bottom: none;
}
/* 6件目以降：grid で高さをアニメーション（スムーズに展開） */
.p-faq__more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration) ease;
}
.p-faq__list.is-open .p-faq__more {
  grid-template-rows: 1fr;
}
.p-faq__more-inner {
  overflow: hidden;
  min-height: 0;
  /* 6件目以降を1ブロックとして表示：上線はここで1本だけ */
  border-top: calc(1 * var(--to-rem)) solid var(--color-green);
}
/* 6件目以降の先頭の item は border-top を出さない（.p-faq__more-inner の上線で代用） */
.p-faq__more .p-faq__item:first-of-type {
  border-top: none;
}
.p-faq__item {
  padding-block: calc(23 * var(--to-rem)) calc(30 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-faq__item {
    display: flex;
    align-items: flex-start;
    gap: calc(64 * var(--to-rem));
    padding-block-end: calc(60 * var(--to-rem));
  }
}
.js-summary {
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .js-summary {
    pointer-events: none;
    cursor: default;
    flex: 0 0 clamp(18.75rem, -12.019rem + 48.08vw, 31.25rem);
  }
}
.p-faq__item-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline-end: calc(18 * var(--to-rem));
}
@media screen and (min-width: 1280px) {
  .p-faq__item-question {
    padding-inline-end: 0;
  }
}
.p-faq__item-question-text {
  color: var(--color-black);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-faq__item-question-text {
    font-weight: var(--fw-bold);
  }
}
.p-faq__item-question-icon {
  width: calc(18 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  transition: rotate var(--duration) ease;
  transform-origin: center;
}
@media screen and (min-width: 1024px) {
  .p-faq__item-question-icon {
    display: none;
  }
}
/* FAQ アコーディオン：SP時は閉じた状態、PC時は常に表示（Flow と同様） */
.p-faq__list .js-content {
  transition: height var(--duration) ease, opacity var(--duration) ease;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-faq__list .js-content {
    height: auto !important;
    opacity: 1 !important;
    overflow: visible;
    flex: 1 1 auto;
  }
}
@media (max-width: calc(1023 * var(--to-rem))) {
  .p-faq__list .p-faq__item.is-opened .js-content {
    opacity: 1;
  }
}
.p-faq__item-answer {
  margin-block: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-faq__item-answer {
    margin-block: 0;
  }
}
.p-faq__item-answer-text {
  color: var(--color-black);
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  line-height: 1.5;
}
details.p-faq__item {
  border-bottom: calc(1 * var(--to-rem)) solid var(--color-green);
}
details.p-faq__item:first-of-type {
  border-top: calc(1 * var(--to-rem)) solid var(--color-green);
}
@media (any-hover: hover) {
  details.p-faq__item:hover {
    cursor: pointer;
  }
}
summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
.p-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-faq__answer {
  display: block;
}
.p-faq__btn {
  text-align: center;
}
.p-faq__btn .c-button {
  width: calc(300 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  border: calc(2 * var(--to-rem)) solid #3693B3;
  padding-block: calc(12 * var(--to-rem));
  border-radius: calc(26 * var(--to-rem));
}
.p-faq__btn .js-faq-btn-text {
  display: inline-block;
  transition: opacity var(--duration) ease;
}
.p-faq__btn .js-faq-btn-text.is-changing {
  opacity: 0;
}
.p-faq__item.is-opened .p-faq__item-question-icon {
  rotate: 180deg;
}
.p-flow {
  padding-block: clamp(5rem, 2.359rem + 11.27vw, 12.5rem) clamp(4.063rem, 3.6rem + 1.97vw, 5.375rem);
  position: relative;
  overflow: hidden;
}
.p-flow__inner {
  padding-inline: calc(24 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-flow__inner {
    padding-inline: calc(30 * var(--to-rem));
  }
}
.p-flow__head.c-section-head {
  gap: clamp(0.75rem, 0.574rem + 0.75vw, 1.25rem);
}
.p-flow__bg-circle {
  position: absolute;
  top: calc(-251 * var(--to-rem));
  right: calc(50% - 121 * var(--to-rem));
  width: calc(1301 * var(--to-rem));
  height: auto;
  aspect-ratio: 1301/1314;
  border-radius: 50%;
  overflow: hidden;
  z-index: -1;
  isolation: isolate;
}
@media screen and (min-width: 1024px) {
  .p-flow__bg-circle {
    width: calc(1207 * var(--to-rem));
    top: calc(-91 * var(--to-rem));
    right: calc(50% + 100 * var(--to-rem));
  }
}
.p-flow__bg-circle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.3;
  /* --- 【A】フォールバック（古い端末用） --- */
  border: calc(27.5 * var(--to-rem)) solid var(--color-primary);
  background-color: var(--color-white);
  /* --- 【B】モダンブラウザ用（グラデーション/安定描画） --- */
}
@supports (background-clip: border-box) {
  .p-flow__bg-circle::before {
    border: calc(27.5 * var(--to-rem)) solid transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)), var(--gradient-accent__main);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__bg-circle::before {
    opacity: 1;
  }
}
.p-flow__content {
  display: flex;
  flex-direction: column;
  gap: calc(28 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-flow__content {
    flex-direction: row;
    gap: calc(40 * var(--to-rem));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__head {
    flex: 0 0 clamp(21.875rem, 1.567rem + 31.73vw, 30.125rem);
    transform: translate(calc(16 * var(--to-rem)), calc(51 * var(--to-rem)));
  }
}
.p-flow__head .c-section-head__label-en {
  font-size: clamp(3.125rem, 1.695rem + 6.1vw, 7.188rem);
}
.p-flow__head .c-section-head__lead {
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-flow__head .c-section-head__lead {
    font-weight: var(--fw-semibold);
  }
}
.p-flow__list {
  display: flex;
  flex-direction: column;
  gap: calc(30 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-flow__list {
    gap: 0;
  }
}
.p-flow__item {
  border: none;
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(1) {
    transform: translateX(clamp(0.813rem, 0.702rem + 0.47vw, 1.125rem));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(1) .p-flow__item-name {
    transform: translateY(calc(-13 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(1) .p-flow__item-text {
    transform: translateY(calc(-20 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(2) {
    margin-block-start: calc(116 * var(--to-rem));
    transform: translateX(calc(55 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(2) .p-flow__item-name {
    transform: translateY(calc(-13 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(2) .p-flow__item-text {
    transform: translateY(calc(-22 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(3) {
    margin-block-start: calc(105 * var(--to-rem));
    transform: translateX(calc(-20 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(3) .p-flow__item-name {
    transform: translateY(calc(-13 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(3) .p-flow__item-text {
    transform: translateY(calc(-21 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(4) {
    margin-block-start: calc(58 * var(--to-rem));
    transform: translateX(calc(-223 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(4) .p-flow__item-name {
    transform: translateY(calc(-13 * var(--to-rem)));
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:nth-of-type(4) .p-flow__item-text {
    transform: translateY(calc(-22 * var(--to-rem)));
  }
}
/* ==============================================
   アコーディオン関連（details, summary, 制御）
   ============================================== */
details summary {
  display: block;
}
details summary::-webkit-details-marker {
  display: none;
}
.js-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .js-summary {
    pointer-events: none;
    cursor: default;
  }
}
.p-flow__item-head {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-flow__item-head {
    gap: calc(44 * var(--to-rem));
  }
}
.p-flow__item-number {
  color: var(--color-green);
  font-size: clamp(2.813rem, 2.372rem + 1.88vw, 4.063rem);
  font-weight: var(--fw-light);
  line-height: 1.2;
}
.p-flow__item-name {
  color: var(--color-black);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .p-flow__item-name {
    font-weight: var(--fw-bold);
  }
}
/* Flow 内の .js-content のみ制御（FAQ は別） */
.p-flow__list .js-content {
  transition: height var(--duration) ease, opacity var(--duration) ease;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-flow__list .js-content {
    height: auto !important;
    opacity: 1 !important;
    overflow: visible;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item.is-opened .js-content {
    opacity: 1;
  }
}
.p-flow__item-answer {
  margin-block-start: calc(16 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-flow__item-answer {
    margin-block-start: 0;
  }
}
.p-flow__item-text {
  color: var(--color-black);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-light);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-flow__item-text {
    margin-inline-start: calc(116 * var(--to-rem));
    width: 69.2612137203%;
  }
}
.p-flow__item-icon {
  display: block;
  width: calc(20 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform-origin: center;
}
@media screen and (min-width: 1024px) {
  .p-flow__item-icon {
    display: none;
  }
}
.p-flow__item.is-opened .p-flow__item-icon {
  transform: rotate(180deg);
}
.p-footer {
  padding-block: clamp(2.5rem, 1.62rem + 3.76vw, 5rem);
  padding-inline: clamp(0.75rem, -18.25rem + 23.75vw, 3.125rem);
  background-color: var(--color-background-footer);
}
.p-footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 1.282rem + 4.13vw, 5rem);
}
.p-footer__head {
  display: flex;
  flex-direction: column;
  gap: calc(36 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-footer__head {
    flex-direction: row;
    align-items: center;
    gap: calc(60 * var(--to-rem));
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__head {
    gap: calc(100 * var(--to-rem));
  }
}
@media screen and (min-width: 1280px) {
  .p-footer__head {
    gap: clamp(10rem, -15rem + 31.25vw, 13.125rem);
  }
}
.p-footer__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-footer__info {
    flex: 0 0 calc(260 * var(--to-rem));
  }
}
.p-footer__logo {
  width: 100%;
  max-width: calc(54 * var(--to-rem));
  transition: opacity var(--duration) ease;
}
.p-footer__logo a {
  width: 100%;
  height: 100%;
  display: block;
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .p-footer__logo:hover {
    opacity: 0.6;
  }
}
.p-footer__contact {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}
.p-footer__address {
  font-size: clamp(0.688rem, 0.621rem + 0.28vw, 0.875rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: calc(0.4 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    letter-spacing: 0;
  }
}
.p-footer__tel {
  font-size: clamp(0.688rem, 0.621rem + 0.28vw, 0.875rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: calc(0.4 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-footer__tel {
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    flex: 1 1 auto;
  }
}
.p-footer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.p-footer__nav-item a {
  display: block;
  color: var(--color-white);
  font-size: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  text-decoration: none;
  transition: opacity var(--duration) ease;
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    opacity: 0.6;
  }
}
.p-footer__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 0.736rem + 1.13vw, 1.75rem);
  padding-block-start: calc(32 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-footer__body {
    flex-direction: row;
    justify-content: center;
  }
}
.p-footer__sns-list {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
}
.p-footer__sns-item {
  width: calc(30 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  transition: opacity var(--duration) ease;
}
.p-footer__sns-item img {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .p-footer__sns-item:hover {
    opacity: 0.6;
  }
}
.p-footer__copyright {
  color: var(--color-white);
  font-size: clamp(0.625rem, 0.537rem + 0.38vw, 0.875rem);
  line-height: 1.5;
}
/* --- 1. アニメーションの定義（必ずどこかに記述） --- */
@keyframes rotate-centered {
  0% {
    /* 中央配置を維持しつつ 0度から */
    transform: translate(-50%, -50%) rotate(0deg) translateZ(0);
  }
  100% {
    /* 中央配置を維持しつつ 360度まで */
    transform: translate(-50%, -50%) rotate(360deg) translateZ(0);
  }
}
@keyframes rotate-o {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-fv {
  position: relative;
  overflow: hidden;
  padding-block: calc(80 * var(--to-rem));
  background: var(--color-fv-bg);
  /* 中央を白い円で抜く（参考画像の中央エリア） */
}
.p-fv::before {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: 0;
  background: linear-gradient(115deg, var(--color-fv-gradient-from) 8.38%, var(--color-fv-gradient-mid1) 38.07%, var(--color-fv-gradient-mid2) 71.23%, var(--color-fv-gradient-to) 94.14%);
  filter: blur(50px);
}
.p-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 160% 84% at 50% 50%, var(--color-white) 0%, var(--color-white) 26%, var(--color-white-98) 36%, var(--color-white-92) 44%, var(--color-white-82) 52%, var(--color-white-55) 62%, var(--color-white-25) 72%, transparent 78%);
}
@media screen and (min-width: 1024px) {
  .p-fv {
    padding-block-end: calc(73 * var(--to-rem));
  }
}
.p-fv__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(28rem, 50vw, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--padding-inner);
}
/* 背景のリング */
/* --- 3. 背景のリング --- */
.p-fv__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 最初から中央配置とGPU加速を合体 */
  transform: translate(-50%, -50%) translateZ(0);
  width: clamp(31.25rem, 18.838rem + 52.96vw, 66.5rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  isolation: isolate;
  will-change: transform, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* 回転アニメーションの適用 */
  /* 左上の太いグラデーションリング */
  /* 【追加】右下の細い枠線リング */
}
.p-fv__ring.u-rotate {
  animation: rotate-centered var(--rotate-speed, 20s) linear infinite;
}
.p-fv__ring.p-fv__ring--tl {
  filter: drop-shadow(0 0 100px var(--color-white));
}
.p-fv__ring.p-fv__ring--tl::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: clamp(0.75rem, 0.552rem + 0.85vw, 1.313rem) solid var(--color-primary);
  background-color: var(--color-white);
}
@supports (background-clip: border-box) {
  .p-fv__ring.p-fv__ring--tl::before {
    border: clamp(0.75rem, 0.552rem + 0.85vw, 1.313rem) solid transparent;
    background-color: transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)), var(--gradient-accent__main);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
  }
}
.p-fv__ring.p-fv__ring--br {
  width: clamp(32.5rem, 19.34rem + 56.15vw, 69.875rem);
  background-color: transparent;
  border: clamp(0.125rem, 0.059rem + 0.28vw, 0.313rem) solid var(--color-fv-border);
  /* 念のため ::before 等をリセット */
}
.p-fv__ring.p-fv__ring--br::before {
  display: none;
}
.p-fv__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  margin-block-start: calc(32 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-fv__body {
    align-items: center;
    margin-block-start: 0;
  }
}
.p-fv__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, -0.042rem + 3.38vw, 3rem);
}
.p-fv__copy-line {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fv-font-family);
  font-size: clamp(3.5rem, 2.268rem + 5.26vw, 7rem);
  font-weight: var(--fw-light);
  color: var(--color-text);
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: calc(1.46 * var(--to-rem));
}
.p-fv__copy-line:nth-child(1) .p-fv__copy-o-circle {
  --rotate-speed: 10s;
}
.p-fv__copy-line:nth-child(2) .p-fv__copy-o-circle {
  --rotate-speed: 12s;
}
/* 「One」の O 部分 */
.p-fv__copy-o-circle {
  display: inline-block;
  width: clamp(4.938rem, 3.573rem + 5.82vw, 8.813rem);
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  vertical-align: middle;
  margin-inline-end: 0.05em;
  animation-name: rotate-o;
  animation-duration: var(--rotate-speed, 10s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  isolation: isolate;
  /* --- 【A】フォールバック（iOS Safariの古いバージョンや古いAndroid用） --- */
  border: clamp(0.625rem, 0.449rem + 0.75vw, 1.125rem) solid var(--color-primary);
  background-color: var(--color-white);
  /* --- 【B】モダンブラウザ用（グラデーションリング） --- */
}
@supports (background-clip: border-box) {
  .p-fv__copy-o-circle {
    border: clamp(0.625rem, 0.449rem + 0.75vw, 1.125rem) solid transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)), var(--gradient-accent__main);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
  }
}
.p-fv__copy-left {
  translate: clamp(1.25rem, 0.81rem + 1.88vw, 2.5rem) 0;
  display: inline-block;
  vertical-align: baseline;
}
.p-fv__action {
  margin-block-start: clamp(1rem, -0.408rem + 6.01vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 0.164rem + 3.57vw, 3.375rem);
}
@media screen and (min-width: 1024px) {
  .p-fv__action {
    flex-direction: row;
    translate: 19% 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-fv__action {
    flex-direction: row;
    translate: 18% 0;
  }
}
.p-fv__tagline {
  text-align: left;
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-text);
}
.p-fv__tagline .p-fv__tagline-line2 {
  font-weight: var(--fw-medium);
}
.p-fv__tagline .p-fv__tagline-accent {
  color: var(--color-green);
}
@media screen and (min-width: 1024px) {
  .p-fv__btn .c-button {
    padding: calc(16 * var(--to-rem)) calc(40 * var(--to-rem));
    font-size: calc(20 * var(--to-rem));
    letter-spacing: calc(2 * var(--to-rem));
    width: clamp(16.25rem, 7.635rem + 13.46vw, 19.75rem);
    border-radius: calc(33 * var(--to-rem));
  }
}
.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: var(--header-height);
  transition: background-color var(--duration) ease;
  background-color: var(--color-white);
}
.home .p-header, .front-page .p-header {
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-header {
    --header-height: calc(72 * var(--to-rem));
  }
}
.p-header.is-active {
  background-color: var(--color-header-bg);
}
.p-header.is-scrolled {
  background-color: oklch(from var(--color-white) l c h/50%);
  backdrop-filter: blur(10px);
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-inline: clamp(1.25rem, -0.07rem + 5.63vw, 5rem);
  position: relative;
}
.p-header__logo {
  width: 100%;
  height: var(--header-height);
  max-width: calc(35 * var(--to-rem));
  transition: opacity var(--duration) ease;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: calc(50 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-header__logo:hover {
    opacity: 0.6;
  }
}
.p-header__logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-header__nav {
  position: relative;
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    display: block;
  }
}
.p-header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}
.p-header__nav-item {
  height: inherit;
}
.p-header__nav-item.p-header__nav-item--contact {
  display: flex;
  align-items: center;
  margin-inline-start: calc(15 * var(--to-rem));
}
.p-header__nav-item > a {
  display: flex;
  align-items: center;
  height: inherit;
  color: var(--color-primary-dark);
  padding: calc(12 * var(--to-rem)) calc(20 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-light);
  letter-spacing: calc(0.8 * var(--to-rem));
  transition: opacity var(--duration) ease;
}
@media (any-hover: hover) {
  .p-header__nav-item > a:hover {
    opacity: 0.6;
  }
}
.p-header__nav-link {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav-link {
    display: block;
  }
}
.p-header__nav-link .c-button {
  width: 159px;
}
.p-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(30 * var(--to-rem));
  height: calc(22 * var(--to-rem));
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}
.p-header__hamburger span {
  width: 100%;
  height: 4px;
  background-color: var(--color-drawer-bg);
  transition: height calc(var(--duration)), translate calc(var(--duration)), opacity calc(var(--duration));
}
.p-header__hamburger.is-open span {
  height: calc(2 * var(--to-rem));
}
.p-header__hamburger.is-open span:nth-of-type(1) {
  translate: 0 calc(10 * var(--to-rem));
  rotate: 45deg;
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.is-open span:nth-of-type(3) {
  translate: 0 calc(-10 * var(--to-rem));
  rotate: -45deg;
}
.p-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow-y: scroll;
  width: 100%;
  height: 100svh;
  margin-block-start: calc(60 * var(--to-rem));
  padding-block-end: calc(110 * var(--to-rem));
  background-color: var(--color-header-bg);
  scrollbar-width: none;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}
.p-header__drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: calc(52 * var(--to-rem));
}
.p-header__drawer-item > a {
  display: block;
  color: var(--color-primary-dark);
  padding: calc(28 * var(--to-rem)) calc(20 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-light);
  letter-spacing: calc(0.8 * var(--to-rem));
  cursor: pointer;
  transition: opacity var(--duration) ease;
  text-align: center;
}
@media (any-hover: hover) {
  .p-header__drawer-item > a:hover {
    opacity: 0.6;
  }
}
.p-header__drawer-link {
  margin-block-start: calc(44 * var(--to-rem));
}
.p-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--color-white);
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  margin: 0 !important;
}
.p-loading__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
/* 1・2枚目の円 */
.p-loading__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(12.5rem, 8.099rem + 18.78vw, 25rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: visible;
  z-index: 5;
  will-change: transform, opacity;
  isolation: isolate;
  /* 2枚目の個別上書き（ここも構造を統一） */
}
.p-loading__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* --- 【A】フォールバック --- */
  border: calc(10 * var(--to-rem)) solid var(--color-primary);
  background-color: var(--color-white);
  /* --- 【B】モダンブラウザ用（3枚目と全く同じ書き方に修正） --- */
}
@supports (background-clip: border-box) {
  .p-loading__circle::before {
    border: calc(10 * var(--to-rem)) solid transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)), var(--gradient-accent__main);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
  }
}
.p-loading__circle:nth-of-type(2)::before {
  /* フォールバック用単色 */
  border-color: var(--color-teal);
}
@supports (background-clip: border-box) {
  .p-loading__circle:nth-of-type(2)::before {
    border: calc(10 * var(--to-rem)) solid transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)), var(--gradient-accent__sub);
  }
}
/* 3枚目の巨大円（最後に出現）：修正版 */
.p-loading__circle-final {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(31.25rem, 18.838rem + 52.96vw, 66.5rem);
  height: auto;
  aspect-ratio: 1;
  z-index: 1;
  scale: 1.2;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
  isolation: isolate;
}
.p-loading__circle-final::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* --- 【A】フォールバック --- */
  border: clamp(0.625rem, 0.449rem + 0.75vw, 1.125rem) solid var(--color-primary);
  background-color: var(--color-white);
  /* --- 【B】モダンブラウザ用 --- */
}
@supports (background-clip: border-box) {
  .p-loading__circle-final::before {
    border: clamp(0.625rem, 0.449rem + 0.75vw, 1.125rem) solid transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)), var(--gradient-accent__main);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
  }
}
/* テキスト */
.p-loading__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, -0.042rem + 3.38vw, 3rem);
}
.p-loading__text {
  opacity: 0;
  visibility: hidden;
  font-family: var(--fv-font-family);
  font-size: clamp(3.5rem, 2.268rem + 5.26vw, 7rem);
  font-weight: var(--fw-light);
  color: var(--color-text);
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: calc(1.46 * var(--to-rem));
}
.p-loading__text .char {
  display: inline-block;
  opacity: 0;
}
.p-loading__text .char.is-first {
  color: var(--color-blue);
}
.p-loading__text-o-circle {
  display: inline-block;
  width: clamp(4.938rem, 3.573rem + 5.82vw, 8.813rem);
  aspect-ratio: 1;
  height: auto;
  position: relative;
  vertical-align: middle;
  margin-right: 0.1em;
  opacity: 0;
  border-radius: 50%;
  isolation: isolate;
  /* --- 【A】フォールバック（古い端末用） --- */
  border: clamp(0.625rem, 0.449rem + 0.75vw, 1.125rem) solid var(--color-primary);
  background-color: var(--color-white);
  /* --- 【B】モダンブラウザ用（グラデーション上書き） --- */
}
@supports (background-clip: border-box) {
  .p-loading__text-o-circle {
    border: clamp(0.625rem, 0.449rem + 0.75vw, 1.125rem) solid transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)), var(--gradient-accent__main);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
  }
}
.p-news-list {
  background-color: var(--color-gray);
  padding-block-end: clamp(5rem, 3.46rem + 6.57vw, 9.375rem);
}
.p-news-list__hero {
  height: clamp(16.188rem, 12.094rem + 17.46vw, 27.813rem);
  background-image: url(../images/bg-lower__top-sp.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .p-news-list__hero {
    background-image: url(../images/bg-lower__top-pc.webp);
  }
}
.p-news-list__head {
  align-items: flex-start;
  width: clamp(15.625rem, 4.621rem + 46.95vw, 46.875rem);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-news-list__head {
    align-items: center;
  }
}
.p-news-list__head .c-section-head__title {
  align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .p-news-list__head .c-section-head__title {
    align-items: center;
  }
}
.p-news-list__body {
  margin-block-start: calc(130 * var(--to-rem));
}
.p-news-list__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
  padding-inline: calc(30 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-news-list__inner {
    width: min(1312 * var(--to-rem) + 30 * var(--to-rem) * 2, 100%);
    margin-inline: auto;
  }
}
.p-news-list__container {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
}
.p-news-list__item {
  display: block;
  color: inherit;
  text-decoration: none;
  padding-block-end: calc(60 * var(--to-rem));
  border-bottom: calc(1 * var(--to-rem)) solid var(--color-primary);
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .p-news-list__item {
    padding-block-end: calc(20 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-news-list__item:hover {
    background-color: oklch(from var(--color-gray) l c h/50%);
  }
  .p-news-list__item:hover .p-news-list__title {
    color: var(--color-primary);
  }
  .p-news-list__item:hover .p-news-list__wrapper {
    grid-template-rows: 1fr;
  }
  .p-news-list__item:hover .p-news-list__excerpt {
    opacity: 1;
    transform: translateY(0);
    padding-block-start: calc(40 * var(--to-rem));
  }
}
@media screen and (any-hover: hover) and (min-width: 1024px) {
  .p-news-list__item:hover .p-news-list__excerpt {
    padding-block-start: calc(24 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-news-list__item:hover .p-news-list__header::before {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media screen and (any-hover: hover) and (min-width: 1024px) {
  .p-news-list__item:hover .p-news-list__header::before {
    transform: translate(calc(10 * var(--to-rem)), 0) rotate(-90deg);
  }
}
.p-news-list__header {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  position: relative;
  padding-inline-end: calc(60 * var(--to-rem));
}
.p-news-list__header::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(16 * var(--to-rem));
  background-image: url("data:image/svg+xml,%3csvg%20width='16'%20height='11'%20viewBox='0%200%2016%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.5%200.5L7.75788%2010.5L0.5%200.511719'%20stroke='%231E6FBD'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: calc(20 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  transition: transform var(--duration) ease;
}
@media screen and (min-width: 1024px) {
  .p-news-list__header {
    flex-direction: row;
    align-items: center;
    gap: calc(24 * var(--to-rem));
  }
  .p-news-list__header::before {
    top: calc(100% + 24 * var(--to-rem));
    transform: translateY(0) rotate(-90deg);
  }
}
.p-news-list__date {
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-news-list__date {
    font-weight: var(--fw-semibold);
  }
}
.p-news-list__title {
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
  transition: color var(--duration);
}
@media screen and (min-width: 1024px) {
  .p-news-list__title {
    font-weight: var(--fw-semibold);
  }
}
.p-news-list__wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows var(--duration) ease;
}
@media screen and (min-width: 1024px) {
  .p-news-list__wrapper {
    grid-template-rows: 1fr;
  }
}
.p-news-list__excerpt {
  min-height: 0;
  opacity: 0;
  transform: translateY(calc(-20 * var(--to-rem)));
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-light);
  line-height: 1.6;
  transition: opacity var(--duration) ease, transform var(--duration) ease, padding-block-start var(--duration) ease;
}
@media screen and (min-width: 1024px) {
  .p-news-list__excerpt {
    min-height: auto;
    opacity: 1;
    transform: translateY(0);
    padding-block-start: calc(24 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-news-list__card {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  padding: calc(24 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-news-list__card {
    gap: calc(12 * var(--to-rem));
    padding: calc(32 * var(--to-rem));
  }
}
.p-news-list__card .p-news-list__title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-news-list__card .p-news-list__title {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-news-list__meta {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  color: var(--color-border-gray);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-news-list__meta {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-news-list__separator {
  color: var(--color-border-gray);
}
.p-news-list__content {
  display: flex;
  gap: calc(16 * var(--to-rem));
  justify-content: space-between;
  align-items: center;
}
.p-news-list__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-news-list__arrow {
  flex-shrink: 0;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  color: var(--color-border-gray);
  transition: color 0.2s ease, transform 0.2s ease;
}
.p-news-list__arrow svg {
  width: 100%;
  height: 100%;
}
.p-news-list__item:hover .p-news-list__arrow {
  color: var(--color-text);
  transform: translateX(calc(4 * var(--to-rem)));
}
.p-news-list__empty {
  padding: calc(60 * var(--to-rem));
  border-radius: calc(10 * var(--to-rem));
  box-shadow: 0 calc(1 * var(--to-rem)) calc(3 * var(--to-rem)) oklch(from var(--color-black) l c h/10%), 0 calc(1 * var(--to-rem)) calc(2 * var(--to-rem)) oklch(from var(--color-black) l c h/10%);
  background-color: var(--color-white);
  color: var(--color-border-gray);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
.p-news-list__empty p {
  margin: 0;
}
.p-news-list__pagination {
  margin-block-start: clamp(4rem, 3.208rem + 3.38vw, 6.25rem);
}
.p-news-list__pagination .c-pagination {
  --_pagination-bg: var(--color-white);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-primary);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-primary);
  --_pagination-border-hover: var(--color-text);
}
.p-news-top {
  padding-block: calc(20 * var(--to-rem)) calc(12 * var(--to-rem));
  box-shadow: 0 calc(5 * var(--to-rem)) calc(17 * var(--to-rem)) 0 var(--color-gray-border);
}
@media screen and (min-width: 768px) {
  .p-news-top__inner {
    position: relative;
  }
}
.p-news-top__contents {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-news-top__contents {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.p-news-top__head .c-section-head__label-en {
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
}
.p-news-top__link {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--to-rem));
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  position: relative;
  padding-inline-end: calc(18 * var(--to-rem));
  transition: color var(--duration) ease;
  color: var(--color-green);
}
@media screen and (min-width: 768px) {
  .p-news-top__link {
    padding-inline-end: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-news-top__link::before, .p-news-top__link::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 1 * var(--to-rem));
  transform: translateY(-50%);
  right: calc(-13 * var(--to-rem));
  width: calc(35 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  transition: opacity var(--duration) ease, translate var(--duration) ease;
}
@media screen and (min-width: 768px) {
  .p-news-top__link::before, .p-news-top__link::after {
    display: none;
  }
}
.p-news-top__link::before {
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.38672%206.67285C9.48754%206.67285%209.56452%206.70326%209.64258%206.78125L14.5869%2011.7256C14.6408%2011.7795%2014.666%2011.8215%2014.6777%2011.8496V11.8506C14.6925%2011.8861%2014.7012%2011.9259%2014.7012%2011.9746C14.7012%2012.0233%2014.6925%2012.0631%2014.6777%2012.0986V12.0996C14.666%2012.1277%2014.6408%2012.1697%2014.5869%2012.2236L9.61816%2017.1924C9.54039%2017.2702%209.47325%2017.292%209.39258%2017.2891C9.29855%2017.2856%209.21769%2017.2537%209.13184%2017.168C9.05371%2017.0898%209.02246%2017.013%209.02246%2016.9121C9.02246%2016.8112%209.05371%2016.7344%209.13184%2016.6562L13.8135%2011.9746L9.10645%207.26758C9.02878%207.18988%209.00684%207.12357%209.00977%207.04297C9.01321%206.9487%209.04578%206.86731%209.13184%206.78125C9.20976%206.70344%209.28613%206.67293%209.38672%206.67285Z'%20fill='%2332899A'%20stroke='%2332899A'/%3e%3c/svg%3e");
}
.p-news-top__link::after {
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.38672%206.67285C9.48754%206.67285%209.56452%206.70326%209.64258%206.78125L14.5869%2011.7256C14.6408%2011.7795%2014.666%2011.8215%2014.6777%2011.8496V11.8506C14.6925%2011.8861%2014.7012%2011.9259%2014.7012%2011.9746C14.7012%2012.0233%2014.6925%2012.0631%2014.6777%2012.0986V12.0996C14.666%2012.1277%2014.6408%2012.1697%2014.5869%2012.2236L9.61816%2017.1924C9.54039%2017.2702%209.47325%2017.292%209.39258%2017.2891C9.29855%2017.2856%209.21769%2017.2537%209.13184%2017.168C9.05371%2017.0898%209.02246%2017.013%209.02246%2016.9121C9.02246%2016.8112%209.05371%2016.7344%209.13184%2016.6562L13.8135%2011.9746L9.10645%207.26758C9.02878%207.18988%209.00684%207.12357%209.00977%207.04297C9.01321%206.9487%209.04578%206.86731%209.13184%206.78125C9.20976%206.70344%209.28613%206.67293%209.38672%206.67285Z'%20fill='%231E6FBD'%20stroke='%231E6FBD'/%3e%3c/svg%3e");
  opacity: 0;
}
@media (any-hover: hover) {
  .p-news-top__link:hover {
    color: var(--color-primary);
  }
  .p-news-top__link:hover .p-news-top__link::before, .p-news-top__link:hover .p-news-top__link::after {
    translate: calc(8 * var(--to-rem)) 0;
  }
  .p-news-top__link:hover .p-news-top__link::before {
    opacity: 0;
  }
  .p-news-top__link:hover .p-news-top__link::after {
    opacity: 1;
  }
}
.p-news-top__date {
  flex: 0 0 auto;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
.p-news-top__title {
  flex: 1 1 auto;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-weight: var(--fw-regular);
}
.p-news-top__more {
  display: none;
  position: relative;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  padding-inline-end: clamp(1.125rem, 0.861rem + 1.13vw, 1.875rem);
  transition: color var(--duration) ease;
  color: var(--color-green);
  cursor: pointer;
}
.p-news-top__more::before, .p-news-top__more::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 1 * var(--to-rem));
  transform: translateY(-50%);
  right: 0;
  width: clamp(1.25rem, 0.92rem + 1.41vw, 2.188rem);
  height: auto;
  aspect-ratio: 1;
  transition: opacity var(--duration) ease, translate var(--duration) ease;
  display: none;
}
.p-news-top__more::before {
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.38672%206.67285C9.48754%206.67285%209.56452%206.70326%209.64258%206.78125L14.5869%2011.7256C14.6408%2011.7795%2014.666%2011.8215%2014.6777%2011.8496V11.8506C14.6925%2011.8861%2014.7012%2011.9259%2014.7012%2011.9746C14.7012%2012.0233%2014.6925%2012.0631%2014.6777%2012.0986V12.0996C14.666%2012.1277%2014.6408%2012.1697%2014.5869%2012.2236L9.61816%2017.1924C9.54039%2017.2702%209.47325%2017.292%209.39258%2017.2891C9.29855%2017.2856%209.21769%2017.2537%209.13184%2017.168C9.05371%2017.0898%209.02246%2017.013%209.02246%2016.9121C9.02246%2016.8112%209.05371%2016.7344%209.13184%2016.6562L13.8135%2011.9746L9.10645%207.26758C9.02878%207.18988%209.00684%207.12357%209.00977%207.04297C9.01321%206.9487%209.04578%206.86731%209.13184%206.78125C9.20976%206.70344%209.28613%206.67293%209.38672%206.67285Z'%20fill='%2332899A'%20stroke='%2332899A'/%3e%3c/svg%3e");
}
.p-news-top__more::after {
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.38672%206.67285C9.48754%206.67285%209.56452%206.70326%209.64258%206.78125L14.5869%2011.7256C14.6408%2011.7795%2014.666%2011.8215%2014.6777%2011.8496V11.8506C14.6925%2011.8861%2014.7012%2011.9259%2014.7012%2011.9746C14.7012%2012.0233%2014.6925%2012.0631%2014.6777%2012.0986V12.0996C14.666%2012.1277%2014.6408%2012.1697%2014.5869%2012.2236L9.61816%2017.1924C9.54039%2017.2702%209.47325%2017.292%209.39258%2017.2891C9.29855%2017.2856%209.21769%2017.2537%209.13184%2017.168C9.05371%2017.0898%209.02246%2017.013%209.02246%2016.9121C9.02246%2016.8112%209.05371%2016.7344%209.13184%2016.6562L13.8135%2011.9746L9.10645%207.26758C9.02878%207.18988%209.00684%207.12357%209.00977%207.04297C9.01321%206.9487%209.04578%206.86731%209.13184%206.78125C9.20976%206.70344%209.28613%206.67293%209.38672%206.67285Z'%20fill='%231E6FBD'%20stroke='%231E6FBD'/%3e%3c/svg%3e");
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-news-top__more {
    display: block;
    font-size: calc(16 * var(--to-rem));
  }
  .p-news-top__more::before, .p-news-top__more::after {
    display: block;
  }
}
@media (any-hover: hover) {
  .p-news-top__more:hover {
    color: var(--color-primary);
  }
  .p-news-top__more:hover::before, .p-news-top__more:hover::after {
    translate: calc(8 * var(--to-rem)) 0;
  }
  .p-news-top__more:hover::before {
    opacity: 0;
  }
  .p-news-top__more:hover::after {
    opacity: 1;
  }
}
/* ========================================
 * Reasons セクション
 * 375px / 1440px の位置関係は現状維持
 * ===================================== */
.p-reasons {
  position: relative;
  z-index: 1;
  padding-block-end: clamp(5rem, 3.636rem + 5.82vw, 8.875rem);
}
@media screen and (min-width: 1024px) {
  .p-reasons {
    padding-block-start: calc(87 * var(--to-rem));
  }
}
.p-reasons__inner {
  position: relative;
}
.p-reasons__head {
  text-align: center;
}
.p-reasons__head.c-section-head {
  gap: clamp(0.313rem, -0.106rem + 1.78vw, 1.5rem);
}
@media screen and (min-width: 1024px) {
  .p-reasons__head .c-section-head__title {
    gap: calc(15 * var(--to-rem));
  }
}
.p-reasons__head .c-section-head__label-en {
  font-size: clamp(3.125rem, 1.695rem + 6.1vw, 7.188rem);
}
@media screen and (min-width: 768px) {
  .p-reasons__head .c-section-head__lead br {
    display: none;
  }
}
/* 理由カード一覧 */
.p-reasons__cards {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: calc(32 * var(--to-rem));
  margin-block-start: clamp(3.625rem, 3.141rem + 2.07vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .p-reasons__cards {
    grid-template-columns: repeat(3, 1fr);
    column-gap: calc(32 * var(--to-rem));
  }
}
.p-reasons__card {
  width: min(405 * var(--to-rem), 100%);
  min-height: calc(389 * var(--to-rem));
  margin-inline: auto;
  padding: calc(20 * var(--to-rem)) calc(15 * var(--to-rem)) calc(37 * var(--to-rem));
  border-radius: calc(24 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid var(--color-blue);
  background-color: var(--color-white);
  box-shadow: 0 0 calc(8 * var(--to-rem)) 0 var(--color-shadow-25);
}
@media screen and (min-width: 1024px) {
  .p-reasons__card {
    padding: calc(32 * var(--to-rem));
    min-height: auto;
  }
}
.p-reasons__card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 315/211;
  position: relative;
}
.p-reasons__card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-accent__main);
  opacity: 0.3;
}
@media screen and (min-width: 1024px) {
  .p-reasons__card-img {
    aspect-ratio: 341/211;
  }
}
.p-reasons__card-body {
  margin-block-start: calc(24 * var(--to-rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(24 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-reasons__card-body {
    margin-block-start: calc(20 * var(--to-rem));
    gap: calc(16 * var(--to-rem));
  }
}
@media screen and (min-width: 1280px) {
  .p-reasons__card-body {
    align-items: flex-start;
  }
}
.p-reasons__card-title {
  color: var(--color-primary);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  .p-reasons__card-title {
    font-size: clamp(1.25rem, -0.596rem + 2.88vw, 2rem);
  }
}
.p-reasons__card-text {
  font-size: calc(14 * var(--to-rem));
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-reasons__card-text br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-reasons__card-text {
    font-size: clamp(0.75rem, 0.135rem + 0.96vw, 1rem);
  }
}
.p-service {
  padding-block: clamp(4rem, 3.208rem + 3.38vw, 6.25rem) clamp(5rem, 4.56rem + 1.88vw, 6.25rem);
}
.p-service__inner.l-inner {
  padding-inline: 0;
}
@media screen and (min-width: 1024px) {
  .p-service__inner.l-inner {
    width: min(1280 * var(--to-rem) + 30 * var(--to-rem) * 2, 100%);
    padding-inline: calc(30 * var(--to-rem));
    margin-inline: auto;
  }
}
.p-service__contents {
  background-color: var(--color-gray);
  border-radius: calc(45 * var(--to-rem));
  padding-block: clamp(4.5rem, 4.302rem + 0.85vw, 5.063rem) clamp(3.75rem, 3.486rem + 1.13vw, 4.5rem);
}
.p-service__head {
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-service__head {
    gap: calc(16 * var(--to-rem));
  }
}
@media screen and (min-width: 1024px) {
  .p-service__head .p-service__title {
    gap: calc(16 * var(--to-rem));
  }
}
@media screen and (min-width: 768px) {
  .p-service__head .c-section-head__lead br {
    display: none;
  }
}
.p-service__cards {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: calc(30 * var(--to-rem));
  margin-block-start: clamp(2.5rem, 1.62rem + 3.76vw, 5rem);
  place-items: center;
}
@media screen and (min-width: 1024px) {
  .p-service__cards {
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
  }
}
/* サービスカード：中は透明で、周囲だけグラデーションのリング */
.p-service__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(345 * var(--to-rem));
  max-width: 100%;
  margin-inline: auto;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
}
@media screen and (min-width: 1024px) {
  .p-service__card {
    width: clamp(18.75rem, 5.673rem + 20.43vw, 24.063rem);
  }
}
.p-service__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  /* --- 【A】フォールバック（古い端末用） --- */
  border: calc(10 * var(--to-rem)) solid var(--color-primary);
  background-color: var(--color-white);
  /* --- 【B】モダンブラウザ用（グラデーション上書き） --- */
}
@supports (background-clip: border-box) {
  .p-service__card::before {
    border: calc(10 * var(--to-rem)) solid transparent;
    background-image: linear-gradient(var(--color-white), var(--color-white)), var(--gradient-accent__main);
    background-origin: border-box;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
  }
}
.p-service__card-img {
  position: relative;
  z-index: 2;
  width: clamp(11.188rem, 10.725rem + 1.97vw, 12.5rem);
  height: clamp(8.875rem, 8.523rem + 1.5vw, 9.875rem);
}
.p-service__card-img img {
  object-fit: contain;
}
.p-service__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-primary);
}
@media screen and (min-width: 1024px) {
  .p-service__card-body {
    gap: calc(10 * var(--to-rem));
  }
}
.p-service__card-title {
  font-size: clamp(1.375rem, 1.331rem + 0.19vw, 1.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.4;
}
.p-service__card-text {
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-light);
  line-height: 1.5;
  max-width: calc(300 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-service__card-text {
    font-size: clamp(0.75rem, 0.135rem + 0.96vw, 1rem);
  }
}
.p-single {
  padding-block: clamp(5rem, 4.296rem + 3vw, 7rem);
  background-color: var(--color-gray);
}
.p-single__inner {
  width: min(600 * var(--to-rem), 100%);
  margin-inline: auto;
  padding-inline: calc(20 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-single__inner {
    width: min(1280 * var(--to-rem) + 30 * var(--to-rem) * 2, 100%);
    padding-inline: calc(30 * var(--to-rem));
  }
}
.p-single__header-meta {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
.p-single__header-tag {
  color: var(--color-white);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  padding: calc(4 * var(--to-rem)) calc(8 * var(--to-rem));
  background-color: var(--color-blue-medium);
}
.p-single__header-time {
  font-weight: var(--fw-semibold);
  line-height: 1.5;
}
.p-single__title {
  font-size: clamp(2rem, 1.736rem + 1.13vw, 2.75rem);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  margin-block-start: calc(20 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-single__title {
    margin-block-start: calc(16 * var(--to-rem));
  }
}
.p-single__date-label {
  font-size: clamp(0.75rem, 0.662rem + 0.38vw, 1rem);
  line-height: 1.5;
}
.p-single__date {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.p-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
}
.p-single__thumbnail {
  margin-block-start: clamp(2rem, 0.944rem + 4.51vw, 5rem);
  width: 100%;
  height: auto;
  aspect-ratio: 335/174;
}
.p-single__date-box {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(8 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-single__date-box {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-single__date-label {
  line-height: 1.5;
}
.p-single__data-time {
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.p-single__content {
  width: min(768 * var(--to-rem), 100%);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-single__content {
    margin-block-start: calc(100 * var(--to-rem));
    margin-block-end: calc(64 * var(--to-rem));
  }
}
.p-single__content h1,
.p-single h1:not(.p-single__title) {
  margin-block-start: calc(48 * var(--to-rem));
  padding-block-end: calc(16 * var(--to-rem));
  border-bottom: calc(2 * var(--to-rem)) solid var(--color-gray);
  color: var(--color-text);
  font-size: calc(28 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-single__content h1,
  .p-single h1:not(.p-single__title) {
    margin-block-start: calc(64 * var(--to-rem));
    font-size: calc(36 * var(--to-rem));
  }
}
.p-single__content h2,
.p-single h2 {
  margin-block-start: calc(60 * var(--to-rem));
  color: var(--color-primary-dark);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
  border-bottom: calc(1 * var(--to-rem)) solid var(--color-primary-dark);
}
.p-single__content h3,
.p-single h3 {
  margin-block-start: calc(60 * var(--to-rem));
  color: var(--color-primary-dark);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.p-single__content h4,
.p-single h4 {
  margin-block-start: calc(24 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
.p-single__content p,
.p-single p {
  margin-block-start: calc(24 * var(--to-rem));
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-single__content p,
  .p-single p {
    margin-block-start: calc(20 * var(--to-rem));
  }
}
.p-single__content ul,
.p-single__content ol,
.p-single ul,
.p-single ol {
  margin-block-start: calc(16 * var(--to-rem));
  padding-inline-start: calc(24 * var(--to-rem));
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-single__content ul,
  .p-single__content ol,
  .p-single ul,
  .p-single ol {
    margin-block-start: calc(20 * var(--to-rem));
    padding-inline-start: calc(32 * var(--to-rem));
  }
}
.p-single__content ul,
.p-single ul {
  list-style-type: disc;
}
.p-single__content ol,
.p-single ol {
  list-style-type: decimal;
}
.p-single__content li,
.p-single li {
  margin-block-start: calc(8 * var(--to-rem));
  line-height: 1.8;
}
.p-single__content a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: calc(2 * var(--to-rem));
  transition: opacity var(--duration);
}
.p-single__content a:hover {
  opacity: 0.8;
}
.p-single__content img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: calc(24 * var(--to-rem));
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .p-single__content img {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-single__content blockquote,
.p-single blockquote {
  margin-block-start: calc(24 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem)) calc(24 * var(--to-rem));
  border-inline-start: calc(4 * var(--to-rem)) solid var(--color-primary-dark);
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-style: italic;
}
@media screen and (min-width: 1024px) {
  .p-single__content blockquote,
  .p-single blockquote {
    margin-block-start: calc(32 * var(--to-rem));
    padding-block: calc(20 * var(--to-rem));
    padding-inline: calc(32 * var(--to-rem)) calc(32 * var(--to-rem));
  }
}
.p-single__content blockquote p,
.p-single blockquote p {
  margin-block-start: 0;
}
.p-single__content code,
.p-single code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: calc(14 * var(--to-rem));
}
.p-single__content pre,
.p-single pre {
  overflow-x: auto;
  margin-block-start: calc(24 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-single__content pre,
  .p-single pre {
    padding-block: calc(24 * var(--to-rem));
    padding-inline: calc(24 * var(--to-rem));
  }
}
.p-single__content pre code,
.p-single pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}
.p-single__content table,
.p-single table {
  width: 100%;
  margin-block-start: calc(24 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid var(--color-border-gray);
  border-collapse: collapse;
}
@media screen and (min-width: 1024px) {
  .p-single__content table,
  .p-single table {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-single__content th,
.p-single__content td,
.p-single th,
.p-single td {
  padding-block: calc(12 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border: calc(1 * var(--to-rem)) solid var(--color-border-gray);
  line-height: 1.6;
  text-align: start;
}
@media screen and (min-width: 1024px) {
  .p-single__content th,
  .p-single__content td,
  .p-single th,
  .p-single td {
    padding-block: calc(16 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-single__content th,
.p-single th {
  background-color: var(--color-gray);
  color: var(--color-text);
  font-weight: var(--fw-bold);
}
.p-single__content td,
.p-single td {
  color: var(--color-text);
}
.p-single__content hr,
.p-single hr {
  margin-block-start: calc(32 * var(--to-rem));
  border: none;
  border-top: calc(1 * var(--to-rem)) solid var(--color-border-gray);
}
@media screen and (min-width: 1024px) {
  .p-single__content hr,
  .p-single hr {
    margin-block-start: calc(48 * var(--to-rem));
  }
}
.p-single__content strong,
.p-single strong {
  color: var(--color-text);
  font-weight: var(--fw-bold);
}
.p-single__content em,
.p-single em {
  font-style: italic;
}
.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(48 * var(--to-rem));
  padding-block: calc(24 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid var(--color-border-gray);
}
@media screen and (min-width: 1024px) {
  .p-single__tags {
    margin-block-start: calc(64 * var(--to-rem));
    padding-block: calc(32 * var(--to-rem));
  }
}
.p-single__tag {
  display: inline-block;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary-dark);
  font-size: calc(12 * var(--to-rem));
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (min-width: 1024px) {
  .p-single__tag {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-single__tag:hover {
  opacity: 0.8;
}
.p-single__tag--custom {
  color: var(--color-text);
  cursor: default;
}
.p-single__navigation {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(24 * var(--to-rem));
}
.p-single__navigation img {
  display: block;
  width: calc(24 * var(--to-rem));
  height: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  transition: translate var(--duration) ease;
}
@media (any-hover: hover) {
  .p-single__navigation:hover img {
    translate: calc(-8 * var(--to-rem)) 0;
  }
}
.p-single__navigation-text {
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
}
.p-single__nav-item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-single__nav-item--prev {
    text-align: start;
  }
}
@media screen and (min-width: 1024px) {
  .p-single__nav-item--next {
    text-align: end;
  }
}
.p-single__nav-link {
  display: block;
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (min-width: 1024px) {
  .p-single__nav-link {
    padding-block: calc(20 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}
.p-single__nav-link:hover {
  opacity: 0.8;
}
.p-single__nav-label {
  display: block;
  margin-block-start: calc(8 * var(--to-rem));
  color: var(--color-border-gray);
  font-size: calc(12 * var(--to-rem));
}
.p-single__nav-title {
  display: block;
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-single__nav-title {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-single__back {
  margin-block-start: calc(48 * var(--to-rem));
  text-align: center;
  width: min(768 * var(--to-rem), 100%);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-single__back {
    margin-block-start: calc(60 * var(--to-rem));
  }
}
.p-single__meta {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(8 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-single__meta {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-works-list {
  padding-block: calc(48 * var(--to-rem)) calc(32 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-works-list {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.p-works-list__filter {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(32 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-works-list__filter {
    gap: calc(12 * var(--to-rem));
  }
}
.p-works-list__filter-btn {
  padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: transparent;
  color: var(--color-text);
  font-family: inherit;
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .p-works-list__filter-btn {
    padding: calc(10 * var(--to-rem)) calc(24 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-works-list__filter-btn:hover:not(.is-active) {
    border-color: var(--color-border);
    background-color: var(--color-gray);
  }
}
.p-works-list__filter-btn.is-active {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-white);
}
.p-works-list__grid {
  --_card-widht: calc(320 * var(--to-rem));
  display: grid;
  gap: calc(24 * var(--to-rem));
  margin-block-start: calc(24 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-works-list__grid {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--_card-widht), 100%), 1fr));
    gap: calc(32 * var(--to-rem));
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-works-list__card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 1px 3px var(--color-shadow);
}
@media (any-hover: hover) {
  .p-works-list__card:hover .p-works-list__thumbnail img {
    scale: 1.05;
  }
}
.p-works-list__link {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
}
.p-works-list__thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-works-list__thumbnail img {
  transition: scale 0.4s ease;
}
.p-works-list__badge {
  position: absolute;
  top: calc(12 * var(--to-rem));
  left: calc(12 * var(--to-rem));
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
}
.p-works-list__content {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: calc(8 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
}
.p-works-list__card-title {
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-works-list__card-title {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-works-list__client {
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (min-width: 1024px) {
  .p-works-list__client {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-works-list__date {
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(12 * var(--to-rem));
}
.p-works-list__empty {
  padding-block: calc(60 * var(--to-rem));
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-works-list__empty {
    padding-block: calc(80 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}
/* --- 回転アニメーションの定義（このファイル専用） --- */
@keyframes rotate-o {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-bg-circle {
  background-color: var(--color-gray);
}
.p-bg-circle__inner {
  position: relative;
  /* 青い円形グラデーション背景（波テクスチャ） */
}
@media screen and (min-width: 1024px) {
  .p-bg-circle__inner {
    max-width: 1440px;
    margin-inline: auto;
  }
}
.p-bg-circle__inner::before {
  /* --- 回転の設定を直接記述 --- */
  animation: rotate-o 300s linear infinite;
  transform-origin: center center;
  will-change: transform;
  content: "";
  position: absolute;
  top: calc(156 * var(--to-rem));
  left: calc(-87 * var(--to-rem));
  width: clamp(48.063rem, 34.154rem + 59.34vw, 87.563rem);
  height: clamp(51.563rem, 38.886rem + 54.08vw, 87.563rem);
  border-radius: 50%;
  background: url(../images/bg-img__wave.png) repeat center center/cover;
  opacity: 1;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  .p-bg-circle__inner::before {
    top: calc(103 * var(--to-rem));
    left: auto;
    right: calc(-195 * var(--to-rem));
  }
}
.u-animated__fadeIn {
  opacity: 0;
  translate: 0 calc(40 * var(--to-rem));
  transition: opacity 0.2s ease-out, translate 0.3s ease-out;
  will-change: opacity, translate;
}
.u-animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}
.u-animated__fadeIn.--delay0 {
  transition-delay: 0s;
}
.u-animated__fadeIn.--delay1 {
  transition-delay: 0.2s;
}
.u-animated__fadeIn.--delay2 {
  transition-delay: 0.4s;
}
.u-animated__fadeIn.--delay3 {
  transition-delay: 0.6s;
}
.u-animated__fadeIn.--delay4 {
  transition-delay: 0.8s;
}
.u-animated__fadeIn.--delay5 {
  transition-delay: 1s;
}
.u-animated__fadeIn.--delay6 {
  transition-delay: 1.2s;
}
.u-animated__fadeIn.--delay7 {
  transition-delay: 1.4s;
}
.u-animated__fadeIn.--delay8 {
  transition-delay: 1.6s;
}
.u-animated__fadeIn.--delay9 {
  transition-delay: 1.8s;
}
.u-animated__fadeIn.--delay10 {
  transition-delay: 2s;
}
.u-animated__fadeIn.--delay11 {
  transition-delay: 2.2s;
}
.u-animated__fadeIn.--delay12 {
  transition-delay: 2.4s;
}
.u-animated__fadeIn.--delay13 {
  transition-delay: 2.6s;
}
.u-animated__fadeIn.--delay14 {
  transition-delay: 2.8s;
}
.u-animated__fadeIn.--delay15 {
  transition-delay: 3s;
}
:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}
.u-fade-in {
  opacity: 0;
  translate: var(--x, 0) var(--y, 0);
  transition: opacity var(--duration) ease, translate var(--duration) ease;
  transition-delay: var(--delay, 0s);
}
.u-fade-in.is-in-view {
  opacity: 1;
  translate: 0 0;
}
/* modifier（方向だけ） */
.u-fade-in--up {
  --y: 24px;
}
.u-fade-in--right {
  --x: 50px;
}
.u-fade-in--left {
  --x: -50px;
}
@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}
@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}
@keyframes u-rotate-keyframes {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.u-rotate {
  --rotate-speed: 10s;
  animation: u-rotate-keyframes var(--rotate-speed) linear infinite;
  transform-origin: center center;
  will-change: transform;
}
.u-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}
.u-text__inline-block {
  display: inline-block;
}
.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}
:root {
  font-family: var(--base-font-family);
}