@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. */
  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:-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;`.
  */
  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(:-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;
}

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

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

:where(h1, h2, h3, h4, h5, h6) {
  text-wrap: unset;
}

:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Prevents extra space from appearing around the element. */
  vertical-align: top;
}

:where(table) {
  border-spacing: 0;
}

:root {
  --negLeading: calc((1em - 1lh) / 2);
  --transEasing: ease-in-out;
  --transDur: 0.3s;
  --transDefs: var(--transDur) var(--transEasing);
  --hoverOpacity: 0.7;
  --designW: 1360;
  --designContW: 1000;
  --designContW_wide: 1120;
  --designContW_xWide: 1200;
  --contW: min(calc(var(--designContW) / var(--designW) * var(--htmlW, var(--designW)) * 1px), calc(var(--designContW) * 1px));
  --contW_wide: min(calc(var(--designContW_wide) / var(--designW) * var(--htmlW, var(--designW)) * 1px), calc(var(--designContW_wide) * 1px));
  --contW_xWide: min(calc(var(--designContW_xWide) / var(--designW) * var(--htmlW, var(--designW)) * 1px), calc(var(--designContW_xWide) * 1px));
  --contSpace_hor: calc((var(--htmlW) * 1px - var(--contW)) / 2);
  --contSpace_hor_xWide: calc((var(--htmlW) * 1px - var(--contW_xWide)) / 2);
  --color_main: #0a42aa;
  --color_key: #77cef3;
  --color_key_light: #abe0f7;
  --color_bg_page: #e8f9fd;
  --color_bg_hero: #c2f0fc;
  --color_txt: #222;
  --color_txt_gray: #474747;
  --color_txt_accent: #222;
  --color_txt_link: var(--color_main);
  --color_line_gray: #dbdbdb;
  --lightGray: #f6f6f6;
  --linkIconColor: currentColor;
  --ff_outfit: "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  :root {
    --designW: 375;
    --designContW: 335;
    --designContW_wide: 335;
    --designContW_xWide: 335;
    --contW: calc(var(--designContW) / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    --contW_wide: calc(var(--designContW_wide) / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    --contW_xWide: calc(var(--designContW_xWide) / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  }
}

:lang(en) {
  --negLeading: calc((1cap - 1lh) / 2);
}

/**
 * Base
 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  interpolate-size: allow-keywords;
}

html,
body {
  height: 100%;
}

html.is_locked {
  position: fixed;
  width: 100%;
}

body {
  background-color: var(--color_bg_page);
  color: var(--color_txt);
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  -moz-osx-font-smoothing: unset;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

a,
button {
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/*!
 * Splide.js v4.1.4 (core CSS only / テーマは当プロジェクト側で指定)
 * https://splidejs.com/  License: MIT (c) Naotoshi Fujita
 */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/**
 * Layout
 */
.ly_wrapper {
  overflow-x: clip;
  position: relative;
}

.ly_cont_main {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .ly_cont_main {
    padding-bottom: 64px;
  }
}
.ly_cont_main:not(:has(> .bl_pageHeader:first-child)):not(:has(> .pg_home_kv:first-child)) {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .ly_cont_main:not(:has(> .bl_pageHeader:first-child)):not(:has(> .pg_home_kv:first-child)) {
    padding-top: 76px;
  }
}
.ly_cont_main__flush {
  padding-bottom: 0;
}

/**
 * Header
 *
 * 白い角丸ピルをページ上部に浮かせるタイプ。ページヘッダー（.bl_pageHeader）の上に重なる。
 */
.ly_header {
  position: absolute;
  inset: 22px 0 auto;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .ly_header {
    inset: 18px 0 auto;
  }
}
.ly_header_inner {
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
  margin: auto;
  border-radius: 100px;
  padding: 0 40px;
  width: min(calc(1282 / var(--designW) * var(--htmlW, var(--designW)) * 1px), 1282px);
  min-height: 66px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .ly_header_inner {
    padding: 0 17px 0 19px;
    width: calc(355 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    min-height: 54px;
  }
}
.ly_header_logo {
  --_nameSize: clamp(17px, calc(24 / var(--designW) * var(--htmlW, var(--designW)) * 1px), 1.5rem);
  --_bylineSize: clamp(9px, calc(13 / var(--designW) * var(--htmlW, var(--designW)) * 1px), 0.8125rem);
  --_jishaW: clamp(135px, calc(193 / var(--designW) * var(--htmlW, var(--designW)) * 1px), 193px);
  --_gap: clamp(4px, calc(7 / var(--designW) * var(--htmlW, var(--designW)) * 1px), 7px);
}
@media screen and (max-width: 767px) {
  .ly_header_logo {
    --_nameSize: 0.875rem;
    --_bylineSize: 8px;
    --_jishaW: 125px;
    --_gap: 4px;
    --_bylineGap: 2px;
  }
}
.ly_header_nav {
  justify-self: end;
}
@media screen and (max-width: 960px) {
  .ly_header_nav {
    display: none;
  }
}
.ly_header_nav ul {
  display: flex;
  gap: clamp(10px, calc(28 / var(--designW) * var(--htmlW, var(--designW)) * 1px), 28px);
}
.ly_header_nav a {
  display: block;
  position: relative;
  padding-block: 24px;
  color: var(--color_txt_accent);
  white-space: nowrap;
  font-size: clamp(13px, calc(15 / var(--designW) * var(--htmlW, var(--designW)) * 1px), 0.9375rem);
  font-weight: 700;
}
.ly_header_nav a:focus-visible {
  color: var(--color_main);
}
@media (any-hover: hover) {
  .ly_header_nav a:hover {
    color: var(--color_main);
  }
}
.ly_header_nav a[aria-current=page] {
  color: var(--color_main);
}
.ly_header_nav a[aria-current=page]::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  border-bottom: 4px solid var(--color_main);
}
.ly_header_toggle {
  display: none;
}
@media screen and (max-width: 960px) {
  .ly_header_toggle {
    display: grid;
    place-content: center;
    justify-self: end;
    border: none;
    padding: 9px 0;
    width: 21px;
    height: 34px;
    background-color: transparent;
    cursor: pointer;
  }
}
.ly_header_toggle_bars {
  display: block;
  position: relative;
  width: 21px;
  height: 2px;
  background-color: var(--color_main);
  transition: background-color var(--transDefs);
}
.ly_header_toggle_bars::before, .ly_header_toggle_bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color_main);
  transition: translate var(--transDefs), rotate var(--transDefs);
}
.ly_header_toggle_bars::before {
  top: -7px;
}
.ly_header_toggle_bars::after {
  top: 7px;
}
.ly_header_toggle[aria-expanded=true] .ly_header_toggle_bars {
  background-color: transparent;
}
.ly_header_toggle[aria-expanded=true] .ly_header_toggle_bars::before {
  translate: 0 7px;
  rotate: 45deg;
}
.ly_header_toggle[aria-expanded=true] .ly_header_toggle_bars::after {
  translate: 0 -7px;
  rotate: -45deg;
}
.ly_header:has(.ly_header_toggle[aria-expanded=true]) .ly_drawer {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 960px) {
  html:has(.ly_header_toggle[aria-expanded=true]) {
    overflow: hidden;
  }
}

/**
 * SP用ドロワーメニュー
 *
 * ヘッダーのピルの背面に敷く全画面のメニュー。PCでは出力ごと非表示にする。
 */
.ly_drawer {
  display: none;
}
@media screen and (max-width: 960px) {
  .ly_drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: var(--color_bg_page);
    visibility: hidden;
    opacity: 0;
    transition: opacity var(--transDefs), visibility var(--transDefs);
  }
}
.ly_drawer_inner {
  display: grid;
  gap: 50px;
  margin-inline: auto;
  padding-block: 131px 40px;
  width: var(--contW_wide);
}
@media screen and (max-width: 767px) {
  .ly_drawer_inner {
    padding-block: 115px 40px;
  }
}
.ly_drawer_list {
  display: grid;
  gap: 15px;
}
.ly_drawer_link {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #b2deea;
  padding-bottom: 16px;
  color: var(--color_txt_gray);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
}
.ly_drawer_link:focus-visible {
  color: var(--color_main);
}
@media (any-hover: hover) {
  .ly_drawer_link:hover {
    color: var(--color_main);
  }
}
.ly_drawer_link[aria-current=page] {
  color: var(--color_main);
}
.ly_drawer_link .el_circleArrow {
  --_circleBgColor: var(--color_main);
  --_circleBorderColor: var(--color_main);
  flex: 0 0 auto;
  width: 20px;
  color: #fff;
}
.ly_drawer_link .el_chevron {
  width: 6px;
}
.ly_drawer_bnr {
  display: grid;
  gap: 15px;
  justify-items: center;
}
.ly_drawer_bnrImg {
  margin: 0;
  width: 100%;
}
.ly_drawer_bnrImg a {
  display: block;
}
@media (any-hover: hover) {
  .ly_drawer_bnrImg a:hover {
    opacity: var(--hoverOpacity);
  }
}
.ly_drawer_bnrImg img {
  border-radius: 15px;
  width: 100%;
}
.ly_drawer_bnrNote {
  margin: 0;
  color: var(--color_txt_gray);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

/**
 * Footer
 *
 * PC：サイトマップ（5カラム）→ ロゴ・文言・バナーの行 → コピーライト。
 * SP：ロゴ → サイトマップ（1カラム・子リンクだけ2カラム）→ バナー・文言 → コピーライト。
 * 並び替えはCSSだけで行う（DOMは .ly_footer_inner 直下に並べてある）。
 * フッターだけコンテンツ幅が1200pxなので、.ct_ ではなく専用の幅指定にしている。
 */
.ly_footer {
  padding-block: 72px 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .ly_footer {
    padding-block: 40px 70px;
  }
}
.ly_footer_inner {
  display: grid;
  gap: 0 40px;
  grid-template-columns: 1fr auto;
  grid-template-areas: "sitemap  sitemap" "extLinks extLinks" "logo     bnrSet" "copy     bnrSet";
  align-items: center;
  margin: auto;
  width: min(calc(1200 / var(--designW) * var(--htmlW, var(--designW)) * 1px), 1200px);
}
@media screen and (max-width: 767px) {
  .ly_footer_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: var(--contW_wide);
  }
}
.ly_footer_sitemap {
  grid-area: sitemap;
  display: grid;
  gap: 32px 24px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .ly_footer_sitemap {
    grid-template-columns: 1fr;
    order: 2;
    gap: 30px;
    margin-bottom: 0;
    width: 100%;
  }
}
.ly_footer_extLinks {
  grid-area: extLinks;
  margin-bottom: 64px;
  border-top: 1px dashed var(--color_line_gray);
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .ly_footer_extLinks {
    order: 3;
    margin-bottom: 0;
    width: 100%;
  }
}
.ly_footer_sitemapTitle {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .ly_footer_sitemapTitle {
    margin-bottom: 15px;
    font-size: 1.0625rem;
    font-weight: 600;
  }
}
.ly_footer_sitemapTitle a:focus-visible {
  color: var(--color_main);
}
@media (any-hover: hover) {
  .ly_footer_sitemapTitle a:hover {
    color: var(--color_main);
  }
}
.ly_footer_sitemapTitle:last-child {
  margin-bottom: 0;
}
.ly_footer_sitemapList {
  display: grid;
  gap: 12px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .ly_footer_sitemapList {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}
.ly_footer_sitemapList a:focus-visible {
  color: var(--color_main);
}
@media (any-hover: hover) {
  .ly_footer_sitemapList a:hover {
    color: var(--color_main);
  }
}
.ly_footer_sitemapList a::after {
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  display: inline-block;
  background-color: var(--linkIconColor);
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.ly_footer_sitemapList a[target=_blank]::after, .ly_footer_sitemapList a[href$=".pdf"]::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/16;
}
.ly_footer_sitemapList a[target=_blank]::after {
  -webkit-mask-image: url("../img/common/icon/icon_blank.svg");
  mask-image: url("../img/common/icon/icon_blank.svg");
}
.ly_footer_sitemapList a[href$=".pdf"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_pdf.svg");
  mask-image: url("../img/common/icon/icon_pdf.svg");
}
.ly_footer_sitemapList a[href$=".zip"]::after {
  aspect-ratio: 1;
}
.ly_footer_sitemapList a::after {
  margin-left: 4px;
  translate: 0 2px;
}
.ly_footer_logo {
  grid-area: logo;
}
@media screen and (max-width: 767px) {
  .ly_footer_logo {
    --_nameSize: 1.5625rem;
    --_bylineSize: 0.75rem;
    --_jishaW: 182px;
    --_gap: 7px;
    --_bylineGap: 5px;
    order: 1;
  }
  .ly_footer_logo .el_siteLogo_link {
    align-items: center;
  }
}
.ly_footer_bnrSet {
  grid-area: bnrSet;
  display: flex;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .ly_footer_bnrSet {
    flex-direction: column-reverse;
    order: 4;
    gap: 15px;
    width: 100%;
  }
}
.ly_footer_note {
  margin: 0;
  line-height: 1.8;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .ly_footer_note {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.ly_footer_bnr {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .ly_footer_bnr {
    width: 100%;
  }
}
.ly_footer_bnr a {
  display: block;
  border-radius: 15px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .ly_footer_bnr a:hover {
    opacity: var(--hoverOpacity);
  }
}
.ly_footer_bnr img {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .ly_footer_bnr img {
    border-radius: 15px;
    width: 100%;
  }
}
.ly_footer_copyright {
  grid-area: copy;
  margin: 20px 0 0;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .ly_footer_copyright {
    order: 5;
    margin-top: 0;
    text-align: center;
  }
}

/**
 * Container
 *
 * コンテンツ幅ユーティリティ。デザイン（PC 1360px）上のコンテンツ幅は3種類ある。
 *   .ct_std   … 1000px。記事本文（「熱中症とは」ページの見出し・本文・図版カラム）
 *   .ct_wide  … 1120px。パンくず・カードリンク一覧・CTAの中身など
 *   .ct_xWide … 1200px。トップページ
 * SP（375px）ではいずれも 335px（左右20px）。
 *
 * 使い分けに迷ったら「読ませる文章＝ct_std／並べるもの＝ct_wide」。
 * .ct_xWide はトップページ用。下層ページで使いたくなったら、まず ct_wide で足りないか
 * （＝個別モジュール側の max-width で解けないか）を確認すること。これ以上種類は増やさない。
 *
 * 片側だけウィンドウ端まで伸ばしたいブロック（トップのトピックス）は、コンテナで囲まずに
 * --contSpace_hor / --contSpace_hor_xWide を margin に使う。
 */
.ct_std {
  margin-inline: auto;
  width: var(--contW);
}

.ct_wide {
  margin-inline: auto;
  width: var(--contW_wide);
}

.ct_xWide {
  margin-inline: auto;
  width: var(--contW_xWide);
}

/**
 * Block
 */
.bl_breadcrumb {
  --_gap_col: 8px;
  --_gap_row: 6px;
  margin-bottom: 90px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .bl_breadcrumb {
    margin-bottom: 48px;
  }
}
.bl_breadcrumb ol {
  display: flex;
  gap: var(--_gap_row) var(--_gap_col);
  flex-wrap: wrap;
}
.bl_breadcrumb li {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .bl_breadcrumb li {
    font-size: 0.75rem;
  }
}
.bl_breadcrumb li:not(:first-child) {
  position: relative;
  padding-left: calc(var(--_gap_col) + 5px);
}
.bl_breadcrumb li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5lh;
  translate: 0 -50%;
  border-radius: 50%;
  width: 5px;
  aspect-ratio: 1;
  background-color: var(--color_main);
}
.bl_breadcrumb a {
  display: block;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--color_main);
}
.bl_breadcrumb a:focus-visible {
  text-decoration-color: transparent;
}
@media (any-hover: hover) {
  .bl_breadcrumb a:hover {
    text-decoration-color: transparent;
  }
}
.bl_breadcrumb li:last-child a {
  text-decoration: none;
  pointer-events: none;
  color: var(--color_txt_gray);
}

.bl_pageHeader {
  --_bgColor: var(--color_bg_hero);
  --_titleColor: var(--color_main);
  --_curveH: calc(141 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  --_minH: calc(286 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  --_titleFontSize: calc(48 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  --_space_block: calc(57 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  display: grid;
  position: relative;
  margin-bottom: calc(var(--_curveH) - 60px);
  background-color: var(--_bgColor);
  background-position: 50% 100%;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .bl_pageHeader {
    --_curveH: calc(48 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    --_minH: calc(160 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    --_titleFontSize: calc(30 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    --_space_block: calc(38 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    margin-bottom: calc(var(--_curveH) - 28px);
  }
}
.bl_pageHeader::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 75%;
  z-index: -1;
  translate: -50% -50%;
  border-radius: 50%;
  width: 120%;
  height: calc(var(--_curveH) * 2);
  background-color: inherit;
  background-image: inherit;
}
@media screen and (max-width: 767px) {
  .bl_pageHeader::after {
    top: 82%;
    width: 135%;
  }
}
.bl_pageHeader_inner {
  display: grid;
  place-content: center;
  position: relative;
  z-index: 2;
  padding-block: calc(var(--_space_block) + var(--_curveH)) var(--_space_block);
  min-height: var(--_minH);
}
.bl_pageHeader_title {
  margin: 0;
  color: var(--_titleColor);
  text-align: center;
  font-size: var(--_titleFontSize);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.bl_pageHeader_img {
  position: absolute;
  right: calc(50% - var(--contW_wide) / 2);
  bottom: calc(var(--_curveH) * -0.4);
  z-index: 1;
  width: 244px;
}
@media screen and (max-width: 767px) {
  .bl_pageHeader_img {
    width: 100px;
  }
}
.bl_pageHeader_img img {
  width: 100%;
}
.bl_pageHeader__whiteTitle {
  --_titleColor: #fff;
}
.bl_pageHeader__bgImg {
  background-repeat: no-repeat;
}

.bl_img {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.bl_img > div {
  border-radius: 4px;
  overflow: hidden;
}
.bl_img > div img {
  border-radius: inherit;
}
.bl_img__w100p {
  width: 100%;
}
.bl_img__w100p img {
  width: 100%;
}

a:has(> .bl_img) {
  display: block;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.bl_video iframe,
.bl_video video {
  border-radius: 4px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.bl_video figcaption {
  margin-top: 15px;
  contain: inline-size;
  font-size: 0.875rem;
}

.bl_linkBtnList {
  --_cols: 3;
  --_gap_col: 30px;
  --_gap_row: 30px;
  display: grid;
  gap: var(--_gap_row) var(--_gap_col);
  grid-template-columns: repeat(var(--_cols), 1fr);
}
@media screen and (max-width: 767px) {
  .bl_linkBtnList {
    --_cols: 1;
    --_gap_col: 12px;
    --_gap_row: 12px;
  }
}
.bl_linkBtnList > li {
  display: grid;
}
.bl_linkBtnList__col1 {
  --_cols: 1;
}
.bl_linkBtnList__col2 {
  --_cols: 2;
}
@media screen and (max-width: 767px) {
  .bl_linkBtnList__col2 {
    --_cols: 1;
  }
}
.bl_linkBtnList__col3 {
  --_cols: 3;
}
@media screen and (max-width: 767px) {
  .bl_linkBtnList__col3 {
    --_cols: 1;
  }
}
.bl_linkBtnList__col4 {
  --_cols: 4;
}
@media screen and (max-width: 767px) {
  .bl_linkBtnList__col4 {
    --_cols: 1;
  }
}

.bl_newsList {
  --_borderColor: #c1cee0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.bl_newsList_item {
  display: grid;
  align-items: center;
  gap: 20px 30px;
  grid-template-columns: auto 1fr auto;
  border-top: 1px dashed var(--_borderColor);
  padding-block: 16px;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .bl_newsList_item {
    gap: 6px 16px;
    grid-template-columns: auto 1fr auto;
    padding-block: 12px;
  }
}
.bl_newsList_item:is(a):focus-visible {
  color: var(--color_main);
}
.bl_newsList_item:is(a):focus-visible .bl_newsList_ttl {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .bl_newsList_item:is(a):hover {
    color: var(--color_main);
  }
  .bl_newsList_item:is(a):hover .bl_newsList_ttl {
    text-decoration: underline;
  }
}
.bl_newsList_item__noLink {
  grid-template-columns: auto 1fr;
}
@media screen and (max-width: 767px) {
  .bl_newsList_item__noLink {
    grid-template-columns: auto 1fr;
  }
}
.bl_newsList > li:last-child .bl_newsList_item {
  border-bottom: 1px dashed var(--_borderColor);
}
.bl_newsList_date {
  color: var(--color_main);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .bl_newsList_date {
    font-size: 0.8125rem;
  }
}
.bl_newsList_ttl {
  margin: 0;
  color: var(--color_txt_gray);
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .bl_newsList_ttl {
    font-size: 0.875rem;
  }
}

.bl_relatedNav {
  border-radius: 24px;
  padding-block: 90px;
  background-color: var(--color_key);
}
@media screen and (max-width: 767px) {
  .bl_relatedNav {
    border-radius: 16px;
    padding-block: 40px;
  }
}
.bl_relatedNav_inner {
  container-type: inline-size;
  container-name: relatedNav;
  display: grid;
  grid-template-columns: minmax(232px, auto) 1fr;
  align-items: start;
}
@container relatedNav (max-width: 800px) {
  .bl_relatedNav .bl_relatedNav_title {
    grid-column: 1/-1;
  }
  .bl_relatedNav .bl_linkBtnList {
    --_cols: 2;
    grid-column: 1/-1;
    margin-top: 20px;
  }
}
@container relatedNav (max-width: 480px) {
  .bl_relatedNav .bl_linkBtnList {
    --_cols: 1;
  }
}
.bl_relatedNav_title {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .bl_relatedNav_title {
    font-size: 1.25rem;
  }
}
.bl_relatedNav .bl_linkBtnList {
  --_gap_col: 18px;
  --_gap_row: 18px;
}
@media screen and (max-width: 767px) {
  .bl_relatedNav .bl_linkBtnList {
    --_gap_col: 12px;
    --_gap_row: 12px;
  }
}

.bl_doctorProfile {
  position: relative;
  margin-top: 60px;
  padding-top: 24px;
}
.bl_doctorProfile_title {
  display: grid;
  place-content: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border-radius: 100px;
  padding: 12px 40px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color_key);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .bl_doctorProfile_title {
    padding: 8px 24px;
    font-size: 1.25rem;
  }
}
.bl_doctorProfile_inner {
  --_imgW: min(280px, calc(280 / 900 * 100%));
  display: grid;
  gap: 40px;
  grid-template-columns: var(--_imgW) 1fr;
  margin-top: -24px;
  border-radius: 24px;
  padding: 57px 50px 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .bl_doctorProfile_inner {
    --_imgW: min(280px, 100%);
    gap: 20px;
    justify-content: center;
    grid-template-columns: var(--_imgW);
    border-radius: 16px;
    padding: 48px 20px 32px;
  }
}
.bl_doctorProfile_img {
  border-radius: 8px;
  overflow: hidden;
}
.bl_doctorProfile_img img {
  width: 100%;
}
.bl_doctorProfile_ruby {
  font-size: 0.8125rem;
}
.bl_doctorProfile_name {
  margin: 2px 0 0;
  color: var(--color_txt_accent);
  font-size: 1.6875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .bl_doctorProfile_name {
    font-size: 1.375rem;
  }
}
.bl_doctorProfile_roles {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 0.9375rem;
}
.bl_doctorProfile_bio {
  margin-top: 24px;
  border-radius: 8px;
  padding: 24px;
  background-color: var(--lightGray);
  line-height: 1.75;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .bl_doctorProfile_bio {
    padding: 16px;
    font-size: 0.8125rem;
  }
}

.bl_logoList {
  --_cols: 4;
  --_gap_col: 15px;
  --_gap_row: 15px;
  display: grid;
  gap: var(--_gap_row) var(--_gap_col);
  grid-template-columns: repeat(var(--_cols), 1fr);
}
@media screen and (max-width: 767px) {
  .bl_logoList {
    --_cols: 1;
    --_gap_row: 24px;
  }
}
.bl_logoList__col3 {
  --_cols: 3;
}
@media screen and (max-width: 767px) {
  .bl_logoList__col3 {
    --_cols: 2;
  }
}
.bl_logoList a {
  display: block;
}
@media (any-hover: hover) {
  .bl_logoList a:hover {
    opacity: var(--hoverOpacity);
  }
}
.bl_logoList_logo {
  display: grid;
  place-content: center;
  border-radius: 10px;
  padding: 15px 20px;
  min-height: 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .bl_logoList_logo {
    padding: 25px;
    min-height: 64px;
  }
}
.bl_logoList_logo img {
  width: auto;
  max-height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}
.bl_logoList_name {
  margin-top: 10px;
  color: var(--color_txt_gray);
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .bl_logoList_name {
    margin-top: 10px;
    font-size: 0.9375rem;
  }
}

.bl_card {
  border-radius: 20px;
  padding: 30px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .bl_card {
    border-radius: 16px;
    padding: 20px;
  }
}
.bl_card_title {
  margin: 0 0 18px;
  color: var(--color_main);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .bl_card_title {
    margin-bottom: 12px;
    font-size: 1.25rem;
  }
}
.bl_card_body {
  line-height: 1.8;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .bl_card_body {
    font-size: 1rem;
  }
}

.bl_cardList {
  --_cols: 2;
  --_gap_col: 40px;
  --_gap_row: 24px;
  display: grid;
  gap: var(--_gap_row) var(--_gap_col);
  grid-template-columns: repeat(var(--_cols), 1fr);
}
@media screen and (max-width: 767px) {
  .bl_cardList {
    --_cols: 1;
    --_gap_col: 12px;
    --_gap_row: 12px;
  }
}
.bl_cardList__col1 {
  --_cols: 1;
}
.bl_cardList__col3 {
  --_cols: 3;
}
@media screen and (max-width: 767px) {
  .bl_cardList__col3 {
    --_cols: 1;
  }
}

.bl_bandSect {
  --_bgColor: var(--color_key);
  --_bdrd: 20px;
  border-radius: var(--_bdrd);
  padding-block: 100px;
  background-color: var(--_bgColor);
}
@media screen and (max-width: 767px) {
  .bl_bandSect {
    --_bdrd: 16px;
    padding-block: 48px;
  }
}
.bl_bandSect__white {
  --_bgColor: #fff;
}
.bl_bandSect__gray {
  --_bgColor: var(--lightGray);
}
.bl_bandSect__rounded {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .bl_bandSect__rounded {
    border-radius: 16px;
  }
}

.bl_topicsCarousel {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .bl_topicsCarousel {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
.bl_topicsCarousel_head {
  display: flex;
  flex: 0 0 288px;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .bl_topicsCarousel_head {
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
    text-align: center;
  }
}
.bl_topicsCarousel_title {
  margin: 0;
  color: var(--color_txt_accent);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .bl_topicsCarousel_title {
    font-size: 1.5rem;
  }
}
.bl_topicsCarousel_desc {
  margin: 0;
  color: var(--color_txt_gray);
  letter-spacing: 0.36px;
  font-size: 1.125rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .bl_topicsCarousel_desc {
    font-size: 0.875rem;
  }
}
.bl_topicsCarousel_body {
  flex: 1 1 auto;
  min-width: 0;
}
.bl_topicsCarousel_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bl_topicsCarousel_nav {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .bl_topicsCarousel_nav {
    display: none;
  }
}
.bl_topicsCarousel_prev, .bl_topicsCarousel_next {
  display: grid;
  place-content: center;
  border: none;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  aspect-ratio: 1;
  background: none;
  color: var(--color_main);
  cursor: pointer;
}
.bl_topicsCarousel_prev .el_circleArrow, .bl_topicsCarousel_next .el_circleArrow {
  border-color: currentColor;
}
.bl_topicsCarousel_prev:disabled, .bl_topicsCarousel_next:disabled {
  opacity: 0.3;
  cursor: default;
}
.bl_topicsCarousel_prev:focus-visible:not(:disabled) .el_circleArrow, .bl_topicsCarousel_next:focus-visible:not(:disabled) .el_circleArrow {
  background-color: var(--color_main);
  color: #fff;
}
@media (any-hover: hover) {
  .bl_topicsCarousel_prev:hover:not(:disabled) .el_circleArrow, .bl_topicsCarousel_next:hover:not(:disabled) .el_circleArrow {
    background-color: var(--color_main);
    color: #fff;
  }
}
.bl_topicsCarousel_prev .el_circleArrow {
  rotate: 180deg;
}

.bl_topicsCard {
  display: block;
  filter: drop-shadow(0 0 10px rgba(106, 154, 189, 0.25));
  color: var(--color_txt);
  text-decoration: none;
}
.bl_topicsCard:focus-visible .bl_topicsCard_ttl {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .bl_topicsCard:hover .bl_topicsCard_ttl {
    text-decoration: underline;
  }
}
.bl_topicsCard_img {
  border-radius: 16px 16px 0 0;
  aspect-ratio: 340/210;
  overflow: hidden;
  background-color: var(--lightGray);
}
.bl_topicsCard_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.bl_topicsCard_img__contain {
  padding: 30px 40px;
  background-color: #f8f8f8;
}
.bl_topicsCard_img__contain img {
  -o-object-fit: contain;
  object-fit: contain;
}
.bl_topicsCard_body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-radius: 0 0 20px 20px;
  padding: 25px 26px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .bl_topicsCard_body {
    padding: 18px 20px;
  }
}
.bl_topicsCard_date {
  margin: 0;
  opacity: 0.6;
  color: var(--color_txt_gray);
  font-size: 0.875rem;
  line-height: 1.6;
}
.bl_topicsCard_ttl {
  margin: 0;
  color: var(--color_txt_accent);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.bl_linkCard {
  --_bgColor: var(--color_key);
  --_img_top: auto;
  --_img_right: 76px;
  --_img_bottom: 0;
  --_img_left: auto;
  --_img_width: 149px;
  --_imgSub_top: auto;
  --_imgSub_right: auto;
  --_imgSub_bottom: auto;
  --_imgSub_left: auto;
  --_imgSub_width: auto;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 40px;
  background-color: var(--_bgColor);
  box-shadow: 0 0 20px rgba(106, 154, 189, 0.25);
  color: #fff;
  text-decoration: none;
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
}
@media not all and (max-width: 767px), print {
  .bl_linkCard {
    min-height: 310px;
  }
}
@media screen and (max-width: 767px) {
  .bl_linkCard {
    --_img_right: 20px;
    --_img_width: 90px;
    padding: 24px;
  }
}
.bl_linkCard:focus-visible {
  opacity: var(--hoverOpacity);
}
@media (any-hover: hover) {
  .bl_linkCard:hover {
    opacity: var(--hoverOpacity);
  }
}
.bl_linkCard_body {
  position: relative;
  z-index: 1;
  max-width: 70%;
}
.bl_linkCard_label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .bl_linkCard_label {
    font-size: 0.9375rem;
  }
}
.bl_linkCard_title {
  margin: 0 0 20px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .bl_linkCard_title {
    margin-bottom: 12px;
    font-size: 1.25rem;
  }
}
.bl_linkCard_desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.bl_linkCard_img, .bl_linkCard_imgSub {
  position: absolute;
}
.bl_linkCard_img img, .bl_linkCard_imgSub img {
  width: 100%;
}
.bl_linkCard_img {
  inset: var(--_img_top) var(--_img_right) var(--_img_bottom) var(--_img_left);
  width: var(--_img_width);
}
.bl_linkCard_imgSub {
  inset: var(--_imgSub_top) var(--_imgSub_right) var(--_imgSub_bottom) var(--_imgSub_left);
  width: var(--_imgSub_width);
}
.bl_linkCard_arrow {
  display: grid;
  place-content: center;
  position: absolute;
  right: 17px;
  bottom: 17px;
  border-radius: 50%;
  width: 31px;
  aspect-ratio: 1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .bl_linkCard_arrow {
    width: 24px;
  }
}
.bl_linkCard_arrow .el_circleArrow {
  border: none;
  color: var(--_bgColor);
}
.bl_linkCard_arrow .el_chevron {
  width: 8px;
}
@media screen and (max-width: 767px) {
  .bl_linkCard_arrow .el_chevron {
    width: 6px;
  }
}
.bl_linkCard__white {
  --_bgColor: #fff;
  padding: 35px 35px 105px 35px;
  color: var(--color_txt);
}
@media screen and (max-width: 767px) {
  .bl_linkCard__white {
    padding: 35px 35px 125px 35px;
  }
}
.bl_linkCard__white .bl_linkCard_body {
  max-width: 62%;
}
@media screen and (max-width: 767px) {
  .bl_linkCard__white .bl_linkCard_body {
    max-width: none;
  }
}
.bl_linkCard__white .bl_linkCard_label {
  color: #51a7dd;
}
.bl_linkCard__white .bl_linkCard_title {
  margin-bottom: 13px;
  color: var(--color_main);
}
@media screen and (max-width: 767px) {
  .bl_linkCard__white .bl_linkCard_title {
    margin-bottom: 13px;
    font-size: 1.5rem;
  }
}
.bl_linkCard__white .bl_linkCard_desc {
  font-size: 1rem;
  line-height: 1.8;
}
.bl_linkCard__white .bl_linkCard_arrow {
  right: 15px;
  bottom: 13px;
  background-color: var(--color_main);
}
@media screen and (max-width: 767px) {
  .bl_linkCard__white .bl_linkCard_arrow {
    right: 12px;
    width: 28px;
  }
}
.bl_linkCard__white .bl_linkCard_arrow .el_circleArrow {
  color: #fff;
}

.bl_contSet > :not(:first-child) {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .bl_contSet > :not(:first-child) {
    margin-top: 64px;
  }
}
.bl_contSet > .bl_hdgSet + * {
  margin-top: 0;
}

.bl_anchorLinkList {
  gap: 20px;
}
.bl_anchorLinkList:not([class*=bl_anchorLinkList__col]) {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .bl_anchorLinkList:not([class*=bl_anchorLinkList__col]) {
    gap: 16px;
    flex-direction: column;
  }
}
.bl_anchorLinkList[class*=bl_anchorLinkList__col] {
  display: grid;
}
@media screen and (max-width: 767px) {
  .bl_anchorLinkList[class*=bl_anchorLinkList__col] {
    gap: 15px 12px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_anchorLinkList__col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_anchorLinkList__col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_anchorLinkList__col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.bl_anchorLinkList .el_anchorLink {
  height: 100%;
}

.bl_btnList {
  display: grid;
  gap: 20px;
}
.bl_btnList__col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media not all and (max-width: 767px), print {
  .bl_btnList__col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_btnList__col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_btnList__col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_btnList__col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bl_btnList_item .el_btn {
  --_width: 100%;
  height: 100%;
}
.bl_btnList_item[class*=bl_btnList_item__align] {
  display: flex;
}
.bl_btnList_item[class*=bl_btnList_item__align] .el_btn {
  --_width: fit-content;
}
.bl_btnList_item__alignCenter {
  justify-content: center;
}
.bl_btnList_item__alignRight {
  justify-content: flex-end;
}

.bl_linkList {
  display: grid;
}
.bl_linkList__col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media not all and (max-width: 767px), print {
  .bl_linkList__col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_linkList__col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bl_linkList__typeTxt {
  row-gap: 16px;
}
@media screen and (max-width: 767px) {
  .bl_linkList__typeTxt {
    row-gap: 12px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_linkList__typeTxt.bl_linkList__col2 {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bl_linkList__typeTxt.bl_linkList__col2 {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_linkList__typeTxt.bl_linkList__col3 {
    -moz-column-gap: 36px;
    column-gap: 36px;
  }
}
@media screen and (max-width: 767px) {
  .bl_linkList__typeTxt.bl_linkList__col3 {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
.bl_linkList__typeBtn {
  border-left: 1px solid var(--color_line_gray);
}
.bl_linkList__typeBtn > li {
  border-right: 1px solid var(--color_line_gray);
  border-bottom: 1px solid var(--color_line_gray);
}
.bl_linkList__typeBtn > li:nth-child(1) {
  border-top: 1px solid var(--color_line_gray);
}
.bl_linkList__typeBtn.bl_linkList__col2 > li:nth-child(2) {
  border-top: 1px solid var(--color_line_gray);
}
.bl_linkList__typeBtn.bl_linkList__col3 > li:nth-child(2) {
  border-top: 1px solid var(--color_line_gray);
}
@media not all and (max-width: 767px), print {
  .bl_linkList__typeBtn.bl_linkList__col3 > li:nth-child(3) {
    border-top: 1px solid var(--color_line_gray);
  }
}
.bl_linkList__typeBtn a {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px;
  height: 100%;
}
.bl_linkList__typeBtn a:focus-visible {
  background-color: var(--lightGray);
}
@media (any-hover: hover) {
  .bl_linkList__typeBtn a:hover {
    background-color: var(--lightGray);
  }
}
.bl_linkList__typeBtn a::after {
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  display: inline-block;
  background-color: var(--linkIconColor);
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.bl_linkList__typeBtn a[target=_blank]::after, .bl_linkList__typeBtn a[href$=".pdf"]::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/16;
}
.bl_linkList__typeBtn a[target=_blank]::after {
  -webkit-mask-image: url("../img/common/icon/icon_blank.svg");
  mask-image: url("../img/common/icon/icon_blank.svg");
}
.bl_linkList__typeBtn a[href$=".pdf"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_pdf.svg");
  mask-image: url("../img/common/icon/icon_pdf.svg");
}
.bl_linkList__typeBtn a[href$=".zip"]::after {
  aspect-ratio: 1;
}
.bl_linkList__typeBtn a[target=_blank], .bl_linkList__typeBtn a[href$=".pdf"] {
  --linkIconColor: var(--color_main);
}
.bl_linkList__typeBtn a[target=_blank] .el_circleArrow, .bl_linkList__typeBtn a[href$=".pdf"] .el_circleArrow {
  display: none;
}

.bl_imgAndBody {
  --_gap_col: 50px;
  --_gap_row: 30px;
  --_imgMaxW: calc(535 / 1080 * 100%);
}
@media screen and (max-width: 767px) {
  .bl_imgAndBody {
    --_gap_row: 24px;
  }
}
.bl_imgAndBody_inner {
  display: grid;
  gap: var(--_gap_row) var(--_gap_col);
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody__imgRight .bl_imgAndBody_inner:has(.bl_imgAndBody_img) {
    grid-template-columns: 1fr fit-content(var(--_imgMaxW));
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody__imgRight .bl_imgAndBody_img {
    order: 1;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody__imgLeft .bl_imgAndBody_inner:has(.bl_imgAndBody_img) {
    grid-template-columns: fit-content(var(--_imgMaxW)) 1fr;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_inner {
    display: block;
    margin-bottom: calc(var(--_gap_row) * -1);
  }
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_inner::after {
    content: "";
    display: block;
    clear: both;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_img {
    padding-bottom: var(--_gap_row);
    max-width: var(--_imgMaxW);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloatRight] .bl_imgAndBody_img {
    float: right;
    margin-left: var(--_gap_col);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloatLeft] .bl_imgAndBody_img {
    float: left;
    margin-right: var(--_gap_col);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_body {
    padding-bottom: var(--_gap_row);
  }
}
.bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_hdg {
  overflow: hidden;
}

.bl_imgGroup .bl_img:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .bl_imgGroup .bl_img:not(:last-child) {
    margin-bottom: 22px;
  }
}
.bl_imgGroup_title:not(:last-child) {
  margin-bottom: 22px;
}
.bl_imgGroup_title:last-child {
  margin-bottom: 0;
}
.bl_imgGroup_txt {
  line-height: 1.8;
}

.bl_imgGroupList {
  --_gap_row: 56px;
  display: grid;
  gap: var(--_gap_row) var(--_gap_col, 0);
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col2 {
    --_gap_col: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_imgGroupList__col3, .bl_imgGroupList__col4 {
    --_gap_col: 15px;
    --_gap_row: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col3 .bl_imgGroup .bl_img:not(:last-child), .bl_imgGroupList__col4 .bl_imgGroup .bl_img:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bl_imgGroupList__col3 .bl_imgGroup .bl_img:not(:last-child), .bl_imgGroupList__col4 .bl_imgGroup .bl_img:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .bl_imgGroupList__col3 .bl_imgGroup_title:not(:last-child), .bl_imgGroupList__col4 .bl_imgGroup_title:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col3 {
    --_gap_col: 36px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col4 {
    --_gap_col: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col4 .bl_imgGroup_title {
    padding-bottom: 16px;
    font-size: 1.25rem;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col4 .bl_imgGroup_title:not(:last-child) {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .bl_table__spScroll {
    margin-inline: 0;
    padding: 0 var(--contSpace_hor) 1px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .bl_table__spScroll .el_wysiwyg {
    width: 200%;
  }
}
@media screen and (max-width: 767px) {
  .bl_table__spScroll table {
    width: 100%;
  }
}

.bl_videoGroup .bl_video:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .bl_videoGroup .bl_video:not(:last-child) {
    margin-bottom: 22px;
  }
}
.bl_videoGroup_title:not(:last-child) {
  margin-bottom: 22px;
}
.bl_videoGroup_title:last-child {
  margin-bottom: 0;
}
.bl_videoGroup_txt {
  line-height: 1.8;
}

.bl_videoGroupList {
  --_gap_row: 56px;
  display: grid;
  gap: var(--_gap_row) var(--_gap_col, 0);
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col2 {
    --_gap_col: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col3, .bl_videoGroupList__col4 {
    --_gap_col: 15px;
    --_gap_row: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col3 .bl_videoGroup .bl_video:not(:last-child), .bl_videoGroupList__col4 .bl_videoGroup .bl_video:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col3 .bl_videoGroup .bl_video:not(:last-child), .bl_videoGroupList__col4 .bl_videoGroup .bl_video:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col3 .bl_videoGroup_title:not(:last-child), .bl_videoGroupList__col4 .bl_videoGroup_title:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col3 {
    --_gap_col: 36px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col4 {
    --_gap_col: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col4 .bl_videoGroup_title {
    padding-bottom: 16px;
    font-size: 1.25rem;
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col4 .bl_videoGroup_title:not(:last-child) {
    margin-bottom: 16px;
  }
}

.bl_dataTable {
  display: grid;
  gap: 0 2em;
  grid-template-columns: minmax(200px, max-content) 1fr;
}
@media screen and (max-width: 767px) {
  .bl_dataTable {
    grid-template-columns: minmax(100px, max-content) 1fr;
  }
}
.bl_dataTable_row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  align-items: center;
  border-bottom: 2px solid;
  padding: 20px;
}
.bl_dataTable_row:nth-child(odd) {
  background-color: #ddd;
}
.bl_dataTable dt {
  font-weight: bold;
}

.bl_accordionList {
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .bl_accordionList {
    gap: 16px;
  }
}

.bl_accordion {
  --_borderWidth: 1px;
  --_borderRadius: 6px;
  position: relative;
}
.bl_accordion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: var(--_borderWidth) solid var(--color_line_gray);
  border-radius: var(--_borderRadius);
  pointer-events: none;
}
.bl_accordion_head {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: calc(var(--_borderRadius) + var(--_borderWidth));
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  transition: var(--transDefs);
  transition-property: background-color, border-bottom-right-radius, border-bottom-left-radius;
}
.bl_accordion_head:focus-visible {
  background-color: var(--lightGray);
}
@media (any-hover: hover) {
  .bl_accordion_head:hover {
    background-color: var(--lightGray);
  }
}
@media screen and (max-width: 767px) {
  .bl_accordion_head {
    padding: 13px 12px;
    font-size: 0.9375rem;
  }
}
.bl_accordion_head::-webkit-details-marker {
  display: none;
}
.bl_accordion_head .icon {
  position: relative;
  width: 16px;
  height: 1px;
  background-color: var(--color_main);
}
.bl_accordion_head .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: inherit;
  rotate: 90deg;
}
.bl_accordion[open] .bl_accordion_head {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: var(--lightGray);
}
.bl_accordion[open] .bl_accordion_head .icon::before {
  opacity: 0;
}
.bl_accordion::details-content {
  content-visibility: unset;
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--transDefs);
  transition-property: content-visibility, grid-template-rows;
  transition-behavior: allow-discrete;
}
.bl_accordion_body {
  overflow: hidden;
}
.bl_accordion_body > div {
  border-radius: 0 0 calc(var(--_borderRadius) + var(--_borderWidth)) calc(var(--_borderRadius) + var(--_borderWidth));
  padding: 12px 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .bl_accordion_body > div {
    padding: 12px;
  }
}
.bl_accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.bl_dialog {
  opacity: 0;
  visibility: hidden;
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: var(--transDefs);
  transition-property: opacity, visibility, display, overlay;
  transition-behavior: allow-discrete;
  scrollbar-width: none;
}
.bl_dialog::-webkit-scrollbar {
  display: none;
}
.bl_dialog[open] {
  opacity: 1;
  visibility: visible;
}
@starting-style {
  .bl_dialog[open] {
    opacity: 0;
  }
}
.bl_dialog::backdrop {
  display: none;
}
.bl_dialog_backdrop {
  height: calc(100% + 1px);
}
.bl_dialog_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.bl_dialog_body {
  position: relative;
  padding: 40px;
  background-color: #fff;
}
.bl_dialog_closeBtn {
  display: grid;
  place-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  aspect-ratio: 1;
  background-color: #000;
}
.bl_dialog_closeBtn > span:not([class]) {
  position: relative;
  width: 16px;
  height: 2px;
}
.bl_dialog_closeBtn > span:not([class])::before, .bl_dialog_closeBtn > span:not([class])::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
}
.bl_dialog_closeBtn > span:not([class])::before {
  rotate: -45deg;
}
.bl_dialog_closeBtn > span:not([class])::after {
  rotate: 45deg;
}

.bl_tablist button {
  --_tabColor: var(--color_txt);
  border: 1px solid var(--_tabColor);
  border-bottom: 0;
  padding: 1em;
}
.bl_tablist button[aria-selected=true] {
  background-color: var(--_tabColor);
  color: #fff;
}

.bl_tabpanellist_tabpanel > div {
  border: 2px solid;
  padding: 2em;
}

/**
 * Element
 */
.el_hdgLg {
  --_color: var(--color_main);
  --_align: left;
  --_fontSize: 2.25rem;
  margin-bottom: 44px;
  color: var(--_color);
  text-align: var(--_align);
  font-size: var(--_fontSize);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_hdgLg {
    --_fontSize: 1.5rem;
    margin-bottom: 24px;
  }
}
.el_hdgLg__center {
  --_align: center;
  --_fontSize: 2.625rem;
}
@media screen and (max-width: 767px) {
  .el_hdgLg__center {
    --_fontSize: 1.5rem;
  }
}
.el_hdgLg__gray {
  --_color: var(--color_txt_gray);
}
.el_hdgLg__white {
  --_color: #fff;
}

.el_hdgMd {
  display: grid;
  align-items: center;
  position: relative;
  margin-bottom: 36px;
  padding-left: 23px;
  min-height: 64px;
  color: var(--color_txt_gray);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_hdgMd {
    margin-bottom: 24px;
    padding-left: 15px;
    min-height: 44px;
    font-size: 1.5rem;
  }
}
.el_hdgMd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  border-radius: 3px;
  width: 5px;
  height: 40px;
  background-color: var(--color_main);
}
@media screen and (max-width: 767px) {
  .el_hdgMd::before {
    width: 3px;
    height: 28px;
  }
}

.el_hdgSm {
  position: relative;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--color_line_gray);
  padding-bottom: 22px;
  color: var(--color_main);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_hdgSm {
    margin-bottom: 24px;
    padding-bottom: 14px;
    font-size: 1.25rem;
  }
}
.el_hdgSm::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  border-bottom: 2px solid var(--color_main);
  width: 70px;
}
@media screen and (max-width: 767px) {
  .el_hdgSm::before {
    width: 56px;
  }
}

.el_hdgXs {
  display: grid;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
  border-radius: 6px;
  padding: 14px 16px 14px 27px;
  background-color: #fff;
  color: var(--color_txt_gray);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .el_hdgXs {
    margin-bottom: 16px;
    padding: 12px 12px 12px 20px;
    font-size: 1.0625rem;
  }
}
.el_hdgXs::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50px;
  width: 3px;
  height: 20px;
  background-color: var(--color_main);
}
@media screen and (max-width: 767px) {
  .el_hdgXs::before {
    height: 16px;
  }
}

.el_lead {
  --_fontSize: 1rem;
  line-height: 1.8;
  font-size: var(--_fontSize);
}
.el_lead:not(:first-child) {
  margin-top: 8px;
}
.el_lead__lg {
  --_fontSize: 1.25rem;
}
@media screen and (max-width: 767px) {
  .el_lead__lg {
    --_fontSize: 1rem;
  }
}

.el_chevron {
  display: block;
  width: var(--_chevronW, 8px);
  aspect-ratio: 8/14;
  background-color: currentColor;
  -webkit-mask-image: url(../img/common/icon/icon_chevron.svg);
  mask-image: url(../img/common/icon/icon_chevron.svg);
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.el_download,
.el_mail,
.el_pdf,
.el_blank {
  display: block;
  background-color: currentColor;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.el_download {
  width: 17px;
  aspect-ratio: 17/18;
  -webkit-mask-image: url(../img/common/icon/icon_download.svg);
  mask-image: url(../img/common/icon/icon_download.svg);
}

.el_mail {
  width: 20px;
  aspect-ratio: 20.85/15.91;
  -webkit-mask-image: url(../img/common/icon/icon_mail.svg);
  mask-image: url(../img/common/icon/icon_mail.svg);
}

.el_pdf {
  width: 17px;
  aspect-ratio: 17/16;
  -webkit-mask-image: url(../img/common/icon/icon_pdf.svg);
  mask-image: url(../img/common/icon/icon_pdf.svg);
}

.el_blank {
  width: 17px;
  aspect-ratio: 17/16;
  -webkit-mask-image: url(../img/common/icon/icon_blank.svg);
  mask-image: url(../img/common/icon/icon_blank.svg);
}

/**
 * ボタン／リンクボタン
 *
 * 既定＝白いカード型リンク（紺の丸矢印つき・影あり）。下層インデックスの導線で使う。
 * バリアントはすべて --_ で始まるローカル変数の上書きで作る。新クラスは作らない。
 *   __flat  … 影・丸なしの素の矢印（関連ナビ帯など、1段低いレベルの導線）
 *   __solid … 紺ベタのCTAボタン（__pill / __wide と組み合わせる）
 *   __pill  … 角丸をピル型に
 *   __wide  … 幅456px上限
 *   __back  … 矢印を左向きにして左端へ
 *
 * href が .pdf のときは、ラベル直後にアイコンが自動で付く（@mixin addLinkIcon）。
 * target="_blank" のときは右端のアイコン自体が別窓アイコンに変わり（mixin側で icon を
 * 切り替え）、ラベル直後の自動アイコンは下の :has() で消している。
 */
.el_btn {
  --_bgColor: #fff;
  --_color: var(--color_main);
  --_borderColor: transparent;
  --_radius: 8px;
  --_minH: 68px;
  --_padding_left: 26px;
  --_padding_right: 46px;
  --_fontSize: 1.25rem;
  --_shadow: 0 2px 12px rgba(10, 66, 170, 0.12);
  --_align: left;
  --_iconOffset_hor: 16px;
  --_iconSize: 24px;
  --_iconBgColor: var(--color_main);
  --_iconColor: #fff;
  --_chevronW: 7px;
  --_iconImgW: 12px;
  display: grid;
  align-items: center;
  position: relative;
  border: 1px solid var(--_borderColor);
  border-radius: var(--_radius);
  padding: 12px var(--_padding_right) 12px var(--_padding_left);
  width: var(--_width, auto);
  min-height: var(--_minH);
  background-color: var(--_bgColor);
  box-shadow: var(--_shadow);
  text-align: var(--_align);
  color: var(--_color);
  font-size: var(--_fontSize);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_btn {
    --_minH: 56px;
    --_padding_left: 16px;
    --_padding_right: 40px;
    --_fontSize: 1rem;
  }
}
.el_btn:focus-visible {
  --_bgColor: var(--color_main);
  --_color: #fff;
  --_borderColor: var(--color_main);
  --_iconBgColor: #fff;
  --_iconColor: var(--color_main);
}
@media (any-hover: hover) {
  .el_btn:hover {
    --_bgColor: var(--color_main);
    --_color: #fff;
    --_borderColor: var(--color_main);
    --_iconBgColor: #fff;
    --_iconColor: var(--color_main);
  }
}
.el_btn .el_btn_inner::after {
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  display: inline-block;
  background-color: var(--linkIconColor);
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.el_btn[target=_blank] .el_btn_inner::after, .el_btn[href$=".pdf"] .el_btn_inner::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/16;
}
.el_btn[target=_blank] .el_btn_inner::after {
  -webkit-mask-image: url("../img/common/icon/icon_blank.svg");
  mask-image: url("../img/common/icon/icon_blank.svg");
}
.el_btn[href$=".pdf"] .el_btn_inner::after {
  -webkit-mask-image: url("../img/common/icon/icon_pdf.svg");
  mask-image: url("../img/common/icon/icon_pdf.svg");
}
.el_btn[href$=".zip"] .el_btn_inner::after {
  aspect-ratio: 1;
}
.el_btn:has(.el_pdf, .el_blank) .el_btn_inner::after {
  content: none;
}
.el_btn_inner::after {
  margin-left: 6px;
  translate: 0 2px;
}
.el_btn_icon {
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  display: grid;
  place-content: center;
  position: absolute;
  right: var(--_iconOffset_hor);
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  width: var(--_iconSize);
  aspect-ratio: 1;
  background-color: var(--_iconBgColor);
  color: var(--_iconColor);
}
.el_btn_icon .el_download {
  width: var(--_iconImgW, 17px);
}
.el_btn_icon .el_mail {
  width: var(--_iconImgW, 20px);
}
.el_btn_icon .el_pdf,
.el_btn_icon .el_blank {
  width: var(--_iconImgW, 17px);
}
.el_btn__flat {
  --_radius: 6px;
  --_minH: 60px;
  --_padding_left: 20px;
  --_padding_right: 44px;
  --_fontSize: 1rem;
  --_shadow: none;
  --_iconOffset_hor: 20px;
  --_iconSize: 12px;
  --_iconBgColor: transparent;
  --_iconColor: var(--color_main);
  --_chevronW: 8px;
  --_iconImgW: initial;
}
@media screen and (max-width: 767px) {
  .el_btn__flat {
    --_minH: 52px;
    --_padding_left: 16px;
    --_padding_right: 36px;
    --_fontSize: 0.875rem;
  }
}
.el_btn__flat:focus-visible {
  --_bgColor: var(--color_main);
  --_color: #fff;
  --_iconBgColor: transparent;
  --_iconColor: #fff;
}
@media (any-hover: hover) {
  .el_btn__flat:hover {
    --_bgColor: var(--color_main);
    --_color: #fff;
    --_iconBgColor: transparent;
    --_iconColor: #fff;
  }
}
.el_btn__solid {
  --_bgColor: var(--color_main);
  --_borderColor: var(--color_main);
  --_color: #fff;
  --_shadow: none;
  --_align: center;
  --_minH: 78px;
  --_padding_left: 56px;
  --_padding_right: 56px;
  --_fontSize: 1.25rem;
  --_iconOffset_hor: 24px;
  --_iconSize: 12px;
  --_iconBgColor: transparent;
  --_iconColor: #fff;
  --_chevronW: 8px;
  --_iconImgW: initial;
}
@media screen and (max-width: 767px) {
  .el_btn__solid {
    --_minH: 60px;
    --_padding_left: 40px;
    --_padding_right: 40px;
    --_fontSize: 1rem;
  }
}
.el_btn__solid:focus-visible {
  --_bgColor: #fff;
  --_color: var(--color_main);
  --_borderColor: #fff;
  --_iconBgColor: transparent;
  --_iconColor: var(--color_main);
}
@media (any-hover: hover) {
  .el_btn__solid:hover {
    --_bgColor: #fff;
    --_color: var(--color_main);
    --_borderColor: #fff;
    --_iconBgColor: transparent;
    --_iconColor: var(--color_main);
  }
}
.el_btn__white {
  --_bgColor: #fff;
  --_color: var(--color_main);
  --_borderColor: #fff;
  --_iconColor: var(--color_main);
}
.el_btn__white:focus-visible {
  --_bgColor: var(--color_main);
  --_color: #fff;
  --_borderColor: var(--color_main);
  --_iconColor: #fff;
}
@media (any-hover: hover) {
  .el_btn__white:hover {
    --_bgColor: var(--color_main);
    --_color: #fff;
    --_borderColor: var(--color_main);
    --_iconColor: #fff;
  }
}
.el_btn__gray {
  --_bgColor: var(--lightGray);
  --_borderColor: transparent;
  --_shadow: none;
  --_radius: 10px;
  --_minH: auto;
  --_fontSize: 0.9375rem;
  padding-block: 19px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .el_btn__gray {
    --_fontSize: 1.0625rem;
  }
}
.el_btn__gray:focus-visible {
  --_bgColor: var(--color_main);
  --_color: #fff;
  --_iconBgColor: #fff;
  --_iconColor: var(--color_main);
}
@media (any-hover: hover) {
  .el_btn__gray:hover {
    --_bgColor: var(--color_main);
    --_color: #fff;
    --_iconBgColor: #fff;
    --_iconColor: var(--color_main);
  }
}
.el_btn__pill {
  --_radius: 100px;
}
.el_btn__wide {
  width: min(460px, 100%);
}
.el_btn__back {
  --_padding_left: 46px;
  --_padding_right: 26px;
}
.el_btn__back .el_btn_icon {
  left: var(--_iconOffset_hor);
  right: auto;
  rotate: 180deg;
}
.el_btn__disabled {
  --_bgColor: var(--color_line_gray);
  --_borderColor: transparent;
  --_color: #8a8a8a;
  --_shadow: none;
  --_iconBgColor: transparent;
  --_iconColor: #8a8a8a;
  pointer-events: none;
  cursor: not-allowed;
}

.el_wysiwyg {
  line-height: 2;
}
.el_wysiwyg h2 {
  display: grid;
  align-items: center;
  position: relative;
  margin-bottom: 36px;
  padding-left: 23px;
  min-height: 64px;
  color: var(--color_txt_gray);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_wysiwyg h2 {
    margin-bottom: 24px;
    padding-left: 15px;
    min-height: 44px;
    font-size: 1.5rem;
  }
}
.el_wysiwyg h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  border-radius: 3px;
  width: 5px;
  height: 40px;
  background-color: var(--color_main);
}
@media screen and (max-width: 767px) {
  .el_wysiwyg h2::before {
    width: 3px;
    height: 28px;
  }
}
.el_wysiwyg h3 {
  position: relative;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--color_line_gray);
  padding-bottom: 22px;
  color: var(--color_main);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_wysiwyg h3 {
    margin-bottom: 24px;
    padding-bottom: 14px;
    font-size: 1.25rem;
  }
}
.el_wysiwyg h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  border-bottom: 2px solid var(--color_main);
  width: 70px;
}
@media screen and (max-width: 767px) {
  .el_wysiwyg h3::before {
    width: 56px;
  }
}
.el_wysiwyg h4,
.el_wysiwyg h5 {
  display: grid;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
  border-radius: 6px;
  padding: 14px 16px 14px 27px;
  background-color: #fff;
  color: var(--color_txt_gray);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .el_wysiwyg h4,
  .el_wysiwyg h5 {
    margin-bottom: 16px;
    padding: 12px 12px 12px 20px;
    font-size: 1.0625rem;
  }
}
.el_wysiwyg h4::before,
.el_wysiwyg h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50px;
  width: 3px;
  height: 20px;
  background-color: var(--color_main);
}
@media screen and (max-width: 767px) {
  .el_wysiwyg h4::before,
  .el_wysiwyg h5::before {
    height: 16px;
  }
}
.el_wysiwyg a {
  color: var(--color_txt_link);
  text-decoration: underline;
}
.el_wysiwyg a:focus-visible {
  text-decoration-color: transparent;
}
@media (any-hover: hover) {
  .el_wysiwyg a:hover {
    text-decoration-color: transparent;
  }
}
.el_wysiwyg a::after {
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  display: inline-block;
  background-color: var(--linkIconColor);
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.el_wysiwyg a[target=_blank]::after, .el_wysiwyg a[href$=".pdf"]::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/16;
}
.el_wysiwyg a[target=_blank]::after {
  -webkit-mask-image: url("../img/common/icon/icon_blank.svg");
  mask-image: url("../img/common/icon/icon_blank.svg");
}
.el_wysiwyg a[href$=".pdf"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_pdf.svg");
  mask-image: url("../img/common/icon/icon_pdf.svg");
}
.el_wysiwyg a[href$=".zip"]::after {
  aspect-ratio: 1;
}
.el_wysiwyg a::after {
  translate: 0 2px;
}
.el_wysiwyg a > span {
  margin-right: 5px;
}
.el_wysiwyg ul,
.el_wysiwyg ol {
  line-height: 1.6;
}
.el_wysiwyg ul li:not(:first-child),
.el_wysiwyg ul li ul,
.el_wysiwyg ul li ol,
.el_wysiwyg ol li:not(:first-child),
.el_wysiwyg ol li ul,
.el_wysiwyg ol li ol {
  margin-top: 4px;
}
.el_wysiwyg ul > li,
.el_wysiwyg ol > li {
  position: relative;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .el_wysiwyg ul > li,
  .el_wysiwyg ol > li {
    margin-left: 20px;
  }
}
.el_wysiwyg ul > li::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  translate: 0 calc(0.5lh - 50%);
  margin-right: 16px;
  border-radius: 50%;
  width: 4px;
  aspect-ratio: 1;
  background-color: var(--color_main);
}
@media screen and (max-width: 767px) {
  .el_wysiwyg ul > li::before {
    margin-right: 13px;
  }
}
.el_wysiwyg ol {
  counter-reset: liCounter;
}
.el_wysiwyg ol > li::before {
  content: counter(liCounter) ".";
  counter-increment: liCounter;
  position: absolute;
  right: 100%;
  top: 0;
  margin-right: 9px;
  color: var(--color_main);
  font-family: var(--ff_outfit);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .el_wysiwyg ol > li::before {
    margin-right: 8px;
  }
}
.el_wysiwyg table {
  border-top: 1px solid var(--color_line_gray);
  border-left: 1px solid var(--color_line_gray);
  border-collapse: separate;
  line-height: 1.6;
}
.el_wysiwyg th,
.el_wysiwyg td {
  border-right: 1px solid var(--color_line_gray);
  border-bottom: 1px solid var(--color_line_gray);
  padding: 16px;
}
.el_wysiwyg th {
  background-color: #3eb8ec;
  color: #fff;
}
.el_wysiwyg td {
  background-color: #fff;
}

.el_caption {
  contain: inline-size;
  font-size: 0.8125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .el_caption {
    font-size: 0.75rem;
  }
}
.el_caption:not(:first-child) {
  margin-top: 8px;
}

.el_arrow {
  width: 8px;
  aspect-ratio: 1;
  background-color: currentColor;
  -webkit-mask-image: url(../img/common/icon/icon_arrow.svg);
  mask-image: url(../img/common/icon/icon_arrow.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.el_circleArrow {
  --_circleBgColor: transparent;
  --_circleBorderColor: currentColor;
  display: inline-grid;
  place-content: center;
  border: 1px solid var(--_circleBorderColor);
  border-radius: 50%;
  width: 20px;
  aspect-ratio: 1;
  background-color: var(--_circleBgColor);
  vertical-align: top;
  color: var(--color_main);
}
.el_circleArrow .el_download,
.el_circleArrow .el_mail,
.el_circleArrow .el_pdf,
.el_circleArrow .el_blank {
  width: 10px;
}
@media screen and (max-width: 767px) {
  .el_circleArrow {
    width: 16px;
  }
  .el_circleArrow .el_download,
  .el_circleArrow .el_mail,
  .el_circleArrow .el_pdf,
  .el_circleArrow .el_blank {
    width: 8px;
  }
}
.el_circleArrow__solid {
  --_circleBgColor: var(--color_main);
  --_circleBorderColor: var(--color_main);
  color: #fff;
}

.el_anchorLink {
  display: grid;
  gap: 0 12px;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--color_line_gray);
  padding-bottom: 14px;
}
.el_anchorLink:focus-visible {
  border-bottom-color: var(--color_main);
  color: var(--color_main);
}
@media (any-hover: hover) {
  .el_anchorLink:hover {
    border-bottom-color: var(--color_main);
    color: var(--color_main);
  }
}
@media screen and (max-width: 767px) {
  .el_anchorLink {
    padding-bottom: 9px;
    font-size: 0.8125rem;
  }
}
.el_anchorLink .el_circleArrow {
  rotate: 90deg;
}
.el_anchorLink__toPage {
  padding: 12px 14px 12px 10px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .el_anchorLink__toPage {
    padding: 10px 10px 10px 6px;
    font-size: 0.8125rem;
  }
}
.el_anchorLink__toPage .el_circleArrow {
  --_circleBgColor: var(--color_main);
  --_circleBorderColor: var(--color_main);
  rotate: 0deg;
  color: #fff;
}
.el_anchorLink__toPage .el_chevron {
  width: 5px;
}
@media screen and (max-width: 767px) {
  .el_anchorLink__toPage .el_chevron {
    width: 4px;
  }
}
.el_anchorLink__toPage:focus-visible .el_circleArrow {
  --_circleBgColor: #fff;
  color: var(--color_main);
}
@media (any-hover: hover) {
  .el_anchorLink__toPage:hover .el_circleArrow {
    --_circleBgColor: #fff;
    color: var(--color_main);
  }
}

.el_circleArrowLink {
  display: inline-grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  vertical-align: top;
}
.el_circleArrowLink:focus-visible {
  color: var(--color_main);
}
@media (any-hover: hover) {
  .el_circleArrowLink:hover {
    color: var(--color_main);
  }
}
@media screen and (max-width: 767px) {
  .el_circleArrowLink {
    gap: 8px;
  }
}
.el_circleArrowLink .el_circleArrowLink_txt::after {
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  display: inline-block;
  background-color: var(--linkIconColor);
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.el_circleArrowLink[target=_blank] .el_circleArrowLink_txt::after, .el_circleArrowLink[href$=".pdf"] .el_circleArrowLink_txt::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/16;
}
.el_circleArrowLink[target=_blank] .el_circleArrowLink_txt::after {
  -webkit-mask-image: url("../img/common/icon/icon_blank.svg");
  mask-image: url("../img/common/icon/icon_blank.svg");
}
.el_circleArrowLink[href$=".pdf"] .el_circleArrowLink_txt::after {
  -webkit-mask-image: url("../img/common/icon/icon_pdf.svg");
  mask-image: url("../img/common/icon/icon_pdf.svg");
}
.el_circleArrowLink[href$=".zip"] .el_circleArrowLink_txt::after {
  aspect-ratio: 1;
}
.el_circleArrowLink .el_circleArrow {
  translate: 0 calc(0.5lh - 50%);
}
.el_circleArrowLink_txt > span {
  margin-right: 8px;
}
.el_circleArrowLink_txt::after {
  translate: 0 calc(0.5lh - 50%);
  vertical-align: top;
  color: var(--color_main);
}

/**
 * サイトロゴ
 *
 * 「職場の熱中症対策ラボ」（実テキスト）＋「Present by」＋JISHAロゴ画像の組み合わせ。
 * ヘッダー／フッター・PC/SPで文字サイズも並びも変わるので、寸法はローカルの
 * カスタムプロパティで受け取り、値はレイアウト側（.ly_header / .ly_footer）で指定する。
 * カスタムプロパティはこのセレクタでは初期化せずフォールバック値（＝PCフッターのサイズ）で
 * 持つ。同じ要素に付く .ly_header_logo 等と詳細度が並ぶため、宣言すると上書きできなくなる。
 */
.el_siteLogo {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.el_siteLogo_link {
  display: flex;
  flex-direction: column;
  gap: var(--_gap, 9px);
  align-items: flex-start;
  color: inherit;
}
@media (any-hover: hover) {
  .el_siteLogo_link:hover {
    opacity: var(--hoverOpacity);
  }
}
.el_siteLogo_name {
  color: var(--color_main);
  letter-spacing: 0;
  font-size: var(--_nameSize, 28px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.el_siteLogo_byline {
  display: flex;
  gap: var(--_bylineGap, 2px);
  align-items: flex-end;
}
.el_siteLogo_bylineTxt {
  font-size: var(--_bylineSize, 16px);
  line-height: 1.2;
  white-space: nowrap;
}
.el_siteLogo img {
  width: var(--_jishaW, 250px);
}
@media not all and (max-width: 767px), print {
  .el_siteLogo__inline .el_siteLogo_link {
    flex-direction: row;
    align-items: flex-end;
  }
  .el_siteLogo__inline .el_siteLogo_byline {
    gap: var(--_gap, 9px);
  }
}

/**
 * Page
 *
 * ページ固有のスタイルはここから読み込むパーシャルに書く。
 * 「このページだけ余白が違う」は原則ここで吸収する（方針は _hp.scss 冒頭のコメント参照）。
 */
/**
 * トップページ（/）
 *
 * このページ固有の調整だけを書く。パーツ本体（.bl_ / .el_）は触らない。
 */
.pg_home .el_hdgLg {
  --_fontSize: 2.75rem;
}
@media screen and (max-width: 767px) {
  .pg_home .el_hdgLg {
    --_fontSize: 1.625rem;
  }
}
.pg_home_kv {
  position: relative;
  width: 100%;
}
@media not all and (max-width: 767px), print {
  .pg_home_kv {
    aspect-ratio: var(--designW)/623;
    background: url(../img/index/kv_bg_01.webp) center/cover;
    margin-bottom: calc(57 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  }
}
@media not all and (max-width: 767px), print {
  .pg_home_kv_img {
    position: absolute;
    width: 91.25%;
    bottom: calc(-47 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    left: 50.7%;
    translate: -50% 0;
    z-index: 1;
  }
}
.pg_home_kv_img img {
  display: block;
  width: 100%;
  height: auto;
}
.pg_home_kv_txt {
  display: grid;
  gap: 1.1vw;
  justify-items: center;
  position: absolute;
  left: 50%;
  top: 34.5%;
  width: 44.7%;
  text-align: center;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .pg_home_kv_txt {
    gap: calc(13 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    top: 37.76%;
    width: 90%;
  }
}
.pg_home_kv_ttl {
  margin: 0;
  color: #fff;
  font-size: 3.97vw;
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(10, 66, 170, 0.35);
}
@media screen and (max-width: 767px) {
  .pg_home_kv_ttl {
    font-size: calc(30 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    line-height: 1.6;
  }
}
.pg_home_kv_lead {
  margin: 0;
  border-radius: 60px;
  padding: 0.2vw 1.5vw;
  width: 98%;
  background-color: #fff;
  color: var(--color_main);
  font-size: 1.47vw;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .pg_home_kv_lead {
    padding: calc(6 / var(--designW) * var(--htmlW, var(--designW)) * 1px) calc(10 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    font-size: calc(15 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    line-height: 1.45;
    width: 97%;
  }
}
.pg_home_news {
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .pg_home_news {
    padding-block: 44px;
  }
}
.pg_home_news .el_hdgLg {
  --_color: var(--color_txt_accent);
  --_align: center;
  margin-bottom: 20px;
}
@media not all and (max-width: 767px), print {
  .pg_home_news .el_hdgLg {
    font-size: 2.375rem;
  }
}
.pg_home_news .el_circleArrow {
  width: 25px;
}
.pg_home_news .el_circleArrow .el_arrow,
.pg_home_news .el_circleArrow .el_download,
.pg_home_news .el_circleArrow .el_mail,
.pg_home_news .el_circleArrow .el_pdf,
.pg_home_news .el_circleArrow .el_blank {
  width: 14px;
}
.pg_home main {
  --_bdrd: 20px;
  margin-top: calc(var(--_bdrd) * -1px);
  border-radius: var(--_bdrd) var(--_bdrd) 0 0;
  background-color: #fff;
}
.pg_home_intro {
  padding-block: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pg_home_intro {
    padding-block: 70px;
  }
}
.pg_home_intro_bodyDeco {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pg_home_intro_bodyDeco .deco {
  position: absolute;
}
.pg_home_intro_bodyDeco .deco img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.pg_home_intro_bodyDeco .deco__01 {
  width: 204px;
  aspect-ratio: 204/206;
  bottom: 90px;
  right: calc(50% + min(361px, 30%));
}
@media not all and (max-width: 767px), print {
  .pg_home_intro_bodyDeco .deco__02 {
    width: 181px;
    aspect-ratio: 181/175;
    bottom: 90px;
    left: calc(50% + min(380px, 30%));
  }
}
@media screen and (max-width: 767px) {
  .pg_home_intro_bodyDeco .deco__02 {
    width: 88px;
    aspect-ratio: 91/69;
    bottom: 118px;
    right: 18px;
  }
}
.pg_home_intro .el_hdgLg {
  position: relative;
}
.pg_home_intro_inner {
  text-align: center;
  position: relative;
}
@media not all and (max-width: 767px), print {
  .pg_home_intro .bl_btnList_item {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .pg_home_intro .bl_btnList_item {
    margin-top: 40px;
  }
}
.pg_home_intro_catch {
  margin: 0;
  color: var(--color_main);
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .pg_home_intro_catch {
    font-size: 1.375rem;
  }
}
.pg_home_intro_txt {
  margin-top: 22px;
  color: var(--color_txt_gray);
  letter-spacing: 0.4px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .pg_home_intro_txt {
    margin-top: 20px;
    letter-spacing: 0.36px;
    font-size: 1rem;
  }
}
.pg_home_intro_links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-inline: auto;
  max-width: 1120px;
}
@media screen and (max-width: 767px) {
  .pg_home_intro_links {
    gap: 12px;
  }
}
.pg_home_intro_links > li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .pg_home_intro_links > li {
    width: 100%;
  }
}
.pg_home_intro_links .el_btn {
  --_radius: 10px;
  --_shadow: 0 0 10px rgba(106, 154, 189, 0.25);
  font-weight: 600;
}
.pg_home_intro_links .el_arrow {
  width: 11px;
}
.pg_home_intro .el_btn__wide {
  --_iconOffset_hor: 40px;
  width: min(518px, 100%);
}
.pg_home_intro .el_hdgLg {
  --_color: var(--color_txt_accent);
  --_align: center;
}
.pg_home_topics {
  margin-left: var(--contSpace_hor_xWide);
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .pg_home_topics {
    padding-block: 70px;
  }
}
@media screen and (max-width: 767px) {
  .pg_home_guide {
    border-radius: 20px;
    padding-block: 70px;
  }
}
.pg_home_guide_list {
  display: grid;
  gap: 70px;
}
@media not all and (max-width: 767px), print {
  .pg_home_guide_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .pg_home_guide_list {
    gap: 30px;
  }
}
.pg_home_guide_card {
  --_cardW: 555px;
}
@media screen and (max-width: 767px) {
  .pg_home_guide_card {
    --_cardW: 335px;
  }
}
.pg_home_guide_card__knowledge {
  --_img_top: auto;
  --_img_right: calc(55px / var(--_cardW) * 100%);
  --_img_bottom: 0;
  --_img_width: calc(255px / var(--_cardW) * 100%);
  --_imgSub_top: 0;
  --_imgSub_right: 0;
  --_imgSub_width: calc(149px / var(--_cardW) * 100%);
}
@media screen and (max-width: 767px) {
  .pg_home_guide_card__knowledge {
    --_img_right: auto;
    --_img_bottom: -27px;
    --_img_left: 35px;
    --_img_width: 178px;
    --_imgSub_width: 110px;
  }
}
.pg_home_guide_card__seminar {
  --_img_top: auto;
  --_img_right: calc(9px / var(--_cardW) * 100%);
  --_img_bottom: calc(-56px / var(--_cardW) * 100%);
  --_img_width: calc(212px / var(--_cardW) * 100%);
}
@media screen and (max-width: 767px) {
  .pg_home_guide_card__seminar {
    --_img_bottom: -25px;
    --_img_right: 33px;
    --_img_width: 129px;
  }
}

/**
 * コンポーネント集（components.html）専用スタイル
 * .pg_components 配下に閉じ込め、パーツ本体のスタイルは一切汚染しない。
 */
.pg_components .pg_cat_wrap {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .pg_components .pg_cat_wrap {
    padding-bottom: 60px;
  }
}
.pg_components .pg_cat_lead {
  border-radius: 12px;
  padding: 24px;
  background-color: #fff;
  line-height: 1.9;
  font-size: 0.875rem;
}
.pg_components .pg_cat_lead a {
  color: var(--color_txt_link);
  text-decoration: underline;
}
.pg_components .pg_cat_toc {
  margin-top: 32px;
  border-radius: 12px;
  padding: 24px;
  background-color: #fff;
  font-size: 0.875rem;
}
.pg_components .pg_cat_toc ul {
  display: grid;
  gap: 8px;
}
.pg_components .pg_cat_toc > ul > li {
  font-weight: 700;
}
.pg_components .pg_cat_toc > ul > li > ul {
  margin-top: 8px;
  padding-left: 1em;
  font-weight: 400;
}
.pg_components .pg_cat_toc a {
  text-decoration: underline;
}
.pg_components .pg_cat_toc a:focus-visible {
  color: var(--color_main);
}
@media (any-hover: hover) {
  .pg_components .pg_cat_toc a:hover {
    color: var(--color_main);
  }
}
.pg_components .pg_cat_section {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .pg_components .pg_cat_section {
    margin-top: 48px;
  }
}
.pg_components .pg_cat_sectionTitle {
  margin: 0 0 8px;
  border-bottom: 3px solid var(--color_main);
  padding-bottom: 12px;
  color: var(--color_main);
  font-size: 1.625rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pg_components .pg_cat_sectionTitle {
    font-size: 1.25rem;
  }
}
.pg_components .pg_cat_item {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .pg_components .pg_cat_item {
    margin-top: 32px;
  }
}
.pg_components .pg_cat_itemTitle {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pg_components .pg_cat_itemTitle {
    font-size: 1rem;
  }
}
.pg_components .pg_cat_itemDesc {
  margin: 8px 0 0;
  line-height: 1.8;
  font-size: 0.8125rem;
}
.pg_components .pg_cat_itemDesc code {
  border-radius: 3px;
  padding: 0 4px;
  background-color: #fff;
  font-family: monospace;
}
.pg_components .pg_cat_preview {
  margin-top: 16px;
  border: 1px dashed var(--color_line_gray);
  padding: 32px 24px;
  background-color: var(--color_bg_page);
}
@media screen and (max-width: 767px) {
  .pg_components .pg_cat_preview {
    padding: 20px 12px;
  }
}
.pg_components .pg_cat_preview__full {
  margin-inline: calc(50% - 50vw);
  padding: 0;
  width: 100vw;
}
.pg_components .pg_cat_preview__white {
  background-color: #fff;
}
.pg_components .pg_cat_preview__key {
  background-color: var(--color_key);
}
.pg_components .pg_cat_pug {
  margin-top: 12px;
  font-size: 0.8125rem;
}
.pg_components .pg_cat_pug summary {
  cursor: pointer;
}
.pg_components .pg_cat_pug pre {
  margin-top: 8px;
  border-radius: 6px;
  padding: 16px;
  background-color: #2b2b2b;
  color: #e8e8e8;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.75rem;
  line-height: 1.7;
}
.pg_components .pg_cat_code {
  position: relative;
  margin-top: 12px;
}
.pg_components .pg_cat_code pre {
  border-radius: 6px;
  padding: 16px;
  background-color: #1f2933;
  color: #e8e8e8;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.75rem;
  line-height: 1.7;
}
.pg_components .pg_cat_copyBtn {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  border-radius: 4px;
  padding: 6px 12px;
  background-color: #fff;
  cursor: pointer;
  font-size: 0.75rem;
}
.pg_components .pg_cat_copyBtn:focus-visible {
  background-color: var(--color_key);
  color: #fff;
}
@media (any-hover: hover) {
  .pg_components .pg_cat_copyBtn:hover {
    background-color: var(--color_key);
    color: #fff;
  }
}

.pg_cat_pageHeaderBg {
  background-image: url(../img/about/index/pageHeader_bg_01_2x.webp);
  background-position: 50% 0;
  background-size: 100% auto;
}

/**
 * 職場の熱中症対策ラボとは（/about/）
 *
 * このページ固有の調整だけを書く。パーツ本体（.bl_ / .el_）は触らない。
 */
.pg_about .bl_pageHeader {
  aspect-ratio: 1360/465;
  margin-bottom: -10px;
  background-color: transparent;
  background-image: url(../img/about/index/pageHeader_bg_01_2x.webp);
  background-position: 50% 0;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .pg_about .bl_pageHeader {
    aspect-ratio: 750/800;
    margin-bottom: -30px;
    background-image: url(../img/about/index/pageHeader_bg_01_sp.webp);
  }
}
.pg_about .bl_pageHeader::after {
  content: none;
}
.pg_about .bl_pageHeader_inner {
  padding-block: 110px;
}
@media screen and (max-width: 767px) {
  .pg_about .bl_pageHeader_inner {
    padding-block: 160px auto;
  }
}
.pg_about .bl_decoImgSect_inner {
  position: relative;
}
.pg_about .bl_decoImgSect_img {
  --_decoImgBoxRatio: 483 / 583;
  --_decoImgBoxW: calc(483 / 1120 * 100%);
  --_decoImgBoxW_sp: 250px;
}
@media not all and (max-width: 767px), print {
  .pg_about .bl_decoImgSect_img {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 0;
    width: var(--_decoImgBoxW);
    aspect-ratio: var(--_decoImgBoxRatio);
    translate: 0 -50%;
  }
}
@media screen and (max-width: 767px) {
  .pg_about .bl_decoImgSect_img {
    position: relative;
    margin: 0 auto 30px;
    width: var(--_decoImgBoxW_sp, 200px);
    max-width: 100%;
  }
}
.pg_about .bl_decoImgSect_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  aspect-ratio: 907/914;
  width: 80.9821428571%;
  border-radius: 100%;
  background-color: #DEF8FF;
  filter: blur(100px);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .pg_about .bl_decoImgSect_img::before {
    filter: blur(51px);
  }
}
.pg_about .bl_decoImgSect_img img {
  width: 100%;
}
.pg_about .bl_decoImgSect_body {
  position: relative;
  z-index: 1;
  width: 100%;
}
.pg_about .bl_decoImgSect_hdg .el_hdgLg {
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .pg_about .bl_decoImgSect_hdg .el_hdgLg {
    margin-bottom: 18px;
  }
}
.pg_about .bl_decoImgSect_txt {
  font-size: 1rem;
  line-height: 1.8;
}
@media not all and (max-width: 767px), print {
  .pg_about .bl_decoImgSect_txt {
    width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .pg_about .bl_decoImgSect_txt {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
.pg_about .bl_decoImgSect_txt > p + p {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .pg_about .bl_decoImgSect_txt > p + p {
    margin-top: 14px;
  }
}
.pg_about .bl_decoImgSect_txt > p + p.pg_about_sign {
  margin-top: 40px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .pg_about .bl_decoImgSect_txt > p + p.pg_about_sign {
    margin-top: 21px;
  }
}
.pg_about .pg_about_feeBadge {
  margin-inline: auto;
  color: var(--color_main);
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .pg_about .pg_about_feeBadge {
    font-size: 1.25rem;
  }
}
.pg_about .pg_about_card__center .bl_card_title {
  text-align: center;
}
.pg_about .pg_about_typeList > li + li {
  margin-top: 20px;
}
.pg_about .pg_about_typeList_hdg {
  color: var(--color_main);
  font-weight: 700;
}
.pg_about .pg_about_typeList_txt {
  margin-top: 4px;
}
.pg_about .pg_about_note2 {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.7;
}
.pg_about .pg_about_meritLead {
  margin-bottom: 20px;
}
.pg_about .pg_about_flowCard_txt {
  text-align: center;
}
.pg_about .pg_about_ctaGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.pg_about .pg_about_ctaGroup_row {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pg_about .pg_about_ctaGroup_row {
    flex-direction: column;
    align-items: center;
  }
}
.pg_about .bl_bandSect {
  position: relative;
}
.pg_about .bl_bandSect::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: var(--_bdrd);
  bottom: 0;
  left: 0;
  background: #fff;
}

/**
 * 基礎知識（熱中症とは）ページ固有
 *
 * 共通パーツにしない＝このページ限定と判断したものだけをここに置く。
 * 共通で使い回すものは .bl_ / .el_ に昇格させ、このファイルからは消すこと。
 */
@media not all and (max-width: 767px), print {
  .pg_basic .bl_pageHeader_img {
    right: calc(0 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    bottom: calc(-145 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    width: calc(563 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  }
}
@media screen and (max-width: 767px) {
  .pg_basic .bl_pageHeader_img {
    right: calc(0 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    bottom: calc((var(--_curveH) + calc(-15 / var(--designW) * var(--htmlW, var(--designW)) * 1px)) * -1);
    width: 96.8%;
  }
}
@media screen and (max-width: 767px) {
  .pg_basic .bl_pageHeader {
    --_curveH: calc(98 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    --_minH: calc(300 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  }
}
.pg_basic .ct_std > * + * {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .pg_basic .ct_std > * + * {
    margin-top: 56px;
  }
}
.pg_basic .el_hdgSm:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .pg_basic .el_hdgSm:not(:first-child) {
    margin-top: 40px;
  }
}
.pg_basic .el_wysiwyg a:not([target=_blank], [href$=".pdf"])::after {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/icon/icon_arrow.svg);
  mask-image: url(../img/common/icon/icon_arrow.svg);
}
.pg_basic .el_wysiwyg a::after {
  transition-property: opacity, border-color, background-color, color, text-decoration-color;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  display: inline-block;
  background-color: var(--linkIconColor);
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.pg_basic .el_wysiwyg a[target=_blank]::after, .pg_basic .el_wysiwyg a[href$=".pdf"]::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/16;
}
.pg_basic .el_wysiwyg a[target=_blank]::after {
  -webkit-mask-image: url("../img/common/icon/icon_blank.svg");
  mask-image: url("../img/common/icon/icon_blank.svg");
}
.pg_basic .el_wysiwyg a[href$=".pdf"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_pdf.svg");
  mask-image: url("../img/common/icon/icon_pdf.svg");
}
.pg_basic .el_wysiwyg a[href$=".zip"]::after {
  aspect-ratio: 1;
}
.pg_basic .el_wysiwyg > p + p {
  margin-top: 20px;
}
.pg_basic .pg_basic_refGroup {
  display: grid;
  gap: 40px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .pg_basic .pg_basic_refGroup {
    gap: 28px;
    margin-top: 32px;
  }
}
.pg_basic .pg_basic_refList > li + li {
  margin-top: 15px;
}
.pg_basic .pg_basic_refBtnList {
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .pg_basic .pg_basic_refBtnList {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.pg_basic .pg_figureLead {
  display: grid;
  gap: 4px;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .pg_basic .pg_figureLead {
    font-size: 1.0625rem;
  }
}
.pg_basic .pg_figureLead:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .pg_basic .pg_figureLead:not(:first-child) {
    margin-top: 28px;
  }
}
.pg_basic .pg_figureLead + .bl_img {
  margin-top: 16px;
}
.pg_basic .pg_figureLead_blue {
  color: #2074b0;
}
.pg_basic .pg_figureLead_gray {
  color: #7e5a66;
}
.pg_basic .pg_figureLead_red {
  color: #bc4934;
}

/**
 * セミナー・講師派遣（/seminar/）
 *
 * このページ固有の調整だけを書く。パーツ本体（.bl_ / .el_）は触らない。
 */
@media screen and (max-width: 767px) {
  .pg_seminar .el_hdgLg {
    --_fontSize: 1.5rem;
  }
}
@media not all and (max-width: 767px), print {
  .pg_seminar .bl_pageHeader_img {
    right: calc(50% - var(--contW_wide) / 2 - calc(56 / var(--designW) * var(--htmlW, var(--designW)) * 1px));
    bottom: calc(-144 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    width: calc(278 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  }
}
@media screen and (max-width: 767px) {
  .pg_seminar .bl_pageHeader_img {
    right: calc(30 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    bottom: calc((var(--_curveH) + calc(-26 / var(--designW) * var(--htmlW, var(--designW)) * 1px)) * -1);
    width: calc(120 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  }
}
@media screen and (max-width: 767px) {
  .pg_seminar .bl_pageHeader {
    --_curveH: calc(98 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
    --_minH: calc(300 / var(--designW) * var(--htmlW, var(--designW)) * 1px);
  }
}

/**
 * Unique
 */
/**
 * Helper
 *
 * ============================================================
 * ■ ヘルパークラス運用方針（余白の差分をどう吸収するか）
 * ============================================================
 * 同じパーツでもページによって前後の余白が違う、というのは必ず起きる。
 * そのときに「新しいクラスを増やす」「パーツ本体のCSSを直す」をやると
 * 他ページに影響が出るので、次の優先順位で対応すること。
 *
 * ── 手順1：まずパーツ既定の余白で足りないか確認する ──────────
 *   記事系（.bl_contSet 配下）のコンポーネント間余白は
 *   `.bl_contSet > :not(:first-child)` の margin-top で一括管理している。
 *   見出しと後続要素の間隔は見出し側の margin-bottom（@mixin hdgLg 等）で決まる。
 *   「ページ全体でズレている」ように見えるときは、たいていこの既定値の話なので、
 *   個別に打ち消す前に既定値の見直しでよいか検討する。
 *
 * ── 手順2：単発（1〜2か所）のズレ → hp_ ヘルパーを付ける ─────
 *   例：このページだけ、このボタンの上を広くしたい
 *     <div class="bl_ctaBox hp_mt80">…</div>
 *   ・ヘルパーは「そのページのその1要素」に貼るもの。
 *   ・!important を持つので、パーツ側の指定より必ず勝つ。
 *   ・同じヘルパーを3か所以上貼りたくなったら手順3に切り替える（貼りすぎのサイン）。
 *
 * ── 手順3：ページ全体で系統的にズレる → pg_ スコープで上書き ──
 *   例：セミナーページだけセクション間隔を詰めたい
 *     .pg_seminar .bl_contSet > :not(:first-child) { margin-top: 64px; }
 *   ・_pg.scss に読み込むページ用パーシャルに書く。
 *   ・body の class（bodyAttrs）でページを識別する。
 *   ・ヘルパーを何個も貼るより、こちらのほうが後から追いやすい。
 *
 * ── やってはいけないこと ────────────────────────────
 *   × パーツ本体（.el_ / .bl_）のCSSを1ページ都合で直す
 *   × ページ都合の余白のために新しい .bl_ / .el_ クラスを作る
 *   × 見た目の差分（色・枠など）をヘルパーで作る
 *     → 見た目のバリアントは必ず `__modifier`（例 .el_btn__solid）で増やす。
 *       ヘルパーが担当するのは「余白」「表示/非表示」「寄せ」だけ。
 *
 * ── 余白スケール ─────────────────────────────────
 *   0 / 8 / 16 / 24 / 32 / 40 / 48 / 64 / 80 / 120（px）
 *   SPでは同じクラスがおおむね 0.6 倍になる（下の $hp_spaceScale で定義）。
 *   このスケールに無い値が必要になったら、まず手順1・3を疑うこと。
 *   どうしても必要ならスケール自体に追加し、単発の値を直書きしない。
 * ============================================================
 */
.hp_mt0 {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .hp_mt0 {
    margin-top: 0 !important;
  }
}

.hp_mb0 {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .hp_mb0 {
    margin-bottom: 0 !important;
  }
}

.hp_pt0 {
  padding-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .hp_pt0 {
    padding-top: 0 !important;
  }
}

.hp_pb0 {
  padding-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .hp_pb0 {
    padding-bottom: 0 !important;
  }
}

.hp_mt8 {
  margin-top: 8px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt8 {
    margin-top: 8px !important;
  }
}

.hp_mb8 {
  margin-bottom: 8px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb8 {
    margin-bottom: 8px !important;
  }
}

.hp_pt8 {
  padding-top: 8px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt8 {
    padding-top: 8px !important;
  }
}

.hp_pb8 {
  padding-bottom: 8px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb8 {
    padding-bottom: 8px !important;
  }
}

.hp_mt16 {
  margin-top: 16px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt16 {
    margin-top: 12px !important;
  }
}

.hp_mb16 {
  margin-bottom: 16px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb16 {
    margin-bottom: 12px !important;
  }
}

.hp_pt16 {
  padding-top: 16px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt16 {
    padding-top: 12px !important;
  }
}

.hp_pb16 {
  padding-bottom: 16px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb16 {
    padding-bottom: 12px !important;
  }
}

.hp_mt24 {
  margin-top: 24px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt24 {
    margin-top: 16px !important;
  }
}

.hp_mb24 {
  margin-bottom: 24px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb24 {
    margin-bottom: 16px !important;
  }
}

.hp_pt24 {
  padding-top: 24px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt24 {
    padding-top: 16px !important;
  }
}

.hp_pb24 {
  padding-bottom: 24px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb24 {
    padding-bottom: 16px !important;
  }
}

.hp_mt32 {
  margin-top: 32px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt32 {
    margin-top: 20px !important;
  }
}

.hp_mb32 {
  margin-bottom: 32px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb32 {
    margin-bottom: 20px !important;
  }
}

.hp_pt32 {
  padding-top: 32px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt32 {
    padding-top: 20px !important;
  }
}

.hp_pb32 {
  padding-bottom: 32px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb32 {
    padding-bottom: 20px !important;
  }
}

.hp_mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt40 {
    margin-top: 24px !important;
  }
}

.hp_mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb40 {
    margin-bottom: 24px !important;
  }
}

.hp_pt40 {
  padding-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt40 {
    padding-top: 24px !important;
  }
}

.hp_pb40 {
  padding-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb40 {
    padding-bottom: 24px !important;
  }
}

.hp_mt48 {
  margin-top: 48px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt48 {
    margin-top: 28px !important;
  }
}

.hp_mb48 {
  margin-bottom: 48px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb48 {
    margin-bottom: 28px !important;
  }
}

.hp_pt48 {
  padding-top: 48px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt48 {
    padding-top: 28px !important;
  }
}

.hp_pb48 {
  padding-bottom: 48px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb48 {
    padding-bottom: 28px !important;
  }
}

.hp_mt64 {
  margin-top: 64px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt64 {
    margin-top: 40px !important;
  }
}

.hp_mb64 {
  margin-bottom: 64px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb64 {
    margin-bottom: 40px !important;
  }
}

.hp_pt64 {
  padding-top: 64px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt64 {
    padding-top: 40px !important;
  }
}

.hp_pb64 {
  padding-bottom: 64px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb64 {
    padding-bottom: 40px !important;
  }
}

.hp_mt80 {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt80 {
    margin-top: 48px !important;
  }
}

.hp_mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb80 {
    margin-bottom: 48px !important;
  }
}

.hp_pt80 {
  padding-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt80 {
    padding-top: 48px !important;
  }
}

.hp_pb80 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb80 {
    padding-bottom: 48px !important;
  }
}

.hp_mt120 {
  margin-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .hp_mt120 {
    margin-top: 64px !important;
  }
}

.hp_mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .hp_mb120 {
    margin-bottom: 64px !important;
  }
}

.hp_pt120 {
  padding-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .hp_pt120 {
    padding-top: 64px !important;
  }
}

.hp_pb120 {
  padding-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .hp_pb120 {
    padding-bottom: 64px !important;
  }
}

.hp_taLeft {
  text-align: left !important;
}

.hp_taCenter {
  text-align: center !important;
}

.hp_taRight {
  text-align: right !important;
}

@media screen and (max-width: 767px) {
  .hp_pcOnly {
    display: none !important;
  }
}

@media not all and (max-width: 767px), print {
  .hp_spOnly {
    display: none !important;
  }
}

.hp_srOnly {
  position: absolute !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.hp_trimLeading::before, .hp_trimLeading::after {
  content: "";
  display: block;
}
.hp_trimLeading::before {
  margin-block-end: var(--negLeading);
}
.hp_trimLeading::after {
  margin-block-start: var(--negLeading);
}

/**
 * Keyframes
 */