@charset "UTF-8";
/* _setting.scss
-------------------------------------------------------*/
/*-------------------------------------
config
-------------------------------------*/
:root {
  --color-main: #D20034;
  --color-main2: #B7183F;
  --color-sub: #088A96;
  --color-bg: #FFF6EE;
  --color-bg2: #F9F9F9;
  --color-bg3: #F5F5F5;
  --color-grad: linear-gradient(136deg, rgba(210, 0, 52, 1), rgba(183, 24, 63, 1));
  --color-border: #CCC;
  --color-txt: #333;
  --color-caption: #AAA;
  --font-base: "Noto Sans JP", serif;
  --font-sub: "M PLUS 2", sans-serif;
  --font-en: "Open Sans", sans-serif;
  --lineHeight-xs: 1.2;
  --lineHeight-s: 1.4;
  --lineHeight-m: 1.6;
  --lineHeight-l: 1.8;
  --lineHeight-xl: 2;
  --trans-min02: all 0.2s ease-out;
  --trans-min03: all 0.3s ease-out;
  --trans-min04: all 0.4s ease-out;
  interpolate-size: allow-keywords;
}

/*-------------------------------------
mixin
-------------------------------------*/
/* /_setting.scss
-------------------------------------------------------*/
/* _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). */
  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:-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;
}

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

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

@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
-------------------------------------------------------*/
html {
  overflow-x: clip;
}

body {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-width: 1200px;
  background-color: #fff;
  color: var(--color-txt);
  font-family: var(--font-base);
  font-style: normal;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  line-height: var(--lineHeight-m);
  letter-spacing: 0.025em;
  word-break: normal;
  line-break: strict;
  overflow: clip;
  overflow-wrap: anywhere;
  margin: 0 auto;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 0;
    font-size: 0.875rem;
  }
}

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

main {
  display: block;
}

hr {
  width: 100%;
  height: 1px;
  border: none;
  background: var(--color-border);
}

p > strong {
  font-weight: 700;
}
p + p {
  margin-top: 15px;
}

strong {
  font-weight: 700;
}

/* アイコン */
.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 5px;
  vertical-align: -2px;
}
.icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.icon--arrow-r::before {
  -webkit-mask: url("../images/common/icon_arrow-r.svg") no-repeat center/contain;
          mask: url("../images/common/icon_arrow-r.svg") no-repeat center/contain;
}
.icon--arrow-b::before {
  -webkit-mask: url("../images/common/icon_arrow-r.svg") no-repeat center/contain;
          mask: url("../images/common/icon_arrow-r.svg") no-repeat center/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.icon--pdf {
  width: 18px;
  height: 22.123px;
}
.icon--pdf::before {
  -webkit-mask: url("../images/common/icon_pdf.svg") no-repeat center/contain;
          mask: url("../images/common/icon_pdf.svg") no-repeat center/contain;
}
.icon--bill::before {
  -webkit-mask: url("../images/common/icon_bill.svg") no-repeat center/contain;
          mask: url("../images/common/icon_bill.svg") no-repeat center/contain;
}
.icon--c-w::before {
  background-color: #FFF;
}
.icon--c-main::before {
  background-color: var(--color-main);
}

.hp {
  /* 余白 */
}
.hp_ta_l {
  text-align: left !important;
}
.hp_ta_c {
  text-align: center !important;
}
.hp_ta_r {
  text-align: right !important;
}
.hp_fw_700 {
  font-weight: 700 !important;
}
.hp_fw_600 {
  font-weight: 600 !important;
}
.hp_fw_500 {
  font-weight: 500 !important;
}
.hp_fw_400 {
  font-weight: 400 !important;
}
.hp_ff_sub {
  font-family: var(--font-sub) !important;
}
.hp_ff_en {
  font-family: var(--font-en) !important;
}
.hp_spOnly {
  display: none;
}
@media screen and (max-width: 767px) {
  .hp_spOnly {
    display: block;
  }
  .hp_pcOnly {
    display: none;
  }
}
.hp_mt_xxl {
  margin-top: 180px !important;
}
.hp_mt_xl {
  margin-top: 120px !important;
}
.hp_mt_lla {
  margin-top: 80px !important;
}
.hp_mt_la {
  margin-top: 56px !important;
}
.hp_mt_md {
  margin-top: 48px !important;
}
.hp_mt_mmd {
  margin-top: 32px !important;
}
.hp_mt_sm {
  margin-top: 24px !important;
}
.hp_mt_ssm {
  margin-top: 16px !important;
}
.hp_mb_xxl {
  margin-bottom: 180px !important;
}
.hp_mb_xl {
  margin-bottom: 120px !important;
}
.hp_mb_lla {
  margin-bottom: 80px !important;
}
.hp_mb_la {
  margin-bottom: 56px !important;
}
.hp_mb_md {
  margin-bottom: 48px !important;
}
.hp_mb_mmd {
  margin-bottom: 32px !important;
}
.hp_mb_sm {
  margin-bottom: 24px !important;
}
.hp_mb_ssm {
  margin-bottom: 16px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt_xxl {
    margin-top: 100px !important;
  }
  .hp_mt_xl {
    margin-top: 80px !important;
  }
  .hp_mt_lla {
    margin-top: 64px !important;
  }
  .hp_mt_la {
    margin-top: 48px !important;
  }
  .hp_mt_md {
    margin-top: 40px !important;
  }
  .hp_mb_xxl {
    margin-bottom: 100px !important;
  }
  .hp_mb_xl {
    margin-bottom: 80px !important;
  }
  .hp_mb_lla {
    margin-bottom: 64px !important;
  }
  .hp_mb_la {
    margin-bottom: 48px !important;
  }
  .hp_mb_md {
    margin-bottom: 40px !important;
  }
}

.container {
  display: grid;
}
.container.col1 {
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
.container.col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.container.col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.container.col4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.container_item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .container {
    display: block;
  }
  .container_item + .container_item {
    margin-top: 20px;
  }
}

.section {
  padding: 40px 0;
}
.section:last-child {
  padding: 40px 0 120px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 30px 0;
  }
  .section:last-child {
    padding: 30px 0 100px;
  }
}

.wrap {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
.wrap--s {
  width: calc(100% - 40px);
  max-width: 1008px;
  margin-inline: auto;
}

.header {
  padding: 28px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 3% 0;
  }
  .header > img {
    width: auto;
    height: 6vw;
  }
}

.footer {
  background-color: var(--color-main2);
  height: 88px;
}

/* /_base.scss
-------------------------------------------------------*/
/* _parts.scss
-------------------------------------------------------*/
/* mv */
.mv {
  background: url("../images/mv_bg_pc.png") no-repeat center/cover;
  position: relative;
  min-height: 560px;
  padding-bottom: 137px;
}
.mv_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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.mv_inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 37px;
  aspect-ratio: 284/168;
  width: 284px;
  background: url("../images/mv_bg_l.png") no-repeat center/cover;
}
.mv_inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 71px;
  aspect-ratio: 250/168;
  width: 250px;
  background: url("../images/mv_bg_r.png") no-repeat center/cover;
}
.mv_title {
  margin-top: 32px;
}
.mv_kinri {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mv_kinri_box {
  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;
  gap: 20px;
  min-width: 420px;
  border-radius: 8px;
  padding: 16px;
  background: var(--color-grad);
  position: relative;
}
.mv_kinri_box .noteList {
  position: absolute;
  bottom: 16px;
  right: 12px;
}
.mv_kinri_box .noteList > li {
  color: #fff;
  padding-left: 1em;
}
.mv_kinri_title {
  min-width: 70px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background-color: #fff;
  color: var(--color-main);
  font-size: 1.125rem;
  font-family: var(--font-sub);
  font-weight: 700;
}
.mv_kinri_txt {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-sub);
  text-align: center;
  line-height: var(--lineHeight-xs);
  letter-spacing: 0.05em;
}
.mv_kinri_txt--s {
  font-size: 1.25rem;
}
.mv_kinri_txt--m {
  font-size: 1.5rem;
  font-family: var(--font-en);
  font-weight: 700;
}
.mv_kinri_txt--l {
  font-size: 3rem;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-inline: 2px;
}
.mv_list {
  position: absolute;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
  left: 0;
  bottom: 18px;
  right: 0;
  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;
}
.mv_list .olList {
  width: 270px;
}
.mv_list .olList > li {
  font-size: 0.6875rem;
}
.mv_list .olList > li::before {
  font-size: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .mv_list {
    position: relative;
    bottom: 0;
    margin-top: 130px;
  }
  .mv_list .olList {
    width: 100%;
  }
}
.mv:has(.mv_list) {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .mv {
    background: url("../images/mv_bg_sp.png") no-repeat center/cover;
    min-height: auto;
    padding-bottom: 130px;
  }
  .mv_inner::before {
    left: 0;
    width: 48%;
    max-width: 180px;
    display: block;
    bottom: -110px;
  }
  .mv_inner::after {
    right: 0;
    width: 47%;
    max-width: 166px;
    display: block;
    bottom: -115px;
  }
  .mv_title {
    margin-top: 20px;
  }
  .mv_kinri_box {
    gap: 18px;
    min-width: auto;
    padding: 10px 30px 10px 10px;
  }
  .mv_kinri_title {
    min-width: 60px;
    font-size: 1rem;
  }
  .mv_kinri_txt--s {
    font-size: 1.125rem;
  }
  .mv_kinri_txt--m {
    font-size: 1.25rem;
  }
  .mv_kinri_txt--l {
    font-size: 1.75rem;
  }
}

.circleBox {
  position: absolute;
  top: -116px;
  left: 0;
  right: 0;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.circleBox_item {
  position: relative;
  width: 232px;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 100%;
  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-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 26px;
  text-align: center;
}
.circleBox_item:nth-child(1) {
  left: 24px;
}
.circleBox_item:nth-child(3) {
  right: 24px;
}
.circleBox_item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 12px);
  aspect-ratio: 1;
  border: 1px solid var(--color-main);
  border-radius: 100%;
  z-index: 10;
}
.circleBox_item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  margin: auto;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0px 5px 12px rgba(171, 171, 171, 0.25);
          box-shadow: 0px 5px 12px rgba(171, 171, 171, 0.25);
  z-index: -1;
}
.circleBox_icon {
  width: 72px;
  aspect-ratio: 1;
  margin-bottom: 8px;
}
.circleBox_txt {
  font-family: var(--font-sub);
  font-weight: 700;
}
.circleBox_txt + .circleBox_title {
  margin-top: 4px;
}
.circleBox_title {
  font-size: 1.3125rem;
  font-family: var(--font-sub);
  font-weight: 700;
  color: var(--color-main);
  line-height: var(--lineHeight-xs);
}
@media screen and (max-width: 767px) {
  .circleBox {
    position: relative;
    top: 0;
    left: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0 4px;
    margin-bottom: 30px;
  }
  .circleBox_item {
    position: relative;
    width: 156px;
    padding: 22px 16px 18px;
  }
  .circleBox_item:nth-child(1) {
    left: 0;
  }
  .circleBox_item:nth-child(3) {
    right: 0;
  }
  .circleBox_icon {
    width: 52px;
    aspect-ratio: 1;
    margin-bottom: 4px;
  }
  .circleBox_txt {
    font-size: 0.75rem;
  }
  .circleBox_title {
    font-size: 1rem;
  }
}

/* 装飾 */
.triangle {
  margin: 24px auto;
  width: 96px;
  height: 40px;
  background: url("../images/common/icon_triangle.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .triangle {
    width: 66px;
    height: 28px;
  }
}

.border {
  border-bottom: var(--color-border) solid 1px;
}
.border--wh {
  border-color: #fff;
}

.img_radius > img {
  border-radius: 8px;
}

.caption {
  font-size: 1.125rem;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .caption {
    font-size: 1rem;
    margin-bottom: 6px;
  }
}

/* タイトル */
.titSecondary {
  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;
  gap: 8px;
  line-height: var(--lineHeight-m);
}
.titSecondary--c {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.titSecondary_title {
  font-size: 2.5rem;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
.titSecondary_title > strong {
  font-size: 4.5rem;
  color: var(--color-main);
  font-style: italic;
  line-height: 1;
}
.titSecondary_title--s {
  font-size: 2.25rem;
}
.titSecondary_sub {
  font-size: 1.375rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.05em;
  padding-left: 20px;
  position: relative;
}
.titSecondary_sub::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  margin-block: auto;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: var(--color-main);
  border: 2px solid #FFEEF2;
}
.titSecondary_sub--s {
  font-size: 1rem;
}
.titSecondary:has(.titSecondary_sub--s) {
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .titSecondary {
    gap: 14px;
  }
  .titSecondary_title {
    font-size: 1.5rem;
    line-height: var(--lineHeight-s);
  }
  .titSecondary_title > strong {
    font-size: 2.5rem;
  }
  .titSecondary_sub {
    font-size: 1.125rem;
  }
  .titSecondary_sub::before {
    top: 0;
  }
  .titSecondary_sub--s {
    font-size: 0.875rem;
  }
  .titSecondary--s .titSecondary_title {
    font-size: 1.375rem;
  }
}

.titTertiary {
  font-size: 2rem;
  font-family: var(--font-sub);
  font-weight: 700;
  line-height: 2.125;
  text-align: center;
  color: var(--color-main);
}
.titTertiary span {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-main);
          text-decoration-color: var(--color-main);
  text-decoration-thickness: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 0.4em;
}
@media screen and (max-width: 767px) {
  .titTertiary {
    font-size: 1.375rem;
  }
}

.titQuaternary {
  font-size: 1.75rem;
  font-family: var(--font-sub);
  font-weight: 700;
  padding-left: 1.2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.titQuaternary::before {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0.4em;
  background-color: var(--color-main);
  border-radius: 100%;
  border: 4px solid #FFEEF2;
}
.titQuaternary_sub {
  font-size: 1.125rem;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .titQuaternary {
    font-size: 1.25rem;
  }
  .titQuaternary::before {
    width: 20px;
    height: 20px;
    top: 0.35em;
  }
  .titQuaternary_sub {
    font-size: 1rem;
  }
}

.titQuinary {
  font-size: 1.5rem;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: var(--lineHeight-s);
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .titQuinary {
    font-size: 1.125rem;
    padding-bottom: 8px;
  }
}

/* ボタン */
.btn {
  width: 100%;
}
.btn + .btn {
  margin-top: 10px;
}
.btn_inner {
  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;
  width: 100%;
  height: 100%;
  max-width: 480px;
  min-height: 72px;
  padding: 10px 38px;
  margin-inline: auto;
  border-radius: 8px;
  border: 1px solid transparent;
  background-color: #fff;
  color: #fff;
  font-size: 1.125rem;
  font-family: var(--font-sub);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.025em;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  position: relative;
  z-index: 0;
}
.btn_inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  background: -webkit-linear-gradient(315deg, #F42C2B 0%, #F7642B 100%);
  background: linear-gradient(135deg, #F42C2B 0%, #F7642B 100%);
  border-radius: 8px;
}
.btn_inner:hover {
  color: #F42C2B;
  border: 1px solid #F42C2B;
  background-color: #fff;
}
.btn_inner:hover::before {
  opacity: 0;
}
.btn_inner:hover .btn_icon::before {
  background-color: #F42C2B !important;
}
.btn_inner--c {
  margin-inline: auto;
}
.btn_icon {
  position: absolute;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn--border .btn_inner {
  background-color: #fff;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}
.btn--border .btn_inner::before {
  display: none;
}
.btn--border .btn_inner:hover {
  color: #FFF;
  background-color: var(--color-main);
}
.btn--border .btn_inner:hover .btn_icon::before {
  background-color: #fff !important;
}
.btn--main .btn_inner {
  background-color: var(--color-main);
  color: #fff;
  border: 1px solid var(--color-main);
}
.btn--main .btn_inner::before {
  display: none;
}
.btn--main .btn_inner:hover {
  background-color: #fff;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .btn + .btn {
    margin-top: 8px;
  }
  .btn_inner {
    min-height: 62px;
    padding: 10px 36px;
    font-size: 1rem;
  }
  .btn_icon {
    right: 20px;
  }
}

.textLink {
  color: var(--color-main);
  text-decoration: underline;
}

/* アンカー */
.anchor {
  margin-top: 64px;
  padding: 28px 0 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.anchor_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.anchor_item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 240px;
  position: relative;
}
.anchor_item::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--color-border);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.anchor_item:last-child::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--color-border);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.anchor_inner {
  width: 100%;
  height: 100%;
  min-height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: var(--lineHeight-xs);
  text-align: center;
  padding: 4px 20px 20px;
  position: relative;
  -webkit-transition: var(--trans-min02);
  transition: var(--trans-min02);
}
.anchor_inner:hover {
  color: var(--color-main);
}
.anchor_icon {
  position: absolute;
  bottom: 4px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 16px;
  aspect-ratio: 1;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .anchor {
    padding: 0;
    border: none;
  }
  .anchor_list {
    display: block;
  }
  .anchor_item {
    width: 100%;
    border-top: var(--color-border) solid 1px;
  }
  .anchor_item:last-child {
    border-bottom: var(--color-border) solid 1px;
  }
  .anchor_item::after, .anchor_item::before {
    display: none;
  }
  .anchor_inner {
    font-size: 1rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 30px;
  }
  .anchor_icon {
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* イメージセパレート */
.separate_item {
  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-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.separate_image {
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 36%;
      -ms-flex: 0 0 36%;
          flex: 0 0 36%;
}
.separate_image img {
  border-radius: 8px;
}
.separate_main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0;
      -ms-flex: 1 0;
          flex: 1 0;
}
@media screen and (max-width: 767px) {
  .separate_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .separate_image {
    width: 100%;
  }
}

/* box */
.contentBox {
  background-color: #fff;
  padding: 48px 40px;
  border-radius: 24px;
  position: relative;
}
.contentBox--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 80px;
  height: 8px;
  background-color: var(--color-main);
  border-radius: 0 0 10px 10px;
}
.contentBox--point01 {
  margin-top: 40px;
}
.contentBox--point01::after {
  position: absolute;
  content: "";
  top: -170px;
  right: -50px;
  aspect-ratio: 282/196;
  width: 282px;
  background: url("../images/common/deco_01.png") no-repeat center/contain;
}
.contentBox--point02 {
  margin-top: 64px;
}
.contentBox--point02::after {
  position: absolute;
  content: "";
  bottom: -60px;
  right: -20px;
  aspect-ratio: 168/244;
  width: 168px;
  background: url("../images/common/deco_02.png") no-repeat center/contain;
}
.contentBox--point02 .container {
  gap: 20px;
}
.contentBox--point03 {
  margin-top: 48px;
}
.contentBox--point03::after {
  position: absolute;
  content: "";
  top: -110px;
  left: -120px;
  aspect-ratio: 302/182;
  width: 302px;
  background: url("../images/common/deco_03.png") no-repeat center/contain;
}
@media screen and (max-width: 1400px) and (min-width: 768px), print {
  .contentBox--point01 {
    margin-top: 100px;
    padding: 50px 16px 32px;
  }
  .contentBox--point01::after {
    top: -120px;
    right: -10px;
    width: 220px;
  }
  .contentBox--point02 {
    margin-bottom: 20px;
    padding: 32px 16px 80px;
  }
  .contentBox--point02::after {
    bottom: -80px;
    right: -10px;
    width: 130px;
  }
  .contentBox--point03 {
    margin-top: 80px;
  }
  .contentBox--point03::after {
    top: -70px;
    left: -10px;
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .contentBox {
    padding: 32px 16px;
    border-radius: 24px;
  }
  .contentBox--line::before {
    width: 70px;
    height: 6px;
  }
  .contentBox--point01 {
    margin-top: 80px;
    padding: 40px 16px 32px;
  }
  .contentBox--point01::after {
    top: -70px;
    right: -10px;
    width: 140px;
  }
  .contentBox--point02 {
    margin-bottom: 50px;
    padding: 32px 16px 60px;
  }
  .contentBox--point02::after {
    bottom: -70px;
    right: -10px;
    width: 90px;
  }
  .contentBox--point03 {
    margin-top: 70px;
    margin-bottom: 20px;
  }
  .contentBox--point03::after {
    top: -66px;
    left: -16px;
    width: 130px;
  }
}

.ellipseBox {
  border-radius: 54px;
  border: 1px solid var(--color-main);
  padding: 23px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
.ellipseBox_title {
  background: var(--color-grad);
  border-radius: 35px;
  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;
  max-width: 176px;
  width: 100%;
  padding: 6px 10px;
  color: #fff;
  font-family: var(--font-sub);
  font-weight: 700;
}
.ellipseBox_inner {
  font-size: 1.375rem;
  font-family: var(--font-sub);
  font-weight: 700;
  line-height: var(--lineHeight-s);
}
@media screen and (max-width: 767px) {
  .ellipseBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 32px;
    padding: 20px 14px;
    gap: 12px;
  }
  .ellipseBox_title {
    max-width: none;
    width: 100%;
    padding: 6px 10px;
  }
  .ellipseBox_inner {
    font-size: 1.125rem;
  }
}

.textBox {
  border-radius: 12px;
  border: 1px solid var(--color-main);
}
.textBox--gray {
  background-color: var(--color-bg3);
  border-color: var(--color-bg3);
}
.textBox_title {
  background-color: var(--color-main);
  padding: 22px 30px 24px;
  text-align: center;
  border-radius: 11px 11px 0 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}
.textBox_title > strong {
  font-size: 1.5rem;
  font-family: var(--font-sub);
  font-weight: 700;
}
.textBox_inner {
  padding: 32px;
}
.textBox_txt {
  font-size: 1.5rem;
  font-family: var(--font-sub);
  font-weight: 700;
  text-align: center;
}
.textBox_txt strong {
  color: var(--color-main);
}
.textBox_txt--blue {
  color: var(--color-sub);
}
.textBox_txt--line {
  border-bottom: double 7px var(--color-main);
  padding-bottom: 8px;
  font-weight: 700;
}
.textBox_txt--m {
  font-size: 2rem;
}
.textBox_txt--l {
  font-size: 3rem;
  margin-inline: 4px;
  line-height: var(--lineHeight-s);
}
@media screen and (max-width: 767px) {
  .textBox_title {
    padding: 16px 14px 18px;
    font-size: 1rem;
  }
  .textBox_title > strong {
    font-size: 1.25rem;
  }
  .textBox_inner {
    padding: 20px 14px;
  }
  .textBox_txt {
    font-size: 1.125rem;
  }
  .textBox_txt--line {
    border-bottom: double 5px var(--color-main);
    padding-bottom: 0;
  }
  .textBox_txt--m {
    font-size: 1.25rem;
  }
  .textBox_txt--l {
    font-size: 1.875rem;
  }
}

.textPanel {
  border: 1px solid #42519B;
  border-radius: 4px;
  background-color: #fff;
}
.textPanel--yellow {
  border-color: #AF911A;
}
.textPanel--green {
  border-color: #268D5D;
}
.container:has(.textPanel) {
  gap: 12px;
}
.textPanel_title {
  background-color: #115294;
  padding: 18px 20px 17px;
  text-align: center;
  font-size: 1.25rem;
  font-family: var(--font-sub);
  font-weight: 700;
  color: #fff;
  border-radius: 3px 3px 0 0;
}
.textPanel--yellow .textPanel_title {
  background-color: #B9AF1A;
}
.textPanel--green .textPanel_title {
  background-color: #1D9D61;
}
.textPanel_icon {
  width: 32px;
  height: 28px;
  margin-right: 8px;
  vertical-align: -0.2em;
}
.textPanel_inner {
  padding: 12px 48px 16px;
  font-weight: 700;
}
.textPanel_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: var(--lineHeight-m);
}
.textPanel_list + .textPanel_list {
  margin-top: 8px;
}
.textPanel_list--kinri .textPanel_list_title {
  margin-left: -0.5em;
}
.textPanel_list_text {
  margin-left: 4px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}
.textPanel_list_text > strong {
  font-size: 1.625rem;
  font-family: var(--font-en);
  color: #115294;
  margin-inline: 4px;
  line-height: 1;
}
.textPanel--yellow .textPanel_list_text > strong {
  color: #B9AF1A;
}
.textPanel--green .textPanel_list_text > strong {
  color: #1D9D61;
}
.textPanel_list--kinri .textPanel_list_text {
  margin-right: -1em;
}
@media screen and (max-width: 767px) {
  .textPanel_title {
    padding: 10px 12px 9px;
    font-size: 1rem;
  }
  .textPanel_icon {
    width: 23px;
    height: 20px;
  }
  .textPanel_inner {
    padding: 13px 14px 16px;
  }
  .textPanel_list {
    font-size: 0.9375rem;
  }
  .textPanel_list_text > strong {
    font-size: 1.5rem;
    margin-inline: 2px;
  }
}

.iconPanel {
  position: relative;
  display: block;
}
.iconPanel_inner {
  height: 100%;
  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;
  border-radius: 24px;
  border: #F8F8F8 solid 1px;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 12px rgba(85, 85, 85, 0.25);
          box-shadow: 0px 5px 12px rgba(85, 85, 85, 0.25);
  padding: 32px 18px 52px;
  text-align: center;
  -webkit-transition: var(--trans-min02);
  transition: var(--trans-min02);
}
a:hover .iconPanel_inner {
  background-color: var(--color-bg);
  border: 1px solid var(--color-main);
}
.iconPanel_arrow {
  position: absolute;
  content: "";
  bottom: -24px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 48px;
  height: 48px;
  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;
  border-radius: 100%;
  background-color: var(--color-main);
}
.iconPanel_arrow::before {
  width: 16px;
  height: 16px;
  background: url("../images/common/icon_arrow-r.svg") center no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: #fff;
}
.iconPanel_img {
  width: 88px;
  height: 88px;
  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;
  margin: 0 auto 10px;
}
.iconPanel_title {
  color: var(--color-main2);
  font-size: 1.625rem;
  font-family: var(--font-sub);
  font-weight: 700;
  line-height: var(--lineHeight-s);
}
.iconPanel_txt {
  letter-spacing: 0;
}
.iconPanel_titleSub {
  font-family: var(--font-sub);
  font-weight: 700;
}
.iconPanel p + p {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .iconPanel_inner {
    padding: 22px 14px 32px;
  }
  .iconPanel_arrow {
    bottom: -20px;
    width: 40px;
    height: 40px;
  }
  .iconPanel_img {
    width: 70px;
    height: 70px;
    margin: 0 auto 8px;
  }
  .iconPanel_title {
    font-size: 1.375rem;
  }
  .container_item:has(.iconPanel) + .container_item:has(.iconPanel) {
    margin-top: 40px;
  }
}

.stepFlow {
  position: relative;
  background-color: #fff;
  border: 1px solid #F8F8F8;
  -webkit-box-shadow: 0px 5px 12px rgba(85, 85, 85, 0.25);
          box-shadow: 0px 5px 12px rgba(85, 85, 85, 0.25);
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
}
.container:has(.stepFlow) {
  gap: 48px;
  padding-bottom: 40px;
}
.container_item:has(.stepFlow) {
  width: 100%;
  position: relative;
}
.container_item:has(.stepFlow):not(:last-child)::after {
  content: "";
  width: 24px;
  height: 56px;
  background: url("../images/common/icon_step_triangle.svg") no-repeat center/contain;
  position: absolute;
  right: -36px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.stepFlow_number {
  min-width: 112px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 20px 4px;
  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;
  border-radius: 37px 24px 24px 0;
  background-color: var(--color-main);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-en);
  font-weight: 700;
}
.stepFlow_inner {
  padding: 16px 24px 32px;
}
.stepFlow_circle {
  width: 104px;
  height: 104px;
  border-radius: 100%;
  margin: 0 auto 20px;
}
.stepFlow_title {
  font-size: 1.25rem;
  font-family: var(--font-sub);
  font-weight: 700;
  line-height: var(--lineHeight-m);
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .container:has(.stepFlow) {
    padding-bottom: 0;
  }
  .container_item:has(.stepFlow) + .container_item:has(.stepFlow) {
    margin-top: 60px;
  }
  .container_item:has(.stepFlow):not(:last-child)::after {
    right: 0;
    left: 0;
    top: auto;
    bottom: -60px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .stepFlow_number {
    min-width: 100px;
    font-size: 0.9375rem;
  }
  .stepFlow_inner {
    padding: 12px 14px 24px;
  }
  .stepFlow_circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
  }
  .stepFlow_title {
    font-size: 1.125rem;
    margin-bottom: 14px;
  }
}

/* リスト */
.dotList > li {
  position: relative;
  padding-left: 1.8em;
  font-size: 1rem;
  line-height: var(--lineHeight-m);
}
.dotList > li + li {
  margin-top: 8px;
}
.dotList > li::before {
  position: absolute;
  content: "";
  left: 0.7em;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--color-sub);
}
.dotList--main > li {
  font-size: 1.125rem;
  padding-left: 1.8em;
  font-weight: 700;
}
.dotList--main > li::before {
  left: 0.7em;
  top: 0.7em;
  background-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .dotList > li {
    font-size: 0.875rem;
  }
  .dotList > li::before {
    top: 0.5em;
  }
  .dotList--main > li {
    font-size: 1rem;
  }
  .dotList--main > li::before {
    top: 0.6em;
  }
}

.olList {
  counter-reset: listNum;
}
.olList > li {
  position: relative;
  padding-left: 1.8em;
  font-size: 1rem;
  line-height: var(--lineHeight-m);
  counter-increment: listNum;
}
.olList > li + li {
  margin-top: 8px;
}
.olList > li::before {
  position: absolute;
  content: counter(listNum) ".";
  left: 0.7em;
  top: 0;
  color: var(--color-sub);
  font-weight: 700;
}
.olList--note > li {
  padding-left: 32px;
  font-size: 0.75rem;
  color: var(--color-caption);
}
.olList--note > li + li {
  margin-top: 2px;
}
.olList--note > li::before {
  content: "※" counter(listNum);
  top: 0;
  font-size: 0.75rem;
  color: var(--color-caption);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .olList > li {
    font-size: 0.875rem;
  }
  .olList--note > li {
    font-size: 0.6875rem;
  }
  .olList--note > li::before {
    font-size: 0.6875rem;
  }
}

.noteList > li {
  position: relative;
  padding-left: 1.2em;
  font-size: 0.75rem;
  color: var(--color-caption);
  line-height: var(--lineHeight-m);
}
.noteList > li + li {
  margin-top: 4px;
}
.noteList > li::before {
  position: absolute;
  content: "※";
  width: auto;
  height: auto;
  background: none;
  top: 0;
  left: 0;
  font-size: 0.75rem;
}
.noteList--c {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.noteList--r {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .noteList > li {
    font-size: 0.6875rem;
  }
  .noteList > li + li {
    margin-top: 2px;
  }
  .noteList > li::before {
    top: 0.1em;
    font-size: 0.625rem;
  }
  .noteList--c {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .noteList--r {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

/* テーブル */
.table {
  width: 100%;
}
.table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: #d4d4d4 solid 1px;
  border-radius: 8px;
  overflow: hidden;
}
.table--fixed table {
  table-layout: fixed;
}
.table th {
  background-color: var(--color-bg3);
  padding: 17px 20px 14px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  font-size: 1.25rem;
  font-family: var(--font-sub);
  font-weight: 700;
}
.table th + th, .table th + td {
  border-left: var(--color-border) solid 1px;
}
.table td {
  padding: 23px 24px;
  vertical-align: middle;
  background-color: #fff;
}
.table td + td {
  border-left: var(--color-border) solid 1px;
}
.table th,
.table td {
  line-height: var(--lineHeight-m);
}
.table th strong,
.table td strong {
  color: var(--color-main);
  line-height: var(--lineHeight-xs);
}
.table tr:not(:first-child) th,
.table tr:not(:first-child) td {
  border-top: var(--color-border) solid 1px;
}
.table_bt {
  border-top: var(--color-border) solid 1px;
}
.table_bb {
  border-bottom: var(--color-border) solid 1px;
}
.table_bl {
  border-left: var(--color-border) solid 1px;
}
.table_br {
  border-right: var(--color-border) solid 1px;
}
.table_vt {
  vertical-align: top !important;
}
.table_color1 {
  background-color: #F5F5F5 !important;
}
.table_color2 {
  background-color: var(--color-main) !important;
  color: #fff;
}
.table_empty {
  background-color: transparent !important;
  border: none !important;
  position: relative;
}
.table_txt--xs {
  font-size: 1.125rem;
}
.table_txt--s {
  font-size: 1.5rem;
}
.table_txt--m {
  font-size: 1.75rem;
}
.table_txt--l {
  font-size: 2rem;
  line-height: var(--lineHeight-xs);
}
.table .noteList > li {
  color: var(--color-txt);
  font-size: 1rem;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .table_layoutSp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .table table {
    border-radius: 10px;
  }
  .table_layoutPc {
    display: none;
  }
  .table th {
    padding: 18px 12px;
    font-size: 1.125rem;
  }
  .table td {
    padding: 18px 12px;
  }
  .table_txt--xs {
    font-size: 1rem;
  }
  .table_txt--s {
    font-size: 1.375rem;
  }
  .table_txt--m {
    font-size: 1.5rem;
  }
  .table_txt--l {
    font-size: 1.75rem;
    line-height: var(--lineHeight-xs);
  }
  .table .noteList > li {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .tableOuter--scroll {
    padding-bottom: 10px;
  }
  .tableOuter--scroll .table {
    width: 600px;
  }
}
/* アコーディオン */
.accordion {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
  .accordion::details-content {
    overflow: clip;
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
    -webkit-transition-property: content-visibility, block-size;
    transition-property: content-visibility, block-size;
    transition-behavior: allow-discrete;
  }
}
.accordion:not(:open)::details-content {
  block-size: 0;
}
.accordion:open::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-bg2);
  border: var(--color-border) solid 1px;
  border-radius: 62px;
  z-index: -1;
}
.accordion + .accordion {
  margin-top: 40px;
}
.accordion_title {
  border-radius: 100px;
  border: var(--color-border) solid 1px;
  padding: 20px 20px 20px 40px;
  min-height: 112px;
  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;
  cursor: pointer;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.accordion_title-icon {
  width: 48px;
  height: 48px;
  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;
  background-color: var(--color-main);
  border-radius: 100%;
}
.accordion_title-icon > span {
  position: relative;
  width: 100%;
  height: 100%;
}
.accordion_title-icon > span::before, .accordion_title-icon > span::after {
  content: "";
  width: 16px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 10px;
}
[open] .accordion_title-icon--open {
  display: none;
}
.accordion_title-icon--open::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion_title-icon--close {
  display: none;
}
[open] .accordion_title-icon--close {
  display: block;
}
.accordion_title .titQuaternary {
  margin-inline: 0 auto;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.accordion_title:hover > .titQuaternary {
  color: var(--color-main);
}
.accordion_inner {
  padding: 48px 56px 56px;
}
@media screen and (max-width: 767px) {
  .accordion:open::before {
    height: calc(100% - 2px);
    top: 2px;
    border-radius: 36px 36px 10px 10px;
  }
  .accordion + .accordion {
    margin-top: 32px;
  }
  .accordion_title {
    min-height: auto;
    padding: 16px 16px 16px 24px;
  }
  .accordion_title-icon {
    width: 32px;
    height: 32px;
  }
  .accordion_title-icon > span::before, .accordion_title-icon > span::after {
    content: "";
    width: 13px;
  }
  .accordion_title-text {
    font-size: 1rem;
    margin-right: 20px;
  }
  .accordion_inner {
    padding: 16px 24px 24px;
  }
}

/* その他 */
.reader {
  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;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.reader_img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .reader {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.tel {
  font-size: 4rem;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.tel_free {
  display: inline-block;
  margin-right: 16px;
}
.tel_free > img {
  vertical-align: 2px;
}
@media screen and (max-width: 767px) {
  .tel {
    font-size: 1.875rem;
  }
  .tel_free {
    width: 34px;
    margin-right: 8px;
  }
}

.top {
  position: relative;
  padding-top: 143px;
}
@media screen and (max-width: 767px) {
  .top {
    padding-top: 20px;
  }
}

.pointTop {
  margin: 48px 0 104px;
}
@media screen and (max-width: 767px) {
  .pointTop {
    margin: 48px 0 80px;
  }
}

.point {
  padding: 80px 0 80px;
  background-color: var(--color-bg);
  position: relative;
}
.point + .point::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  height: 1px;
  max-width: 1200px;
  margin-inline: auto;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .point {
    padding: 50px 0 30px;
  }
}

.flow {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .flow {
    margin-top: 60px;
  }
}

.contact {
  margin: 120px auto 0;
  padding: 80px 40px;
  max-width: 1800px;
  width: calc(100% - 40px);
  background: -webkit-gradient(linear, left bottom, left top, from(#F2FBFF), to(#DFF8FF));
  background: -webkit-linear-gradient(bottom, #F2FBFF, #DFF8FF);
  background: linear-gradient(0deg, #F2FBFF, #DFF8FF);
  border-radius: 80px 80px 0 0;
}
.contact_inner {
  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-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 560px;
  margin-inline: auto;
  position: relative;
}
.contact_inner::before {
  position: absolute;
  content: "";
  bottom: -58px;
  right: -360px;
  aspect-ratio: 324/202;
  width: 324px;
  background: url("../images/common/deco_04.png") no-repeat center/contain;
}
.contact_title {
  background: var(--color-grad);
  border-radius: 100px;
  min-width: 440px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 20px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: var(--font-sub);
  line-height: var(--lineHeight-s);
}
.contact_txt {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 1400px) and (min-width: 768px), print {
  .contact_inner::before {
    bottom: -40px;
    right: -240px;
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    margin: 70px auto 0;
    padding: 50px 20px 100px;
    border-radius: 50px 50px 0 0;
  }
  .contact_inner::before {
    bottom: -94px;
    right: -10px;
    width: 140px;
  }
  .contact_title {
    min-width: auto;
    font-size: 0.875rem;
  }
  .contact_txt {
    font-size: 0.9375rem;
  }
}

.float {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 18px 0 16px;
  width: 100%;
  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: #fff;
  border-top: 2px solid var(--color-main);
  z-index: 10;
  -webkit-transition: var(--trans-min02);
  transition: var(--trans-min02);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.float.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.float_inner {
  width: calc(100% - 40px);
  max-width: 1008px;
  margin-inline: auto;
}
.float .container {
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.float .caption {
  margin-bottom: 2px;
}
.float .btn_inner {
  min-height: 56px;
}
@media screen and (max-width: 767px) {
  .float {
    padding: 10px 0;
  }
  .float_inner {
    width: calc(100% - 20px);
  }
  .float .container.col2 {
    display: grid;
    gap: 10px;
  }
  .float .container.col2 .container_item + .container_item {
    margin-top: 0;
  }
  .float .caption {
    font-size: 0.75rem;
    line-height: var(--lineHeight-s);
  }
  .float .btn_inner {
    min-height: 46px;
    font-size: 0.875rem;
    padding: 4px 30px 4px 4px;
    line-height: var(--lineHeight-s);
  }
  .float .btn_icon {
    right: 10px;
  }
}

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