@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%;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    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);
}

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@property --flow-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner */
  --inner: min(1080px, 100%);
  --inner-sp: min(500px, 100%);
  --padding-inner: 20px;
  /* z-index */
  --z-index-header: 900;
  --z-index-pagetop: 800;
  /* color — ブランド設定シート（2026-06-20版）に準拠
     .company/営業部/ブランド設定シート-nosuke.md
     ★ 変数名はテンプレート同梱のコンポーネントが参照しているため変えず、値だけ差し替えている。

     禁止事項（このブランド固有・必ず守る）
     - 色は5色以上使わない / フォントは3種類以上混ぜない
     - グラデーション・影・光彩を盛らない / 中央寄せを多用しない
     - ★「盛り」表現・誇張をしない ← 品質管理出身の信頼性と矛盾するため
     オレンジは面積を絞る。使ってよいのは CTAボタン / 見出し下線 / チェック / リストマーカー のみ。 */
  --color-white: #fff;
  --color-text: #1f2733;
  --color-black: #111820;
  --color-gray: #f4f5f7;
  --color-border: #dfe3e8;
  --color-border-gray: #c3c9d1;
  --color-accent: #ad5a20;
  --color-accent-hover: #96491a;
  --color-primary: #1e2a44;
  --color-secondary: #2b3b5e;
  --color-sub: #626a75;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family
     2種類まで。Inter は数字・英字ラベルのみの補助扱いで、見出し・本文には使わない。 */
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --title-font-family: "Inter", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 64px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 80px;
  }
}

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

.l-inner {
  max-width: calc(var(--inner-sp) + var(--padding-inner) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-inner);
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(var(--inner) + var(--padding-inner) * 2);
  }
}

.l-main {
  margin-block-start: var(--header-height);
}

.l-section {
  padding-block: calc(64 * var(--to-rem));
  scroll-margin-top: var(--header-height);
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-block: calc(112 * var(--to-rem));
  }
}

.l-section--gray {
  background-color: var(--color-gray);
}

.l-section--navy {
  --color-accent: #e07a3c;
  background-color: var(--color-primary);
  color: var(--color-white);
}
.l-section--navy .c-heading__main {
  color: var(--color-white);
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: calc(52 * var(--to-rem));
  padding-inline: calc(28 * var(--to-rem));
  border: 1px solid var(--color-accent);
  border-radius: calc(6 * var(--to-rem));
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.4;
  text-align: center;
  transition: border-color var(--duration), background-color var(--duration);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    border-color: var(--color-accent-hover);
    background-color: var(--color-accent-hover);
  }
}

.c-btn--outline {
  border-color: var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--outline:hover {
    border-color: var(--color-accent);
    background-color: transparent;
    color: var(--color-accent);
  }
}

.c-btn--light {
  border-color: var(--color-white);
  background-color: var(--color-white);
  color: var(--color-primary);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--light:hover {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: var(--color-primary);
  }
}

.c-btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  background-color: transparent;
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--outline-light:hover {
    border-color: var(--color-accent);
    background-color: transparent;
    color: var(--color-accent);
  }
}

.c-heading {
  display: grid;
  gap: calc(8 * var(--to-rem));
  justify-items: start;
  text-align: left;
}

.c-heading__label {
  color: var(--color-accent);
  font-family: var(--title-font-family);
  font-size: calc(12 * var(--to-rem));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c-heading__main {
  color: var(--color-primary);
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
  text-wrap: pretty;
  word-break: auto-phrase;
}
@media screen and (min-width: 768px) {
  .c-heading__main {
    font-size: calc(32 * var(--to-rem));
  }
}

.c-heading__line {
  display: block;
  width: calc(40 * var(--to-rem));
  height: calc(3 * var(--to-rem));
  margin-block-start: calc(14 * var(--to-rem));
  background-color: var(--color-accent);
  transform-origin: left center;
}

.c-pagetop {
  position: fixed;
  inset-block-end: calc(16 * var(--to-rem));
  inset-inline-end: calc(16 * var(--to-rem));
  z-index: var(--z-index-pagetop);
  display: grid;
  visibility: hidden;
  gap: calc(1 * var(--to-rem));
  place-content: center;
  place-items: center;
  width: calc(52 * var(--to-rem));
  height: calc(52 * var(--to-rem));
  border: calc(2 * var(--to-rem)) solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 calc(4 * var(--to-rem)) calc(16 * var(--to-rem)) oklch(from var(--color-black) l c h/22%);
  background-color: var(--color-primary);
  color: var(--color-white);
  opacity: 0;
  text-decoration: none;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s, transform 0.3s;
}
.c-pagetop.is-visible {
  visibility: visible;
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagetop:hover {
    background-color: var(--color-accent);
    transform: translateY(calc(-2 * var(--to-rem)));
  }
}
@media screen and (min-width: 768px) {
  .c-pagetop {
    inset-block-end: calc(32 * var(--to-rem));
    inset-inline-end: calc(32 * var(--to-rem));
    width: calc(60 * var(--to-rem));
    height: calc(60 * var(--to-rem));
  }
}

.c-pagetop__anchor {
  scroll-margin-block-start: var(--header-height);
}

.c-pagetop__label {
  font-size: calc(10 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.08em;
}

.c-skip-link {
  position: absolute;
  inset-block-start: calc(8 * var(--to-rem));
  inset-inline-start: calc(8 * var(--to-rem));
  z-index: calc(var(--z-index-header) + 1);
  padding: calc(10 * var(--to-rem)) calc(16 * var(--to-rem));
  border-radius: calc(6 * var(--to-rem));
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: calc(14 * var(--to-rem));
  line-height: 1;
  translate: 0 -200%;
}
.c-skip-link:focus-visible {
  translate: 0 0;
}

.c-thumb-link {
  display: block;
  overflow: hidden;
}
.c-thumb-link img {
  transition: opacity var(--duration);
}
@media (hover: hover) and (pointer: fine) {
  .c-thumb-link:hover img {
    opacity: 0.85;
  }
}

.p-approach__list {
  display: grid;
  gap: calc(24 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-approach__list {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(32 * var(--to-rem));
    margin-top: calc(48 * var(--to-rem));
  }
}

.p-approach__item {
  padding: calc(24 * var(--to-rem));
  border-top: calc(3 * var(--to-rem)) solid var(--color-accent);
  background-color: var(--color-white);
}

.p-approach__num {
  color: var(--color-accent);
  font-family: var(--title-font-family);
  font-size: calc(24 * var(--to-rem));
  font-weight: 600;
  line-height: 1;
}

.p-approach__title {
  margin-top: calc(12 * var(--to-rem));
  color: var(--color-primary);
  font-size: calc(17 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-approach__text {
  margin-top: calc(12 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}

.p-approach__note {
  margin-top: calc(28 * var(--to-rem));
  padding-inline-start: calc(16 * var(--to-rem));
  border-inline-start: calc(3 * var(--to-rem)) solid var(--color-primary);
  color: var(--color-sub);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}
.p-approach__note strong {
  color: var(--color-text);
  font-weight: var(--fw-bold);
}

.p-contact__complete {
  padding-block: calc(80 * var(--to-rem));
  text-align: center;
}

.p-contact__complete-title {
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 768px) {
  .p-contact__complete-title {
    font-size: calc(40 * var(--to-rem));
  }
}

.p-contact__complete-text {
  margin-block-start: calc(30 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-contact__complete-text {
    font-size: calc(18 * var(--to-rem));
  }
}

.p-contact__complete-button {
  margin-block-start: calc(50 * var(--to-rem));
  margin-inline: auto;
}

.p-contact {
  padding-block: calc(72 * var(--to-rem));
}

.p-contact__form {
  margin-block-start: calc(64 * var(--to-rem));
}

.p-contact__title {
  display: grid;
  place-items: start;
}

.p-contact__lead {
  margin-block-start: calc(20 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
  line-height: 1.9;
}

.p-contact__alt {
  margin-block-start: calc(56 * var(--to-rem));
  padding-block-start: calc(40 * var(--to-rem));
  border-block-start: 1px solid var(--color-border);
}

.p-contact__alt-title {
  color: var(--color-primary);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-contact__alt-text {
  margin-block-start: calc(12 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
  line-height: 1.9;
}

.p-contact__alt-mail {
  margin-block-start: calc(16 * var(--to-rem));
  font-size: calc(17 * var(--to-rem));
  font-weight: var(--fw-medium);
}
.p-contact__alt-mail a {
  color: var(--color-accent);
  word-break: break-all;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__alt-mail a:hover {
    text-decoration: none;
  }
}

.p-contact__alt-note {
  margin-block-start: calc(12 * var(--to-rem));
  color: var(--color-sub);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}

.p-cta__title {
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-cta__text {
  margin-top: calc(20 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
  line-height: 2;
}

.p-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  margin-top: calc(28 * var(--to-rem));
}

.p-cta__mail {
  margin-top: calc(16 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}
.p-cta__mail a {
  color: var(--color-accent);
  word-break: break-all;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-cta__mail a:hover {
    text-decoration: none;
  }
}

.p-faq__list {
  margin-top: calc(32 * var(--to-rem));
  border-block-start: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    margin-top: calc(48 * var(--to-rem));
  }
}

.p-faq__item {
  padding-block: calc(20 * var(--to-rem));
  border-block-end: 1px solid var(--color-border);
}

.p-faq__q {
  position: relative;
  padding-inline-start: calc(28 * var(--to-rem));
  color: var(--color-primary);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.7;
}
.p-faq__q::before {
  content: "Q";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  color: var(--color-accent);
  font-family: var(--title-font-family);
  font-size: calc(16 * var(--to-rem));
  font-weight: 600;
  line-height: 1.7;
}

.p-faq__a {
  position: relative;
  margin-top: calc(10 * var(--to-rem));
  padding-inline-start: calc(28 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}
.p-faq__a::before {
  content: "A";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  color: var(--color-sub);
  font-family: var(--title-font-family);
  font-size: calc(14 * var(--to-rem));
  font-weight: 600;
  line-height: 1.9;
}

.p-flow__list {
  position: relative;
  display: grid;
  gap: calc(20 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
}
.p-flow__list::before, .p-flow__list::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: calc(2 * var(--to-rem));
  height: 100%;
}
.p-flow__list::before {
  background-color: var(--color-border);
}
.p-flow__list::after {
  background-color: var(--color-accent);
  transform-origin: center top;
  scale: 1 var(--flow-progress);
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    margin-top: calc(48 * var(--to-rem));
  }
}

.p-flow__item {
  display: grid;
  gap: calc(4 * var(--to-rem));
  padding: calc(20 * var(--to-rem)) 0 calc(20 * var(--to-rem)) calc(20 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    grid-template-columns: calc(120 * var(--to-rem)) 1fr;
    column-gap: calc(24 * var(--to-rem));
    align-items: baseline;
    padding-inline-start: calc(28 * var(--to-rem));
  }
}

.p-flow__step {
  color: var(--color-accent);
  font-family: var(--title-font-family);
  font-size: calc(13 * var(--to-rem));
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-flow__step {
    grid-row: span 3;
  }
}

.p-flow__title {
  color: var(--color-primary);
  font-size: calc(17 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-flow__text {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}

.p-flow__deliver {
  display: inline-block;
  width: fit-content;
  margin-top: calc(8 * var(--to-rem));
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-footer {
  padding: calc(40 * var(--to-rem)) 0;
  background-color: var(--color-primary);
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: calc(60 * var(--to-rem)) 0;
  }
}

.p-footer__content {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--to-rem));
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.p-footer__logo a {
  display: inline-flex;
  align-items: center;
}
.p-footer__logo a img {
  width: auto;
  height: calc(30 * var(--to-rem));
}

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(15 * var(--to-rem)) calc(30 * var(--to-rem));
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    justify-content: flex-end;
  }
}

.p-footer__nav-item a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-footer__nav-item a:hover {
    opacity: 0.7;
  }
}

.p-footer__bottom {
  margin-block-start: calc(30 * var(--to-rem));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-block-start: calc(40 * var(--to-rem));
  }
}

.p-footer__owner {
  margin-block-end: calc(6 * var(--to-rem));
  color: var(--color-white);
  opacity: 0.8;
  font-size: calc(13 * var(--to-rem));
  letter-spacing: 0.04em;
}

.p-footer__copyright {
  color: var(--color-white);
  font-size: calc(14 * var(--to-rem));
}

.p-form {
  --_form-color-text: var(--color-text);
  --_form-color-bg: var(--color-white);
  --_form-color-badge-text: var(--color-white);
  --_form-color-badge-bg: var(--color-accent);
  --_form-color-accent: var(--color-accent);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
  max-width: calc(800 * var(--to-rem));
  margin-inline: auto;
}
.p-form > * {
  margin-block-start: calc(40 * var(--to-rem));
}
.p-form > *:nth-last-child(2) {
  margin-block-start: calc(20 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-form > * {
    margin-block-start: calc(48 * var(--to-rem));
  }
  .p-form > *:nth-last-child(2) {
    margin-block-start: calc(24 * var(--to-rem));
  }
}

.p-form__item {
  display: grid;
  gap: calc(8 * var(--to-rem));
}

.p-form__hp {
  position: absolute;
  inset-inline-start: -9999px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.p-form__label {
  display: block;
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
}

.p-form__label--required {
  position: relative;
  padding-inline-end: calc(50 * var(--to-rem));
}

.p-form__label--required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 0;
  padding-block: calc(8 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--_form-color-badge-bg);
  color: var(--_form-color-badge-text);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
  translate: 0 -50%;
}

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: calc(14 * var(--to-rem)) calc(16 * var(--to-rem));
  border: 1px solid var(--_form-color-border);
  border-radius: 8px;
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

@media screen and (min-width: 768px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: calc(16 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-form__select {
  position: relative;
  padding-inline-end: calc(48 * var(--to-rem));
  cursor: pointer;
  appearance: none;
}

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

.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(16 * var(--to-rem));
  clip-path: var(--clip-triangle-bottom);
  width: calc(12 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border: none;
  background-color: var(--_form-color-primary);
  pointer-events: none;
  translate: 0 -50%;
}

.p-form__textarea {
  min-height: calc(160 * var(--to-rem));
}

.p-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-form__radio-group {
    flex-flow: row wrap;
    gap: calc(32 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}

.p-form__radio {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(8 * var(--to-rem));
  align-items: center;
  cursor: pointer;
}

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

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

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

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

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

.p-form__radio-text {
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  user-select: none;
}

.p-form__checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

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

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

.p-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: calc(2 * var(--to-rem));
  left: calc(5 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  height: calc(10 * var(--to-rem));
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}

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

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

.p-form__checkbox-text {
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  user-select: none;
}

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

.p-form__button-wrap {
  text-align: center;
}

.p-form__error {
  display: block;
  color: var(--_form-color-badge-bg);
  font-size: calc(14 * var(--to-rem));
}

.p-form__success {
  padding: calc(24 * var(--to-rem));
  border: 1px solid var(--_form-color-primary);
  border-radius: 8px;
  background-color: oklch(from var(--_form-color-primary) l c h/6%);
  color: var(--_form-color-primary);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}

.p-header {
  height: var(--header-height);
  box-shadow: 0 0 25px oklch(from var(--color-black) l c h/10%);
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-header {
    --header-height: 80px;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  height: inherit;
  padding-inline-start: calc(16 * var(--to-rem));
}

.p-header__brand {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  justify-content: center;
  align-items: center;
  height: inherit;
}

.p-header__logo {
  height: auto;
}

.p-header__logo a {
  display: flex;
  align-items: center;
}
.p-header__logo a img {
  width: auto;
  height: calc(26 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-header__logo a img {
    height: calc(32 * var(--to-rem));
  }
}

.p-header__tagline {
  color: var(--color-sub);
  font-size: calc(10 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-header__tagline {
    font-size: calc(11 * var(--to-rem));
  }
}

.p-header__nav {
  position: relative;
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    container-type: inline-size;
    display: block;
    flex: 1;
  }
}

.p-header__nav-list {
  display: flex;
  justify-content: flex-end;
  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;
  padding-block: 0;
  padding-inline: clamp(12px, 2cqi, 15px);
  color: var(--color-text);
  font-size: clamp(13px, 2cqi, 16px);
  font-weight: var(--fw-medium);
  line-height: 1;
}

.p-header__nav-item.p-header__nav-item--contact a {
  position: relative;
  padding-inline: calc(50 * var(--to-rem));
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
.p-header__nav-item.p-header__nav-item--contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(20 * var(--to-rem));
  width: 5px;
  aspect-ratio: 1/1;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  translate: 0 -50%;
  rotate: 45deg;
  transition: rotate var(--duration), translate var(--duration);
}
@media screen and (min-width: 768px) {
  .p-header__nav-item.p-header__nav-item--contact a::after {
    width: calc(10 * var(--to-rem));
    height: calc(10 * var(--to-rem));
  }
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  width: calc(64 * var(--to-rem));
  height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--color-primary);
  outline: none;
  cursor: pointer;
  transition: background-color var(--duration);
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: calc(25 * var(--to-rem));
  height: 1px;
  background-color: var(--color-white);
  translate: -50% 0;
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67);
}
.p-header__hamburger span:nth-of-type(1) {
  top: -8px;
}
.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}
.p-header__hamburger span:nth-of-type(3) {
  top: 8px;
}

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

.p-header__drawer {
  position: absolute;
  inset: 0;
  z-index: 900;
  display: none;
  overflow-y: scroll;
  width: 100%;
  height: 100svh;
  margin-block-start: calc(64 * var(--to-rem));
  padding-block-end: calc(110 * var(--to-rem));
  background-color: #eff4f5;
  scrollbar-width: none;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item {
  border-bottom: 1px solid var(--color-white);
}

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-block-start: calc(40 * var(--to-rem));
  margin-inline-start: calc(32 * var(--to-rem));
  border-bottom: none;
}

.p-header__drawer-item > a {
  display: block;
  padding: calc(20 * var(--to-rem)) calc(32 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.p-header__drawer-item.p-header__drawer-item--contact a {
  position: relative;
  width: 100%;
  max-width: calc(180 * var(--to-rem));
  padding: calc(15 * var(--to-rem)) 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
.p-header__drawer-item.p-header__drawer-item--contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(20 * var(--to-rem));
  width: 8px;
  aspect-ratio: 1/1;
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  translate: 0 -50%;
  rotate: 45deg;
  transition: translate var(--duration);
}
@media (hover: hover) and (pointer: fine) {
  .p-header__drawer-item.p-header__drawer-item--contact a:hover::after {
    translate: 4px -50%;
  }
}

.p-hero {
  padding-block: calc(48 * var(--to-rem)) calc(64 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-block: calc(96 * var(--to-rem)) calc(120 * var(--to-rem));
  }
}

.p-hero__inner {
  display: grid;
  gap: calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    grid-template-columns: 1.25fr 1fr;
    gap: calc(56 * var(--to-rem));
    align-items: center;
  }
}

.p-hero__title {
  color: var(--color-primary);
  font-size: calc(26 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    font-size: calc(40 * var(--to-rem));
  }
}

.p-hero__lead {
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-hero__lead {
    font-size: calc(16 * var(--to-rem));
  }
}

.p-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-top: calc(24 * var(--to-rem));
}

.p-hero__badge {
  padding: calc(6 * var(--to-rem)) calc(14 * var(--to-rem));
  border: 1px solid var(--color-border);
  border-radius: calc(999 * var(--to-rem));
  color: var(--color-sub);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.4;
}

.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
}

.p-hero__figure {
  display: grid;
  justify-items: start;
}

.p-hero__photo {
  width: 100%;
  max-width: calc(360 * var(--to-rem));
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-hero__photo {
    max-width: 100%;
  }
}

.p-hero__name {
  width: 100%;
  max-width: calc(360 * var(--to-rem));
  margin-top: calc(14 * var(--to-rem));
  color: var(--color-primary);
  font-size: calc(17 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-hero__name {
    max-width: 100%;
    font-size: calc(18 * var(--to-rem));
  }
}

.p-hero__name-kana {
  display: block;
  margin-top: calc(2 * var(--to-rem));
  color: var(--color-sub);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
}

.p-price__lead {
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
  line-height: 1.9;
}

.p-price__table {
  width: 100%;
  margin-top: calc(24 * var(--to-rem));
  border-collapse: collapse;
}
.p-price__table th,
.p-price__table td {
  padding: calc(14 * var(--to-rem)) calc(12 * var(--to-rem));
  border-block-end: 1px solid var(--color-border);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.7;
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-price__table th,
  .p-price__table td {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-price__table th {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}
.p-price__table td {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.p-price__table[data-layout=detail] td {
  white-space: normal;
}
.p-price__table[data-layout=detail] [data-cell=price], .p-price__table[data-layout=detail] [data-cell=unit] {
  white-space: nowrap;
}
.p-price__table thead th {
  border-block-end: calc(2 * var(--to-rem)) solid var(--color-primary);
  color: var(--color-sub);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

@media (width <= 767px) {
  .p-price__table[data-layout=detail] {
    display: block;
  }
  .p-price__table[data-layout=detail] caption {
    display: block;
    text-align: left;
  }
  .p-price__table[data-layout=detail] thead {
    display: none;
  }
  .p-price__table[data-layout=detail] tbody {
    display: block;
  }
  .p-price__table[data-layout=detail] tr {
    display: grid;
    grid-template-columns: 1fr auto auto;
    column-gap: calc(10 * var(--to-rem));
    padding-block: calc(14 * var(--to-rem));
    border-block-end: 1px solid var(--color-border);
  }
  .p-price__table[data-layout=detail] th,
  .p-price__table[data-layout=detail] td {
    display: block;
    padding: 0;
    border: 0;
  }
  .p-price__table[data-layout=detail] th[scope=row] {
    grid-row: 1;
    grid-column: 1;
    font-size: calc(15 * var(--to-rem));
  }
  .p-price__table[data-layout=detail] [data-cell=price] {
    grid-row: 1;
    grid-column: 2;
    font-weight: var(--fw-medium);
    white-space: nowrap;
    text-align: right;
  }
  .p-price__table[data-layout=detail] [data-cell=unit] {
    grid-row: 1;
    grid-column: 3;
    white-space: nowrap;
  }
  .p-price__table[data-layout=detail] [data-cell=unit]::before {
    content: "／";
    color: var(--color-sub);
  }
  .p-price__table[data-layout=detail] [data-cell=note] {
    grid-row: 2;
    grid-column: 1/-1;
    margin-block-start: calc(4 * var(--to-rem));
    color: var(--color-sub);
    font-size: calc(13 * var(--to-rem));
    line-height: 1.7;
  }
}
.p-price__caption {
  padding-block-end: calc(10 * var(--to-rem));
  color: var(--color-sub);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.6;
  text-align: left;
}

.p-price__note {
  margin-top: calc(16 * var(--to-rem));
  color: var(--color-sub);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.9;
}

.p-price__more {
  margin-top: calc(24 * var(--to-rem));
}

.p-price__block {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-price__block {
    margin-top: calc(56 * var(--to-rem));
  }
}

.p-price__block--split {
  display: grid;
  gap: calc(28 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-price__block--split {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(40 * var(--to-rem));
  }
}

.p-price__subtitle {
  padding-block-end: calc(10 * var(--to-rem));
  border-block-end: calc(2 * var(--to-rem)) solid var(--color-primary);
  color: var(--color-primary);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-price__text {
  margin-top: calc(16 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}
.p-price__text strong {
  font-weight: var(--fw-bold);
}

.p-price__minititle {
  margin-top: calc(28 * var(--to-rem));
  color: var(--color-primary);
  font-size: calc(15 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-price__needs {
  display: grid;
  gap: calc(8 * var(--to-rem));
  margin-top: calc(16 * var(--to-rem));
  padding-inline-start: calc(20 * var(--to-rem));
  list-style: decimal;
}
.p-price__needs li {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}

.p-price__include,
.p-price__exclude {
  display: grid;
  gap: calc(8 * var(--to-rem));
  margin-top: calc(16 * var(--to-rem));
}
.p-price__include li,
.p-price__exclude li {
  position: relative;
  padding-inline-start: calc(16 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
.p-price__include li::before,
.p-price__exclude li::before {
  content: "";
  position: absolute;
  inset-block-start: calc(11 * var(--to-rem));
  inset-inline-start: 0;
  width: calc(6 * var(--to-rem));
  height: calc(2 * var(--to-rem));
}

.p-price__include li::before {
  background-color: var(--color-accent);
}

.p-price__exclude li::before {
  background-color: var(--color-border-gray);
}

.p-price__terms {
  display: grid;
  gap: calc(12 * var(--to-rem));
  margin-top: calc(16 * var(--to-rem));
}
.p-price__terms > div {
  display: grid;
  gap: calc(2 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-price__terms > div {
    grid-template-columns: calc(140 * var(--to-rem)) 1fr;
    column-gap: calc(16 * var(--to-rem));
  }
}
.p-price__terms dt {
  color: var(--color-sub);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
}
.p-price__terms dd {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}

.p-problem__list {
  display: grid;
  gap: calc(12 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-problem__list {
    margin-top: calc(48 * var(--to-rem));
  }
}

.p-problem__item {
  position: relative;
  padding-inline-start: calc(32 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .p-problem__item {
    font-size: calc(17 * var(--to-rem));
  }
}
.p-problem__item::before, .p-problem__item::after {
  content: "";
  position: absolute;
  background-color: var(--color-accent);
}
.p-problem__item::before {
  inset-block-start: calc(15 * var(--to-rem));
  inset-inline-start: calc(4 * var(--to-rem));
  width: calc(8 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  rotate: 45deg;
}
.p-problem__item::after {
  inset-block-start: calc(12 * var(--to-rem));
  inset-inline-start: calc(9 * var(--to-rem));
  width: calc(14 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  rotate: -45deg;
}

.p-problem__note {
  margin-top: calc(28 * var(--to-rem));
  color: var(--color-sub);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}

.p-profile__body {
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-profile__body {
    margin-top: calc(48 * var(--to-rem));
  }
}

.p-profile__name {
  margin-block-end: calc(20 * var(--to-rem));
  padding-block-end: calc(16 * var(--to-rem));
  border-block-end: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-profile__name {
    font-size: calc(22 * var(--to-rem));
  }
}

.p-profile__name-sub {
  display: block;
  margin-block-start: calc(6 * var(--to-rem));
  color: var(--color-sub);
  font-size: calc(13 * var(--to-rem));
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
}

.p-profile__career,
.p-profile__status {
  display: grid;
  gap: calc(8 * var(--to-rem));
}
.p-profile__career li,
.p-profile__status li {
  position: relative;
  padding-inline-start: calc(16 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}
.p-profile__career li::before,
.p-profile__status li::before {
  content: "";
  position: absolute;
  inset-block-start: calc(12 * var(--to-rem));
  inset-inline-start: 0;
  width: calc(6 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  background-color: var(--color-accent);
}
.p-profile__career strong,
.p-profile__status strong {
  font-weight: var(--fw-bold);
}

.p-profile__status {
  margin-top: calc(16 * var(--to-rem));
}

.p-profile__subtitle {
  margin-top: calc(32 * var(--to-rem));
  padding-block-end: calc(10 * var(--to-rem));
  border-block-end: calc(2 * var(--to-rem)) solid var(--color-primary);
  color: var(--color-primary);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-proof__list {
  display: grid;
  gap: calc(32 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-proof__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(40 * var(--to-rem));
    margin-top: calc(48 * var(--to-rem));
  }
}

.p-proof__item {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
}

.p-proof__title {
  padding-block-end: calc(12 * var(--to-rem));
  border-block-end: 1px solid rgba(255, 255, 255, 0.25);
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-proof__desc {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.9;
}

.p-proof__points {
  display: grid;
  gap: calc(8 * var(--to-rem));
}
.p-proof__points li {
  position: relative;
  padding-inline-start: calc(16 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
.p-proof__points li::before {
  content: "";
  position: absolute;
  inset-block-start: calc(11 * var(--to-rem));
  inset-inline-start: 0;
  width: calc(6 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  background-color: var(--color-accent);
}
.p-proof__points strong {
  font-weight: var(--fw-bold);
}

.p-proof__thumb {
  aspect-ratio: 2/1;
  margin-block-start: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.06);
}
.p-proof__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.p-proof__link {
  display: inline-block;
  color: var(--color-accent);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-proof__link:hover {
    text-decoration: none;
  }
}

.p-skills__list {
  display: grid;
  gap: calc(28 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-skills__list {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(32 * var(--to-rem));
    margin-top: calc(48 * var(--to-rem));
  }
}

.p-skills__title {
  padding-block-end: calc(10 * var(--to-rem));
  border-block-end: calc(2 * var(--to-rem)) solid var(--color-primary);
  color: var(--color-primary);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-skills__items {
  display: grid;
  gap: calc(8 * var(--to-rem));
  margin-top: calc(16 * var(--to-rem));
}
.p-skills__items li {
  position: relative;
  padding-inline-start: calc(16 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
.p-skills__items li::before {
  content: "";
  position: absolute;
  inset-block-start: calc(11 * var(--to-rem));
  inset-inline-start: 0;
  width: calc(6 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  background-color: var(--color-accent);
}

.p-works__lead {
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(15 * var(--to-rem));
  line-height: 1.9;
}

.p-works__list {
  display: grid;
  gap: calc(40 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-works__list {
    gap: calc(56 * var(--to-rem));
    margin-top: calc(48 * var(--to-rem));
  }
}

.p-works__item {
  display: grid;
  gap: calc(20 * var(--to-rem));
  padding-block-end: calc(32 * var(--to-rem));
  border-block-end: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .p-works__item {
    grid-template-columns: calc(360 * var(--to-rem)) 1fr;
    gap: calc(32 * var(--to-rem));
  }
}

.p-works__thumb {
  align-self: start;
}
.p-works__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border: 1px solid var(--color-border);
  object-fit: cover;
  object-position: top center;
}

.p-works__tag {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  background-color: var(--color-gray);
  color: var(--color-sub);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.p-works__tag--real {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.p-works__title {
  margin-top: calc(12 * var(--to-rem));
  color: var(--color-primary);
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.p-works__spec {
  display: grid;
  gap: calc(10 * var(--to-rem));
  margin-top: calc(16 * var(--to-rem));
}
.p-works__spec > div {
  display: grid;
  gap: calc(2 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-works__spec > div {
    grid-template-columns: calc(110 * var(--to-rem)) 1fr;
    column-gap: calc(16 * var(--to-rem));
  }
}
.p-works__spec dt {
  color: var(--color-sub);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
}
.p-works__spec dd {
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}

.p-works__caution {
  margin-top: calc(16 * var(--to-rem));
  padding-inline-start: calc(12 * var(--to-rem));
  border-inline-start: calc(2 * var(--to-rem)) solid var(--color-border-gray);
  color: var(--color-sub);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.8;
}

.p-works__link {
  display: inline-block;
  margin-top: calc(16 * var(--to-rem));
  color: var(--color-accent);
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1.6;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-works__link:hover {
    text-decoration: none;
  }
}

@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}