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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-size: 4.1025641026vw;
}
@media (min-width: 769px) {
  body {
    font-size: 16px;
  }
}

html {
  line-height: 1.5;
}

body {
  min-height: 100vh;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", Meiryo, "メイリオ", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
}
body.is-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: unset;
}

a:not(.up-arrow) {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  a:not(.up-arrow):hover {
    opacity: 0.7;
  }
  a:not(.up-arrow):hover svg {
    transform: translateX(2px);
  }
}
a:not(.up-arrow) svg {
  transition: transform 0.3s;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .u-sp-hidden {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1279px) {
  .u-tb-hidden {
    display: none;
  }
}

@media (min-width: 769px) {
  .u-pc-hidden {
    display: none;
  }
}

@media (max-width: 1279px) {
  .u-mobile-hidden {
    display: none;
  }
}

[data-sr-only] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.inner {
  max-width: 1090px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media (min-width: 769px) {
  .inner {
    padding-inline: 25px;
  }
}

.inner-wide {
  max-width: 1280px;
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .inner-wide {
    padding-inline: 25px;
  }
}

.inner-narrow {
  max-width: 860px;
  width: 100%;
  padding-inline: 10px;
  margin-inline: auto;
}

.lower-body {
  background-color: #fff;
  padding-block-start: 40px;
}
@media (min-width: 769px) {
  .lower-body {
    padding-block-start: 50px;
  }
}

.hr-header {
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1230px;
  margin-inline: auto;
  z-index: 96;
  background-color: #0072BC;
}
@media screen and (max-width: 1024px) {
  .hr-header {
    top: 50px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s, pointer-events 0.3s;
  }
}
@media screen and (min-width: 1025px) {
  .hr-header {
    top: 190px;
    border-radius: 9999px;
    background-color: #fff;
    max-width: min(100% - 50px, 1230px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding-inline: 40px 30px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease, box-shadow 0.3s ease;
  }
  @keyframes header-drop-from-top {
    from {
      top: -40px;
      opacity: 0;
    }
    to {
      top: 20px;
      opacity: 1;
    }
  }
  .hr-header.is-fixed {
    top: 20px;
    position: fixed;
    animation: header-drop-from-top 0.3s ease;
    padding-inline-start: 20px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .hr-header {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 375px) {
  .hr-header {
    top: 52px;
  }
}

.is-resizing .hr-header,
.is-resizing .hr-header-inner {
  transition: none !important;
}

@media screen and (max-width: 1024px) {
  .is-open .hr-header {
    height: 100svh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.hr-header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: baseline;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .hr-header-inner {
    overflow: scroll;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding-block: 18px 72px;
    padding-inline: 20px;
    height: calc(100svh - 70px);
    max-width: 540px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 375px) {
  .hr-header-inner {
    height: calc(100svh - 60px);
  }
}

@media screen and (min-width: 1025px) {
  .fixed-header-logo {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .is-fixed .fixed-header-logo {
    display: block;
  }
}

.hr-header-text {
  color: #fff;
  font-size: 5.641025641vw;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hr-header-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .hr-header-text {
    text-align: center;
    padding-block-end: 28px;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 1025px) {
  .hr-header-text {
    color: #0072BC;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .hr-header-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .hr-header-nav {
    margin-block-start: 50px;
  }
}

.hr-header-nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .hr-header-nav-list {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .hr-header-nav-list {
    gap: 14px;
  }
}

.hr-header-nav-link {
  display: flex;
  align-items: center;
  gap: 2.5641025641vw;
  font-size: 4.6153846154vw;
  color: #fff;
}
.hr-header-nav-link svg {
  stroke: #fff;
  width: 4.1025641026vw;
}
.hr-header-nav-link p {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hr-header-nav-link {
    font-size: 18px;
    gap: 10px;
  }
  .hr-header-nav-link svg {
    width: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .hr-header-nav-link {
    font-size: 14px;
    color: #0072BC;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-right: 0;
    position: static;
  }
  .hr-header-nav-link svg {
    width: 16px;
    stroke: #0072BC;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .hr-header-nav-link {
    font-size: 13px;
  }
}

.hr-header-menu {
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 97;
}
@media screen and (min-width: 1025px) {
  .hr-header-menu {
    display: none;
  }
}

.hr-header-menu-button {
  border: none;
  display: flex;
  width: 54px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background-color: #0072BC;
}
@media screen and (max-width: 375px) {
  .hr-header-menu-button {
    width: 60px;
    height: 60px;
  }
}

.hr-header-menu-button-line {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.3s;
}
.hr-header-menu-button-line::before, .hr-header-menu-button-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: transform 0.3s;
}
.hr-header-menu-button-line::before {
  top: -10px;
}
.hr-header-menu-button-line::after {
  width: 20px;
  top: 10px;
}

.is-open .hr-header-menu-button-line {
  background-color: transparent;
}
.is-open .hr-header-menu-button-line::before {
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}
.is-open .hr-header-menu-button-line::after {
  width: 100%;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  background-color: #fff;
}

.hr-header-button {
  margin-block-start: 40px;
}
@media (min-width: 769px) {
  .hr-header-button {
    display: none;
  }
}

.hr-header-button-link {
  border: 1px solid #fff;
  padding: 20px;
  border-radius: 9000px;
  font-size: 4.1025641026vw;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 330px;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .hr-header-button-link {
    display: none;
  }
}
.hr-header-button-link svg {
  stroke: #fff;
}

@media screen and (min-width: 891px) {
  #header .header-utility .utility-inner {
    justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hr-header-menu {
    top: 186px;
  }
  .hr-header-menu-button {
    width: 70px;
    height: 70px;
  }
  .hr-header {
    top: 170px;
  }
}
.border-heading {
  text-align: center;
  font-size: 6.1538461538vw;
  font-weight: 700;
  color: #0072BC;
  margin-block-end: 40px;
}
@media (min-width: 769px) {
  .border-heading {
    font-size: 24px;
    margin-block-end: 56px;
  }
}
.border-heading span {
  display: block;
  position: relative;
  padding-inline: 48px;
}
@media (max-width: 768px) {
  .border-heading span {
    line-height: 1.4;
  }
}
@media (min-width: 769px) {
  .border-heading span {
    display: inline-block;
    padding-inline: 75px;
  }
}
.border-heading span::before, .border-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
}
@media (min-width: 769px) {
  .border-heading span::before, .border-heading span::after {
    width: 60px;
  }
}
.border-heading span::before {
  left: 0;
  background: linear-gradient(to right, #FF91E6, #0072BC, #86BBF9);
}
.border-heading span::after {
  right: 0;
  background: linear-gradient(to left, #FF91E6, #0072BC, #86BBF9);
}

.border-sub-heading {
  position: relative;
  font-size: 5.1282051282vw;
  font-weight: 500;
  color: #0072BC;
  margin-block: 70px 26px;
  padding-block-end: 22px;
}
@media (min-width: 769px) {
  .border-sub-heading {
    margin-block-end: 26px;
    font-size: 20px;
  }
}
.border-sub-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #FF91E6, #0072BC, #86BBF9);
}
@media (min-width: 769px) {
  .border-sub-heading::after {
    width: 120px;
  }
}

.vision-content-item .border-sub-heading {
  margin-block-start: 30px;
}

.kv {
  position: relative;
  background: url(../images/index/bg_kv_sp.webp) no-repeat center bottom/cover;
  height: 153.0769230769vw;
  padding-inline: 10px;
  padding-block: 106px 0;
}
@media (min-width: 769px) {
  .kv {
    margin-block-start: 0;
    background: url(../images/index/bg_kv.webp) no-repeat center top/cover;
    height: 709px;
    padding-inline: 10px;
    padding-block: 200px 180px;
  }
}

.kv-inner {
  position: relative;
  height: 100%;
}
@media (min-width: 769px) {
  .kv-inner {
    max-width: 1040px;
    margin-inline: auto;
  }
}

@media (min-width: 769px) {
  .kv-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.kv-heading h1 {
  color: #fff;
  position: relative;
  display: inline-block;
  padding-right: 84px;
  font-size: 5.641025641vw;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
@media (min-width: 769px) {
  .kv-heading h1 {
    letter-spacing: 0.04em;
    font-size: 24px;
  }
}
.kv-heading h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.kv-heading p {
  color: #fff;
  font-size: 7.6923076923vw;
  letter-spacing: 0.04em;
  width: 86.6666666667vw;
}
@media (min-width: 769px) {
  .kv-heading p {
    width: auto;
    font-size: 44px;
  }
}

.kv-lead {
  color: #fff;
  font-size: 4.1025641026vw;
  line-height: 1.75;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  margin-block-start: 6px;
  width: 72.3076923077vw;
}
@media (min-width: 769px) {
  .kv-lead {
    margin-block-start: 15px;
    max-width: 450px;
    font-size: 20px;
  }
}

.scroll-icon-wrapper {
  text-align: center;
}
.scroll-icon-wrapper img {
  display: block;
  width: 62px;
  height: 20px;
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-icon::before {
  animation: scroll 2s infinite;
  bottom: 46px;
  background-color: #FF91E6;
  content: "";
  height: 30px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
  border-radius: 1px;
  z-index: 2;
}

/* 線?背景色 */
.scroll-icon::after {
  background-color: #fff;
  bottom: 46px;
  content: "";
  height: 30px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
  border-radius: 1px;
}

/* 線?アニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}
.footer-sitemap,
.footer-utility {
  background: #f3f3f3;
  padding: 0 20px;
}

.sitemap-inner,
.utility-inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.footer-sitemap {
  border-top: #fafafa 1px solid;
}

.footer-utility {
  background: #0071c5;
  color: #fff;
}

.utility-inner {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  justify-content: space-between;
  padding: 16px 0 15px 0;
}

.footer-utility a {
  color: #fff;
  letter-spacing: 0.1em;
}

.footer-part-01 {
  display: flex;
  margin: 0 -12px;
  padding: 20px 0 18px 0;
  list-style: none;
}

.footer-part-01 li {
  padding: 0 12px;
}

.footer-part-01 a {
  color: #333333;
  display: inline-block;
  padding-left: 17px;
  position: relative;
  text-decoration: none;
}

.footer-part-01 a::before {
  border-right: solid 2px #0071c5;
  border-top: solid 2px #0071c5;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.5rem;
  transform: rotate(45deg);
  width: 8px;
  will-change: transform;
}

.footer-part-02 {
  display: flex;
  align-items: flex-start;
  border-top: #dddddd 1px solid;
  font-size: 0.875rem;
  justify-content: space-between;
  padding-bottom: 35px;
  padding-top: 8px;
}

.footer-part-02 a {
  color: #333333;
  text-decoration: none;
}

.footer-part-02 .lang span {
  background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0i44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzY2Njt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPjAxX0VuZ2xpc2g8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE2LjAwMjM2LDJhMTQsMTQsMCwxLDAsMTQsMTRBMTQsMTQsMCwwLDAsMTYuMDAyMzYsMlpNMjYuODk3LDExSDIyLjg2MzM5YTE3LjMzNzc0LDE3LjMzNzc0LDAsMCwwLTMuODYzNzEtNi42MDU3N0ExMi4wMzI5NCwxMi4wMzI5NCwwLDAsMSwyNi44OTcsMTFaTTIxLjY0MiwxNS40NjM4N0ExNC41MTkxMiwxNC41MTkxMiwwLDAsMSwyMS4zMjE0NSwxOUgxNy4wMDIzNlYxM2g0LjMxNzU3QTE0LjUzMzIzLDE0LjUzMzIzLDAsMCwxLDIxLjY0MiwxNS40NjM4N1ptLTExLjI3OTMsMEExNC41MzQ0NywxNC41MzQ0NywwLDAsMSwxMC42ODUsMTNoNC4zMTczOHY2SDEwLjY4MzU4QTE0LjUxODc4LDE0LjUxODc4LDAsMCwxLDEwLjM2MjcxLDE1LjQ2Mzg3Wk0xNS4wMDIzNiwxMUgxMS4yNDc3MmExNS41MDA4NCwxNS41MDA4NCwwLDAsMSwzLjc1NDY0LTUuODA0MjZabTAsMTB2NS43MzVBMTUuNTEwNywxNS41MTA3LDAsMCwxLDExLjI3MjA4LDIxWm0yLDUuNzM1NDdWMjFoMy43MzA3MkExNS41MDg3MywxNS41MDg3MywwLDAsMSwxNy4wMDIzNiwyNi43MzU0N1ptMC0xNS43MzU0N1Y1LjE5NTc0QTE1LjUwMDYzLDE1LjUwMDYzLDAsMCwxLDIwLjc1NzI1LDExWk0xMy4wMDQ5Myw0LjM5NDIzQTE3LjMzNywxNy4zMzcsMCwwLDAsOS4xNDE0NiwxMUg1LjEwNzc3QTEyLjAzMzE2LDEyLjAzMzE2LDAsMCwxLDEzLjAwNDkzLDQuMzk0MjNaTTQuMzk3MjYsMTNoNC4yNDY0YTE2LjU1MjQ1LDE2LjU1MjQ1LDAsMCwwLS4yOCwyLjM5NDUzQTE2LjUzMDksMTYuNTMwOSwwLDAsMCw4LjY0MjEzLDE5SDQuMzk3MjZhMTEuNTkyNzQsMTEuNTkyNzQsMCwwLDEsMC02Wm0uNzEwNTEsOGg0LjAyN2ExNy4zOTE4MiwxNy4zOTE4MiwwLDAsMCwzLjkwNjY4LDYuNjE1MTdBMTIuMDMyNzcsMTIuMDMyNzcsMCwwLDEsNS4xMDc3NywyMVptMTMuODU2MTQsNi42MTVBMTcuMzkwODUsMTcuMzkwODUsMCwwLDAsMjIuODcwMSwyMUgyNi44OTdBMTIuMDMyNzIsMTIuMDMyNywyLDAsMSwxOC45NjM5MSwyNy42MTVaTTI3LjYwNzQ3LDE5SDIzLjM2MjcxYTE2LjUyOTYxLDE2LjUyOTYxLDAsMCwwLC4yNzgzMi0zLjYwNTQ3QTE2LjUzNDE0LDE2LjUzNDE0LDAsMCwwLDIzLjM2MTE5LDEzaDQuMjQ2MjhhMTEuNTkzLDExLjU5MywwLDAsMSwwLDZaIi8+PC9zdmc+");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding-left: 22px;
}

.footer-part-02 .link {
  padding-right: 10px;
  list-style: none;
}

.footer-part-02 .link li {
  display: inline-block;
  padding: 3px 14px;
  position: relative;
}
@media (min-width: 769px) {
  .footer-part-02 .link li {
    padding-block: 0;
  }
}

.footer-part-02 .link li::before {
  background: #dddddd;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 1px;
}

.footer-part-02 .link li:last-child::after {
  background: #dddddd;
  content: "";
  display: block;
  height: 16px;
  margin-top: -8px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
}

.footer-part-03 {
  flex: 1;
  padding-right: 10px;
  list-style: none;
}

.footer-part-03 li {
  display: inline-block;
  padding: 3px 14px;
  position: relative;
}
@media (min-width: 769px) {
  .footer-part-03 li {
    padding-block: 0;
  }
}

.footer-part-03 li::before {
  background: #fff;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 1px;
}

.footer-part-03 li:last-child::after {
  background: #fff;
  content: "";
  display: block;
  height: 16px;
  margin-top: -8px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
}

.footer-copy {
  margin-top: 5px;
  text-align: center;
}

.footer-copy small {
  font-size: 0.625rem;
}

.management img {
  height: auto;
  max-width: 100%;
  vertical-align: middle !important;
  padding: 0 0 2px 5px !important;
}

@media only screen and (max-width: 768px) {
  .footer:not(.not-rwd) .footer-utility {
    padding: 0 15px;
  }
  .footer:not(.not-rwd) .footer-sitemap {
    border-top: 0;
    padding: 0;
  }
  .footer:not(.not-rwd) .utility-inner {
    display: block;
    font-size: 0.75rem;
    padding: 16px 0 15px 0;
  }
  .footer:not(.not-rwd) .footer-part-01 {
    display: block;
    margin: 0;
    padding: 0;
  }
  .footer:not(.not-rwd) .footer-part-01 li {
    border-top: #dddddd 1px solid;
    padding: 0;
  }
  .footer:not(.not-rwd) .footer-part-01 a {
    display: block;
    padding: 12px 15px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 769px) {
  .footer:not(.not-rwd) .footer-part-01 a {
    padding-block: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .footer:not(.not-rwd) .footer-part-01 a::before {
    content: none;
  }
  .footer:not(.not-rwd) .footer-part-01 a span {
    display: inline-block;
    padding-left: 15px;
    position: relative;
  }
  .footer:not(.not-rwd) .footer-part-01 a span::before {
    border-right: solid 2px #0071c5;
    border-top: solid 2px #0071c5;
    content: "";
    display: block;
    height: 8px;
    left: 0;
    position: absolute;
    top: 0.6rem;
    transform: rotate(45deg);
    width: 8px;
    will-change: transform;
  }
  .footer:not(.not-rwd) .footer-part-02 {
    display: block;
    font-size: 0.75rem;
    padding-bottom: 25px;
    padding-top: 20px;
  }
  .footer:not(.not-rwd) .footer-part-02 .link {
    padding-right: 0;
    text-align: center;
  }
  .footer:not(.not-rwd) .footer-part-02 .lang {
    margin-top: 10px;
    text-align: center;
  }
  .footer:not(.not-rwd) .footer-part-03 {
    padding-right: 0;
    text-align: center;
  }
}
.lead {
  background: url(../images/index/bg_index-contents_sp.webp) no-repeat right bottom/cover;
  padding-block: 48px 100px;
}
@media (min-width: 769px) {
  .lead {
    background: url(../images/index/bg_index-contents.webp) no-repeat right bottom/100% 100%;
    padding-block-start: 80px;
  }
}

.lead-heading {
  text-align: center;
}

.lead-container {
  margin-block-start: 25px;
  margin-block-end: 92px;
}
@media (min-width: 769px) {
  .lead-container {
    margin-block-start: 42px;
    margin-block-end: 96px;
  }
}

.lead-main-item {
  padding-block-start: 233px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  background: url(../images/index/bg_index-lead_sp.webp) no-repeat center top/cover;
}
@media (min-width: 769px) {
  .lead-main-item {
    padding-block-start: 0;
    background: url(../images/index/bg_index-lead.webp) no-repeat center center/cover;
  }
}

.blur-container {
  position: relative;
  padding: 43px 15px 42px 30px;
  border-radius: 5px 60px 0 0;
  color: #fff;
  background: linear-gradient(45deg, rgba(72, 0, 94, 0.35), rgba(0, 114, 188, 0.35));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
@media (min-width: 769px) {
  .blur-container {
    max-width: 518px;
    padding-block: 54px;
    padding-inline: 50px 40px;
    border-radius: 0 60px 0 0;
  }
}

.lead-item {
  color: #0072BC;
}
@media (max-width: 768px) {
  .lead-item + .lead-item {
    margin-block-start: 60px;
  }
}

.lead-item-title {
  position: relative;
  font-size: 6.1538461538vw;
  line-height: 1.6;
  font-weight: 500;
  padding-block-end: 14px;
  margin-block-end: 24px;
}
@media (min-width: 769px) {
  .lead-item-title {
    font-size: 24px;
    padding-block-end: 10px;
    margin-block-end: 23px;
  }
}
.lead-item-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, #FF91E6, #0072BC, #86BBF9);
  bottom: 0;
  left: 0;
}

.lead-text {
  font-size: 4.1025641026vw;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .lead-text {
    font-size: 16px;
  }
}

.lead-icon-link-wrapper {
  margin-block-start: 27px;
}
@media (min-width: 769px) {
  .lead-icon-link-wrapper {
    margin-block-start: 24px;
  }
}

.lead-icon-link {
  font-size: 3.5897435897vw;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}
@media (min-width: 769px) {
  .lead-icon-link {
    font-size: 14px;
  }
}
.lead-icon-link svg {
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  .lead-icon-link:hover {
    opacity: 0.7;
  }
  .lead-icon-link:hover svg {
    transform: translateX(2px);
  }
}

@media (min-width: 769px) {
  .lead-sub-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13.6538461538%;
    margin-block-start: 160px;
  }
}

.lead-image {
  border-radius: 5px;
  margin-block-start: 40px;
}
@media (min-width: 769px) {
  .lead-image {
    margin-block-start: 46px;
  }
}

.license {
  background: url(../images/index/bg_index-license_sp.webp) no-repeat center top/cover;
  padding-block: 82px 100px;
}
@media (min-width: 769px) {
  .license {
    background: url(../images/index/bg_index-license.webp) no-repeat center top/cover;
    padding-block: 88px;
  }
}

.license-heading {
  text-align: center;
  color: #fff;
}

.license-title {
  font-size: 7.1794871795vw;
  font-weight: 500;
}
@media (min-width: 769px) {
  .license-title {
    font-size: 28px;
  }
}

.license-note {
  font-size: 3.5897435897vw;
  margin-block-start: 10px;
}
@media (min-width: 769px) {
  .license-note {
    font-size: 14px;
  }
}

.grid-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 340px;
  margin-inline: auto;
  margin-block-start: 56px;
}
@media (min-width: 769px) {
  .grid-list {
    max-width: 706px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.grid-item {
  padding: 28px 28px 20px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px) brightness(2);
  -webkit-backdrop-filter: blur(15px) brightness(2);
  border-radius: 5px;
  text-align: center;
  color: #0072BC;
  font-size: 4.6153846154vw;
}
@media (min-width: 769px) {
  .grid-item {
    padding: 28px 10px 20px;
    font-size: 18px;
  }
}

.license-text {
  font-size: 4.6153846154vw;
}
@media (min-width: 769px) {
  .license-text {
    font-size: 18px;
  }
}

.license-number {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 15.3846153846vw;
}
@media (min-width: 769px) {
  .license-number {
    font-size: 60px;
  }
}
.license-number span {
  font-size: 4.6153846154vw;
  font-weight: 500;
}
@media (min-width: 769px) {
  .license-number span {
    font-size: 18px;
    font-weight: 500;
  }
}

.license-link-wrapper {
  margin-block-start: 60px;
  text-align: center;
}
@media (min-width: 769px) {
  .license-link-wrapper {
    margin-block-start: 30px;
  }
}

.license-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 3.5897435897vw;
  color: #fff;
}
@media (min-width: 769px) {
  .license-link {
    font-size: 14px;
  }
}

.hr-breadcrumb {
  display: none;
}
@media (min-width: 769px) {
  .hr-breadcrumb {
    padding-block: 20px;
    background-color: #EEEFF2;
    display: block;
    max-width: 100%;
  }
  .hr-breadcrumb.-kv {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: transparent;

    .inner-wide {
      max-width: calc(1070px + 10px * 2);
      margin-inline: auto;
    }

    .hr-breadcrumb-item:not(:last-child)::after {
      color: #fff;
    }

    .hr-breadcrumb-link {
      color: #fff;
    }
  }
}

.hr-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 2.3em;
}

.hr-breadcrumb-item {
  font-size: 12px;
  position: relative;
}
.hr-breadcrumb-item:not(:last-child)::after {
  content: "r";
  color: #898989;
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
}
.hr-breadcrumb-item:not(:last-child):nth-last-child(2)::after {
  color: #333;
}

.hr-breadcrumb-link {
  color: #898989;
}
.hr-breadcrumb-link::before {
  content: none;
}
.hr-breadcrumb-link.current {
  color: #333;
}

.lower-kv {
  color: #fff;
  background: url(../images/lower/bg_lower-kv_sp.webp) no-repeat left top/cover;
  padding-block: 60px 40px;
  padding-inline: 25px;
}
@media (min-width: 769px) {
  .lower-kv {
    background: url(../images/lower/bg_lower-kv.webp) no-repeat center top/cover;
    padding-inline: 0;
    padding-block: 137px 62px;
  }
}

.talent-page .lower-kv {
  display: none;
}
@media (min-width: 769px) {
  .talent-page .lower-kv {
    background: url(../images/lower/bg_lower-kv_min.webp) no-repeat center top/cover;
    display: block;
    height: 102px;
    padding-block: 0;
  }
}

@media (min-width: 769px) {
  .lower-kv-inner {
    max-width: 840px;
    margin-inline: auto;
    padding-inline: 20px;
  }
}

.lower-page-heading {
  position: relative;
  text-align: center;
  font-size: 7.1794871795vw;
  font-weight: 500;
  padding-block-end: 20px;
}
@media (min-width: 769px) {
  .lower-page-heading {
    font-size: 30px;
  }
}
.lower-page-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #FF91E6, #0072BC, #86BBF9);
}

.lower-page-lead {
  margin-block-start: 28px;
  font-size: 4.1025641026vw;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .lower-page-lead {
    font-size: 16px;
  }
}

.lower-page-note {
  font-size: 3.0769230769vw;
  margin-block-start: 10px;
}
@media (min-width: 769px) {
  .lower-page-note {
    font-size: 12px;
  }
}

.lower-page-note {
  font-size: 3.0769230769vw;
  margin-block-start: 10px;
}
@media (min-width: 769px) {
  .lower-page-note {
    font-size: 12px;
  }
}

.filter-area {
  background-color: #EEEFF2;
}

@media (max-width: 768px) {
  .filter-area-inner {
    padding-block: 20px;
  }
}

.filter-list-wrapper > .filter-accordion-trigger {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 768px) {
  .filter-list-wrapper:not(.active) > .filter-list > .filter-button:last-child {
    border-radius: 0 0 10px 10px;
    border-bottom: 1px solid #0072BC;
  }
}
.filter-list-wrapper:not(.active) > .filter-accordion-trigger {
  border-radius: 10px;
}
.filter-list-wrapper > .filter-accordion-trigger.-close {
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid #0072BC;
}

.filter-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .filter-list {
    border: none;
    border-radius: 0;
    margin-block: 0;
    padding-block: 14px 40px;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px 10px;
  }
}

@media (max-width: 768px) {
  .filter-list-wrapper.js-accordion > .filter-list {
    display: flex;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}

.filter-button {
  background-color: #fff;
  font-size: 4.1025641026vw;
  text-align: center;
  color: #0072BC;
  position: relative;
  cursor: pointer;
  padding-block: 15px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .filter-button {
    border-left: 1px solid #0072BC;
    border-right: 1px solid #0072BC;
  }
  .filter-button + .filter-button {
    border-top: 1px solid #0072BC;
  }
}
@media (min-width: 769px) {
  .filter-button {
    border-radius: 9999px;
    padding: 5px 14px 3px 14px;
    min-width: 114px;
    font-size: 14px;
  }
}
.filter-button input[type=checkbox],
.filter-button input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  visibility: hidden;
  overflow: hidden;
}
.filter-button input[type=checkbox]:checked,
.filter-button input[type=radio]:checked {
  background-color: #0072BC;
}
.filter-button input[type=checkbox]:checked span,
.filter-button input[type=radio]:checked span {
  color: #fff;
}
.filter-button:has(input[type=checkbox]:checked, input[type=radio]:checked) {
  background-color: #0072BC;
}
.filter-button:has(input[type=checkbox]:checked, input[type=radio]:checked) span {
  color: #fff;
}

.filter-contents-wrapper {
  background-color: #fff;
  padding-block: 20px;
}
@media (min-width: 769px) {
  .filter-contents-wrapper {
    padding-block: 60px;
  }
}

.filter-contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 16px;
}
@media (min-width: 769px) {
  .filter-contents {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 18px;
  }
}

@media (any-hover: hover) {
  .card-link:hover {
    opacity: 1 !important;
  }
  .card-link:hover .card-image::after {
    background-color: rgba(0, 114, 188, 0.2);
  }
}

.card-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-block-end: 10px;
}
.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 114, 188, 0);
  transition: background-color 0.3s;
}

.card-name {
  position: relative;
  font-size: 4.6153846154vw;
  font-weight: 700;
  padding-block-end: 6px;
}
@media (min-width: 769px) {
  .card-name {
    font-size: 18px;
  }
}
.card-name::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #FF91E6, #0072BC, #86BBF9);
  bottom: 0;
  left: 0;
}

.card-position {
  margin-block-start: 8px;
  font-size: 3.0769230769vw;
  font-weight: 500;
}
@media (min-width: 769px) {
  .card-position {
    font-size: 12px;
  }
}

.filter-accordion-trigger.-close {
  display: none;
}
.filter-accordion-trigger {
  position: relative;
  background-color: #0072BC;
  font-size: 4.6153846154vw;
  color: #fff;
  border: none;
  text-align: center;
  padding-block: 20px;
  transition: background-color 0.3s;
  width: 100%;
}
@media (min-width: 769px) {
  .filter-accordion-trigger {
    display: none;
  }
}

.filter-accordion-trigger-icon {
  display: block;
  width: 12px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.filter-accordion-trigger-icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: rotate(90deg);
  transition: opacity 0.3s;
}

.filter-list-wrapper.active .filter-accordion-trigger {
  background-color: #333;
}
@media (max-width: 768px) {
  .filter-list-wrapper.active .filter-accordion-trigger.-close {
    display: block;
  }
}
.filter-list-wrapper.active .filter-accordion-trigger-icon:after {
  opacity: 0;
}

.profile {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
  background-color: #fff;
  padding-block: 95px 76px;
  border-radius: 5px;
}
@media (min-width: 769px) {
  .profile {
    max-width: min(100% - 50px, 1040px);
    margin-block-start: 40px;
    padding-block: 72px;
    padding-inline: 0;
  }
}
.profile::before, .profile::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 42.0512820513vw;
  pointer-events: none;
}
@media (min-width: 769px) {
  .profile::before, .profile::after {
    width: 100%;
    height: 411px;
  }
}
.profile::before {
  top: 0;
  left: 0;
  background: url(../images/lower/bg_gradient-sp.webp) no-repeat top left/100% auto;
}
@media (min-width: 769px) {
  .profile::before {
    background: url(../images/lower/bg_gradient.webp) no-repeat top left/100% auto;
  }
}
.profile::after {
  bottom: 0;
  right: 0;
  background: url(../images/lower/bg_gradient-sp.webp) no-repeat top left/100% auto;
}
@media (min-width: 769px) {
  .profile::after {
    background: url(../images/lower/bg_gradient.webp) no-repeat top left/100% auto;
  }
}
.profile::after {
  transform: rotate(180deg);
}

.profile-container {
  max-width: min(100% - 20px, 835px);
  margin-inline: auto;
}
@media (min-width: 769px) {
  .profile-container {
    max-width: min(100% - 40px, 835px);
  }
}

@media (max-width: 768px) {
  .profile-heading {
    margin-block-end: 32px;
  }
}

.profile-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  margin-block-end: 35px;
}
@media (min-width: 769px) {
  .profile-head {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5714285714%;
  }
}

.profile-head-image {
  border-radius: 5px;
  overflow: hidden;
}

.profile-head-content {
  flex-shrink: 0;
  width: 100%;
  max-width: 94.8717948718vw;
  padding-inline: 5px;
}
@media (min-width: 769px) {
  .profile-head-content {
    max-width: 360px;
    padding-inline: 0;
  }
}

.profile-name {
  position: relative;
  padding-block-end: 20px;
  margin-block-end: 16px;
  text-align: center;
}
@media (min-width: 769px) {
  .profile-name {
    text-align: left;
  }
}
.profile-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #FF91E6, #0072BC, #86BBF9);
}

.profile-name-ja {
  font-size: 5.641025641vw;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .profile-name-ja {
    font-size: 22px;
  }
}

.profile-name-en {
  font-size: 3.5897435897vw;
  font-weight: 500;
  margin-block-start: 5px;
}
@media (min-width: 769px) {
  .profile-name-en {
    margin-block-start: 0;
    font-size: 14px;
  }
}

.profile-data-item + .profile-data-item {
  margin-top: 15px;
}
@media (min-width: 769px) {
  .profile-data-item + .profile-data-item {
    margin-top: 20px;
  }
}

.profile-data-item-title {
  font-size: 3.5897435897vw;
  font-weight: 500;
  margin-block-end: 4px;
}
@media (min-width: 769px) {
  .profile-data-item-title {
    font-size: 14px;
  }
}

.profile-data-item-value {
  font-size: 4.1025641026vw;
  font-weight: 700;
  background-color: rgba(0, 114, 188, 0.1);
  padding: 2px 10px;
  border-radius: 2px;
}
@media (min-width: 769px) {
  .profile-data-item-value {
    font-size: 16px;
  }
}

.profile-text {
  line-height: 1.75;
  font-size: 4.1025641026vw;
}
@media (min-width: 769px) {
  .profile-text {
    font-size: 16px;
  }
}
.profile-text strong {
  font-weight: 700;
}
.profile-text + .profile-text {
  margin-block-start: 1.75em;
}

.profile-button-wrapper {
  margin-block-start: 60px;
  text-align: center;
}
.profile-button-wrapper .icon-link {
  display: inline-flex;
  align-items: center;
  color: #0072BC;
  font-size: 3.5897435897vw;
}
@media (min-width: 769px) {
  .profile-button-wrapper .icon-link {
    font-size: 14px;
  }
}

.profile-subsection {
  margin-block-start: 48px;
}

.profile-subsection-heading {
  text-align: center;
  font-size: 6.1538461538vw;
  font-weight: 500;
  margin-block-end: 34px;
}
@media (min-width: 769px) {
  .profile-subsection-heading {
    font-size: 24px;
  }
}

.table-contents {
  border-bottom: 1px solid #DFDFDF;
}

.table-contents-row {
  border-top: 1px solid #DFDFDF;
  grid-template-columns: 1fr;
  display: grid;
}
@media (min-width: 769px) {
  .table-contents-row {
    grid-template-columns: 170px auto;
  }
}

.table-contents-title {
  background-color: rgba(0, 114, 188, 0.1);
  padding: 15px 20px;
  border-radius: 2px;
  font-size: 3.5897435897vw;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .table-contents-title {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.table-contents-text {
  font-size: 4.1025641026vw;
  font-weight: 500;
  padding: 15px 20px;
}
@media (min-width: 769px) {
  .table-contents-text {
    font-size: 16px;
  }
}

@media (min-width: 769px) {
  .lower-page {
    padding-block-start: 0;
    padding-block-end: 100px;
  }
}

.lower-page.talent-page {
  background-color: #EEEFF2;
}
@media (min-width: 769px) {
  .lower-page.talent-page {
    padding-block-end: 100px;
  }
}

.lower-page.certified-members {
  padding-block-end: 80px;
}
@media (min-width: 769px) {
  .lower-page.certified-members {
    padding-block-end: 100px;
  }
}

.interview.profile {
  border-radius: 5px;
}
@media (min-width: 769px) {
  .interview.profile {
    max-width: min(100% - 50px, 1040px);
    margin-inline: auto;
  }
}

.interview-container {
  max-width: 840px;
  max-width: min(100% - 20px, 840px);
  margin-inline: auto;
}

.interview-lead {
  text-align: center;
  font-size: 5.1282051282vw;
  font-weight: 500;
  color: #0072BC;
  margin-block-end: 25px;
}
@media (min-width: 769px) {
  .interview-lead {
    font-size: 20px;
    margin-block-end: 30px;
  }
}

.interview .border-heading {
  margin-block-end: 16px;
}
@media (min-width: 769px) {
  .interview .border-heading {
    margin-block-end: 18px;
  }
}

.interview-head {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-block-end: 60px;
}
@media (min-width: 769px) {
  .interview-head {
    flex-direction: row;
    gap: 36px;
  }
}

.interview-head-image {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 769px) {
  .interview-head-image {
    flex-basis: 62.619047619%;
    flex-shrink: 0;
  }
}
.interview-head-image img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.interview-head-content {
  display: flex;
  flex-direction: column;
}

.interview-caption {
  font-size: 3.0769230769vw;
  font-weight: 500;
  line-height: 2;
  margin-block-start: 10px;
}
@media (min-width: 769px) {
  .interview-caption {
    font-size: 12px;
  }
}

.interview-text {
  font-size: 4.1025641026vw;
  font-weight: 500;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .interview-text {
    font-size: 16px;
  }
}

.interview-content + .interview-content {
  margin-block-start: 50px;
}

.interview-content-heading-name {
  font-size: 7.6923076923vw;
  font-weight: 700;
  display: block;
  color: #333;
  margin-block-end: 10px;
}
@media (min-width: 769px) {
  .interview-content-heading-name {
    margin-inline-end: 0.8em;
    margin-block-end: 0;
    display: inline-block;
    font-size: 30px;
  }
}

.interview-content-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 769px) {
  .interview-content-body {
    gap: 2.380952381%;
    flex-direction: row;
  }
}

.interview-main-body {
  margin-block-start: 24px;
}
.interview-main-body p + p {
  margin-block-start: 1.15em;
}
.interview-main-body .note {
  font-size: 3.0769230769vw;
}
@media (min-width: 769px) {
  .interview-main-body .note {
    font-size: 12px;
  }
}
.interview-main-body .icon-link {
  margin-block-start: 30px;
  color: #0072BC;
  font-size: 3.5897435897vw;
  display: inline-flex;
  justify-content: start;
}
@media (min-width: 769px) {
  .interview-main-body .icon-link {
    font-size: 14px;
  }
}

.interview-content-text {
  font-size: 4.1025641026vw;
  font-weight: 500;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .interview-content-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .interview-content-image {
    margin-block-start: 20px;
  }
}
@media (min-width: 769px) {
  .interview-content-image {
    flex-basis: 44.0476190476%;
    flex-shrink: 0;
  }
}
.interview-content-image img {
  width: 100%;
  border-radius: 5px;
}
.interview-content-image figcaption {
  margin-block-start: 10px;
  font-size: 3.0769230769vw;
  text-align: left;
}
@media (min-width: 769px) {
  .interview-content-image figcaption {
    font-size: 12px;
  }
}

.interview-button-wrapper {
  margin-block-start: 52px;
  text-align: center;
}
.interview-button-wrapper .icon-link {
  display: inline-flex;
  font-size: 3.5897435897vw;
  color: #0072BC;
}
@media (min-width: 769px) {
  .interview-button-wrapper .icon-link {
    font-size: 14px;
  }
}

.conclusion {
  margin-block-start: 80px;
  color: #0072BC;
}

.conclusion-heading {
  font-size: 6.1538461538vw;
  font-weight: 500;
  margin-block-end: 12px;
}
@media (min-width: 769px) {
  .conclusion-heading {
    font-size: 24px;
    margin-block-end: 20px;
  }
}

.conclusion-text {
  margin-block-end: 30px;
  font-size: 4.1025641026vw;
  line-height: 1.75;
  font-weight: 500;
}
@media (min-width: 769px) {
  .conclusion-text {
    font-size: 16px;
  }
}

.link-underline {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  color: #0072BC;
}
@media (min-width: 769px) {
  .link-underline {
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }
}
@media (any-hover: hover) {
  .link-underline:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.statistics-item-head {
  display: none;
}
@media (min-width: 769px) {
  .statistics-item-head {
    border-top: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
    background-color: rgba(0, 114, 188, 0.1);
    font-weight: 700;
    font-size: 3.5897435897vw;
    display: flex;
    align-items: center;
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .statistics-item-head-title {
    width: 240px;
    text-align: center;
    padding-block: 16px;
  }
}

.statistics-item-head-content {
  display: flex;
}
@media (max-width: 768px) {
  .statistics-item-head-content {
    background-color: rgba(0, 114, 188, 0.1);
    height: 13.8461538462vw;
    border-bottom: 1px solid #DFDFDF;
  }
}
@media (min-width: 769px) {
  .statistics-item-head-content.u-pc-hidden {
    display: none;
  }
}

.statistics-item-head-content-name {
  font-weight: 700;
  font-size: 3.5897435897vw;
  width: 70.7692307692vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .statistics-item-head-content-name {
    font-size: 14px;
    width: 450px;
    text-align: center;
    padding-block: 16px;
  }
}

.statistics-item-head-content-number {
  font-weight: 700;
  font-size: 3.5897435897vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24.1025641026vw;
}
@media (min-width: 769px) {
  .statistics-item-head-content-number {
    font-size: 14px;
    width: 150px;
    text-align: center;
    padding-block: 16px;
  }
}

@media (max-width: 768px) {
  .statistics-item + .statistics-item {
    margin-block-start: 20px;
  }
}
@media (min-width: 769px) {
  .statistics-item {
    display: flex;
  }
}

.statistics-item-title {
  font-weight: 700;
  font-size: 4.1025641026vw;
  display: flex;
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
}
@media (min-width: 769px) {
  .statistics-item-title {
    border-top: none;
    background-color: rgba(0, 114, 188, 0.05);
    width: 240px;
    padding: 16px 20px;
    font-size: 16px;
    display: block;
  }
}

.statistics-item-title-category {
  background-color: rgba(0, 114, 188, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 13.8461538462vw;
  width: 33.3333333333vw;
  font-size: 3.5897435897vw;
}
@media (min-width: 769px) {
  .statistics-item-title-category {
    display: none;
  }
}

.statistics-item-title-text {
  display: inline-flex;
  align-items: center;
  padding-inline-start: 20px;
  height: 13.8461538462vw;
  width: calc(100% - 130px);
  font-size: 4.1025641026vw;
}
@media (min-width: 769px) {
  .statistics-item-title-text {
    display: revert-layer;
    padding-inline-start: 0;
    font-size: 16px;
    width: 100%;
  }
}

.statistics-item-content li {
  display: flex;
  border-bottom: 1px solid #DFDFDF;
}

.statistics-item-content-name {
  font-size: 4.1025641026vw;
  line-height: 1.4;
  padding: 16px 20px;
  width: calc(100% - 94px);
}
@media (max-width: 768px) {
  .statistics-item-content-name {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 769px) {
  .statistics-item-content-name {
    width: 450px;
    font-size: 16px;
  }
}
.statistics-item-content-name span {
  font-size: 3.0769230769vw;
}
@media (min-width: 769px) {
  .statistics-item-content-name span {
    font-size: 12px;
  }
}

.statistics-item-content-number {
  text-align: right;
  color: #0072BC;
  font-weight: 700;
  font-family: Arial, sans-serif;
  font-size: 5.1282051282vw;
  width: 24.1025641026vw;
  flex-shrink: 0;
  padding: 12px 20px;
}
@media (min-width: 769px) {
  .statistics-item-content-number {
    width: 150px;
    padding-inline-end: 36px;
    font-size: 20px;
  }
}

.statistics-note {
  margin-block-start: 30px;
  font-size: 3.0769230769vw;
  text-align: right;
}
@media (min-width: 769px) {
  .statistics-note {
    font-size: 12px;
  }
}

.vision-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.vision-image {
  display: flex;
  justify-content: center;
}
.vision-image img {
  width: 624px;
  max-width: none;
}
@media (min-width: 769px) {
  .vision-image img {
    width: 824px;
  }
}

.vision-heading {
  text-align: center;
  font-size: 5.1282051282vw;
  font-weight: 500;
  color: #0072BC;
  margin-block-end: 28px;
}
@media (min-width: 769px) {
  .vision-heading {
    font-size: 20px;
  }
}

.vision-text {
  font-size: 4.1025641026vw;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .vision-text {
    font-size: 16px;
  }
}
.vision-text + .vision-text {
  margin-block-start: 1.75em;
}

.vision-content {
  margin-block-start: 45px;
}

.vision-content-heading.border-heading {
  margin-block-end: 40px;
}

.vision-content-text {
  margin-block-start: 10px;
  font-size: 5.1282051282vw;
  font-weight: 500;
  line-height: 1.75;
  color: #0072BC;
}
@media (min-width: 769px) {
  .vision-content-text {
    font-size: 20px;
  }
}

.vision-content-item {
  margin-block-start: 40px;
}
.vision-content-item + .vision-content-item {
  margin-block-start: 30px;
}

.vision-content-item-title {
  margin-block-end: 14px;
  padding-block-end: 14px;
}

.vision-content-item-text {
  font-size: 4.1025641026vw;
  font-weight: 500;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .vision-content-item-text {
    font-size: 16px;
  }
}

.vision-link-wrapper {
  margin-block-start: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 769px) {
  .vision-link-wrapper {
    margin-block-start: 72px;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
  }
}
.vision-link-wrapper .icon-link {
  display: inline-flex;
  align-items: center;
  color: #0072BC;
  font-size: 3.5897435897vw;
  gap: 6px;
}
@media (min-width: 769px) {
  .vision-link-wrapper .icon-link {
    font-size: 14px;
  }
}
.vision-link-wrapper .icon-link svg {
  width: 16px;
}

/*# sourceMappingURL=style.css.map */
