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

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

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

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

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

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

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

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

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

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

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

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  -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;
}

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

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

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

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

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

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:-webkit-any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  -webkit-text-decoration-line: unset;
          text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(a:-moz-any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  -webkit-text-decoration-line: unset;
          text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

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

:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

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

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

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

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

/* ======================================================
//  MARK: Forms
// ====================================================== */
::-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;
  -moz-appearance: textfield;
       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(: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.
  */
  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;
}

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

/* foundation/mixins
 * バリアブル メディアクエリ・コンテナクエリ・レイアウト補助
 */
/* foundation/variables
 * バリアブル
 */
/* foundation/base
 * base
 */
:root {
  /* header vars */
  --header-h: 56px; /* 実測値（JSが上書き）。JS無効時のフォールバックも兼ねる */
  --header-min-h: 56px; /* デザイン上の最低高さ。CSSのみが管理 */
  /* spacing vars */
  --inner-pl: clamp(1.25rem, -1.3740458015rem + 11.1959287532vw, 4rem);
  --inner-pr: clamp(1.25rem, -1.3740458015rem + 11.1959287532vw, 4rem);
}

@media screen and (min-width: 768px) {
  :root {
    /* header vars */
    --header-h: 56px;
    /* spacing vars */
    --inner-pl: 64px; /* 左padding 仮 */
    --inner-pr: 64px; /* 右padding 仮 */
  }
}
@media screen and (min-width: 1024px) {
  :root {
    /* header vars */
    --header-h: 100px; /* 実測値（JSが上書き）。JS無効時のフォールバックも兼ねる */
    --header-min-h: 100px; /* ← 1行に収まる時は従来どおり100px */
    /* spacing vars */
    --inner-pl: 60px; /* 左padding */
    --inner-pr: 60px; /* 右padding */
    --inner-max: 82.5rem;
  }
}
html {
  scroll-padding-top: var(--header-h);
}

body {
  padding-top: var(--header-h);
  min-width: 320px;
  width: 100%;
  margin: 0;
  background: #fff;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #333;
  line-height: 1.8;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.is-scrollLock {
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6, p, figure {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

ul, ol {
  list-style-type: none;
}

a {
  color: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
/* 汎用インナー
 */
.l-inner {
  width: 100%;
  max-width: var(--inner-max, none);
  margin-inline: auto;
  padding-inline: var(--inner-pl) var(--inner-pr);
  box-sizing: border-box;
}

/* 
 * header
 */
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  background-color: #fff;
}

/* 
 * footer
 */
.l-footer {
  width: 100%;
  height: var(--footer-h);
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: var(--footer-h);
}

/* 
 * button
 */
.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 100px;
  border: 4px solid var(---ffffff, #FFF);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  color: #fff;
}
.c-button__text {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 4px rgba(108, 49, 12, 0.15);
}
.c-button__icon {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (min-width: 1024px) {
  .c-button__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-button--orange {
  background: var(---orange_grd, linear-gradient(90deg, #FF8000 0%, #FFAD00 100%));
}

.c-button--blue {
  background: #003C89;
}

/* 
 * serviceCard
 */
.c-serviceCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  width: 100%;
  max-width: 17.8125rem;
  border-radius: 20px;
  border: 5px solid #FFF;
  background: #FAFBFD;
  padding-block: 11.6875rem 1.4375rem;
  padding-inline: 1.25rem;
}
.c-serviceCard__img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}
.c-serviceCard__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 0.125rem;
}
.c-serviceCard__text {
  letter-spacing: 0.04em;
}

.c-serviceCard01 .c-serviceCard__img {
  top: 1.75rem;
  height: 9.4375rem;
}

.c-serviceCard02 .c-serviceCard__img {
  top: 2.25rem;
  height: 8.75rem;
}

.c-serviceCard03 .c-serviceCard__img {
  top: 1.4375rem;
  height: 9.125rem;
}

.c-serviceCard04 .c-serviceCard__img {
  top: 1.6875rem;
  height: 8.5rem;
}

/* 
 * sectionTitle
 */
.c-sectionTitle {
  text-align: center;
  font-size: clamp(1.75rem, 1.0999614792rem + 2.7734976888vw, 2.875rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .c-sectionTitle {
    margin-bottom: 0;
  }
}

/* 
 * sectionDescription
 */
.c-sectionDescription {
  text-align: center;
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* 
 * featureCard
 */
.c-featureCard {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  padding-block: clamp(1.875rem, 1.5138674884rem + 1.5408320493vw, 2.5rem);
  gap: 1.875rem;
}
@media screen and (min-width: 1024px) {
  .c-featureCard {
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-featureCard:nth-child(even) {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .c-featureCard__body {
    width: 54%;
  }
}
.c-featureCard__body .c-featureCard__label {
  display: flex;
  padding: 0 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  background-color: #123C73;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.125rem, 1.0527734977rem + 0.3081664099vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .c-featureCard__body .c-featureCard__label {
    line-height: 1.6;
  }
}
.c-featureCard__body .c-featureCard__label span {
  font-size: clamp(1.25rem, 1.1055469954rem + 0.6163328197vw, 1.5rem);
  letter-spacing: 0.04em;
}
.c-featureCard__body .c-featureCard__title {
  font-size: clamp(1.5rem, 1.2833204931rem + 0.9244992296vw, 1.875rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-text-decoration-color: #FBF978;
          text-decoration-color: #FBF978;
  text-decoration-thickness: 8px;
  text-underline-position: from-font;
  margin-bottom: 1rem;
}
.c-featureCard__body .c-featureCard__text {
  font-size: clamp(1rem, 0.8555469954rem + 0.6163328197vw, 1.25rem);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .c-featureCard__body .c-featureCard__text {
    word-break: auto-phrase;
  }
}
.c-featureCard__body .c-featureCard__text em {
  font-weight: 900;
}
.c-featureCard__img {
  width: 100%;
  aspect-ratio: 295/196;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .c-featureCard__img {
    width: 42%;
    aspect-ratio: 420/280;
  }
}

@media screen and (min-width: 1024px) {
  .p-feature .c-featureCard:first-child .c-featureCard__body .c-featureCard__text {
    max-width: 28.125rem;
  }
}

/* 
 * benefitCard
 */
.c-benefitCard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fff;
  padding-block: 2.5625rem;
  padding-inline: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 16.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-benefitCard {
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .c-benefitCard {
    padding-block: 2.375rem;
    padding-inline: clamp(1.25rem, 0.625rem + 0.9765625vw, 1.5625rem);
  }
}
.c-benefitCard__number {
  color: #003C89;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.03;
  margin-bottom: 1.9375rem;
  max-width: 12.0625rem;
}
@media screen and (min-width: 1024px) {
  .c-benefitCard__number {
    font-size: 3.125rem;
    line-height: 1.22;
    margin-bottom: 0.75rem;
  }
}
.c-benefitCard__title {
  color: #003C89;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.0625rem;
  width: 100%;
  max-width: 12.0625rem;
}
@media screen and (min-width: 1024px) {
  .c-benefitCard__title {
    margin-bottom: 0.125rem;
  }
}
.c-benefitCard__text {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  width: 10rem;
  word-break: auto-phrase;
}
@media screen and (min-width: 1024px) {
  .c-benefitCard__text {
    font-size: 1.25rem;
  }
}

.p-benefit__numbers .c-benefitCard:first-child .c-benefitCard__text {
  width: 100%;
  max-width: 12.0625rem;
}

/* 
 * c-benefitChartsItem
 */
.c-benefitChartsItem {
  width: 100%;
  border-radius: 24px;
  background-color: #fff;
  padding-block: clamp(3.375rem, 2.4346064815rem + 4.012345679vw, 5rem) clamp(2.3125rem, 0.7572337963rem + 6.6358024691vw, 5rem);
  padding-inline: clamp(1.1875rem, -3.6554528061rem + 20.6632653061vw, 6.25rem);
}
@media screen and (min-width: 1024px) {
  .c-benefitChartsItem {
    padding-block: 3.3125rem 2.3125rem;
    padding-inline: 3.25rem 3.125rem;
  }
}
.c-benefitChartsItem__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.214;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .c-benefitChartsItem__title {
    line-height: 1.14;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-benefitChartsItem__figure {
    margin-inline: 0.5625rem 0.75rem;
  }
}
.c-benefitChartsItem__img {
  width: 100%;
  height: auto;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 1024px) {
  .c-benefitChartsItem__img {
    margin-bottom: 2.875rem;
  }
}
.c-benefitChartsItem__figurecaption {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .c-benefitChartsItem__figurecaption {
    font-size: 1.4375rem;
    line-height: 1.22;
    text-align: center;
  }
}

.p-benefitCharts .c-benefitChartsItem:last-child .c-benefitChartsItem__title {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .p-benefitCharts .c-benefitChartsItem:last-child .c-benefitChartsItem__title {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-benefitCharts .c-benefitChartsItem:last-child .c-benefitChartsItem__figure {
    margin-inline: 0;
  }
}
.p-benefitCharts .c-benefitChartsItem:last-child .c-benefitChartsItem__img {
  margin-bottom: 1.8125rem;
}
@media screen and (min-width: 1024px) {
  .p-benefitCharts .c-benefitChartsItem:last-child .c-benefitChartsItem__img {
    margin-bottom: 1.5rem;
  }
}

/* 
 * voicesCard
 */
.c-voiceCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard {
    align-items: flex-start;
    gap: 0;
  }
}
.c-voiceCard__label {
  align-items: center;
  color: #003C89;
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__label {
    font-size: 1.625rem;
    line-height: 1.8;
    padding-left: 14rem;
  }
}
.c-voiceCard__label span {
  font-size: 2rem;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__label span {
    font-size: 2.125rem;
    line-height: 1.8;
  }
}
.c-voiceCard__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__inner {
    flex-direction: row;
    gap: 1.25rem;
  }
}
.c-voiceCard__inner .c-voiceCard__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__inner .c-voiceCard__head {
    width: 12.5rem;
  }
}
.c-voiceCard__inner .c-voiceCard__head .c-voiceCard__avatar {
  width: 6.25rem;
  height: 6.25rem;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__inner .c-voiceCard__head .c-voiceCard__avatar {
    width: 9.375rem;
    height: 9.375rem;
    margin-bottom: 0.5rem;
  }
}
.c-voiceCard__inner .c-voiceCard__head .c-voiceCard__attribute {
  word-break: auto-phrase;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__inner .c-voiceCard__head .c-voiceCard__attribute {
    font-size: 1rem;
    width: 12.5rem;
  }
}
.c-voiceCard__inner .c-voiceCard__body {
  padding: 17px 27px 27px 27px;
  border-radius: 20px;
  border: 3px solid #003C89;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__inner .c-voiceCard__body {
    padding: 27px 37px 37px 37px;
  }
}
.c-voiceCard__inner .c-voiceCard__body .c-voiceCard__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.04em;
  word-break: auto-phrase;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__inner .c-voiceCard__body .c-voiceCard__title {
    font-size: 1.625rem;
    line-height: 1.8;
  }
}
.c-voiceCard__inner .c-voiceCard__body .c-voiceCard__title span {
  color: #FA0000;
}
.c-voiceCard__inner .c-voiceCard__body .c-voiceCard__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  -webkit-text-decoration-color: #FBF978;
          text-decoration-color: #FBF978;
  text-decoration-thickness: 0.5px;
  text-underline-position: from-font;
}
@media screen and (min-width: 1024px) {
  .c-voiceCard__inner .c-voiceCard__body .c-voiceCard__text {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
.c-voiceCard__inner .c-voiceCard__body .c-voiceCard__text span {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-text-decoration-color: #FBF978;
          text-decoration-color: #FBF978;
  text-decoration-thickness: 6px;
  text-underline-position: from-font;
}

@media screen and (min-width: 1024px) {
  .p-voices__list .c-voiceCard:nth-child(even) {
    align-items: flex-end;
  }
  .p-voices__list .c-voiceCard:nth-child(even) .c-voiceCard__label {
    padding-right: 14rem;
  }
  .p-voices__list .c-voiceCard:nth-child(even) .c-voiceCard__inner {
    flex-direction: row-reverse;
  }
}
/* 
 * contactForm
 */
.c-contactForm__textarea, .c-contactForm__input {
  width: 100%;
  padding: 1rem 1.1875rem 0.9375rem;
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  background: #F4F4F5;
  color: #333;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1875;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 1024px) {
  .c-contactForm__textarea, .c-contactForm__input {
    padding: 1rem 1.1875rem 0.9375rem;
  }
}
.c-contactForm__textarea::-moz-placeholder, .c-contactForm__input::-moz-placeholder {
  color: #A8A8A8;
}
.c-contactForm__textarea::placeholder, .c-contactForm__input::placeholder {
  color: #A8A8A8;
}
.c-contactForm__textarea:focus, .c-contactForm__input:focus {
  outline: none;
  border-color: #2684ff;
  background-color: #fff;
  box-shadow: 0 0 0 1px #2684ff;
}
.c-contactForm__textarea:not(:-moz-placeholder-shown):invalid, .c-contactForm__input:not(:-moz-placeholder-shown):invalid {
  border-color: #FF5424;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}
.c-contactForm__textarea:not(:placeholder-shown):invalid, .c-contactForm__input:not(:placeholder-shown):invalid {
  border-color: #FF5424;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

.c-contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.c-contactForm__group {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.c-contactForm__label {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #505050;
  line-height: 1.875;
}
.c-contactForm__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem;
  border-radius: 5px;
  background-color: #FF5424;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.c-contactForm__textarea {
  resize: vertical;
  min-height: 12.5rem;
}
.c-contactForm__privacy {
  padding: 1rem;
  border: 1px solid #E1E1E1;
  border-radius: 10px;
  background-color: #F4F4F5;
  color: #505050;
}
.c-contactForm__privacySummary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #003C89;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
.c-contactForm__privacySummary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.375rem;
  line-height: 1;
}
.c-contactForm__privacy[open] .c-contactForm__privacySummary::after {
  content: "-";
}
.c-contactForm__privacyBody {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E1E1E1;
  font-size: 0.875rem;
  line-height: 1.8;
}
.c-contactForm__agreementLabel {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: #505050;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
}
.c-contactForm__checkbox {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1875rem;
  accent-color: #003C89;
}
.c-contactForm__checkbox:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 3px;
}
.c-contactForm__agreementText {
  flex: 1 1 auto;
}
.c-contactForm__button {
  display: flex;
  padding: 1.1875rem 1.1875rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background-color: #003C89;
  border-radius: 999px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

/* 
 * contactItem
 */
.c-contactItem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8125rem;
}
.c-contactItem__icon {
  width: 3.1875rem;
  height: 3.1875rem;
}
.c-contactItem__body .c-contactItem__title,
.c-contactItem__body .c-contactItem__link,
.c-contactItem__body .c-contactItem__address {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.c-contactItem__link {
  text-decoration: underline;
}

/* 
 * header
 */
.p-header {
  padding-inline: clamp(1.125rem, 0.375rem + 1.5625vw, 1.375rem) clamp(1.25rem, -4.9375rem + 12.890625vw, 3.3125rem);
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  min-height: var(--header-min-h);
  padding-block: 0.5rem;
}
.p-header__title {
  flex: 0 0 auto;
}
.p-header__title a {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.1875rem, -1.6777723735rem + 3.8910505837vw, 0.8125rem);
  padding-top: 0.125rem;
}
@media screen and (min-width: 1024px) {
  .p-header__title a {
    padding-top: 0.375rem;
  }
}
.p-header__title a .p-header__logo {
  display: block;
  width: clamp(3.875rem, -3.25rem + 14.84375vw, 6.25rem);
  height: auto;
}
.p-header__title a .p-header__titleText {
  font-family: "Meera Inimai", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.75rem, 0rem + 1.5625vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: -0.25rem;
}
@media screen and (min-width: 1024px) {
  .p-header__title a .p-header__titleText {
    font-size: 1rem;
    margin-bottom: -0.5625rem;
  }
}
.p-header__navWrap {
  position: relative;
}

/* 
 * footer
 */
.p-footer {
  padding-block: 2.625rem 1rem;
  padding-inline: var(--inner-pl) var(--inner-pr);
}
@media screen and (min-width: 1024px) {
  .p-footer {
    padding-block: 2.625rem 1.0625rem;
    padding-inline: 2.125rem 3.4375rem;
  }
}
.p-footer__inner {
  max-width: 100rem;
  margin-inline: auto;
}
.p-footer__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-bottom: 3.1875rem;
}
@media screen and (min-width: 1024px) {
  .p-footer__body {
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 2.75rem;
    margin-bottom: 5.0625rem;
  }
}
.p-footer__body .p-footer__poweredBy {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 1024px) {
  .p-footer__body .p-footer__poweredBy {
    font-size: 1.25rem;
    margin-top: 0;
    flex: 0 0 auto;
    min-width: 0;
  }
}
.p-footer__body .p-footer__poweredBy a {
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-footer__copyright {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .p-footer__copyright {
    font-size: 1.25rem;
    text-align: left;
  }
}

/*
 * global-nav（PC: ヘッダー内ナビ ／ SP: ドロワー）
 */
.p-global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background-color: #003C89;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
}
.p-global-nav.is-open {
  transform: translateX(0);
}
@media screen and (min-width: 1024px) {
  .p-global-nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    transform: none;
    transition: none;
    z-index: auto;
    flex: 1 1 auto;
    min-width: 0; /* flexアイテムの最小幅リセット。これが無いと縮まない */
  }
}
.p-global-nav__inner {
  padding-block: 9.375rem 3.75rem;
  padding-inline: 3.875rem;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media screen and (min-width: 1024px) {
  .p-global-nav__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.75rem, -2.25rem + 4.6875vw, 2.25rem);
    padding-block: 0;
    padding-inline: 0;
    height: auto;
    overflow: visible;
    overscroll-behavior: auto;
  }
}
.p-global-nav__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .p-global-nav__list {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.5rem;
    -moz-column-gap: clamp(0.75rem, -2.25rem + 4.6875vw, 2.25rem);
         column-gap: clamp(0.75rem, -2.25rem + 4.6875vw, 2.25rem);
    flex: 0 1 auto; /* ▼追加：足りなければ縮んで折り返す */
    min-width: 0; /* ▼追加：これが無いと縮まない */
    padding-top: 0;
  }
}
.p-global-nav__item a {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  color: #fff;
  text-shadow: 0 4px 4px rgba(108, 49, 12, 0.15);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .p-global-nav__item a {
    color: #003C89;
    line-height: 1.4;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .p-global-nav__item a {
    min-width: 6.25rem;
  }
}
.p-global-nav__action {
  margin-top: 1.1875rem;
}
@media screen and (min-width: 1024px) {
  .p-global-nav__action {
    flex: 0 0 auto;
    margin-top: 0;
  }
}
.p-global-nav__action .p-global-nav__contact {
  width: 100%;
  max-width: 15.625rem;
  padding-block: 0.5625rem;
  color: #fff;
  margin-top: 0.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-global-nav__action .p-global-nav__contact {
    width: clamp(11.25rem, 2.5rem + 13.671875vw, 15.625rem);
    padding-block: 0.53125rem;
    margin-top: 0;
    font-size: 1.25rem;
  }
}
.p-global-nav__close {
  position: absolute;
  top: 15px;
  right: 22px;
  width: 27px;
  height: 27px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .p-global-nav__close {
    display: none;
  }
}
.p-global-nav__closeLine {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.p-global-nav__closeLine:nth-child(1) {
  transform: rotate(45deg);
}
.p-global-nav__closeLine:nth-child(2) {
  opacity: 0;
}
.p-global-nav__closeLine:nth-child(3) {
  transform: rotate(-45deg);
}

/*
 * hamburger
 */
.p-hamburger {
  position: relative;
  width: 27px;
  height: 27px;
  cursor: pointer;
  border: none;
  background: transparent;
}
.p-hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #003C89;
}
.p-hamburger__line:nth-child(1) {
  top: 3px;
}
.p-hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.p-hamburger__line:nth-child(3) {
  bottom: 3px;
}
@media screen and (min-width: 1024px) {
  .p-hamburger {
    display: none;
  }
}

/*
 * hero
 */
.p-hero {
  position: relative;
  background-repeat: no-repeat;
  background-color: #f3f3f3;
  overflow: hidden;
  background-image: url("../img/bg_hero_sp.png");
  background-size: 235.2vw 117.6vw;
  background-position: left -15.7333333333vw top -14.9333333333vw;
}
@media screen and (min-width: 1024px) {
  .p-hero {
    background-image: url("../img/bg_hero_pc.png");
    background-size: 131.1197916667vw 57.9427083333vw;
    background-position: center top -7.7473958333vw;
  }
}
.p-hero__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
}
@media screen and (min-width: 1024px) {
  .p-hero__inner {
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: auto 1fr;
  }
}
.p-hero__catchphraseWrapper {
  grid-area: 1/1/2/3;
  max-width: 100%;
  margin-block: 3.125rem 1.75rem;
  margin-inline: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__catchphraseWrapper {
    grid-area: 1/1/2/2;
    margin-block: clamp(3.75rem, -3rem + 10.546875vw, 7.125rem) 1.8125rem;
    margin-inline: clamp(2.5rem, -12.5rem + 23.4375vw, 10rem) 1rem;
  }
}
.p-hero__catchphraseWrapper .p-hero__catchphrase {
  display: flex;
  flex-direction: column;
  color: #003C89;
  font-size: clamp(2.0625rem, 1.3559431525rem + 3.0146425495vw, 4.25rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 1.3125rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__catchphraseWrapper .p-hero__catchphrase {
    margin-bottom: 0.6875rem;
  }
}
.p-hero__catchphraseWrapper .p-hero__text {
  width: clamp(20.9375rem, 15.5878552972rem + 22.8251507321vw, 37.5rem);
  font-size: clamp(0.9375rem, 0.816375969rem + 0.5167958656vw, 1.3125rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .p-hero__catchphraseWrapper .p-hero__text {
    width: 100%;
    max-width: 35.4375rem;
    word-break: auto-phrase;
  }
}
.p-hero__image {
  grid-area: 2/1/3/3;
  width: 110%;
  height: auto;
  position: relative;
  left: 50%;
  transform: translateX(-51%);
  margin-bottom: -1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__image {
    grid-area: 1/2/3/3;
    width: 100%;
    transform: translateX(-50%);
    margin-bottom: 2.125rem;
    border-radius: 0 0 0 160px;
    overflow: hidden;
    background: #D9D9D9;
    filter: drop-shadow(20px 20px 20px rgba(0, 0, 0, 0.1));
  }
  .p-hero__image img {
    height: 100%;
  }
}
.p-hero__buttonWrapper {
  grid-area: 3/1/4/3;
  position: relative;
  padding: 1.25rem 1.25rem 2.6875rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__buttonWrapper {
    grid-area: 2/1/3/2;
    padding: 0;
    background-color: transparent;
    justify-content: flex-start;
    margin-inline: clamp(2.5rem, -12.5rem + 23.4375vw, 10rem) 1rem;
    margin-bottom: 2.125rem;
    align-items: flex-start;
    gap: 1rem;
  }
}
.p-hero__buttonWrapper .p-hero__button {
  display: grid;
  grid-template-columns: 1fr 1.875rem;
  padding-inline: 1rem;
  padding-block: 1rem 1.125rem;
  max-width: 26.8125rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__buttonWrapper .p-hero__button {
    grid-template-columns: 1fr 2.5rem;
    padding-inline: 3.5rem;
    place-content: center;
    max-width: none;
    width: 90%;
    height: clamp(5rem, 0.75rem + 6.640625vw, 7.125rem);
    max-width: 30.75rem;
  }
}
.p-hero__buttonWrapper .p-hero__button .p-hero__buttonText {
  display: inline-block;
  text-align: center;
  font-size: clamp(1.5rem, 1.177002584rem + 1.3781223084vw, 2.5rem);
  letter-spacing: 0.04em;
}

/*
 * service
 */
.p-service {
  padding: 4.625rem var(--inner-pl) 2.3125rem;
  background-color: #fff;
  background-image: url(/img/bg_service-sp.jpg);
  background-size: 82.25rem;
  background-position: top 0 left -29.125rem;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding: 3.75rem var(--inner-pl) 6.875rem;
    background-size: cover;
    background-position: top center;
  }
}
@media screen and (min-width: 1024px) {
  .p-service {
    background-image: url(/img/bg_service-pc.jpg);
  }
}
@media (min-width: 1537px) {
  .p-service {
    background-size: cover;
    background-position: center center;
  }
}
.p-service__title {
  color: #123C73;
  line-height: 1.8;
}
.p-service__description {
  margin-bottom: clamp(1.875rem, -0.0028890601rem + 8.0123266564vw, 5.125rem);
  text-align: left;
}
@media (min-width: 590px) {
  .p-service__description {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-service__description {
    width: 35rem;
    margin-inline: auto;
  }
}
.p-service__list {
  display: grid;
  grid-template-columns: min(100%, 17.8125rem);
  justify-content: center;
  row-gap: 1.875rem;
  -moz-column-gap: 1.1875rem;
       column-gap: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    grid-template-columns: repeat(2, 17.8125rem);
    -moz-column-gap: clamp(1.1875rem, -2.65625rem + 8.0078125vw, 3.75rem);
         column-gap: clamp(1.1875rem, -2.65625rem + 8.0078125vw, 3.75rem);
  }
}
@media (min-width: 1280px) {
  .p-service__list {
    grid-template-columns: repeat(4, 17.8125rem);
    -moz-column-gap: 1.1875rem;
         column-gap: 1.1875rem;
  }
}

/*
 * feature
 */
.p-feature {
  padding: 2.5rem var(--inner-pl) 4rem;
  background-color: #E2EAF2;
}
@media screen and (min-width: 1024px) {
  .p-feature {
    padding: 6.9375rem var(--inner-pl) 7.125rem;
  }
}
.p-feature__title {
  color: #003C89;
}
.p-feature__description {
  margin-bottom: clamp(2.5rem, 1.7055084746rem + 3.3898305085vw, 3.875rem);
}
@media (min-width: 421px) {
  .p-feature__description {
    word-break: auto-phrase;
  }
}
.p-feature__list {
  padding: clamp(2.6875rem, 2.0726273148rem + 2.6234567901vw, 3.75rem) clamp(1.25rem, -0.9201388889rem + 9.2592592593vw, 5rem) clamp(2.6875rem, 2.0726273148rem + 2.6234567901vw, 3.75rem);
  background-color: #fff;
  box-shadow: 0 4px 16px 0 rgba(31, 69, 98, 0.15);
}
@media screen and (min-width: 1024px) {
  .p-feature__list {
    padding: clamp(1.25rem, -1.25rem + 3.90625vw, 2.5rem) clamp(3.75rem, -1.25rem + 7.8125vw, 6.25rem);
    max-width: 75rem;
    margin-inline: auto;
  }
}
.p-feature__list .p-feature__item::after {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #C0C0C0;
}
.p-feature__list .p-feature__item:last-child::after {
  display: none;
}

/*
 * benefit
 */
.p-benefit {
  padding: 2.375rem var(--inner-pl) 3.75rem;
  background-color: #003C89;
}
@media screen and (min-width: 1024px) {
  .p-benefit {
    padding: 3.8125rem var(--inner-pl) 7.0625rem;
  }
}
.p-benefit__inner {
  padding: block clamp(2.375rem, 1.5792824074rem + 3.3950617284vw, 3.75rem) clamp(3.75rem, 3.0266203704rem + 3.0864197531vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .p-benefit__inner {
    max-width: 75rem;
    margin-inline: auto;
  }
}
.p-benefit__title {
  color: #fff;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-benefit__title {
    margin-bottom: 1rem;
  }
}
.p-benefit__description {
  color: #fff;
  margin-bottom: clamp(2.8125rem, 1.8374422188rem + 4.1602465331vw, 4.5rem);
  word-break: auto-phrase;
}
@media screen and (min-width: 1024px) {
  .p-benefit__description {
    font-size: 1.3125rem;
  }
}
.p-benefit__numbersWrapper {
  padding-block: clamp(2.375rem, 0.8559027778rem + 6.4814814815vw, 5rem);
  padding-inline: clamp(2.03125rem, -2.0045440051rem + 17.2193877551vw, 6.25rem);
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 1024px) {
  .p-benefit__numbersWrapper {
    width: 100%;
    padding: 0;
    background-color: transparent;
    margin-bottom: 2.625rem;
  }
}
.p-benefit__numbersWrapper .p-benefit__numbers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-benefit__numbersWrapper .p-benefit__numbers {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: clamp(1.25rem, -2.5147058824rem + 7.8431372549vw, 2.5rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-benefit__numbersWrapper .p-benefit__numbers {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.25rem, -1.25rem + 3.90625vw, 2.5rem);
  }
}
.p-benefit__charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8125rem;
}
@media screen and (min-width: 1024px) {
  .p-benefit__charts {
    max-width: 75rem;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 0.25rem + 1.5625vw, 1.75rem);
  }
}

/* 
 * p-voices
 */
.p-voices {
  padding-block: 2.6875rem 3.3125rem;
  padding-inline: var(--inner-pl) var(--inner-pr);
  background-color: #E2EAF2;
}
@media screen and (min-width: 1024px) {
  .p-voices {
    padding-block: 5.875rem 9.8125rem;
  }
}
.p-voices__inner {
  max-width: 62.5rem;
  margin-inline: auto;
}
.p-voices__title {
  line-height: 1.4;
  margin-bottom: clamp(1rem, 0.4021045918rem + 2.5510204082vw, 1.625rem);
}
@media screen and (min-width: 1024px) {
  .p-voices__title {
    line-height: 1.6;
  }
}
.p-voices__description {
  color: #fff;
  font-size: clamp(1rem, 0.7110939908rem + 1.2326656394vw, 1.5rem);
  line-height: 1.4;
  word-break: auto-phrase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 0.5rem;
  padding-inline: clamp(1.875rem, -4.2737268519rem + 26.2345679012vw, 12.5rem);
  background-color: #003C89;
  margin-bottom: clamp(1.875rem, 1.5138674884rem + 1.5408320493vw, 2.5rem);
}
@media screen and (min-width: 1024px) {
  .p-voices__description {
    line-height: 1.8;
    padding-block: 0;
    padding-inline: 0.625rem;
    width: 34.0625rem;
    margin-inline: auto;
  }
}
.p-voices__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .p-voices__list {
    gap: 1.25rem;
  }
}

/* 
 * contact
 */
.p-contact {
  background-color: #FFF8E6;
  padding-block: 2.875rem 3.25rem;
  padding-block: clamp(2.875rem, 1.6471494607rem + 5.2388289676vw, 5rem) clamp(3.25rem, 1.2276579353rem + 8.6286594761vw, 6.75rem);
}
.p-contact__title {
  margin-bottom: 0.625rem;
  max-width: 20.6875rem;
  margin-inline: auto;
}
.p-contact__description {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  word-break: auto-phrase;
  width: 100%;
  max-width: 20.6875rem;
  margin-inline: auto;
  margin-bottom: clamp(1.375rem, 0.6166217257rem + 3.2357473035vw, 2.6875rem);
}
@media screen and (min-width: 1024px) {
  .p-contact__description {
    font-size: 1.3125rem;
    max-width: none;
  }
}
.p-contact__inner {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    padding-inline: var(--inner-pl) var(--inner-pr);
    max-width: 75remvar(--inner-pl)var(--inner-pr);
  }
}
.p-contact__inner .p-contact__info {
  padding: 2.25rem 1.03125rem 0;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner .p-contact__info {
    padding: 0;
    width: 506px;
  }
}
.p-contact__inner .p-contact__info .p-contact__read {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner .p-contact__info .p-contact__read {
    display: block;
    font-size: 2.1875rem;
    font-size: clamp(1.875rem, 1.25rem + 0.9765625vw, 2.1875rem);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-bottom: 1.625rem;
  }
}
.p-contact__inner .p-contact__info .p-contact__text {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner .p-contact__info .p-contact__text {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin-bottom: 1.125rem;
  }
}
.p-contact__inner .p-contact__info .p-contact__items {
  margin-bottom: 2.6875rem;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner .p-contact__info .p-contact__items {
    margin-bottom: 2.1875rem;
  }
}
.p-contact__inner .p-contact__info .p-contact__items .p-contact__item {
  width: 15.6875rem;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner .p-contact__info .p-contact__items .p-contact__item {
    margin-left: 0.75rem;
  }
}
.p-contact__inner .p-contact__info .p-contact__items .p-contact__item:first-of-type {
  margin-bottom: 1.8125rem;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner .p-contact__info .p-contact__items .p-contact__item:first-of-type {
    margin-bottom: 2.0625rem;
  }
}
.p-contact__inner .p-contact__info .p-contact__businessHours {
  width: 100%;
  max-width: 21.375rem;
  margin-inline: auto;
  padding-block: 0.875rem 1.25rem;
  padding-inline: 0.6875rem;
  color: #fff;
  background-color: #003C89;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner .p-contact__info .p-contact__businessHours {
    padding-block: 0.875rem 1.0625rem;
    padding-inline: 1.625rem;
    max-width: 25.5rem;
    margin-left: 0;
  }
}
.p-contact__inner .p-contact__info .p-contact__businessHours h3 {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.p-contact__inner .p-contact__info .p-contact__businessHours p {
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.p-contact__inner .p-contact__info .p-contact__businessHours p:first-of-type {
  font-size: 1.125rem;
  margin-bottom: 0.0625rem;
}
.p-contact__inner .p-contact__info .p-contact__businessHours p:last-of-type {
  font-size: 1rem;
}
.p-contact__inner .p-contact__formWrapper {
  background-color: #fff;
  padding: 2.1875rem var(--inner-pl) 2.9375rem;
}
@media screen and (min-width: 1024px) {
  .p-contact__inner .p-contact__formWrapper {
    width: 41.25rem;
    padding: 1.9375rem 1.9375rem 3.1875rem;
    margin-top: 0.375rem;
  }
}

.p-contactResult {
  display: block;
}
.p-contactResult__inner {
  width: 100%;
  max-width: 47.5rem;
  margin-inline: auto;
  padding-inline: var(--inner-pl) var(--inner-pr);
}
.p-contactResult__card {
  padding: 2.5rem 1.375rem;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 4px 16px 0 rgba(31, 69, 98, 0.15);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-contactResult__card {
    padding: 3.5rem 4rem;
  }
}
.p-contactResult__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.75rem;
  margin-bottom: 1rem;
  background-color: #123C73;
  color: #fff;
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-contactResult__title {
  color: #003C89;
  margin-bottom: 1rem;
}
.p-contactResult__message {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-contactResult__message {
    font-size: 1.125rem;
  }
}
.p-contactResult__summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-bottom: 2rem;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-contactResult__summary {
    grid-template-columns: 10rem 1fr;
    gap: 0.75rem 1.125rem;
  }
}
.p-contactResult__term {
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  background-color: #003C89;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.p-contactResult__description {
  padding: 0.625rem 0.75rem;
  border: 1px solid #E1E1E1;
  border-radius: 8px;
  background-color: #F4F4F5;
  color: #333;
  line-height: 1.7;
  white-space: normal;
}
.p-contactResult__form {
  width: 100%;
}
.p-contactResult__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.p-contactResult__button {
  max-width: 20rem;
  margin-inline: auto;
  padding-block: 0.8125rem;
}
.p-contactResult__backButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid #003C89;
  border-radius: 999px;
  background-color: #fff;
  color: #003C89;
  font-weight: 700;
  line-height: 1.4;
}

/*
 * footerNav
 */
.p-footerNav {
  /* CTAのラッパー */
}
@media screen and (min-width: 1024px) {
  .p-footerNav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.75rem, -2.25rem + 4.6875vw, 2.25rem);
    min-width: 0; /* .p-footer__body のflexアイテムとして縮めるように */
  }
}
.p-footerNav__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-footerNav__list {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.5rem;
    -moz-column-gap: clamp(0.75rem, -2.25rem + 4.6875vw, 2.25rem);
         column-gap: clamp(0.75rem, -2.25rem + 4.6875vw, 2.25rem);
    flex: 0 1 auto;
    min-width: 0;
    padding-top: 0;
  }
}
.p-footerNav__item a {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  color: #003C89;
  text-shadow: 0 4px 4px rgba(108, 49, 12, 0.15);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  word-break: auto-phrase;
}
@media screen and (min-width: 1024px) {
  .p-footerNav__item a {
    font-size: 1.25rem;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .p-footerNav__item a {
    min-width: 6.25rem;
  }
}
.p-footerNav__action {
  margin-top: 2.0625rem;
}
@media screen and (min-width: 1024px) {
  .p-footerNav__action {
    flex: 0 0 auto;
    margin-top: 0;
  }
}
.p-footerNav__action .p-footerNav__contact {
  width: 15.625rem;
  padding-block: 0.53125rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .p-footerNav__action .p-footerNav__contact {
    width: clamp(12.5rem, 6.25rem + 9.765625vw, 15.625rem);
    font-size: 1.25rem;
  }
}
/*# sourceMappingURL=style.css.map */