@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%;
  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;
}
textarea {
  field-sizing: content;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text-color);
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  line-height: 1.5;
}
a {
  opacity: 1;
  transition: var(--duration);
}
a:hover {
  opacity: 0.7;
}
@media screen and (width <= 1024px) {
  a:hover {
    opacity: 1;
  }
}
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  --inner: min(1280px, 100%);
  --inner-sp: min(640px, 100%);
  --padding-inner: 20px;
  --z-index-header: 900;
  --color-white: #fff;
  --color-black: #000;
  --color-border: #aaaaaf;
  --main-color-beige: #f2efea;
  --main-color-gray: #e6e6e6;
  --sub-color-gray: #c9c9c9;
  --sub-color-black: #1a1a1a;
  --text-color: #1a1a1a;
  --accent-color: #d19a63;
  --footer-gradient-from: #e4d4c7;
  --footer-gradient-to: #d1b498;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 500;
  --fw-bold: 700;
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --en-font-family: "Inter", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  --duration: 0.3s;
  --header-height: 64px;
}
@media screen and (width >= 1024px) {
  :root {
    --header-height: 72px;
  }
}
.p-voice {
  background-image: url("../voice_bg.D52ZYtqy.webp");
}
.l-header {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-header);
}
.l-inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-inner);
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: calc(var(--inner-sp) + var(--padding-inner) * 2);
  }
}
.l-main {
  flex: 1 1 auto;
}
.c-button {
  position: relative;
  display: inline-block;
  padding: calc(14 * var(--to-rem)) calc(60 * var(--to-rem));
  border: 1px solid currentcolor;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: calc(15 * var(--to-rem));
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(20 * var(--to-rem));
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  translate: 0 -50%;
  rotate: 45deg;
  transition: rotate 0.3s, translate 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover::before {
    translate: 5px -50%;
  }
}
.c-button[data-color=black] {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-button[data-color=black]::before {
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}
.c-section-title {
  display: flex;
  flex-direction: column-reverse;
  gap: calc(16 * var(--to-rem));
  width: 100%;
  max-width: calc(768 * 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__main {
  font-size: calc(48 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-transform: none;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: calc(32 * var(--to-rem));
  }
}
.c-section-title__sub {
  color: var(--accent-color);
  font-family: var(--en-font-family);
  font-weight: var(--fw-medium);
}
.p-company {
  padding-block: calc(112 * var(--to-rem));
  background-color: #f5f3ee;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-company__card {
  background-color: var(--color-white);
  border: calc(5 * var(--to-rem)) solid rgba(209, 154, 99, 0.3);
  border-radius: calc(70 * var(--to-rem));
  box-shadow: 0 0 calc(20 * var(--to-rem)) rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-company__card {
    border-width: calc(3 * var(--to-rem));
    border-radius: calc(32 * var(--to-rem));
  }
}
.p-company__card-inner {
  display: flex;
  gap: calc(80 * var(--to-rem));
  align-items: flex-start;
  padding: calc(43 * var(--to-rem)) calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-company__card-inner {
    flex-direction: column;
    gap: calc(32 * var(--to-rem));
    padding: calc(32 * var(--to-rem)) calc(24 * var(--to-rem));
  }
}
.p-company__heading-col {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-company__heading-col {
    margin-inline: auto;
  }
}
.p-company__heading {
  font-size: calc(56 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--sub-color-black);
}
.p-company__heading::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(16 * var(--to-rem));
  margin-block-start: calc(12 * var(--to-rem));
  background-color: var(--accent-color);
  border-radius: calc(2 * var(--to-rem));
  box-shadow: 0 calc(4 * var(--to-rem)) calc(4 * var(--to-rem)) 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-company__heading {
    font-size: calc(36 * var(--to-rem));
  }
}
.p-company__table-col {
  flex: 1;
  min-width: 0;
  margin-inline-start: auto;
  width: 100%;
  max-width: calc(720 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-company__table-col {
    margin-inline-start: revert;
    max-width: 100%;
  }
}
.p-company__list {
  display: flex;
  flex-direction: column;
}
.p-company__row {
  display: flex;
  gap: calc(32 * var(--to-rem));
  padding-block: calc(8 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
  line-height: 2.7;
  border-block-end: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .p-company__row {
    flex-direction: column;
    gap: 0;
    font-size: calc(16 * var(--to-rem));
    line-height: 1.8;
    padding-block: calc(12 * var(--to-rem));
  }
}
.p-company__label {
  flex-shrink: 0;
  width: calc(100 * var(--to-rem));
  font-weight: var(--fw-bold);
  color: var(--sub-color-black);
}
@media screen and (max-width: 767px) {
  .p-company__label {
    width: auto;
  }
}
.p-company__value {
  flex: 1;
  min-width: 0;
  font-weight: var(--fw-medium);
  color: var(--sub-color-black);
}
.p-company__value a {
  color: inherit;
  text-underline-offset: calc(3 * var(--to-rem));
}
.p-cta {
  padding-block: calc(112 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-cta__inner {
  display: flex;
  flex-direction: column;
  gap: calc(72 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    gap: calc(48 * var(--to-rem));
  }
}
.p-cta__content {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
}
.p-cta__heading {
  font-size: calc(48 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--sub-color-black);
}
@media screen and (max-width: 767px) {
  .p-cta__heading {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-cta__text {
  font-size: calc(18 * var(--to-rem));
  color: var(--sub-color-black);
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(12 * var(--to-rem)) calc(24 * var(--to-rem));
  font-weight: var(--fw-medium);
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
}
.p-error {
  padding-block: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: calc(60 * var(--to-rem));
  }
}
.p-error__header {
  margin-block-end: calc(32 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__header {
    margin-block-end: calc(24 * var(--to-rem));
  }
}
.p-error__title {
  color: var(--color-text);
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-error__content {
  max-width: calc(640 * var(--to-rem));
  margin-inline: auto;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__content {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-error__content p + p {
  margin-block-start: calc(24 * var(--to-rem));
}
.p-flow {
  padding-block: calc(112 * var(--to-rem));
  background-color: #f5f1ec;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-flow__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-flow__lead {
  margin-block-start: calc(15 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-flow__timeline {
  margin-block-start: calc(70 * var(--to-rem));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr auto 1fr;
  column-gap: calc(8 * var(--to-rem));
  row-gap: calc(16 * var(--to-rem));
  background-color: #f0eae3;
}
@media screen and (max-width: 767px) {
  .p-flow__timeline {
    margin-block-start: calc(32 * var(--to-rem));
    padding: calc(24 * var(--to-rem));
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: calc(8 * var(--to-rem));
  }
}
.p-flow__step {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-flow__step {
    display: flex;
    gap: calc(16 * var(--to-rem));
    align-items: flex-start;
  }
}
.p-flow__step:nth-child(1) > * {
  grid-column: 1;
}
.p-flow__step:nth-child(2) > * {
  grid-column: 2;
}
.p-flow__step:nth-child(3) > * {
  grid-column: 3;
}
.p-flow__step:nth-child(4) > * {
  grid-column: 4;
}
.p-flow__step:nth-child(5) > * {
  grid-column: 5;
}
.p-flow__step-progress {
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__step-progress {
    flex-direction: column;
    flex-shrink: 0;
    align-self: stretch;
    gap: calc(8 * var(--to-rem));
    padding-block-start: calc(4 * var(--to-rem));
  }
}
.p-flow__step:nth-child(odd) .p-flow__step-content {
  grid-row: 3;
  align-self: start;
}
.p-flow__step:nth-child(even) .p-flow__step-content {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-flow__step:nth-child(odd) .p-flow__step-content,
  .p-flow__step:nth-child(even) .p-flow__step-content {
    grid-row: unset;
    grid-column: unset;
    align-self: unset;
    justify-content: unset;
  }
  .p-flow__step-progress {
    grid-row: unset;
    grid-column: unset;
  }
}
.p-flow__step-dot {
  display: block;
  width: calc(15 * var(--to-rem));
  height: calc(15 * var(--to-rem));
  border-radius: 50%;
  background-color: #85827f;
  flex-shrink: 0;
}
.p-flow__step-dot--active {
  background-color: var(--accent-color);
}
.p-flow__step-line {
  display: block;
  flex: 1 0 0;
  height: calc(3 * var(--to-rem));
  background-color: #85827f;
}
@media screen and (max-width: 767px) {
  .p-flow__step-line {
    width: calc(3 * var(--to-rem));
    height: auto;
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__step:last-child .p-flow__step-line {
    display: none;
  }
}
.p-flow__step-content {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  min-height: calc(180 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-flow__step-content {
    min-height: auto;
    padding-block-end: calc(24 * var(--to-rem));
  }
}
.p-flow__step-number {
  color: var(--accent-color);
}
.p-flow__step-label {
  display: block;
  font-family: var(--en-font-family);
  font-weight: var(--fw-semi-bold);
  font-size: calc(18 * var(--to-rem));
  letter-spacing: 0.2em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-flow__step-label {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-flow__step-num {
  display: block;
  font-family: var(--en-font-family);
  font-weight: 800;
  font-size: calc(40 * var(--to-rem));
  line-height: 0.95;
}
@media screen and (max-width: 767px) {
  .p-flow__step-num {
    font-size: calc(32 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-flow__step-text {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-flow__note {
  margin-block-start: calc(16 * var(--to-rem));
  color: rgba(26, 26, 26, 0.9);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-flow__note {
    font-size: calc(14 * var(--to-rem));
    text-align: left;
  }
}
.p-footer {
  padding: calc(80 * var(--to-rem)) 0;
  background: linear-gradient(177deg, rgb(228, 212, 199) 33%, rgb(209, 180, 152) 74%, rgba(15, 23, 42, 0.76) 100%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: calc(60 * var(--to-rem)) 0;
  }
}
.p-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(40 * var(--to-rem));
  width: 100%;
}
.p-footer__logo a {
  font-family: var(--en-font-family);
  font-size: calc(22 * var(--to-rem));
  font-weight: var(--fw-bold);
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__logo a {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-footer__nav-list {
  display: flex;
  flex-wrap: nowrap;
  gap: calc(24 * var(--to-rem)) calc(40 * var(--to-rem));
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    flex-direction: column;
  }
}
.p-footer__nav-item a {
  font-size: calc(14 * var(--to-rem));
}
.p-footer__divider {
  width: 100%;
  height: 1px;
  margin-block: calc(70 * var(--to-rem)) calc(32 * var(--to-rem));
  background-color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-footer__divider {
    margin-block: calc(40 * var(--to-rem));
  }
}
.p-footer__bottom {
  width: 100%;
}
.p-footer__copyright {
  color: var(--color-black);
  font-size: calc(12 * var(--to-rem));
  margin: 0;
}
.p-header {
  height: var(--header-height);
  background-color: var(--color-white);
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding-inline-start: calc(16 * var(--to-rem));
    padding-inline-end: 0;
  }
}
.p-header__logo {
  flex-shrink: 0;
  width: fit-content;
  height: inherit;
}
.p-header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}
.p-header__column {
  display: flex;
  align-items: center;
  gap: calc(32 * var(--to-rem));
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .p-header__column {
    display: none;
  }
}
.p-header__nav {
  height: inherit;
}
.p-header__nav-list {
  display: flex;
  align-items: center;
  gap: calc(32 * var(--to-rem));
  height: inherit;
}
.p-header__nav-item {
  height: inherit;
}
.p-header__nav-item a {
  display: flex;
  align-items: center;
  height: inherit;
  color: var(--color-black);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-regular);
  line-height: 1.5;
  white-space: nowrap;
}
.p-header__actions {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}
.p-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: calc(8 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  white-space: nowrap;
  transition: background-color var(--duration), color var(--duration);
}
.p-header__btn--outline {
  outline: 1px solid var(--accent-color);
  outline-offset: -1px;
  background-color: transparent;
  color: var(--accent-color);
}
.p-header__btn--primary {
  outline: 1px solid var(--accent-color);
  outline-offset: -1px;
  background-color: var(--accent-color);
  color: var(--color-white);
}
.p-header__btn--outline:hover {
  background-color: var(--accent-color);
  color: var(--color-white);
  opacity: 1;
}
.p-header__hamburger {
  position: relative;
  z-index: 999;
  display: none;
  width: calc(64 * var(--to-rem));
  height: inherit;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: background-color var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: block;
  }
}
.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: calc(25 * var(--to-rem));
  height: 2px;
  background-color: var(--accent-color);
  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: -4px;
  rotate: -45deg;
}
.p-header__drawer {
  position: absolute;
  inset: 0;
  z-index: 900;
  display: none;
  overflow-y: auto;
  width: 100%;
  height: 100dvh;
  margin-block-start: var(--header-height);
  padding-block-end: calc(110 * var(--to-rem));
  background-color: var(--color-white);
  scrollbar-width: none;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}
.p-header__drawer.is-open {
  display: block;
}
.p-header__drawer-nav {
  padding-block-start: calc(16 * var(--to-rem));
}
.p-header__drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-header__drawer-item {
  border-bottom: 1px solid var(--color-border);
}
.p-header__drawer-item a {
  display: block;
  padding-block: calc(20 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem));
}
.p-header__drawer-item.p-header__drawer-item--primary {
  margin-block-start: calc(24 * var(--to-rem));
  margin-inline: calc(32 * var(--to-rem));
  border-bottom: none;
}
.p-header__drawer-item.p-header__drawer-item--primary a {
  padding-block: calc(12 * var(--to-rem));
  background-color: var(--accent-color);
  color: var(--color-white);
  text-align: center;
}
.p-legal-section {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-legal-section {
    margin-top: calc(32 * var(--to-rem));
  }
}
.p-legal-section__title {
  font-weight: var(--fw-bold);
  font-size: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-legal-section__title {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-legal-section__intro {
  margin-top: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-legal-section__intro {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-legal-section__outro {
  margin-top: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-legal-section__outro {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-legal-section__list {
  margin-top: calc(16 * var(--to-rem));
  padding-left: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-legal-section__list {
    margin-top: calc(12 * var(--to-rem));
    padding-left: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-legal-section__list--numbered {
  list-style-type: decimal;
}
.p-legal-section__list--bullet {
  list-style: none;
  padding-left: 0;
}
.p-legal-section__list--bullet > .p-legal-section__item {
  position: relative;
  padding-left: calc(20 * var(--to-rem));
}
.p-legal-section__list--bullet > .p-legal-section__item::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-legal-section__list--bullet > .p-legal-section__item.p-legal-section__item--no-marker {
  padding-left: 0;
}
.p-legal-section__list--bullet > .p-legal-section__item.p-legal-section__item--no-marker::before {
  content: none;
}
.p-legal-section__list--alpha {
  list-style-type: lower-alpha;
}
.p-legal-section__item + .p-legal-section__item {
  margin-top: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-legal-section__item + .p-legal-section__item {
    margin-top: calc(10 * var(--to-rem));
  }
}
.p-legal-section__item-text {
  display: block;
}
.p-legal-section__sublist {
  margin-top: calc(12 * var(--to-rem));
  padding-left: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-legal-section__sublist {
    margin-top: calc(10 * var(--to-rem));
    padding-left: calc(20 * var(--to-rem));
  }
}
.p-legal-section__sublist--numbered {
  list-style-type: decimal;
}
.p-legal-section__sublist--bullet {
  list-style: none;
  padding-left: 0;
}
.p-legal-section__sublist--bullet > .p-legal-section__subitem {
  position: relative;
  padding-left: calc(20 * var(--to-rem));
}
.p-legal-section__sublist--bullet > .p-legal-section__subitem::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-legal-section__sublist--alpha {
  list-style-type: lower-alpha;
}
.p-legal-section__subitem + .p-legal-section__subitem {
  margin-top: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-legal-section__subitem + .p-legal-section__subitem {
    margin-top: calc(6 * var(--to-rem));
  }
}
.p-legal-section__subitem-text {
  display: block;
}
.p-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100svh;
}
.p-mv__inner {
  position: relative;
  width: 100%;
  height: inherit;
  min-height: calc(400 * var(--to-rem));
}
.p-mv__title-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  padding-inline: var(--padding-inner);
  color: var(--color-white);
  text-align: center;
}
.p-mv__main-title {
  font-size: calc(56 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px oklch(from var(--color-black) l c h/30%);
}
@media screen and (max-width: 767px) {
  .p-mv__main-title {
    font-size: clamp(24 * var(--to-rem), 5cqi, 48 * var(--to-rem));
  }
}
.p-mv__sub-title {
  margin-block: calc(24 * var(--to-rem)) calc(32 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
  text-shadow: 0 0 20px oklch(from var(--color-black) l c h/20%);
}
@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    margin-block: calc(32 * var(--to-rem)) calc(40 * var(--to-rem));
    font-size: clamp(16 * var(--to-rem), 3cqi, 18 * var(--to-rem));
  }
}
.p-mv__button a {
  padding: calc(12 * var(--to-rem)) calc(24 * var(--to-rem));
  outline: 1px solid var(--color-white);
  outline-offset: -1px;
  background-color: var(--accent-color);
  font-weight: var(--fw-bold);
}
.p-mv__bg {
  height: inherit;
}
.p-page-law {
  padding: calc(160 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .p-page-law {
    padding: calc(120 * var(--to-rem)) 0;
  }
}
.p-page-law__list {
  margin-top: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__list {
    margin-top: calc(40 * var(--to-rem));
  }
}
.p-page-law__item {
  display: flex;
  gap: calc(16 * var(--to-rem));
  padding: calc(16 * var(--to-rem)) calc(20 * var(--to-rem));
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-page-law__item {
    flex-direction: column;
    gap: calc(4 * var(--to-rem));
    padding: calc(12 * var(--to-rem)) 0;
  }
}
.p-page-law__item-title {
  flex: 0 0 calc(200 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-page-law__item-title {
    flex: none;
    font-size: calc(14 * var(--to-rem));
  }
}
.p-page-law__item-description {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-page-law__item-description {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-page-law__item a {
  color: var(--accent-color);
  text-decoration: underline;
}
.p-page-law__item a:hover {
  text-decoration: none;
}
.p-page-law__content {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__content {
    margin-top: calc(32 * var(--to-rem));
  }
}
.p-page-law__plans {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__plans {
    margin-top: calc(32 * var(--to-rem));
  }
}
.p-page-law__plan {
  padding: calc(24 * var(--to-rem));
  background-color: var(--main-color-gray);
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__plan {
    padding: calc(16 * var(--to-rem));
  }
}
.p-page-law__plan + .p-page-law__plan {
  margin-top: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__plan + .p-page-law__plan {
    margin-top: calc(20 * var(--to-rem));
  }
}
.p-page-law__plan-name {
  font-weight: var(--fw-bold);
  font-size: calc(18 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__plan-name {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-page-law__plan-price {
  margin-top: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__plan-price {
    margin-top: calc(10 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-page-law__plan-features {
  margin-top: calc(12 * var(--to-rem));
  padding-left: calc(24 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__plan-features {
    margin-top: calc(10 * var(--to-rem));
    padding-left: 0;
  }
}
.p-page-law__plans-note {
  margin: calc(12 * var(--to-rem)) 0 calc(40 * var(--to-rem));
  font-size: calc(14 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-law__plans-note {
    margin: calc(12 * var(--to-rem)) 0 calc(32 * var(--to-rem));
  }
}
.p-page-privacy {
  padding: calc(160 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .p-page-privacy {
    padding: calc(120 * var(--to-rem)) 0;
  }
}
.p-page-privacy__content {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-privacy__content {
    margin-top: calc(32 * var(--to-rem));
  }
}
.p-page-terms {
  padding: calc(160 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .p-page-terms {
    padding: calc(120 * var(--to-rem)) 0;
  }
}
.p-page-terms__content {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page-terms__content {
    margin-top: calc(32 * var(--to-rem));
  }
}
.p-plan {
  padding-block-start: calc(112 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding-block-start: calc(64 * var(--to-rem));
  }
}
.p-plan__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-plan__lead {
  margin-block-start: calc(24 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-plan__lead {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-plan__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(32 * var(--to-rem));
  margin-block-start: calc(80 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-plan__cards {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--to-rem));
    max-width: calc(440 * var(--to-rem));
    margin-inline: auto;
    margin-block-start: calc(48 * var(--to-rem));
  }
}
.p-plan__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: calc(32 * var(--to-rem));
  background-color: rgba(242, 242, 242, 0.9);
  border-radius: calc(30 * var(--to-rem));
  box-shadow: 0 0 calc(15 * var(--to-rem)) rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-plan__card {
    padding: calc(24 * var(--to-rem));
    border-radius: calc(20 * var(--to-rem));
  }
}
.p-plan__card--highlight {
  background-color: #f7e1cb;
}
.p-plan__card-deco {
  position: absolute;
  top: calc(-27 * var(--to-rem));
  left: 50%;
  width: calc(272 * var(--to-rem));
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-plan__card-deco {
    width: calc(200 * var(--to-rem));
    top: calc(-20 * var(--to-rem));
  }
}
.p-plan__card-body {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
}
.p-plan__card-price-block {
  text-align: center;
}
.p-plan__card-name {
  font-size: calc(23 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-plan__card-name {
    font-size: calc(20 * var(--to-rem));
  }
}
.p-plan__card-price {
  margin-block-start: calc(20 * var(--to-rem));
  font-family: var(--en-font-family);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
.p-plan__card-price-num {
  font-size: calc(56 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-plan__card-price-num {
    font-size: calc(44 * var(--to-rem));
  }
}
.p-plan__card-price-unit {
  font-family: var(--base-font-family);
  font-size: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-plan__card-price-unit {
    font-size: calc(32 * var(--to-rem));
  }
}
.p-plan__card-tax {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-plan__card-tax {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-plan__card-divider {
  border: none;
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0;
}
.p-plan__card-features {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  padding-block: calc(8 * var(--to-rem));
  list-style: none;
}
.p-plan__card-feature {
  display: flex;
  gap: calc(16 * var(--to-rem));
  align-items: flex-start;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-plan__card-feature {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-plan__card-check {
  flex-shrink: 0;
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
  color: var(--accent-color);
}
.p-plan__notes {
  margin-block-start: calc(80 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  color: rgba(26, 26, 26, 0.9);
}
@media screen and (max-width: 767px) {
  .p-plan__notes {
    margin-block-start: calc(48 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.p-plan__notes p + p {
  margin-block-start: 0;
}
.p-plan__tabs {
  margin-block-start: calc(112 * var(--to-rem));
  padding-block: calc(112 * var(--to-rem));
  background-color: #f2f2f2;
  transition: background-color 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-plan__tabs {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-plan__tabs-component {
  display: flex;
  gap: calc(80 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-plan__tabs-component {
    flex-direction: column;
    gap: calc(40 * var(--to-rem));
  }
}
.p-plan__tabs-image {
  position: relative;
  flex: 1 0 0;
  aspect-ratio: 1/1;
  min-width: 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-plan__tabs-image {
    flex: revert;
    width: 100%;
    max-width: calc(400 * var(--to-rem));
  }
}
.p-plan__tabs-pane {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.p-plan__tabs-pane.is-active {
  position: relative;
  opacity: 1;
}
.p-plan__tabs-menu {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: calc(40 * var(--to-rem));
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-plan__tabs-menu {
    width: 100%;
    gap: calc(24 * var(--to-rem));
  }
}
.p-plan__tabs-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(130 * var(--to-rem));
  padding-inline-start: calc(32 * var(--to-rem));
  overflow: hidden;
  border: none;
  border-inline-start: 3px solid transparent;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-plan__tabs-item {
    height: auto;
    min-height: calc(80 * var(--to-rem));
    padding: calc(16 * var(--to-rem)) calc(24 * var(--to-rem));
  }
}
.p-plan__tabs-item.is-active {
  background-color: var(--color-white);
  border-inline-start-color: var(--sub-color-black);
}
.p-plan__tabs-heading {
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--sub-color-black);
}
@media screen and (max-width: 767px) {
  .p-plan__tabs-heading {
    font-size: calc(24 * var(--to-rem));
  }
}
.p-plan__tabs-text {
  display: none;
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--sub-color-black);
}
.p-plan__tabs-item.is-active .p-plan__tabs-text {
  display: block;
}
.p-problem {
  padding-block: calc(112 * var(--to-rem));
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-problem__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-problem__lead {
  margin-block-start: calc(24 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-problem__lead {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-problem__cards {
  margin-block-start: calc(80 * var(--to-rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(32 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-problem__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(24 * var(--to-rem));
    margin-block-start: calc(48 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-problem__cards {
    grid-template-columns: 1fr;
    gap: calc(20 * var(--to-rem));
    margin-block-start: calc(40 * var(--to-rem));
  }
}
.p-problem__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: calc(5 * var(--to-rem));
  box-shadow: 0 0 calc(20 * var(--to-rem)) rgba(0, 0, 0, 0.15);
}
.p-problem__card-img {
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}
.p-problem__card-img img {
  width: 100%;
  aspect-ratio: 296/171;
  object-fit: cover;
}
.p-problem__card-body {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  padding: calc(24 * var(--to-rem));
}
.p-problem__card-title {
  font-size: calc(24 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-problem__card-title {
    font-size: calc(20 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-problem__card-text {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-reason {
  padding-block: calc(112 * var(--to-rem));
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-reason__inner {
  display: grid;
  grid-template-columns: calc(380 * var(--to-rem)) 1fr;
  gap: calc(80 * var(--to-rem));
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .p-reason__inner {
    grid-template-columns: 1fr;
    gap: calc(48 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    gap: calc(40 * var(--to-rem));
  }
}
.p-reason__header {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .p-reason__header {
    text-align: center;
    align-items: center;
  }
}
.p-reason__arrow {
  display: block;
  margin-block: calc(16 * var(--to-rem)) calc(14 * var(--to-rem));
  position: relative;
  width: calc(352 * var(--to-rem));
  height: calc(5 * var(--to-rem));
  background-color: var(--accent-color);
}
.p-reason__arrow::after {
  position: absolute;
  right: calc(-10 * var(--to-rem));
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(15 * var(--to-rem)) 0 calc(15 * var(--to-rem)) calc(25 * var(--to-rem));
  border-color: transparent transparent transparent var(--accent-color);
  transform: translateY(-50%);
  content: "";
}
@media screen and (max-width: 1023px) {
  .p-reason__arrow {
    align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__arrow {
    width: min(280 * var(--to-rem), 80%);
  }
}
.p-reason__lead {
  font-size: calc(18 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-reason__lead {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-reason__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(64 * var(--to-rem)) calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-reason__grid {
    grid-template-columns: 1fr;
    gap: calc(48 * var(--to-rem));
  }
}
.p-reason__item {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-reason__item {
    align-items: center;
  }
}
.p-reason__item-icon {
  width: calc(48 * var(--to-rem));
  height: calc(48 * var(--to-rem));
}
.p-reason__item-icon img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.p-reason__item-title {
  font-size: calc(29 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-reason__item-title {
    font-size: calc(22 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-reason__item-text {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-service {
  padding-block: calc(112 * var(--to-rem));
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-service__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(768 * var(--to-rem));
  margin-inline: auto;
  margin-block-end: calc(90 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__header {
    margin-block-end: calc(48 * var(--to-rem));
  }
}
.p-service__feature {
  display: flex;
  gap: calc(80 * var(--to-rem));
  align-items: center;
}
.p-service__feature + .p-service__feature {
  margin-block-start: calc(112 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-service__feature {
    gap: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-service__feature {
    flex-direction: column;
    gap: calc(32 * var(--to-rem));
  }
  .p-service__feature + .p-service__feature {
    margin-block-start: calc(64 * var(--to-rem));
  }
}
.p-service__feature--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-service__feature--reverse {
    flex-direction: column;
  }
}
.p-service__feature-body {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  min-width: 0;
}
.p-service__feature-label {
  font-weight: var(--fw-bold);
}
.p-service__feature-title {
  font-size: calc(48 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .p-service__feature-title {
    font-size: calc(36 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-service__feature-title {
    font-size: calc(28 * var(--to-rem));
  }
}
.p-service__feature-text {
  margin-block-start: calc(8 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-service__feature-text {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-service__feature-img {
  flex-shrink: 0;
  width: 100%;
  max-width: calc(370 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-service__feature-img {
    max-width: calc(300 * var(--to-rem));
  }
}
.p-service__feature-img img {
  border-radius: calc(8 * var(--to-rem));
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.p-voice {
  position: relative;
  padding-block: calc(112 * var(--to-rem));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-block: calc(64 * var(--to-rem));
  }
}
.p-voice__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-voice__header .c-section-title {
  gap: calc(24 * var(--to-rem));
}
.p-voice__lead {
  margin-block-start: calc(24 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-voice__lead {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-voice__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(32 * var(--to-rem));
  margin-block-start: calc(66 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-voice__cards {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--to-rem));
    max-width: calc(500 * var(--to-rem));
    margin-inline: auto;
    margin-block-start: calc(40 * var(--to-rem));
  }
}
.p-voice__card {
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  padding: calc(32 * var(--to-rem));
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-voice__card {
    padding: calc(24 * var(--to-rem));
  }
}
.p-voice__card-quote {
  font-size: calc(17 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-voice__card-quote {
    font-size: calc(15 * var(--to-rem));
  }
}
.p-voice__card-avatar {
  display: flex;
  gap: calc(16 * var(--to-rem));
  align-items: center;
}
.p-voice__card-avatar-img {
  width: calc(48 * var(--to-rem));
  height: calc(48 * var(--to-rem));
  border-radius: 50%;
  object-fit: cover;
}
.p-voice__card-avatar-info {
  display: flex;
  flex-direction: column;
}
.p-voice__card-avatar-name {
  font-weight: var(--fw-semi-bold);
}
@media screen and (max-width: 767px) {
  .p-voice__card-avatar-role {
    font-size: calc(14 * var(--to-rem));
  }
}
[data-fadein] {
  opacity: 0;
  transform: translateY(calc(50 * var(--to-rem)));
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1), transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}
[data-fadein].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}
@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}
.u-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}