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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

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

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

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

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  -webkit-text-decoration-line: unset;
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

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

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

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

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

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

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

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

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

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

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

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

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

::-webkit-file-upload-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

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

::-webkit-file-upload-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

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

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

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

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

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

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

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

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

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

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

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

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

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

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

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

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

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

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

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

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

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

@keyframes hamclick-top {
  0% {
    -webkit-transform: translateY(-8px) rotate(0);
    transform: translateY(-8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(12px) rotate(0deg);
    transform: translateY(12px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateY(12px) rotate(0deg);
    transform: translateY(12px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(12px) rotate(755deg);
    transform: translateY(12px) rotate(755deg);
  }
}
@-webkit-keyframes hamclick-bottom {
  0% {
    -webkit-transform: translateY(8px) rotate(0);
    transform: translateY(8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(-12px) rotate(0deg);
    transform: translateY(-12px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateY(-12px) rotate(0deg);
    transform: translateY(-12px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-12px) rotate(-755deg);
    transform: translateY(-12px) rotate(-755deg);
  }
}
@keyframes hamclick-bottom {
  0% {
    -webkit-transform: translateY(8px) rotate(0);
    transform: translateY(8px) rotate(0);
  }
  40% {
    -webkit-transform: translateY(-12px) rotate(0deg);
    transform: translateY(-12px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateY(-12px) rotate(0deg);
    transform: translateY(-12px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-12px) rotate(-755deg);
    transform: translateY(-12px) rotate(-755deg);
  }
}
@-webkit-keyframes spnav-click {
  0% {
    opacity: 0;
    height: 0;
  }
  1% {
    opacity: 1;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@keyframes spnav-click {
  0% {
    opacity: 0;
    height: 0;
  }
  1% {
    opacity: 1;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 0.811rem + 0.3vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #222;
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
}
body.show {
  opacity: 1;
}
body::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  -webkit-transition: background 0.24s ease-in-out;
  transition: background 0.24s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 900px) {
  body.ham-active {
    overflow-y: hidden;
  }
  body.ham-active::before {
    background: rgba(0, 0, 0, 0.2);
    pointer-events: all;
  }
}

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

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

#strengths,
#plan,
#case,
#faq {
  scroll-margin-block-start: calc(clamp(3.75rem, 3.31rem + 1.88vw, 5rem) + 20px);
}

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

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

/* ==========================================================================
  layout
============================================================================*/
.l-footer {
  -webkit-padding-before: clamp(1.875rem, 1.3908450704rem + 2.0657276995vw, 3.25rem);
  padding-block-start: clamp(1.875rem, 1.3908450704rem + 2.0657276995vw, 3.25rem);
  background: #000099;
}
.l-footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 900px) {
  .l-footer__inner {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    gap: 16px;
    -webkit-padding-after: 52px;
    padding-block-end: 52px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__inner {
    display: -ms-grid;
    display: grid;
    gap: 24px;
    -webkit-padding-after: 24px;
    padding-block-end: 24px;
  }
}
.l-footer .logo {
  width: clamp(8.75rem, 7.4295774648rem + 5.6338028169vw, 12.5rem);
}
@media screen and (min-width: 900px) {
  .l-footer nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 40px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer nav ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
@media screen and (min-width: 900px) {
  .l-footer nav ul li {
    position: relative;
  }
  .l-footer nav ul li:not(:last-of-type)::after {
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0.25em;
    right: -20px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer nav ul li {
    -webkit-padding-start: 9px;
    padding-inline-start: 9px;
    position: relative;
  }
  .l-footer nav ul li::before {
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0.15em;
    left: 0;
  }
}
@media screen and (min-width: 900px) {
  .l-footer nav ul li a {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 13.2px; /* 110% */
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer nav ul li a {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 13.2px; /* 110% */
    letter-spacing: 0.4px;
  }
}
.l-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 900px) {
  .l-footer .copyright {
    padding-block: 16px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer .copyright {
    display: -ms-grid;
    display: grid;
    place-items: center;
    padding-block: 10px;
  }
}
@media screen and (min-width: 900px) {
  .l-footer .copyright small {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 16px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.4px;
  }
}
@media screen and (max-width: 900px) {
  .l-footer .copyright small {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.4px;
  }
}

.l-header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
  background-color: #fff;
  border-bottom: 1px solid #E0E0E0;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .l-header {
    padding-inline: 16px;
  }
}
@media screen and (max-width: 900px) {
  .l-header {
    -webkit-padding-start: 16px;
    padding-inline-start: 16px;
  }
}
.l-header .l-inner {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .l-header .l-inner {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: min(32px, 1.6666666667vw);
  }
}
@media screen and (max-width: 900px) {
  .l-header .l-inner {
    -ms-grid-columns: auto 1fr auto;
    grid-template-columns: auto 1fr auto;
  }
}
.l-header .logo {
  width: clamp(5rem, 4.0757042254rem + 3.9436619718vw, 7.625rem);
}
@media screen and (min-width: 900px) {
  .l-header .catch {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .l-header .catch {
    -webkit-margin-start: min(18px, 4.8vw);
    margin-inline-start: min(18px, 4.8vw);
    font-size: 12px;
    line-height: 1.3333333333;
  }
}

.l-header .l-inner {
  max-width: 1240px;
  margin-inline: auto;
}
@media screen and (min-width: 1440px) {
  .l-header .l-inner {
    max-width: calc(100% - 100px - 100px);
  }
}

.l-main {
  -webkit-padding-before: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
  padding-block-start: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
}

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

.c-button.--cta {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-height: 48px;
  padding-inline: 32px;
  border-radius: 50vw;
  background: #E65F4A;
  -webkit-box-shadow: 0 2.359px 4.719px 0 rgba(100, 0, 0, 0.25);
  box-shadow: 0 2.359px 4.719px 0 rgba(100, 0, 0, 0.25);
  -webkit-transition: background 0.24s ease-in-out;
  transition: background 0.24s ease-in-out;
}
.c-button.--cta > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.c-button.--cta .icon {
  width: 18px;
  aspect-ratio: 1;
  -webkit-margin-start: 4px;
  margin-inline-start: 4px;
  position: relative;
  top: 0.05em;
}
@media (any-hover: hover) {
  .c-button.--cta:hover {
    background: #FFCFA3;
  }
}
.c-button.--cta.--kv {
  min-height: 80px;
  background: #F25036;
}
@media screen and (min-width: 900px) {
  .c-button.--cta.--kv {
    max-width: 512px;
  }
}
@media screen and (max-width: 900px) {
  .c-button.--cta.--kv {
    max-width: 100%;
    margin-inline: auto;
  }
}
.c-button.--cta.--kv > span {
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  line-height: 120%; /* 120% */
}
@media screen and (max-width: 900px) {
  .c-button.--cta.--kv > span {
    text-align: center;
  }
}
.c-button.--cta.--kv .icon {
  width: 1.2em;
  height: 1.2em;
  -webkit-margin-start: 10px;
  margin-inline-start: 10px;
}
@media (any-hover: hover) {
  .c-button.--cta.--kv:hover {
    background: #FFCFA3;
  }
}
.c-button.--cta.--kv.--cva {
  padding-inline: 28px;
}
.c-button.--cta.--kv.--cva .icon {
  -webkit-margin-start: 6px;
  margin-inline-start: 6px;
}
@media (any-hover: hover) {
  .c-button.--cta.--kv.--cva:hover {
    background: #FFCFA3;
  }
}

.l-header {
  z-index: 9999;
}

@media screen and (min-width: 900px) {
  .l-header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: min(32px, 1.6666666667vw);
  }
  .l-header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: min(32px, 1.6666666667vw);
  }
  .l-header nav ul > li a {
    border-bottom: 1px solid rgba(24, 86, 153, 0);
    color: #185699;
    text-align: center;
    font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
    font-weight: 600;
    line-height: 100%; /* 16px */
    letter-spacing: 0.48px;
    -webkit-transition: border-bottom 0.24s ease-in-out;
    transition: border-bottom 0.24s ease-in-out;
  }
}
@media screen and (min-width: 900px) and (any-hover: hover) {
  .l-header nav ul > li a:hover {
    border-bottom: 1px solid #185699;
  }
}
@media screen and (max-width: 900px) {
  .l-header nav {
    display: -ms-grid;
    display: grid;
    place-items: center;
    gap: 32px;
    width: 100%;
    padding: 36px 6.4vw;
    background: #fff;
    position: absolute;
    top: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
    right: -100%;
    opacity: 0;
    -webkit-transition: right 0.24s ease-in-out, opacity 0.24s ease-in-out;
    transition: right 0.24s ease-in-out, opacity 0.24s ease-in-out;
  }
  .l-header nav.ham-active {
    right: 0;
    opacity: 1;
  }
  .l-header nav ul {
    display: -ms-grid;
    display: grid;
    place-items: center;
    gap: 32px;
  }
  .l-header nav ul li a {
    color: #185699;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
    letter-spacing: 0.48px;
  }
}

@media screen and (min-width: 900px) {
  .c-ham {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .c-ham {
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
    height: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
    background-color: rgba(29, 32, 136, 0);
    position: relative;
    cursor: pointer;
    pointer-events: all;
  }
  .c-ham .c-ham__bar {
    display: block;
    content: "";
    width: 22px;
    height: 2px;
    background-color: #1D2088;
    position: absolute;
    inset: 0;
    margin: auto;
    -webkit-transition: translate 0.1s linear, rotate 0.1s linear, opacity 0.1s linear;
    transition: translate 0.1s linear, rotate 0.1s linear, opacity 0.1s linear;
  }
  .c-ham .c-ham__bar:nth-of-type(1) {
    translate: 0 -6px;
  }
  .c-ham .c-ham__bar:nth-of-type(2) {
    translate: 0 0;
    opacity: 1;
  }
  .c-ham .c-ham__bar:nth-of-type(3) {
    translate: 0 6px;
  }
  .c-ham.ham-active .c-ham__bar:nth-of-type(1) {
    translate: 0 0;
    rotate: -45deg;
  }
  .c-ham.ham-active .c-ham__bar:nth-of-type(2) {
    translate: 200% 0;
    opacity: 0;
  }
  .c-ham.ham-active .c-ham__bar:nth-of-type(3) {
    translate: 0 0;
    rotate: 45deg;
  }
}

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

.p-top article.cva {
  display: -ms-grid;
  display: grid;
  max-width: 912px;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  margin-inline: auto;
  padding: 20px 24px;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 700px) {
  .p-top article.cva {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
  }
}
@media screen and (max-width: 699px) {
  .p-top article.cva {
    gap: 24px;
  }
}
.p-top article.cva p {
  color: #026CA4;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
}
@media screen and (max-width: 699px) {
  .p-top article.cva p {
    text-align: center;
  }
}
.p-top article.cva p small {
  display: block;
  color: #364153;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
@media screen and (max-width: 699px) {
  .p-top article.cva p small {
    text-align: center;
  }
}
.p-top article.cva .c-button.--cta.--kv.--cva > span {
  font-size: clamp(1.25rem, 1.1839788732rem + 0.2816901408vw, 1.4375rem);
}
.p-top .p-kv {
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 700px) {
  .p-top .p-kv {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    aspect-ratio: 1440/540;
    background-image: url(../img/kv-pc.png);
  }
}
@media screen and (max-width: 699px) {
  .p-top .p-kv {
    aspect-ratio: 375/540;
    background-image: url(../img/kv-sp.png);
  }
}
.p-top .p-kv article {
  padding-block: 16px 20px;
  padding-inline: 16px;
}
@media screen and (min-width: 700px) {
  .p-top .p-kv article {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 699px) {
  .p-top .p-kv article {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }
}
.p-top .p-kv article .small {
  text-shadow: 0px 2px 2px white;
}
@media screen and (min-width: 700px) {
  .p-top .p-kv article .small {
    color: #1C283A;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 142.857% */
  }
}
@media screen and (max-width: 699px) {
  .p-top .p-kv article .small {
    color: #1C283A;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
  }
}
.p-top .p-kv article h1 {
  margin: 0;
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 700px) {
  .p-top .p-kv article h1 {
    color: #0053DB;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 70.2px */
  }
}
@media screen and (max-width: 699px) {
  .p-top .p-kv article h1 {
    color: #0053DB;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 41.6px */
  }
}
.p-top .p-kv article h1 span {
  display: block;
}
@media screen and (min-width: 700px) {
  .p-top .p-kv article h1 span {
    color: #0053DB;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 62.4px */
  }
}
@media screen and (min-width: 700px) {
  .p-top .p-kv .c-button.--cta.--kv {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
  }
}
.p-top .p-strengths {
  padding-block: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-top .p-strengths::after {
  display: block;
  content: "";
  aspect-ratio: 1700/1400;
  border-radius: 50%;
  background-color: #E9F8FF;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 50%;
}
@media screen and (min-width: 700px) {
  .p-top .p-strengths::after {
    width: 120%;
    translate: -50% 60%;
  }
}
@media screen and (max-width: 699px) {
  .p-top .p-strengths::after {
    width: 450%;
    translate: -50% 63%;
  }
}
.p-top .p-strengths .l-inner {
  max-width: 1132px;
  margin-inline: auto;
  padding-inline: 16px;
  position: relative;
  z-index: 1;
}
.p-top .p-strengths h2 {
  color: #185699;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.68px;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .p-top .p-strengths h2 {
    font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  }
}
@media screen and (max-width: 699px) {
  .p-top .p-strengths h2 {
    font-size: clamp(1.375rem, 1.3309859155rem + 0.1877934272vw, 1.5rem);
  }
}
.p-top .p-strengths h2 .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FCEEB5));
  background: linear-gradient(transparent 70%, #FCEEB5 70%);
  background-blend-mode: multiply;
}
.p-top .p-strengths h2 + p {
  max-width: 800px;
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  margin-inline: auto;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: var(--line-height-20, 24px); /* 171.429% */
  letter-spacing: 0.42px;
}
.p-top .p-strengths ul {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  display: -ms-grid;
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 700px) {
  .p-top .p-strengths ul {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-top .p-strengths ul li h3 {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: #026CA4;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%; /* 24px */
}
.p-top .p-strengths ul li h3::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-check-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-top .p-strengths ul li img {
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
}
.p-top .p-strengths ul li p {
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.p-top .p-strengths .dotted {
  width: 6px;
  height: 46px;
  margin-inline: auto;
  background-image: url(../img/icon-dotted.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-top .p-strengths .dotted + article {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 700px) {
  .p-top .p-strengths .dotted + article {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}
.p-top .p-strengths .dotted + article img {
  width: 122px;
  height: 122px;
}
@media screen and (max-width: 699px) {
  .p-top .p-strengths .dotted + article img {
    margin-inline: auto;
  }
}
.p-top .p-strengths .dotted + article p {
  color: #007AB9;
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}
@media screen and (max-width: 699px) {
  .p-top .p-strengths .dotted + article p {
    text-align: center;
  }
}
.p-top .p-strengths .dotted + article p small {
  display: block;
  color: #364153;
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  font-weight: 400;
  line-height: 28px; /* 140% */
}
@media screen and (max-width: 699px) {
  .p-top .p-strengths .dotted + article p small {
    text-align: center;
  }
}
.p-top .p-about {
  padding-block: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  background: linear-gradient(189deg, #F7F5F2 0%, #FCF4E7 100%);
}
.p-top .p-about .l-inner {
  max-width: 1132px;
  margin-inline: auto;
  padding-inline: 16px;
}
.p-top .p-about h2 {
  color: #185699;
  text-align: center;
  font-size: clamp(1.5rem, 1.2799295775rem + 0.9389671362vw, 2.125rem);
  font-weight: 600;
  line-height: 140%;
  text-align: center;
}
.p-top .p-about h2 small {
  display: block;
  font-size: clamp(1.25rem, 1.073943662rem + 0.7511737089vw, 1.75rem);
  position: relative;
  top: 0.25em;
}
.p-top .p-about .sec01 {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  max-width: 800px;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 700px) {
  .p-top .p-about .sec01 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.p-top .p-about .sec01 h3 {
  color: #026CA4;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
}
.p-top .p-about .sec01 p {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  color: #364153;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.p-top .p-about .sec02 {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
.p-top .p-about .sec02 h3 {
  color: #026CA4;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--line-height-50, 40px); /* 117.647% */
  letter-spacing: 0.85px;
  text-align: center;
}
.p-top .p-about .sec02 h3 small {
  display: block;
  font-size: 24px;
  line-height: 133%;
}
.p-top .p-about .sec02 > ul {
  display: -ms-grid;
  display: grid;
  gap: 36px;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
@media screen and (min-width: 700px) {
  .p-top .p-about .sec02 > ul {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.p-top .p-about .sec02 > ul > li {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.p-top .p-about .sec02 > ul > li img {
  display: block;
  width: 80px;
  height: 80px;
  margin-inline: auto;
}
.p-top .p-about .sec02 > ul > li h3 {
  color: #1172A5;
  font-size: 19px;
  font-weight: 600;
  line-height: 120%; /* 24px */
  text-align: center;
}
.p-top .p-about .sec02 > ul > li ul li {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.p-top .p-about .sec02 > ul > li ul li::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-check-orange.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-top .p-about .sec02 > ul > li ul li:not(:first-of-type) {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}
.p-top .p-about .cvaarea {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
.p-top .p-about .cvaarea p {
  display: inline;
  color: #6B6E79;
  -webkit-margin-after: 4px;
  margin-block-end: 4px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  text-align: center;
  position: relative;
}
.p-top .p-about .cvaarea p::before, .p-top .p-about .cvaarea p::after {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1;
  position: absolute;
  bottom: 0;
}
.p-top .p-about .cvaarea p::before {
  content: "＼";
  left: -1.25em;
}
.p-top .p-about .cvaarea p::after {
  content: "／";
  right: -1em;
}
.p-top .p-about .sec03 {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
.p-top .p-about .sec03 h3 {
  color: #185699;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--line-height-60, 44px); /* 157.143% */
  letter-spacing: 0.56px;
  text-align: center;
}
.p-top .p-about .sec03 h3 + p {
  -webkit-margin-before: 8px;
  margin-block-start: 8px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: var(--line-height-30, 28px); /* 175% */
  letter-spacing: 0.48px;
  text-align: center;
}
.p-top .p-about .sec03 h4 {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
  color: #026CA4;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  text-align: center;
}
.p-top .p-about .sec03 ul.planlist {
  display: -ms-grid;
  display: grid;
  gap: 32px;
  -webkit-margin-before: clamp(1.25rem, 0.3697183099rem + 3.7558685446vw, 3.75rem);
  margin-block-start: clamp(1.25rem, 0.3697183099rem + 3.7558685446vw, 3.75rem);
}
@media screen and (min-width: 700px) {
  .p-top .p-about .sec03 ul.planlist {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-top .p-about .sec03 ul.planlist > li {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--color-neutral-60, #C2C2C2);
  background: #FFF;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: relative;
}
.p-top .p-about .sec03 ul.planlist > li > * {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}
.p-top .p-about .sec03 ul.planlist > li h5 {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  padding-block: 10px;
  border-radius: 50vw;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.p-top .p-about .sec03 ul.planlist > li h5 > small {
  display: block;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.p-top .p-about .sec03 ul.planlist > li h6 {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  text-align: center;
}
.p-top .p-about .sec03 ul.planlist > li .period {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-align: center;
}
.p-top .p-about .sec03 ul.planlist > li .desc {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #F3F3F3;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  text-align: center;
}
.p-top .p-about .sec03 ul.planlist > li ul li {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 12px;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.p-top .p-about .sec03 ul.planlist > li ul li:not(:first-of-type) {
  -webkit-margin-before: 12px;
  margin-block-start: 12px;
}
.p-top .p-about .sec03 ul.planlist > li ul li::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-supported.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-top .p-about .sec03 ul.planlist > li ul li.--notsupported {
  color: #9E9E9E;
}
.p-top .p-about .sec03 ul.planlist > li ul li.--notsupported::before {
  background-image: url(../img/icon-notsupported.png);
}
.p-top .p-about .sec03 ul.planlist > li.--white h5 {
  background-color: #F3F4F6;
}
.p-top .p-about .sec03 ul.planlist > li.--blue {
  border: 2px solid #115BCD;
  position: relative;
}
.p-top .p-about .sec03 ul.planlist > li.--blue::before {
  display: inline grid;
  place-items: center;
  content: url(../img/icon-star.png);
  width: 108px;
  height: 28px;
  background-color: #115BCD;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
.p-top .p-about .sec03 ul.planlist > li.--blue h5 {
  background-color: #DBEAFE;
  color: #115BCD;
}
.p-top .p-about .sec03 ul.planlist > li.--purple {
  border: 1px solid #AD46FF;
}
.p-top .p-about .sec03 ul.planlist > li.--purple h5 {
  background-color: #F3E8FF;
  color: #9342EC;
}
.p-top .p-about .sec03 ul + h4 {
  -webkit-margin-before: 48px;
  margin-block-start: 48px;
}
.p-top .p-about .sec03 .table_wrapper {
  width: 100%;
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
  overflow-x: auto;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.p-top .p-about .sec03 table {
  width: 100%;
  min-width: 800px;
  background: #fff;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.p-top .p-about .sec03 table th, .p-top .p-about .sec03 table td {
  padding: 16px;
  color: #364153;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.p-top .p-about .sec03 table th {
  background-color: #F9FAFB;
  font-weight: 700;
}
.p-top .p-about .sec03 table th.--white, .p-top .p-about .sec03 table th.--blue, .p-top .p-about .sec03 table th.--purple {
  width: 20%;
  text-align: center;
}
.p-top .p-about .sec03 table th.--white {
  background-color: #ffffff;
}
.p-top .p-about .sec03 table th.--blue {
  background-color: #EFF6FF;
}
.p-top .p-about .sec03 table th.--purple {
  background-color: #F3E8FF;
}
.p-top .p-about .sec03 table td {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.p-top .p-about .sec03 table td > img {
  display: block;
  width: 20px;
  height: 20px;
  margin-inline: auto;
}
.p-top .p-case {
  padding-block: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  background-color: #E0F4FB;
}
.p-top .p-case .l-inner {
  max-width: 1132px;
  margin-inline: auto;
  padding-inline: 16px;
}
.p-top .p-case h2 {
  color: #026CA4;
  font-size: clamp(1.5rem, 1.2799295775rem + 0.9389671362vw, 2.125rem);
  font-style: normal;
  font-weight: 600;
  line-height: var(--line-height-60, 44px); /* 129.412% */
  letter-spacing: 0.68px;
  text-align: center;
}
.p-top .p-case h3 {
  color: #026CA4;
  font-size: clamp(1.5rem, 1.411971831rem + 0.3755868545vw, 1.75rem);
  font-style: normal;
  font-weight: 600;
  line-height: var(--line-height-60, 44px); /* 157.143% */
  letter-spacing: 0.56px;
  text-align: center;
}
.p-top .p-case h3 + p {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
  font-weight: 300;
  line-height: var(--line-height-30, 28px); /* 175% */
  letter-spacing: 0.48px;
  text-align: center;
}
.p-top .p-case article.sec01 {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
.p-top .p-case article.sec01 ul {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
}
@media screen and (min-width: 700px) {
  .p-top .p-case article.sec01 ul {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-top .p-case article.sec01 ul li {
  padding: 24px 20px;
  border-radius: 14px;
  background: #FFF;
  -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
}
.p-top .p-case article.sec01 ul li .category {
  display: inline grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 4px;
  background: #185699;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.p-top .p-case article.sec01 ul li .img {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
}
.p-top .p-case article.sec01 ul li h4 {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  padding: 8px 10px;
  background: #F3F3E6;
  color: #185699;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: -1.2px;
}
.p-top .p-case article.sec01 ul li h5 {
  -webkit-margin-before: 16px;
  margin-block-start: 16px;
  border-bottom: 1px solid #C0C0C0;
  color: #185699;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.p-top .p-case article.sec01 ul li h5 + p {
  -webkit-margin-before: 4px;
  margin-block-start: 4px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.p-top .p-case article.sec02 {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
}
.p-top .p-case article.sec02 .number {
  display: -ms-grid;
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
  margin-inline: auto;
  padding: 30px clamp(1.875rem, 0.7746478873rem + 4.6948356808vw, 5rem);
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 700px) {
  .p-top .p-case article.sec02 .number {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-columns: 100px 1fr;
    grid-template-columns: 100px 1fr;
  }
}
.p-top .p-case article.sec02 .number figure {
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.p-top .p-case article.sec02 .number figure > img {
  width: 40px;
}
.p-top .p-case article.sec02 .number p {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  letter-spacing: 0.48px;
  text-align: center;
}
.p-top .p-case article.sec02 .number p small {
  display: block;
  -webkit-margin-after: 12px;
  margin-block-end: 12px;
  color: #364153;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-align: center;
}
.p-top .p-case article.sec02 .number p span:nth-of-type(1), .p-top .p-case article.sec02 .number p span:nth-of-type(3) {
  font-size: 28px;
}
.p-top .p-case article.sec02 .number p span:nth-of-type(2) {
  font-size: 48px;
  position: relative;
  top: 0.05em;
}
.p-top .p-case article.sec02 .number + p {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
  font-weight: 300;
  text-align: center;
}
.p-top .p-faq {
  padding-block: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  background-color: #F4F4F4;
}
.p-top .p-faq .l-inner {
  max-width: 1132px;
  margin-inline: auto;
  padding-inline: 16px;
}
.p-top .p-faq h2 {
  color: #026CA4;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--line-height-60, 44px); /* 129.412% */
  letter-spacing: 0.68px;
  text-align: center;
}
.p-top .p-faq details:first-of-type {
  -webkit-margin-before: clamp(2.5rem, 1.7957746479rem + 3.0046948357vw, 4.5rem);
  margin-block-start: clamp(2.5rem, 1.7957746479rem + 3.0046948357vw, 4.5rem);
}
.p-top .p-faq details:not(:first-of-type) {
  -webkit-margin-before: 48px;
  margin-block-start: 48px;
}
.p-top .p-faq summary {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 20px 1fr 20px;
  grid-template-columns: 20px 1fr 20px;
  -webkit-padding-after: 8px;
  padding-block-end: 8px;
  border-bottom: 1px solid #85C0DF;
  font-size: 16px;
  font-weight: 700;
}
.p-top .p-faq summary .mark.--q {
  color: #043399;
  font-weight: 700;
}
.p-top .p-faq summary::before {
  display: none;
}
.p-top .p-faq .details-content p {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
  -webkit-padding-before: 10px;
  padding-block-start: 10px;
  font-size: 16px;
}
.p-top .p-faq .details-content p .mark.--a {
  color: #FF4D58;
  font-weight: 700;
}
.p-top .p-faq .icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  position: relative;
}
.p-top .p-faq .icon::before, .p-top .p-faq .icon::after {
  display: block;
  content: "";
  width: 14px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.p-top .p-faq .icon::before {
  opacity: 1;
  -webkit-transition: opacity 0.24s ease-in-out;
  transition: opacity 0.24s ease-in-out;
}
.p-top .p-faq .icon::after {
  opacity: 1;
  rotate: 90deg;
  -webkit-transition: rotate 0.24s ease-in-out;
  transition: rotate 0.24s ease-in-out;
}
.p-top .p-faq details[open] .icon::before {
  opacity: 0;
}
.p-top .p-faq details[open] .icon::after {
  rotate: 720deg;
}
.p-top .p-message {
  padding-block: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
  background-image: url(../img/message-bg.png);
  background-repeat: no-repeat;
  background-position: 120% center;
  background-size: 100% auto;
}
.p-top .p-message .l-inner {
  max-width: 1132px;
  margin-inline: auto;
  padding-inline: 16px;
}
.p-top .p-message h2 {
  color: #026CA4;
  font-size: clamp(1.5rem, 1.2799295775rem + 0.9389671362vw, 2.125rem);
  font-style: normal;
  font-weight: 600;
  line-height: var(--line-height-60, 44px); /* 129.412% */
  letter-spacing: 0.68px;
  text-align: center;
}
.p-top .p-message .col2 {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  max-width: 800px;
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
  margin-inline: auto;
}
@media screen and (min-width: 700px) {
  .p-top .p-message .col2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.p-top .p-message .col2 p + p {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
.p-top .p-message .cva {
  max-width: 1100px;
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
}

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

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

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

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

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

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

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

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

.u-fs-10 {
  font-size: clamp(0.2375rem, 0.101056338rem + 0.5821596244vw, 0.625rem);
}

.u-fs-11 {
  font-size: clamp(0.26125rem, 0.1111619718rem + 0.6403755869vw, 0.6875rem);
}

.u-fs-12 {
  font-size: clamp(0.285rem, 0.1212676056rem + 0.6985915493vw, 0.75rem);
}

.u-fs-13 {
  font-size: clamp(0.30875rem, 0.1313732394rem + 0.7568075117vw, 0.8125rem);
}

.u-fs-14 {
  font-size: clamp(0.3325rem, 0.1414788732rem + 0.8150234742vw, 0.875rem);
}

.u-fs-15 {
  font-size: clamp(0.35625rem, 0.151584507rem + 0.8732394366vw, 0.9375rem);
}

.u-fs-16 {
  font-size: clamp(0.38rem, 0.1616901408rem + 0.9314553991vw, 1rem);
}

.u-fs-17 {
  font-size: clamp(0.40375rem, 0.1717957746rem + 0.9896713615vw, 1.0625rem);
}

.u-fs-18 {
  font-size: clamp(0.4275rem, 0.1819014085rem + 1.0478873239vw, 1.125rem);
}

.u-fs-19 {
  font-size: clamp(0.45125rem, 0.1920070423rem + 1.1061032864vw, 1.1875rem);
}

.u-fs-20 {
  font-size: clamp(0.475rem, 0.2021126761rem + 1.1643192488vw, 1.25rem);
}

.u-fs-21 {
  font-size: clamp(0.49875rem, 0.2122183099rem + 1.2225352113vw, 1.3125rem);
}

.u-fs-22 {
  font-size: clamp(0.5225rem, 0.2223239437rem + 1.2807511737vw, 1.375rem);
}

.u-fs-23 {
  font-size: clamp(0.54625rem, 0.2324295775rem + 1.3389671362vw, 1.4375rem);
}

.u-fs-24 {
  font-size: clamp(0.57rem, 0.2425352113rem + 1.3971830986vw, 1.5rem);
}

.u-fs-25 {
  font-size: clamp(0.59375rem, 0.2526408451rem + 1.455399061vw, 1.5625rem);
}

.u-fs-26 {
  font-size: clamp(0.6175rem, 0.2627464789rem + 1.5136150235vw, 1.625rem);
}

.u-fs-27 {
  font-size: clamp(0.64125rem, 0.2728521127rem + 1.5718309859vw, 1.6875rem);
}

.u-fs-28 {
  font-size: clamp(0.665rem, 0.2829577465rem + 1.6300469484vw, 1.75rem);
}

.u-fs-29 {
  font-size: clamp(0.68875rem, 0.2930633803rem + 1.6882629108vw, 1.8125rem);
}

.u-fs-30 {
  font-size: clamp(0.7125rem, 0.3031690141rem + 1.7464788732vw, 1.875rem);
}

.u-fs-31 {
  font-size: clamp(0.73625rem, 0.3132746479rem + 1.8046948357vw, 1.9375rem);
}

.u-fs-32 {
  font-size: clamp(0.76rem, 0.3233802817rem + 1.8629107981vw, 2rem);
}

.u-fs-33 {
  font-size: clamp(0.78375rem, 0.3334859155rem + 1.9211267606vw, 2.0625rem);
}

.u-fs-34 {
  font-size: clamp(0.8075rem, 0.3435915493rem + 1.979342723vw, 2.125rem);
}

.u-fs-35 {
  font-size: clamp(0.83125rem, 0.3536971831rem + 2.0375586854vw, 2.1875rem);
}

.u-fs-36 {
  font-size: clamp(0.855rem, 0.3638028169rem + 2.0957746479vw, 2.25rem);
}

.u-fs-37 {
  font-size: clamp(0.87875rem, 0.3739084507rem + 2.1539906103vw, 2.3125rem);
}

.u-fs-38 {
  font-size: clamp(0.9025rem, 0.3840140845rem + 2.2122065728vw, 2.375rem);
}

.u-fs-39 {
  font-size: clamp(0.92625rem, 0.3941197183rem + 2.2704225352vw, 2.4375rem);
}

.u-fs-40 {
  font-size: clamp(0.95rem, 0.4042253521rem + 2.3286384977vw, 2.5rem);
}

.u-fs-41 {
  font-size: clamp(0.97375rem, 0.4143309859rem + 2.3868544601vw, 2.5625rem);
}

.u-fs-42 {
  font-size: clamp(0.9975rem, 0.4244366197rem + 2.4450704225vw, 2.625rem);
}

.u-fs-43 {
  font-size: clamp(1.02125rem, 0.4345422535rem + 2.503286385vw, 2.6875rem);
}

.u-fs-44 {
  font-size: clamp(1.045rem, 0.4446478873rem + 2.5615023474vw, 2.75rem);
}

.u-fs-45 {
  font-size: clamp(1.06875rem, 0.4547535211rem + 2.6197183099vw, 2.8125rem);
}

.u-fs-46 {
  font-size: clamp(1.0925rem, 0.4648591549rem + 2.6779342723vw, 2.875rem);
}

.u-fs-47 {
  font-size: clamp(1.11625rem, 0.4749647887rem + 2.7361502347vw, 2.9375rem);
}

.u-fs-48 {
  font-size: clamp(1.14rem, 0.4850704225rem + 2.7943661972vw, 3rem);
}

.u-fs-49 {
  font-size: clamp(1.16375rem, 0.4951760563rem + 2.8525821596vw, 3.0625rem);
}

.u-fs-50 {
  font-size: clamp(1.1875rem, 0.5052816901rem + 2.9107981221vw, 3.125rem);
}

.u-fs-51 {
  font-size: clamp(1.21125rem, 0.5153873239rem + 2.9690140845vw, 3.1875rem);
}

.u-fs-52 {
  font-size: clamp(1.235rem, 0.5254929577rem + 3.0272300469vw, 3.25rem);
}

.u-fs-53 {
  font-size: clamp(1.25875rem, 0.5355985915rem + 3.0854460094vw, 3.3125rem);
}

.u-fs-54 {
  font-size: clamp(1.2825rem, 0.5457042254rem + 3.1436619718vw, 3.375rem);
}

.u-fs-55 {
  font-size: clamp(1.30625rem, 0.5558098592rem + 3.2018779343vw, 3.4375rem);
}

.u-fs-56 {
  font-size: clamp(1.33rem, 0.565915493rem + 3.2600938967vw, 3.5rem);
}

.u-fs-57 {
  font-size: clamp(1.35375rem, 0.5760211268rem + 3.3183098592vw, 3.5625rem);
}

.u-fs-58 {
  font-size: clamp(1.3775rem, 0.5861267606rem + 3.3765258216vw, 3.625rem);
}

.u-fs-59 {
  font-size: clamp(1.40125rem, 0.5962323944rem + 3.434741784vw, 3.6875rem);
}

.u-fs-60 {
  font-size: clamp(1.425rem, 0.6063380282rem + 3.4929577465vw, 3.75rem);
}

.u-fs-61 {
  font-size: clamp(1.44875rem, 0.616443662rem + 3.5511737089vw, 3.8125rem);
}

.u-fs-62 {
  font-size: clamp(1.4725rem, 0.6265492958rem + 3.6093896714vw, 3.875rem);
}

.u-fs-63 {
  font-size: clamp(1.49625rem, 0.6366549296rem + 3.6676056338vw, 3.9375rem);
}

.u-fs-64 {
  font-size: clamp(1.52rem, 0.6467605634rem + 3.7258215962vw, 4rem);
}

.u-fs-65 {
  font-size: clamp(1.54375rem, 0.6568661972rem + 3.7840375587vw, 4.0625rem);
}

.u-fs-66 {
  font-size: clamp(1.5675rem, 0.666971831rem + 3.8422535211vw, 4.125rem);
}

.u-fs-67 {
  font-size: clamp(1.59125rem, 0.6770774648rem + 3.9004694836vw, 4.1875rem);
}

.u-fs-68 {
  font-size: clamp(1.615rem, 0.6871830986rem + 3.958685446vw, 4.25rem);
}

.u-fs-69 {
  font-size: clamp(1.63875rem, 0.6972887324rem + 4.0169014085vw, 4.3125rem);
}

.u-fs-70 {
  font-size: clamp(1.6625rem, 0.7073943662rem + 4.0751173709vw, 4.375rem);
}

.u-fs-71 {
  font-size: clamp(1.68625rem, 0.7175rem + 4.1333333333vw, 4.4375rem);
}

.u-fs-72 {
  font-size: clamp(1.71rem, 0.7276056338rem + 4.1915492958vw, 4.5rem);
}

.u-fs-73 {
  font-size: clamp(1.73375rem, 0.7377112676rem + 4.2497652582vw, 4.5625rem);
}

.u-fs-74 {
  font-size: clamp(1.7575rem, 0.7478169014rem + 4.3079812207vw, 4.625rem);
}

.u-fs-75 {
  font-size: clamp(1.78125rem, 0.7579225352rem + 4.3661971831vw, 4.6875rem);
}

.u-fs-76 {
  font-size: clamp(1.805rem, 0.768028169rem + 4.4244131455vw, 4.75rem);
}

.u-fs-77 {
  font-size: clamp(1.82875rem, 0.7781338028rem + 4.482629108vw, 4.8125rem);
}

.u-fs-78 {
  font-size: clamp(1.8525rem, 0.7882394366rem + 4.5408450704vw, 4.875rem);
}

.u-fs-79 {
  font-size: clamp(1.87625rem, 0.7983450704rem + 4.5990610329vw, 4.9375rem);
}

.u-fs-80 {
  font-size: clamp(1.9rem, 0.8084507042rem + 4.6572769953vw, 5rem);
}

.u-fs-81 {
  font-size: clamp(1.92375rem, 0.818556338rem + 4.7154929577vw, 5.0625rem);
}

.u-fs-82 {
  font-size: clamp(1.9475rem, 0.8286619718rem + 4.7737089202vw, 5.125rem);
}

.u-fs-83 {
  font-size: clamp(1.97125rem, 0.8387676056rem + 4.8319248826vw, 5.1875rem);
}

.u-fs-84 {
  font-size: clamp(1.995rem, 0.8488732394rem + 4.8901408451vw, 5.25rem);
}

.u-fs-85 {
  font-size: clamp(2.01875rem, 0.8589788732rem + 4.9483568075vw, 5.3125rem);
}

.u-fs-86 {
  font-size: clamp(2.0425rem, 0.869084507rem + 5.00657277vw, 5.375rem);
}

.u-fs-87 {
  font-size: clamp(2.06625rem, 0.8791901408rem + 5.0647887324vw, 5.4375rem);
}

.u-fs-88 {
  font-size: clamp(2.09rem, 0.8892957746rem + 5.1230046948vw, 5.5rem);
}

.u-fs-89 {
  font-size: clamp(2.11375rem, 0.8994014085rem + 5.1812206573vw, 5.5625rem);
}

.u-fs-90 {
  font-size: clamp(2.1375rem, 0.9095070423rem + 5.2394366197vw, 5.625rem);
}

.u-fs-91 {
  font-size: clamp(2.16125rem, 0.9196126761rem + 5.2976525822vw, 5.6875rem);
}

.u-fs-92 {
  font-size: clamp(2.185rem, 0.9297183099rem + 5.3558685446vw, 5.75rem);
}

.u-fs-93 {
  font-size: clamp(2.20875rem, 0.9398239437rem + 5.414084507vw, 5.8125rem);
}

.u-fs-94 {
  font-size: clamp(2.2325rem, 0.9499295775rem + 5.4723004695vw, 5.875rem);
}

.u-fs-95 {
  font-size: clamp(2.25625rem, 0.9600352113rem + 5.5305164319vw, 5.9375rem);
}

.u-fs-96 {
  font-size: clamp(2.28rem, 0.9701408451rem + 5.5887323944vw, 6rem);
}

.u-fs-97 {
  font-size: clamp(2.30375rem, 0.9802464789rem + 5.6469483568vw, 6.0625rem);
}

.u-fs-98 {
  font-size: clamp(2.3275rem, 0.9903521127rem + 5.7051643192vw, 6.125rem);
}

.u-fs-99 {
  font-size: clamp(2.35125rem, 1.0004577465rem + 5.7633802817vw, 6.1875rem);
}

.u-fs-100 {
  font-size: clamp(2.375rem, 1.0105633803rem + 5.8215962441vw, 6.25rem);
}
/*# sourceMappingURL=map/style.css.map */