@charset "UTF-8";
/* _reset.scss
-------------------------------------------------------*/
/*! kiso.css v1.2.1 | 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). */
  margin: 0;
}

: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(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:-webkit-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;
}
: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;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button) {
  border: none;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

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

: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;
}

@supports selector(::scroll-button(*)) {
  ::scroll-button(*) {
    /* Apply the same reset as for `<button>` elements. */
    border-width: 1px;
    border-style: solid;
    border-color: unset;
    border-radius: unset;
    background-color: unset;
    color: unset;
    font: unset;
    letter-spacing: unset;
    text-align: unset;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
  ::scroll-button(*):enabled {
    /* Make the scroll button indicate interactivity when enabled. */
    cursor: pointer;
  }
}
/* /_reset.scss
-------------------------------------------------------*/
/* _base.scss
-------------------------------------------------------*/
:root {
  --color-main: #054994;
  --color-sub: #f56733;
  --color-bg: #bbe0fd;
  --color-bg2: #fef5c1;
  --color-border: #29abe2;
  --color-txt: #000;
  --color-red: #ff0000;
  --font-base: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
  --font-sub: "M PLUS Rounded 1c", sans-serif;
  --font-en: "Zen Maru Gothic", sans-serif;
  --trans-min01: all 0.1s ease-out;
  --trans-min02: all 0.2s ease-out;
}

/* _font.scss
-------------------------------------------------------*/
/* /_font.scss
-------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  min-width: 1260px;
  position: relative;
  font-weight: 400;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  color: var(--color-txt);
  font-family: var(--font-base);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}
@media print {
  body {
    zoom: 0.8;
  }
}

:root {
  interpolate-size: allow-keywords;
  /* サイズキーワードによるアニメーションを許可 */
}

a[href*="tel:"] {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/* /_base.scss
-------------------------------------------------------*/
/* _parts.scss
-------------------------------------------------------*/
main {
  display: block;
  overflow-x: clip;
}

/* コンテンツ幅 */
.ly-wrap {
  width: calc(100% - 30px);
  max-width: 1240px;
  margin-inline: auto;
}

/* ユーティリティ */
.u-mt_xl {
  margin-top: 60px !important;
}
.u-mt_l {
  margin-top: 50px !important;
}
.u-mt_m {
  margin-top: 40px !important;
}
.u-mt_s {
  margin-top: 30px !important;
}
.u-mt_xs {
  margin-top: 20px !important;
}
.u-mt_xxs {
  margin-top: 10px !important;
}
.u-mb_xl {
  margin-bottom: 60px !important;
}
.u-mb_l {
  margin-bottom: 50px !important;
}
.u-mb_m {
  margin-bottom: 40px !important;
}
.u-mb_s {
  margin-bottom: 30px !important;
}
.u-mb_xs {
  margin-bottom: 20px !important;
}
.u-mb_xxs {
  margin-bottom: 10px !important;
}
.u-ml_1hem {
  margin-left: 1.3em;
}
.u-ta_c {
  text-align: center !important;
}
.u-ta_l {
  text-align: left !important;
}
.u-ta_r {
  text-align: right !important;
}
.u-fw_400 {
  font-weight: 400 !important;
}
.u-fw_500 {
  font-weight: 500 !important;
}
.u-fw_600 {
  font-weight: 600 !important;
}
.u-fw_700 {
  font-weight: 700 !important;
}
.u-ti_1em {
  text-indent: -1em;
  padding-left: 1em;
}
.u-ti_1hem {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.u-bg_blue {
  background-color: var(--color-bg);
}
.u-bg_yellow {
  background-color: var(--color-bg2);
}
.u-fc_red {
  color: var(--color-red) !important;
}
.u-spOnly {
  display: none;
}
.u-srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media screen and (max-width: 767px) {
  .u-ta_c_sp {
    text-align: center !important;
  }
  .u-ta_l_sp {
    text-align: left !important;
  }
  .u-ta_r_sp {
    text-align: right !important;
  }
  .u-mt_xl {
    margin-top: 50px !important;
  }
  .u-mt_l {
    margin-top: 40px !important;
  }
  .u-mt_m {
    margin-top: 30px !important;
  }
  .u-mt_s {
    margin-top: 20px !important;
  }
  .u-mt_xs {
    margin-top: 10px !important;
  }
  .u-mb_xl {
    margin-bottom: 50px !important;
  }
  .u-mb_l {
    margin-bottom: 40px !important;
  }
  .u-mb_m {
    margin-bottom: 30px !important;
  }
  .u-mb_s {
    margin-bottom: 20px !important;
  }
  .u-mb_xs {
    margin-bottom: 10px !important;
  }
  .u-spOnly {
    display: block;
  }
  .u-pcOnly {
    display: none;
  }
}

/* 共通 */
.c-btn {
  font-size: 3.125rem;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-sub);
  background-color: var(--color-sub);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 46px 40px;
  border-radius: 28px;
  min-width: 610px;
  text-align: center;
  position: relative;
  display: block;
  -webkit-box-shadow: 6px 8px 0 #808080;
          box-shadow: 6px 8px 0 #808080;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  top: 0;
  left: 0;
}
.c-btn--l {
  min-width: 808px;
}
.c-btn:hover {
  top: 8px;
  left: 6px;
  -webkit-box-shadow: 0 0 0 #808080;
          box-shadow: 0 0 0 #808080;
}
.c-btn::after {
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 20px;
  border: 10px solid #fff;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.875rem;
    width: 100%;
    min-width: auto;
    padding: 30px 16px;
    border-radius: 24px;
    -webkit-box-shadow: 4px 6px 0 #808080;
            box-shadow: 4px 6px 0 #808080;
  }
  .c-btn--l {
    min-width: auto;
  }
  .c-btn:hover {
    top: 0;
    left: 0;
    -webkit-box-shadow: 4px 6px 0 #808080;
            box-shadow: 4px 6px 0 #808080;
  }
  .c-btn::after {
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border-radius: 16px;
    border: 6px solid #fff;
  }
}

@media screen and (max-width: 767px) {
  .c-scrollTable {
    padding-bottom: 10px;
  }
  .c-scrollTable table {
    width: 800px;
  }
}

.c-textLink {
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
  -webkit-transition: var(--trans-min01);
  transition: var(--trans-min01);
}
.c-textLink:hover {
  border-bottom: 1px solid transparent;
}

/* ヘッダー */
.header {
  width: calc(100% - 30px);
  max-width: 1240px;
  margin-inline: auto;
}
.header img {
  display: block;
  padding: 15px 26px;
}
@media screen and (max-width: 767px) {
  .header {
    width: calc(100% - 20px);
  }
  .header img {
    width: 46.66667%;
    padding: 10px 0;
  }
}

/* 追従 */
.apply {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 10;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0;
}
.apply.is-active {
  opacity: 1;
}
.apply .c-btn {
  font-size: 2.125rem;
  min-width: 560px;
  padding: 26px 40px;
  -webkit-box-shadow: 4px 6px 0 #808080;
          box-shadow: 4px 6px 0 #808080;
}
.apply .c-btn::after {
  left: 8px;
  top: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 8px solid #fff;
}
.apply .c-btn:hover {
  top: 6px;
  left: 4px;
  -webkit-box-shadow: 0 0 0 #808080;
          box-shadow: 0 0 0 #808080;
}
@media screen and (max-width: 767px) {
  .apply {
    padding: 10px 0;
  }
  .apply.is-active {
    opacity: 1;
  }
  .apply .c-btn {
    font-size: 1.25rem;
    min-width: auto;
    padding: 16px 30px;
    -webkit-box-shadow: 2px 4px 0 #808080;
            box-shadow: 2px 4px 0 #808080;
    border-radius: 18px;
  }
  .apply .c-btn::after {
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 4px solid #fff;
    border-radius: 12px;
  }
  .apply .c-btn:hover {
    top: 0;
    left: 0;
    -webkit-box-shadow: 2px 4px 0 #808080;
            box-shadow: 2px 4px 0 #808080;
  }
}

/* ページトップボタン */
.toTop {
  padding-block: 0 100px;
  position: relative;
  z-index: 100;
}
.toTop_inner {
  width: calc(100% - 80px);
  margin-inline: auto;
}
.toTop_btn {
  margin-left: auto;
  width: 80px;
  height: 100px;
  display: block;
  -webkit-transition: var(--trans-min01);
  transition: var(--trans-min01);
}
.toTop_btn :hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .toTop {
    padding-block: 0 20px;
  }
  .toTop_inner {
    width: calc(100% - 40px);
  }
  .toTop_btn {
    margin-left: auto;
    width: 80px;
    height: 100px;
    display: block;
  }
}

/* MV */
.mv {
  background-color: #60a9f3;
}
.mv_inner {
  width: calc(100% - 30px);
  max-width: 870px;
  margin-inline: auto;
  padding-block: 56px 50px;
}
.mv_title {
  font-size: 9rem;
  font-weight: 900;
  font-family: var(--font-sub);
  line-height: 1;
  color: #fff;
}
.mv_title_img {
  display: block;
  margin: 0 0 15px 8px;
}
.mv_lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}
.mv_lead_content {
  padding-top: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.mv_lead_balloon {
  color: #fff;
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
  background-color: var(--color-main);
  padding: 16px 38px;
  border-radius: 7px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 22px;
  line-break: anywhere;
}
.mv_lead_balloon::before {
  content: "";
  position: absolute;
  right: -21px;
  bottom: 18px;
  width: 22px;
  height: 17px;
  background-color: var(--color-main);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.mv_lead_text {
  margin-top: 30px;
  font-size: 2.1875rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-sub);
}
@media screen and (max-width: 767px) {
  .mv_inner {
    max-width: 430px;
    padding-block: 40px 30px;
  }
  .mv_title {
    font-size: 3.125rem;
  }
  .mv_title_img {
    width: 190px;
    margin: 0 0 12px 4px;
  }
  .mv_lead {
    margin-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mv_lead_content {
    padding-top: 0;
    width: 50%;
    min-width: 200px;
  }
  .mv_lead_balloon {
    font-size: 1.5rem;
    padding: 14px 20px;
    margin-right: 18px;
  }
  .mv_lead_balloon::before {
    right: -17px;
    bottom: 16px;
    width: 18px;
    height: 14px;
  }
  .mv_lead_text {
    margin-top: 10px;
    font-size: 1.125rem;
  }
  .mv_lead_img {
    width: 50%;
  }
  .mv_lead_img > img {
    max-inline-size: 106%;
    inline-size: 106%;
    -webkit-margin-start: -6%;
            margin-inline-start: -6%;
  }
}

/* point */
.point {
  padding-block: 52px 60px;
}
.point_list {
  max-width: 1042px;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
}
.point_list_item {
  width: calc((100% - 68px) / 3);
  background-color: #fff;
  border-radius: 18px;
  border: 6px solid #60a9f3;
  padding: 12px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.point_list_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.point_list_title {
  background-color: var(--color-main);
  padding: 2px 8px;
  margin-inline: 8px;
  border-radius: 14px;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  font-family: var(--font-sub);
  text-align: center;
}
.point_list_text {
  color: var(--color-main);
  font-size: 1.875rem;
  letter-spacing: -0.04em;
  line-height: 1.3;
  font-weight: 900;
  font-family: var(--font-sub);
}
.point_list_text + .point_list_text {
  margin-top: 10px;
}
.point_list_text strong {
  font-size: 5rem;
  font-family: var(--font-en);
  font-weight: 900;
  display: inline-block;
  margin-inline: 6px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.point_list_text-s {
  font-size: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .point {
    padding-block: 40px 50px;
  }
  .point_list {
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .point_list_item {
    width: 100%;
    border: 4px solid #60a9f3;
    padding: 10px 8px;
  }
  .point_list_inner {
    height: auto;
  }
  .point_list_title {
    margin-inline: 6px;
    font-size: 1.375rem;
  }
  .point_list_text {
    font-size: 1.625rem;
  }
  .point_list_text + .point_list_text {
    margin-top: 8px;
  }
  .point_list_text strong {
    font-size: 3.75rem;
  }
  .point_list_text-s {
    font-size: 1.5rem;
  }
}

/* nav */
.nav_inner {
  padding-block: 50px 64px;
  padding-inline: 280px;
  position: relative;
}
.nav_inner::after {
  content: "";
  position: absolute;
  background: url("/lp/freeloan/assets/images/deco_nav.png") no-repeat center/contain;
  width: 197px;
  height: 270px;
  left: 80px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .nav_inner {
    padding-block: 40px 100px;
    padding-inline: 0;
  }
  .nav_inner::after {
    width: 66px;
    height: 90px;
    left: 10px;
  }
}

/* usecase */
.usecase {
  padding-block: 28px 34px;
}
.usecase_title {
  text-align: center;
  font-size: 3.125rem;
  font-weight: 900;
  font-family: var(--font-sub);
  color: var(--color-main);
  margin-bottom: 30px;
}
.usecase_list {
  max-width: 1006px;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 30px;
}
.usecase_list_item {
  width: calc((100% - 90px) / 4);
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 100%;
  border: 6px solid var(--color-border);
  padding: 0 0 30px 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.usecase_list_img {
  text-align: center;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.usecase_list_text {
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 900;
  font-family: var(--font-sub);
  color: var(--color-main);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.usecase_list_text--narrow {
  margin-bottom: 4px;
  letter-spacing: -0.1em;
}
.usecase_lead {
  margin-top: 22px;
  font-size: 1.75rem;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .usecase_title {
    font-size: 1.875rem;
    margin-bottom: 30px;
  }
  .usecase_list {
    max-width: none;
    gap: 14px 20px;
  }
  .usecase_list_item {
    width: calc((100% - 20px) / 2);
    max-width: 170px;
    border: 5px solid var(--color-border);
    padding: 0 0 22px 0;
  }
  .usecase_list_img {
    width: 80%;
    top: 13px;
  }
  .usecase_list_text {
    font-size: 1.4375rem;
  }
  .usecase_list_text--narrow {
    margin-bottom: 8px;
    letter-spacing: -0.1em;
  }
  .usecase_lead {
    margin-top: 22px;
    font-size: 1.25rem;
  }
}

/* example */
.example {
  padding-block: 40px 50px;
}
.example_content {
  width: calc(100% - 80px);
  margin-inline: auto;
  background-color: #fff;
  padding: 22px 70px 48px;
}
.example_content + .example_content {
  margin-top: 40px;
}
.example_title {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-sub);
  color: #fff;
  background-color: var(--color-main);
  border-radius: 14px;
  padding: 10px 20px;
  text-align: center;
}
.example_text {
  text-align: center;
  color: var(--color-main);
  font-size: 2.625rem;
  font-weight: 900;
  font-family: var(--font-sub);
}
.example_text-m {
  font-size: 3rem;
}
.example_text-l {
  font-size: 3.1875rem;
}
.example_text-en {
  font-size: 6.25rem;
  font-family: var(--font-en);
}
.example_text-en-l {
  font-size: 7.3125rem;
  font-family: var(--font-en);
}
.example_text strong {
  display: inline-block;
  margin-inline: 18px;
  line-height: 0.8;
  position: relative;
  top: 5px;
  font-weight: 900;
}
.example_text--col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 80px;
}
.example_arrow {
  font-size: 2.8125rem;
  color: #fff;
  font-weight: 900;
  font-family: var(--font-sub);
  padding: 12px 40px 20px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 10px;
}
.example_arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/lp/freeloan/assets/images/deco_example_arrow.svg") no-repeat center/100% 100%;
  z-index: -1;
}
.example_note {
  font-size: 1.75rem;
  text-indent: -1em;
  padding-left: 1em;
}
.example_lead {
  font-size: 2.8125rem;
  font-weight: 900;
  font-family: var(--font-sub);
  text-align: center;
  color: var(--color-main);
  line-height: 1.3;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .example {
    padding-block: 40px 50px;
  }
  .example_content {
    width: 100%;
    padding: 20px 15px 20px;
  }
  .example_content + .example_content {
    margin-top: 40px;
  }
  .example_title {
    font-size: 1.5rem;
    border-radius: 2px;
    padding: 6px 10px;
  }
  .example_text {
    font-size: 1.625rem;
  }
  .example_text-m {
    font-size: 1.75rem;
  }
  .example_text-l {
    font-size: 1.875rem;
  }
  .example_text-en {
    font-size: 3.125rem;
  }
  .example_text-en-l {
    font-size: 3.75rem;
  }
  .example_text strong {
    margin-inline: 10px;
  }
  .example_text--col {
    gap: 0 30px;
  }
  .example_arrow {
    font-size: 1.625rem;
    padding: 6px 40px 18px;
    margin-top: 10px;
  }
  .example_note {
    font-size: 1.25rem;
    text-indent: -1em;
    padding-left: 1em;
  }
  .example_lead {
    font-size: 1.625rem;
    margin-top: 20px;
  }
}

/* flow */
.flow {
  padding-block: 20px 56px;
}
.flow_title {
  font-size: 3.125rem;
  color: #0071bc;
  font-weight: 900;
  font-family: var(--font-sub);
  text-align: center;
  margin-bottom: 16px;
}
.flow_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 50px 110px;
  max-width: 1070px;
  margin-inline: auto;
}
.flow_list_item {
  position: relative;
  width: calc((100% - 110px) / 2);
  background-color: #fff;
  padding: 15px 20px 20px;
  border-radius: 30px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.flow_list_item:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 65px;
  width: 40px;
  height: 90px;
  background-color: #60a9f3;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.flow_list_main {
  background-color: #60a9f3;
  border-radius: 14px;
  padding: 12px 2px 14px;
  margin-bottom: 20px;
}
.flow_list_img {
  text-align: center;
}
.flow_list_title {
  font-size: 1.8125rem;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-sub);
  color: #fff;
}
.flow_list_title--narrow {
  letter-spacing: -0.07em;
}
.flow_list_text {
  font-size: 1.5rem;
}
.flow_list_pl {
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-block: 20px 52px;
  }
  .flow_title {
    font-size: 1.875rem;
    margin-bottom: 16px;
  }
  .flow_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    max-width: none;
  }
  .flow_list_item {
    width: 100%;
    padding: 14px 15px 18px;
    border-radius: 26px;
  }
  .flow_list_item:nth-child(odd)::after, .flow_list_item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: -40px;
    margin-inline: auto;
    width: 60px;
    height: 28px;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
            clip-path: polygon(100% 0, 0 0, 50% 100%);
    background-color: #60a9f3;
  }
  .flow_list_item:last-child::after {
    content: none;
  }
  .flow_list_img {
    height: 100px;
  }
  .flow_list_img > img {
    height: 100%;
  }
  .flow_list_title {
    font-size: 1.5rem;
  }
  .flow_list_title--narrow {
    letter-spacing: 0.02em;
  }
  .flow_list_text {
    font-size: 1.25rem;
  }
}

/* faq */
.faq {
  padding-block: 38px 40px;
}
.faq_inner {
  border: 4px solid #60a9f3;
  padding: 44px 18px 36px;
}
.faq_title {
  font-size: 2.75rem;
  text-align: center;
  margin-bottom: 44px;
}
.faq_list_title {
  background-color: var(--color-bg);
  border-radius: 14px;
  padding: 18px 20px 18px 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.faq_list_icon {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-main);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 20px;
}
.faq_list_text {
  font-size: 2.625rem;
  line-height: 1.45;
}
.faq_list_text a {
  font-weight: 700;
  color: var(--color-main);
  border-bottom: 3px solid var(--color-main);
  -webkit-transition: var(--trans-min01);
  transition: var(--trans-min01);
}
.faq_list_text a:hover {
  border-bottom-color: transparent;
}
.faq_list_body {
  padding: 24px 30px 44px 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-block: 38px 40px;
  }
  .faq_inner {
    padding: 28px 12px 0;
  }
  .faq_title {
    font-size: 1.75rem;
    margin-bottom: 26px;
  }
  .faq_list_title {
    border-radius: 14px;
    padding: 12px 6px 12px 16px;
  }
  .faq_list_icon {
    font-size: 1.5rem;
    margin-right: 8px;
  }
  .faq_list_text {
    font-size: 1.375rem;
  }
  .faq_list_body {
    padding: 20px 6px 44px 16px;
  }
}

/* product */
.product {
  padding-block: 30px 70px;
}
.product_title {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 36px;
}
.product_table {
  max-width: 1170px;
  margin-inline: auto;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.product_table th, .product_table td {
  padding: 26px 18px;
  border: 4px solid #60a9f3;
  font-size: 1.875rem;
  height: 130px;
  line-height: 1.2;
}
.product_table th {
  background-color: var(--color-bg);
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
}
.product_table td {
  background-color: #fff;
}
.product_text {
  text-align: center;
  font-size: 2.125rem;
}
.product_text a {
  font-weight: 700;
  color: var(--color-main);
  border-bottom: 3px solid var(--color-main);
  -webkit-transition: var(--trans-min01);
  transition: var(--trans-min01);
}
.product_text a:hover {
  border-bottom-color: transparent;
}
@media screen and (max-width: 767px) {
  .product {
    padding-block: 30px 40px;
  }
  .product_title {
    font-size: 1.75rem;
    margin-bottom: 26px;
  }
  .product_table {
    max-width: none;
  }
  .product_table th,
.product_table td {
    padding: 14px 14px;
    font-size: 1.25rem;
    height: 50px;
    border-bottom: none;
  }
  .product_table,
.product_table tbody,
.product_table tr,
.product_table th,
.product_table td {
    display: block;
    width: 100%;
    height: auto;
  }
  .product_table tr:last-child td {
    border-bottom: 4px solid #60a9f3;
  }
  .product_text {
    font-size: 1.375rem;
  }
}

/* application */
.application {
  margin-top: 10px;
  padding-block: 50px 122px;
}
.application_inner {
  max-width: 1140px;
  margin-inline: auto;
}
.application_sec + .application_sec {
  margin-top: 80px;
}
.application_title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 26px;
  text-align: center;
}
.application_subtitle {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  text-indent: -1em;
  padding-left: 1em;
}
.application_text {
  font-size: 1.875rem;
  line-height: 1.4;
}
.application_pl {
  padding-left: 1em;
}
.application_scroll {
  max-height: 35rem;
  overflow-y: auto;
  border: 2px solid #000;
}
.application_scroll_inner {
  font-size: 1.5rem;
  line-height: 1.6;
  background-color: #fff;
  padding: 20px 20px 44px;
}
.application_scroll ol > li + li,
.application_scroll ul > li + li {
  margin-top: 6px;
}
.application_scroll h3 {
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.application_scroll h4 {
  font-weight: 400;
  margin-bottom: 6px;
  font-size: 1.5rem;
}
.application_numlist > li {
  position: relative;
  padding-left: 1.4em;
}
.application_numlist > li + li {
  margin-top: 15px;
}
.application_numlist > li > span {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
}
.application_numlist--sub > li {
  padding-left: 2em;
}
.application_numlist--sub > li span {
  width: 2em;
}
.application_numlist--en > li + li {
  margin-top: 6px;
}
.application_numlist--en > li span {
  text-align: right;
  padding-right: 4px;
}
.application_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.application_table th, .application_table td {
  padding: 18px 14px;
  border: 4px solid #60a9f3;
}
.application_table th {
  background-color: var(--color-bg);
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
}
.application_table td {
  background-color: #fff;
  vertical-align: baseline;
}
.application_table_link {
  -webkit-transition: var(--trans-min01);
  transition: var(--trans-min01);
  border-bottom: 2px solid transparent;
}
.application_table_link:hover {
  border-bottom-color: var(--color-txt);
}
.application_table_blank {
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  margin: 0 8px;
  vertical-align: -1px;
}
.application_table_blank::before {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  background-color: #000;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(/lp/freeloan/assets/images/icon_blank.svg);
          mask-image: url(/lp/freeloan/assets/images/icon_blank.svg);
}
.application_btn {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .application {
    margin-top: 10px;
    padding-block: 32px 80px;
  }
  .application_inner {
    max-width: none;
  }
  .application_sec + .application_sec {
    margin-top: 50px;
  }
  .application_title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  .application_subtitle {
    font-size: 1.25rem;
  }
  .application_text {
    font-size: 1.25rem;
  }
  .application_pl {
    padding-left: 1em;
  }
  .application_scroll {
    max-height: 25rem;
  }
  .application_scroll_inner {
    font-size: 1.125rem;
    padding: 20px 10px 40px;
  }
  .application_scroll ol > li + li,
.application_scroll ul > li + li {
    margin-top: 6px;
  }
  .application_scroll h3 {
    font-size: 1.125rem;
  }
  .application_scroll h4 {
    font-size: 1.125rem;
  }
  .application_table th, .application_table td {
    padding: 14px;
  }
  .application_table_blank {
    width: 16px;
    height: 16px;
  }
  .application_btn {
    padding-top: 40px;
  }
}

/* contact */
.contact {
  padding-block: 46px 0;
}
.contact_lead {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.contact_text {
  color: var(--color-main);
  font-size: 3.125rem;
  font-weight: 900;
  font-family: var(--font-sub);
  text-align: center;
  line-height: 1.3;
}
.contact_tel {
  color: var(--color-main);
  font-size: 9rem;
  font-weight: 900;
  font-family: var(--font-en);
  text-align: center;
  line-height: 0.9;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-block: 46px 0;
  }
  .contact_lead {
    font-size: 1.25rem;
  }
  .contact_text {
    font-size: 1.875rem;
  }
  .contact_tel {
    font-size: 3.75rem;
  }
}

/* /_parts.scss
-------------------------------------------------------*/