@charset "UTF-8";
/*! kiso.css v1.2.2 | 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. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

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

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  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;
  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:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

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

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

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

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

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

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

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

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

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

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

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

/* ======================================================
//  MARK: Misc
// ====================================================== */
:where(:disabled, [aria-disabled=true i]) {
  /* Display the default cursor on disabled elements to reflect their non-interactive state. */
  cursor: default;
}

[hidden]:not([hidden=until-found i]) {
  /* Ensure that elements intended to be hidden are not displayed, improving clarity and layout control. */
  display: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "pwid";
  letter-spacing: 0.05em;
  font-size: var(--font-size_m);
  color: var(--color__black);
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.7;
  word-break: break-all;
  font-weight: 400;
}

:root {
  --viewWidth: 100%;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
input[type=checkbox],
input[type=radio] {
  touch-action: manipulation;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
select {
  text-transform: none;
  padding-block: 0;
  padding-inline: 0;
}

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

strong {
  font-weight: 500;
}

.grecaptcha-badge {
  visibility: hidden;
}

:root {
  --space__title-header-btm: clamp(1.563rem, 1.012rem + 1.761vw, 3.125rem);
  --space__general: clamp(20px, 10vw, 40px);
  --space__general-sp: 20px;
  --space__contents: clamp(40px, 14.08vw, 200px);
  --space__section: clamp(7rem, 5.469rem + 4.898vw, 10rem);
  --space__contents: clamp(2.5rem, 1.840rem + 2.113vw, 4.375rem);
  --space__padding--s: clamp(0.25rem, 0.162rem + 0.282vw, 0.5rem);
  --space__padding--m: clamp(1rem, 0.554rem + 1.429vw, 1.875rem);
  --space__gap--s: clamp(0.5rem, 0.324rem + 0.563vw, 1rem);
  --space__gap--m: clamp(1rem, 0.472rem + 1.69vw, 2.5rem);
}

:root {
  --wp--preset--spacing--10: clamp(0.125rem, 0.068rem + 0.182vw, 0.25rem);
  --wp--preset--spacing--20: clamp(0.25rem, 0.136rem + 0.364vw, 0.5rem);
  --wp--preset--spacing--30: clamp(0.375rem, 0.205rem + 0.545vw, 0.75rem);
  --wp--preset--spacing--40: clamp(0.5rem, 0.273rem + 0.727vw, 1rem); /* Medium */
  --wp--preset--spacing--50: clamp(0.75rem, 0.409rem + 1.091vw, 1.5rem);
  --wp--preset--spacing--60: clamp(1rem, 0.545rem + 1.455vw, 2rem);
  --wp--preset--spacing--70: clamp(1.5rem, 0.818rem + 2.182vw, 3rem);
}

:root {
  --font-size_xxs: clamp(0.625rem, 0.568rem + 0.182vw, 0.75rem);
  --font-size_xs: clamp(0.75rem, 0.693rem + 0.182vw, 0.875rem);
  --font-size_s: clamp(0.813rem, 0.746rem + 0.211vw, 1rem);
  --font-size_sm: clamp(0.938rem, 0.881rem + 0.182vw, 1.063rem);
  --font-size_m: clamp(0.938rem, 0.871rem + 0.211vw, 1.125rem);
  --font-size_ml: clamp(1.125rem, 1.080rem + 0.191vw, 1.25rem);
  --font-size_lg: clamp(1.25rem, 0.984rem + 0.851vw, 1.75rem);
  --font-size_xl: clamp(1.375rem, 1.199rem + 0.563vw, 1.875rem);
  --font-size_xxl: clamp(1.5rem, 1.148rem + 1.127vw, 2.5rem);
  --font-size_xxxl: clamp(2.8rem, 1.744rem + 4.507vw, 5.8rem);
  --font-size_xxxl--english: clamp(3.75rem, 1.989rem + 5.634vw, 8.75rem);
}

:root {
  --font-family-title:
    "Montserrat",
    "Zen Kaku Gothic New",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    Meiryo,
    sans-serif;
}

:root {
  --color__black:#141414;
  --color__text-link:#ac0606;
  --color__gray--dark:#787878;
  --color__bg-gray:#e0e0e0;
  --color__bg-gray--light:#ececec;
  --color__primary--general: #0f274a;
  --color__primary--general-50:#7b889b;
  --color__primary--general-light: #215091;
  --color__primary--light: #91bce2;
  --color__primary--bg: #d9e1e9;
  --color__primary--bg--light: #fafcfd;
  --color__accent-light: #f9f9a2;
  --color__gradation--general: #46aae6;
  --color__gradation--dark: #325ac8;
  --color__gradation--hover--general: #ff8a00;
  --color__gradation--hover--dark: #e52e71;
  --color__news-topics--general: #0084b8;
  --color__news-activity--general: #399e8e;
  --color__news-closeddays--general: #b33f4e;
  --color__bg-translucent--black: rgba(0,0,0,.5);
  --color__bg-translucent--primary-general: rgba(15,39,74,.9);
  --color__bg-translucent--recruit-banner: rgba(36, 36, 36, 0.9);
}

:root {
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
}

:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
}

.l-section__header {
  padding-bottom: var(--space__title-header-btm);
  container-type: inline-size;
}

.l-section__header--title {
  font-size: var(--font-size_xxxl);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 1em;
}
@container (max-width:1024px) {
  .l-section__header--title {
    font-size: calc(var(--font-size_xxxl) * 0.7);
  }
}

.l-section__header--subtitle {
  font-size: var(--font-size_ml);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 84px;
  background-color: transparent;
  z-index: 99999;
  justify-content: space-between;
  padding: 0 var(--space__padding--m);
  transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.header {
  transition: none; /* 初期はtransition無効 */
}

.header.transition-enabled {
  transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* 中身のロゴやナビも高さに合わせて調整 */
.header__logo,
.header__gnav {
  transition: all 0.3s ease;
}

/* スクロール後 */
.header.is-header-change {
  height: 56px !important;
  background-color: #fff !important;
  box-shadow: var(--box-shadow);
}

.header__gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.5vw, 24px);
  height: 100%;
  width: calc(100% - var(--space__contents));
  margin: 0 auto;
  margin-left: auto;
}

.header__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 132px;
  height: 100%;
  margin: 0;
  font-size: 0;
  z-index: 99999;
  transition: width 0.3s ease;
}

.header__logo-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 100%;
  width: 100%;
  fill: #fff;
  display: block;
}

.header__nav {
  display: grid;
  grid-template-columns: repeat(8, auto);
  height: 84px;
  display: none;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}

.header.is-header-change .header__nav {
  height: 56px;
}
@media (max-width: 1200px) {
  .header.is-header-change .header__nav {
    display: none;
  }
}

.header__nav li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__nav--item {
  position: relative;
  padding: 0 clamp(8px, 1.2vw, 24px);
}

@media (any-hover: hover) {
  .header__nav--item:hover {
    background-color: var(--color__bg-gray);
  }
}
.l-header__dropdown-menu {
  position: absolute;
  top: 67px;
  transition: all 0.3s;
  transform-origin: center top;
  transform: scaleY(0.8);
  opacity: 0;
  visibility: hidden;
  word-break: keep-all;
  white-space: nowrap;
  pointer-events: none;
}

@media (any-hover: hover) {
  .header__nav li.is-dropdown-menu--btn:hover .l-header__dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scaleY(1) !important;
    pointer-events: auto !important;
  }
}
/* ローディング中は非表示 */
body:not(.is-loaded) .l-header__dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.8);
  pointer-events: none;
}

.l-header__mega-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 768px;
  width: 70vw;
  max-height: 300px;
  aspect-ratio: 12/3;
  background-color: var(--color__primary--general);
}

.l-header__mega-menu.recruit {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 8/3;
  border: 1px solid #fff;
}

.l-header__mega-menu--item {
  width: 100%;
  background-color: var(--color__primary--general);
  position: relative;
  transition: var(--transition);
}

.l-header__mega-menu--item.recruit {
  max-height: 300px;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.l-header__mega-menu--image {
  max-width: 200px;
  width: 50%;
  max-height: 300px;
  aspect-ratio: 2/3;
  margin: 0 0 0 auto;
  overflow: hidden;
}

.l-header__mega-menu--image.recruit {
  position: absolute;
  bottom: -8px;
  width: 100%;
  margin: 0 0 0 auto;
}

.l-header__mega-menu--image.recruit img {
  height: auto;
}

.l-header__mega-menu--image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.l-header__mega-menu--title {
  position: absolute;
  left: min(7.5%, 30px);
  top: 0;
}

.l-header__mega-menu--item:nth-child(1) .l-header__mega-menu--title {
  aspect-ratio: 1520/989;
  width: 64%;
}

.l-header__mega-menu--item:nth-child(2) .l-header__mega-menu--title {
  aspect-ratio: 202/182;
  width: 50%;
}

.l-header__mega-menu--item:nth-child(3) .l-header__mega-menu--title {
  aspect-ratio: 201/67;
  width: 50%;
}

.l-header__mega-menu--group {
  position: absolute;
  left: min(7.5%, 30px);
  top: min(75%, 225px);
  background-color: var(--color__black);
  color: #fff;
  display: grid;
  place-items: center;
  width: min(70%, 250px);
  height: clamp(32px, 15%, 45px);
  font-size: var(--font-size_m);
}

@media (any-hover: hover) {
  .l-header__mega-menu--item:hover {
    background-color: var(--color__primary--general-light);
  }
  .l-header__mega-menu--item:hover .l-header__mega-menu--group {
    background-color: #fff;
    color: var(--color__black);
  }
  .l-header__mega-menu--item:hover .l-header__mega-menu--image img {
    transform: scale(1.05);
  }
}
.l-header__nomal-menu {
  color: var(--color__primary--general);
  border: var(--color__bg-gray) solid 1px;
  overflow: hidden;
  background-color: #fff;
  padding: 0.5em 1em;
  border-radius: 4px;
}

.l-header__nomal-menu li {
  margin: 0.5em 0;
}

.l-header__nomal-menu li a {
  display: inline-block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
  margin-right: auto;
  color: var(--color__primary--general);
}

.l-header__nomal-menu li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color__gray--dark);
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .l-header__nomal-menu li a:hover::after {
    transform: scale(1, 1);
  }
}
.l-header__nomal-menu li a:last-child {
  border-bottom: none;
}

.triangle-bg {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: transparent;
}

.header__nav--title {
  font-size: 15px;
  line-height: 1.3;
}

.header__nav--subtitle {
  font-size: 11px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: var(--color__primary--general-light);
}

.l-header-footer__nav--tel-box {
  padding: 0 clamp(8px, 1.2vw, 24px);
  padding-bottom: 2px;
}

.l-header-footer__nav--tel {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.l-header-footer__nav--time {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.header__nav--title, .l-header-footer__nav--tel, .l-header-footer__nav--time {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: var(--color__primary--general);
}

.header.is-header-change {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  height: 56px;
}
.header.is-header-change .header__nav {
  display: grid;
  opacity: 1;
  visibility: visible;
}
.header.is-header-change .header-logo {
  width: 92px;
  fill: var(--color__primary--general);
}
.header.is-header-change .header__gnav {
  grid-template-columns: 1fr auto auto;
}
@media (max-width: 1200px) {
  .header.is-header-change .header__gnav {
    grid-template-columns: 1fr auto;
  }
  .header.is-header-change .header__nav {
    display: none;
  }
  .header.is-header-change .header__logo, .header.is-header-change .header__logo-link {
    width: 92px;
    height: 35px;
  }
}

.header__logo.is-open .header-logo {
  fill: var(--color__primary--general);
}

/*
*
*
リクルート用
*
*
*
*/
@media (max-width: 1200px) {
  .header.recruit {
    height: 56px;
  }
}

.header.recruit .header__logo {
  width: 290px;
  height: 50px;
  aspect-ratio: 290/50;
}
@media (max-width: 1200px) {
  .header.recruit .header__logo {
    width: 180px;
    top: 4px;
  }
}

.recruit__header-logo {
  height: 100%;
  width: 100%;
  fill: var(--color__black);
  display: block;
}

.header.recruit .header__nav {
  display: grid;
  grid-template-columns: 4, auto;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1200px) {
  .header.recruit .header__nav {
    height: 56px;
  }
}

.header.recruit .header__nav .l-header__dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.8);
  transform-origin: top center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  display: block;
}

.header.recruit .header__nav--item.entry {
  padding: 0 clamp(8px, 1.2vw, 24px) 0 calc(clamp(8px, 1.2vw, 24px) + 2px);
  background-color: var(--color__black);
  margin: 0 calc(clamp(16px, 1.5vw, 24px) * 0.8);
  border-radius: 0 0 16px 16px;
}
@media (max-width: 1200px) {
  .header.recruit .header__nav--item.entry {
    border-radius: 0 0 8px 8px;
    margin: 0;
  }
}
@media (max-width: 450px) {
  .header.recruit .header__nav--item.entry {
    display: none;
  }
}

.header.is-header-change .header__nav--item.entry {
  border-radius: 0;
}
.header.is-header-change .header__logo, .header.is-header-change .header__logo-link {
  width: 200px;
  height: 35px;
  top: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(159, 31, 31, 0.6);
  }
  100% {
    box-shadow: 0 0 0 1.2em rgba(0, 0, 0, 0);
  }
}
.header__nav--item.entry .header__nav--title {
  font-size: 16px;
}
@media (max-width: 1200px) {
  .header__nav--item.entry .header__nav--title {
    font-size: 13px;
  }
}

.header.recruit .l-header__dropdown-menu {
  top: 80px;
}

.header.recruit .l-header__mega-menu {
  grid-template-columns: repeat(2, 1fr);
  max-width: 512px;
  width: 50vw;
  max-height: 300px;
}

.header.recruit .l-header__mega-menu--item:nth-child(1) {
  background-color: var(--color__recruit--red);
}

.header.recruit .l-header__mega-menu--item:nth-child(2) {
  background-color: var(--color__recruit--blue);
}

.l-header__mega-menu--image {
  max-width: 512px;
  width: 100%;
  max-height: 300px;
  aspect-ratio: 4/3;
  padding-left: 40%;
}

.header.recruit .header__nav--item.entry .header__nav--title, .header.recruit .header__nav--item.entry .header__nav--subtitle {
  color: #fff;
}

.header.recruit .header__nav--title, .header.recruit .header__nav--subtitle {
  color: var(--color__black);
  cursor: pointer;
}

.header.recruit .l-header__mega-menu--title {
  position: absolute;
  left: 8px;
  top: 0;
}

.header.recruit .l-header__mega-menu--item:nth-child(1) .l-header__mega-menu--title {
  aspect-ratio: 1520/989;
  width: 75%;
}

@media (any-hover: hover) {
  .header.recruit .header__nav li.is-dropdown-menu--btn:hover .l-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    pointer-events: auto;
  }
  .header.recruit .header__nav li:hover .header__nav--title, .header.recruit .header__nav li:hover .header__nav--subtitle {
    color: var(--color__recruit--red);
    font-weight: 500;
  }
  .header.recruit.is-header-color-change .header__nav li:hover .header__nav--title, .header.recruit.is-header-color-change .header__nav li:hover .header__nav--subtitle {
    color: #fff;
    font-weight: 500;
  }
  .header.recruit .header__nav--item:hover {
    background-color: transparent;
  }
  .header.recruit .header__nav--item.entry:hover {
    background-color: var(--color__recruit--red) !important;
    animation: pulse 1s;
  }
  .header.recruit .header__nav--item.entry:hover .header__nav--title, .header.recruit .header__nav--item.entry:hover .header__nav--subtitle {
    color: #fff;
  }
  .header.recruit.is-header-color-change .header__nav--item.entry:hover {
    background-color: var(--color__primary--general) !important;
    animation: pulse 1s;
  }
  .header.recruit.is-header-color-change .header__nav--item.entry:hover .header__nav--title, .header.recruit.is-header-color-change .header__nav--item.entry:hover .header__nav--subtitle {
    color: #fff;
  }
  .header.recruit .l-header__mega-menu--item:nth-child(1):hover {
    background-color: var(--color__recruit--red--hover);
  }
  .header.recruit .l-header__mega-menu--item:nth-child(2):hover {
    background-color: var(--color__recruit--blue--hover);
  }
}
.l-mobilemenu {
  padding-bottom: 60px;
}

.l-mobilemenu__inner {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 0 auto;
  font-weight: 400;
  margin: 0 auto;
  margin-top: 100px;
}
@media (min-width: 550px) {
  .l-mobilemenu__inner {
    display: grid;
    gap: clamp(0rem, -8.25rem + 24vw, 3.75rem);
    grid-template-columns: 1.5fr 1fr;
  }
}
@media (min-width: 800px) {
  .l-mobilemenu__inner {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 1em clamp(2.5rem, -2.5rem + 10vw, 5rem);
  }
}

.l-mobilemenu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 800px) {
  .l-mobilemenu__nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 2em;
  }
}

.l-mobilemenu__nav.service {
  display: block;
  width: max(230px, 40vw);
  margin-bottom: 1em;
}
@media (min-width: 800px) {
  .l-mobilemenu__nav.service {
    width: max(230px, 20vw);
  }
}

.l-mobilemenu__item {
  margin-top: 1.5em;
}

.l-mobilemenu__item.small {
  gap: 0.3em;
}

.l-mobilemenu__nav--child {
  display: grid;
  gap: 0.2em;
  margin-top: 0.3em;
  font-size: var(--font-size_sm);
}

.l-mobilemenu__nav--child li::before {
  content: "";
  display: inline-block;
  background-color: var(--color__gray--dark);
  width: 0.7em;
  height: 2px;
  margin-bottom: 0.35em;
  margin-right: 0.5em;
  border-radius: 0.5em;
}

.l-mobilemenu__text-link {
  display: block;
  font-size: calc(var(--font-size_lg) * 0.9);
  font-weight: 500;
}

.l-mobilemenu__text-link span {
  font-size: var(--font-size_s);
  padding-left: 0.5em;
  font-weight: 400;
  color: var(--color__gray--dark);
}

.l-mobilemenu__nav--item-big {
  display: flex;
  flex-direction: column;
}

.l-mobilemenu__title-img {
  width: 100%;
  position: relative;
  display: inline-block;
}

.l-mobilemenu__title-img .hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}

.l-mobilemenu__title-img img.book {
  padding-right: 30%;
}

.line {
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--color__black);
  transform: skew(-20deg, -5deg) rotate(-8deg);
  margin-bottom: 16px;
}

.l-mobilemenu__tel {
  font-size: 29px;
  line-height: 1;
}

.l-mobilemenu__tel-time {
  font-size: 16px;
}

.l-mobilemenu__copyright {
  max-width: 90%;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size_xxs);
  margin: 0 auto;
  margin-top: 3em;
}

@media (any-hover: hover) {
  a.l-mobilemenu__text-link:hover {
    color: var(--color__gradation--dark);
  }
  a.l-mobilemenu__text-link:hover span {
    color: var(--color__gradation--dark);
  }
  .l-mobilemenu__nav--child li:hover {
    color: var(--color__gradation--dark);
  }
  .l-mobilemenu__title-img:hover .hover {
    visibility: visible;
    opacity: 1;
  }
}
/*
*
****************************************
*
オーバーレイ
*
****************************************
*
*/
.overlay {
  inset: 0;
  height: 0;
  width: calc(100% - var(--scrollbar-width));
  -webkit-overflow-scrolling: touch;
  background: rgba(230, 230, 230, 0.96);
  z-index: 90;
  visibility: hidden;
  position: fixed;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール対応 */
  display: block;
  pointer-events: none;
}

.overlay.is-open {
  height: 100%;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

html.is-locked,
body.is-locked {
  overflow: hidden;
  height: 100%;
}

html {
  overflow-y: scroll;
}

/*
*
*
リクルート
*
*
*
*/
.l-mobilemenu.recruit .l-mobilemenu__inner {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 0 auto;
  font-weight: 400;
  margin: 0 auto;
  margin-top: 100px;
}
@media (min-width: 610px) {
  .l-mobilemenu.recruit .l-mobilemenu__inner {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, auto);
  }
}
.l-mobilemenu.recruit .l-mobilemenu__nav.service {
  display: block;
  width: max(230px, 40vw);
  margin-bottom: 1em;
}
@media (min-width: 800px) {
  .l-mobilemenu.recruit .l-mobilemenu__nav.service {
    width: min(400px, 40vw);
  }
}
.l-mobilemenu.recruit .l-mobilemenu__title-img {
  margin-top: 12px;
}
.l-mobilemenu.recruit .l-mobilemenu__title-img img.book {
  padding-right: 40%;
}
.l-mobilemenu.recruit .line {
  transform: skew(-13deg, -5deg) rotate(-8deg);
  margin-bottom: 8px;
}
.l-mobilemenu.recruit .l-mobilemenu__nav--child li {
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
}
@media (any-hover: hover) {
  .l-mobilemenu.recruit a.l-mobilemenu__text-link:hover {
    color: var(--color__gradation--dark);
  }
  .l-mobilemenu.recruit a.l-mobilemenu__text-link:hover span {
    color: var(--color__gradation--dark);
  }
  .l-mobilemenu.recruit .l-mobilemenu__nav--child li:nth-of-type(1):hover {
    color: var(--color__recruit--red);
  }
  .l-mobilemenu.recruit .l-mobilemenu__title-img:hover img {
    opacity: 1;
  }
}

/*
=============================================
section・contents
=============================================
*/
.l-section {
  padding: var(--space__section) 0;
  position: relative;
  z-index: 2;
}

/* .l-section の子要素に .l-section__header が含まれている場合に .l-section を選択 */
.l-section:has(> .l-section__header) {
  padding-top: var(--space__contents);
}

.l-contents {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 1920px) {
  .l-contents {
    padding: 0 var(--space__general);
  }
}
@media (max-width: 500px) {
  .l-contents {
    padding: 0 var(--space__general-sp);
  }
}
@media (min-width: 1921px) {
  .l-contents {
    padding: 0;
  }
}
.l-contents-min {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0;
  position: relative;
  overflow-x: visible;
  z-index: 2;
}

@media (max-width: 1920px) {
  .l-contents-min {
    padding: 0 var(--space__general);
  }
}
@media (max-width: 500px) {
  .l-contents-min {
    padding: 0 var(--space__general-sp);
  }
}
@media (min-width: 1921px) {
  .l-contents-min {
    padding: 0;
  }
}
/*
=============================================
親要素をはみ出す
=============================================
*/
/*
=============================================
親要素をはみ出す
=============================================
*/
.has-scrollbar .l-overflow-parent-all {
  margin-inline: calc(50% - 50vw + var(--scrollbarWidth) / 2);
}

.has-scrollbar .l-overflow-parent-right {
  margin-right: calc(50% - 50vw + var(--scrollbarWidth) / 2);
}

.has-scrollbar .l-overflow-parent-left {
  margin-left: calc(50% - 50vw + var(--scrollbarWidth) / 2);
}

.l-overflow-parent-all {
  margin-inline: calc(50% - 50vw);
}

.l-overflow-parent-right {
  margin-right: calc(50% - 50vw);
}

.l-overflow-parent-left {
  margin-left: calc(50% - 50vw);
}

/*
=============================================
componentBOX
=============================================
*/
.l-button__box {
  display: grid;
  gap: 12px;
}

.l-image-header__image {
  width: 100%;
  height: clamp(25rem, 20.599rem + 14.085vw, 37.5rem);
  overflow: hidden;
}

.l-image-header__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.l-news__list {
  border-bottom: 1px solid var(--color__gray--dark);
}

.l-single .l-news__list {
  border-bottom: 1px solid var(--color__bg-gray);
}

.l-news__list li {
  position: relative;
  transition: 0.3s;
  container-type: inline-size;
}

.l-news__list--card {
  display: grid;
  grid-column: inherit;
  align-items: center;
  gap: 0;
  padding: calc(var(--space__gap--s) * 1.5);
  border-top: 1px solid var(--color__gray--dark);
  line-height: 1.5;
}
@media (min-width: 600px) {
  .l-news__list--card {
    grid-template-columns: max(104px, 20%) max(100px, 10%) auto;
    gap: var(--space__gap--m);
  }
}

.l-single .l-news__list--card {
  border-top: 1px solid var(--color__bg-gray);
}

.l-news__list time {
  font-size: var(--font-size_m);
  color: var(--color__gray--dark);
  margin-top: 0.3em;
}
@media (min-width: 600px) {
  .l-news__list time {
    margin-top: 0;
  }
}
@container (max-width:1024px) {
  .l-news__list time {
    font-size: 12px;
  }
}

.l-news__list--title {
  font-size: var(--font-size_m);
  font-weight: 500;
}
@container (max-width:1024px) {
  .l-news__list--title {
    font-size: calc(var(--font-size_m) * 0.9);
  }
}

.l-news__list .c-category {
  width: clamp(6.25rem, 3.268rem + 12.723vw, 9.375rem);
}
@media (min-width: 600px) {
  .l-news__list .c-category {
    width: 100%;
    padding: var(--space__padding--s) 0;
  }
}
@container (max-width:1024px) {
  .l-news__list .c-category {
    font-size: 12px;
  }
}

@media (any-hover: hover) {
  .l-news__list li:hover {
    background-color: #fff;
  }
}
/*
*
*
*
　single共通
*
*
*
*/
.l-single {
  margin: 0 auto;
  padding-top: 100px;
  display: block;
}
@media (min-width: 1420px) {
  .l-single {
    display: grid;
    grid-template-columns: 3fr 1fr;
  }
}
@media (max-width: 500px) {
  .l-single {
    padding-top: 70px;
  }
}

.l-single__main {
  width: 100%;
  line-height: 2;
}

.l-single__main__inner {
  margin: 0 auto;
  max-width: 1024px;
  padding: 0 var(--space__general);
}
@media (min-width: 1024px) {
  .l-single__main__inner {
    padding: 0 calc(var(--space__general) * 2);
  }
}
@media (max-width: 500px) {
  .l-single__main__inner {
    padding: 0 var(--space__general-sp);
  }
}

.l-single__post-category--title {
  font-size: var(--font-size_xl);
  margin: calc(var(--font-size_xl) * 2) 0 calc(var(--font-size_xl) * 2) 0;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.1em;
  color: var(--color__primary--general);
}

.l-single__post-category--title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(var(--wp--preset--spacing--50) * -1);
  width: calc(var(--font-size_xl) * 1.5);
  height: 6px;
  background-color: var(--color__primary--general-50);
  left: 4px;
}

.l-single__post-title {
  font-size: calc(var(--font-size_xl) * 1.1);
  margin: calc(var(--font-size_xl) * 0.8) 0 calc(var(--font-size_xl) * 0.8) 0;
  line-height: 1.4;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}

.l-single__category-label {
  display: flex;
  gap: 0.5em;
}

.l-single__category-label .c-category {
  font-size: 12px;
  line-height: 1.2;
}

.l-single__time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--color__gray--dark);
  font-size: 13px;
  padding-right: 6px;
}

.l-single__time::before {
  content: "";
  display: block;
  width: calc(100% - 80px);
  background-color: var(--color__bg-gray);
  height: 1px;
}
@media (min-width: 500px) {
  .l-single__time::before {
    width: calc(100% - 100px);
  }
}

.l-pagination {
  margin: var(--space__contents) auto;
}

.l-single__pagenation {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  border: 1px solid var(--color__primary--general);
  border-left: none;
  border-right: none;
  margin-top: var(--space__contents);
}
@media (min-width: 768px) {
  .l-single__pagenation {
    grid-template-columns: 1fr 80px 1fr;
  }
}

.l-single__pagenation--home {
  width: 60px;
  height: 60px;
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 4px;
  place-content: center;
  background-color: var(--color__primary--general);
  transition: var(--transition);
}
@media (min-width: 768px) {
  .l-single__pagenation--home {
    width: 80px;
    height: 80px;
    grid-template-columns: repeat(3, 6px);
  }
}

.l-single__pagenation--home span {
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .l-single__pagenation--home span {
    width: 6px;
    height: 6px;
  }
}

.l-single__pagenation--btn {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--color__primary--general);
  transition: var(--transition);
  padding: 4px;
}
@media (min-width: 768px) {
  .l-single__pagenation--btn {
    gap: 24px;
    font-size: 16px;
    padding: 8px 16px;
    margin: 8px;
  }
}

.l-single__pagenation--btn--inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 4px 8px;
  gap: 16px;
}

.l-single__pagenation--btn.prev {
  margin-left: 0;
}

.l-single__pagenation--btn.next, .l-single__pagenation--btn.none-next {
  margin-right: 0;
}

.l-single__pagenation--btn.next .l-single__pagenation--btn--inner,
.l-single__pagenation--btn.none-next .l-single__pagenation--btn--inner {
  justify-content: flex-end;
}

.l-single__pagenation--btn.none-prev p, .l-single__pagenation--btn.none-next p {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--color__gray--dark);
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .l-single__pagenation--btn.none-prev p, .l-single__pagenation--btn.none-next p {
    font-size: 13px;
  }
}

.l-single__pagenation .c-arrow {
  width: 6.1px;
  height: 10.7px;
}
@media (min-width: 768px) {
  .l-single__pagenation .c-arrow {
    width: 8.9px;
    height: 16.3px;
  }
}

.l-single__pagenation .c-arrow::before,
.l-single__pagenation .c-arrow::after {
  background-color: var(--color__gray--dark);
  width: 8px;
  height: 1.5px;
  top: calc(50% - 0.75px);
  transform-origin: calc(100% - 0.75px) 50%;
}
@media (min-width: 768px) {
  .l-single__pagenation .c-arrow::before,
  .l-single__pagenation .c-arrow::after {
    width: 12px;
  }
}

.l-single__pagenation--btn.prev .c-arrow {
  transform: scale(-1, 1);
}

@media (any-hover: hover) {
  .l-single__pagenation--btn.next:hover,
  .l-single__pagenation--btn.prev:hover {
    background-color: var(--color__bg-gray--light);
  }
  .l-single__pagenation--home:hover {
    background-color: var(--color__primary--light);
  }
}
/*
*
*
*
　works
*
*
*
*/
.l-single__main.works {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  padding-top: 70px;
}
@media (min-width: 500px) {
  .l-single__main.works {
    padding-top: 100px;
  }
}

.l-single__main.works header, article.works {
  max-width: 1024px;
  padding: 0 var(--space__general-sp);
  margin: 0 auto;
}
@media (min-width: 500px) {
  .l-single__main.works header, article.works {
    padding: 0 var(--space__general);
  }
}
@media (min-width: 1024px) {
  .l-single__main.works header, article.works {
    padding: 0 calc(var(--space__general) * 2);
  }
}

.l-single__post-subtitle {
  font-size: calc(var(--font-size_xl) * 0.8);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  margin-top: 0.5em;
}

.l-single__header-client {
  font-size: var(--font-size_m);
  font-weight: 500;
  color: var(--color__primary--general);
  line-height: 1.4;
}

.l-single__header-job {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 0;
  border-top: 1px solid var(--color__gray--dark);
  border-bottom: 1px solid var(--color__gray--dark);
  font-size: var(--font-size_s);
  margin-top: 1em;
  line-height: 1.4;
  color: var(--color__primary--general);
}

.l-single__works--mainvisual {
  width: 100%;
  height: clamp(12.5rem, 7.889rem + 19.672vw, 31.25rem);
  margin: var(--space__contents) auto;
}

.l-single__works--mainvisual img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-single__works-table {
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  background-color: var(--color__bg-gray--light);
  max-width: 1024px;
  width: calc(100% - var(--space__general-sp) * 2);
  margin: 0 auto;
  margin-top: var(--space__contents);
  padding: calc(var(--space__general-sp) * 0.8) var(--space__general-sp);
  border-radius: 16px;
}
@media (min-width: 500px) {
  .l-single__works-table {
    padding: calc(var(--space__general) * 0.8) var(--space__general);
    width: calc(100% - var(--space__general) * 2);
    border-radius: 24px;
  }
}
@media (min-width: 1024px) {
  .l-single__works-table {
    padding: calc(var(--space__general) * 1.5) calc(var(--space__general) * 2);
    border-radius: 32px;
  }
}

.l-single__works-table table {
  max-width: 864px;
  width: 100%;
  margin: 0 auto;
  font-size: var(--font-size_s);
  color: var(--color__primary--general);
  line-height: 1.4;
}

.l-single__works-table table tr td {
  padding: 1em 0;
  border-bottom: 1px solid #fff;
}

.l-single__works-table table tr:last-of-type td {
  border-bottom: none;
}

.l-single__works-table table tr td:first-child {
  padding-right: 16px;
  font-weight: 500;
}

.l-single__works-table table .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}

.l-single__works-table table .tag-list a:before {
  content: "#";
}

.blank-link {
  width: 14px;
  height: 14px;
  fill: var(--color__primary--general);
  margin-bottom: 3px;
}

@media (any-hover: hover) {
  .l-single__works-table table a:hover {
    color: var(--color__news-closeddays--general);
  }
  .l-single__works-table table a:hover .blank-link {
    fill: var(--color__news-closeddays--general);
  }
}
/*
*
*
*
　sidebar
*
*
*
*/
.l-sidebar {
  position: relative;
  z-index: 5;
  background-color: var(--color__bg-gray);
  padding: var(--space__general);
  container-type: inline-size;
  margin-top: var(--space__contents);
}
@media (min-width: 1420px) {
  .l-sidebar {
    border-radius: 32px 0 0 32px;
    margin-top: 0;
  }
}

.l-sidebar__inner {
  position: sticky;
  top: 100px;
  max-width: 560px;
  margin-right: auto;
}
@container (min-width:560px) {
  .l-sidebar__inner {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
  }
}
@container (min-width:1024px) {
  .l-sidebar__inner {
    max-width: 85%;
  }
}

.l-sidebar__sec {
  margin-top: 32px;
}

.l-sidebar__sec-title {
  padding: 0.5em 0;
  font-weight: 500;
}

.l-sidebar__categorylist, .l-sidebar__postlist {
  border-top: 1px solid #fff;
}

.l-sidebar__categorylist li {
  width: 100%;
  color: var(--color__primary--general);
  border-bottom: 1px solid #fff;
  font-size: 16px;
  transition: var(--transition);
}

.l-sidebar__categorylist li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.5em;
}

.l-sidebar__categorylist li a .num {
  font-size: 12px;
  margin-left: 8px;
}

.l-sidebar__postlist li {
  width: 100%;
  color: var(--color__primary--general);
  border-bottom: 1px solid #fff;
  font-size: 14px;
  line-height: 1.5;
  transition: var(--transition);
}

.l-sidebar__postlist li a {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  width: calc(100% - 20px);
  margin: 0 auto;
  height: 100%;
  padding: 1em 0;
  position: relative;
}

.l-sidebar__postlist .c-arrow {
  width: 6.1px;
  height: 10.7px;
}

.l-sidebar__postlist .c-arrow::before,
.l-sidebar__postlist .c-arrow::after {
  background-color: var(--color__primary--general-50);
  width: 8px;
  height: 1.5px;
  top: calc(50% - 0.75px);
  transform-origin: calc(100% - 0.75px) 50%;
}

@media (any-hover: hover) {
  .l-sidebar__postlist li:hover, .l-sidebar__categorylist li:hover {
    background-color: var(--color__bg-gray--light);
  }
}
.l-footer {
  padding-top: var(--space__section);
  position: relative;
  z-index: 2;
  background-color: #fff;
}
@media (max-width: 500px) {
  .l-footer {
    padding-top: var(--space__contents);
  }
}

.l-footer--contents--title {
  display: grid;
  place-content: center;
  height: 100%;
  font-size: var(--font-size_xl);
  color: #fff;
}

.l-footer--contents--title h4 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size_xxl);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.l-footer--contents--title p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size_m);
}

.l-footer--contents--title .c-line {
  width: clamp(3rem, 2.592rem + 1.304vw, 3.75rem);
  height: clamp(0.5rem, 0.432rem + 0.217vw, 0.625rem);
  margin: var(--space__gap--s) auto var(--space__gap--m);
  background-color: #fff;
}

.l-footer--middle .l-footer--contents--title {
  color: var(--color__black);
}

.l-footer--middle .l-footer--contents--title .c-line {
  background-color: var(--color__primary--general);
}

/*
=============================================
l-footer--top
=============================================
*/
.l-footer--top--banner-list {
  display: grid;
  gap: calc(var(--space__general) * 0.8);
  padding-bottom: var(--space__contents);
}
@media (max-width: 500px) {
  .l-footer--top--banner-list {
    gap: calc(var(--space__general-sp) * 0.8);
  }
}

body.home .l-footer--top--banner-list {
  padding-bottom: 0;
}

.l-footer--top--banner {
  position: relative;
  height: clamp(12.5rem, 9.103rem + 10.87vw, 18.75rem);
}

@media (max-width: 1920px) {
  .l-footer--top--banner {
    margin-right: var(--space__general);
  }
}
@media (max-width: 500px) {
  .l-footer--top--banner {
    margin-right: var(--space__general-sp);
  }
}
.l-footer--top--banner:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color__bg-translucent--black);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: var(--transition);
  transform-origin: center;
}

@media (any-hover: hover) {
  .l-footer--top--banner:hover.l-footer--top--banner:after {
    width: calc(100% - var(--space__general));
    height: calc(100% - var(--space__general));
    left: calc(var(--space__general) / 2);
    top: calc(var(--space__general) / 2);
    background-color: var(--color__bg-translucent--primary-general);
  }
}
.l-footer--top--banner--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.l-footer--top--banner--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
=============================================
l-footer--middle
=============================================
*/
.l-footer--middle {
  background-color: var(--color__primary--bg);
  padding: calc(var(--space__section) * 1.6) 0 calc(var(--space__section) * 0.8);
  margin-top: calc(var(--space__section) * 0.8 * -1);
}

.l-footer--middle--banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(var(--space__gap--m) * 0.6) var(--space__gap--m);
  margin-top: var(--space__gap--m);
}
@media (max-width: 768px) {
  .l-footer--middle--banner-list {
    grid-template-columns: inherit;
    gap: var(--space__gap--m);
  }
}

.l-footer--middle--banner {
  width: 100%;
  aspect-ratio: 61/13;
  overflow: hidden;
  position: relative;
  container: inline-size;
}

@media (any-hover: hover) {
  .l-footer--middle--banner:hover .l-footer--middle--banner--mask--left {
    width: 110%;
  }
  .l-footer--middle--banner:hover .l-footer--middle--banner--mask--circle {
    right: -10px;
  }
}
.l-footer--middle--banner--mask--left {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color__primary--general);
  width: calc(100% - min(250px, 25vw));
  height: 100%;
  transition: var(--transition);
}
@media (min-width: 768px) {
  .l-footer--middle--banner--mask--left {
    width: calc(100% - min(250px, 14.06vw));
  }
}

.l-footer--middle--banner--mask--circle {
  background-color: var(--color__primary--general);
  border-radius: 100vmax;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(250px, 25vw);
  height: min(250px, 25vw);
  right: calc(min(250px, 25vw) - min(2.34vw, 30px) * 2);
  transition: var(--transition);
}
@media (min-width: 768px) {
  .l-footer--middle--banner--mask--circle {
    width: min(250px, 14.06vw);
    height: min(250px, 14.06vw);
    right: calc(min(250px, 14.06vw) - min(2.34vw, 30px) * 2);
  }
}

.l-footer--middle--banner--image {
  max-width: 250px;
  height: 100%;
  aspect-ratio: 18/13;
  margin-left: auto;
}

.l-footer--middle--banner--image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-footer--middle--banner--text {
  font-size: var(--font-size_m);
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--space__padding--m);
  z-index: 3;
}
@media (min-width: 1024px) {
  .l-footer--middle--banner--text {
    font-size: var(--font-size_ml);
  }
}
@container (min-width:360px) {
  .l-footer--middle--banner--text {
    font-size: var(--font-size_ml);
  }
}

/*
=============================================
l-footer--bottom
=============================================
*/
.l-footer--bottom {
  background-color: var(--color__primary--general);
}

.footer__gnav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - var(--space__contents));
  margin: 0 auto;
  padding: 50px 0 24px;
  gap: 0;
}
@media (min-width: 1100px) {
  .footer__gnav {
    flex-direction: row;
    align-items: self-start;
    justify-content: space-between;
    padding: clamp(16px, 3vh, 36px) 0;
  }
}

.l-footer--bottom--left {
  display: grid;
  grid-template-columns: auto;
  gap: 24px;
}
@media (min-width: 860px) {
  .l-footer--bottom--left {
    grid-template-columns: repeat(2, auto);
    gap: clamp(1.5rem, -1.357rem + 5.952vw, 4rem);
  }
}

.l-footer--bottom--right {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 600px) {
  .l-footer--bottom--right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (min-width: 820px) {
  .l-footer--bottom--right {
    margin-left: auto;
  }
}
@media (min-width: 1100px) {
  .l-footer--bottom--right {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
}

.l-footer--logo {
  display: grid;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 820px) {
  .l-footer--logo {
    gap: 0;
  }
}

.footer__logo {
  width: 220px;
  height: 63px;
  aspect-ratio: 200/57.3;
}
@media (min-width: 500px) {
  .footer__logo {
    width: 200px;
    height: 57px;
  }
}

.l-footer--bottom--menu {
  display: grid;
  grid-template-columns: repeat(2, auto);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  gap: 1em 2em;
  transition: var(--transition);
  line-height: 2;
}
@media (min-width: 620px) {
  .l-footer--bottom--menu {
    grid-template-columns: repeat(4, auto);
    gap: 0 2em;
  }
}

.l-footer--bottom--menu--title {
  font-size: 16px;
  padding-bottom: 4px;
}

.l-footer--bottom--child-menu {
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 8px;
}

.l-footer--bottom--min-menu {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.l-footer--bottom--child-menu:before {
  content: "";
  display: block;
  background-color: #fff;
  width: 8px;
  height: 1px;
}

.l-footer__copyright {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-size: var(--font-size_xxs);
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    width: calc(100% - var(--space__contents));
  }
}

.l-footer .l-header-footer__nav--tel, .l-footer .l-header-footer__nav--time {
  color: #fff;
}

.l-footer--bottom {
  background-color: var(--color__primary--general);
}

.l-footer__sns {
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 600px) {
  .l-footer__sns {
    grid-column: span 2/span 2;
    grid-row-start: 2;
  }
}
@media (min-width: 1100px) {
  .l-footer__sns {
    justify-content: flex-end;
  }
}
.l-footer__sns .sns-icon {
  display: flex;
  color: #fff;
  gap: 2px;
  font-size: 10px;
  justify-content: center;
  align-items: center;
}

.l-footer__sns-icon {
  width: 40px;
  height: 40px;
  fill: #fff;
}

/*
*
*
リクルート用
*
*
*
*/
.l-footer.recruit {
  padding-top: var(--space__contents);
}
@media (max-width: 500px) {
  .l-footer.recruit {
    padding-top: var(--space__general-sp);
  }
}

.page-template-page-recruit-interview--design .l-footer.recruit,
.page-template-page-recruit-interview--book .l-footer.recruit {
  padding-top: 0;
}

.l-footer.recruit .l-footer--bottom {
  background-color: var(--color__black);
}

.l-footer.recruit .l-footer--logo {
  gap: 8px;
}

.l-footer.recruit.l-footer--bottom--menu--item.min {
  display: flex;
  gap: 2em;
}
@media (min-width: 620px) {
  .l-footer.recruit.l-footer--bottom--menu--item.min {
    display: block;
  }
}

.c-contact__big, .c-contact__small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(20px, 6cqw, 32px);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: -4px;
  line-height: 1;
  margin-top: 0.2em;
}
.c-contact__big span, .c-contact__small span {
  font-size: var(--font-size_ss);
  margin-top: 4px;
  letter-spacing: 0;
  font-weight: 500;
}

.c-contact__big + *, .c-contact__small + * {
  margin-top: 0.3em;
}

.c-contact__big__icon {
  width: var(--font-size_ml);
  height: var(--font-size_ml);
  margin-right: calc(var(--font-size_ss) / 2);
  fill: var(--color-black);
}

.c-contact__mall {
  display: flex;
  align-items: center;
  font-size: var(--font-size_m);
  line-height: 1;
}

.c-contact__small {
  font-size: var(--font-size_m);
  line-height: 1.3;
}

.c-contact__small .small {
  margin-top: 0;
}

.c-contact__small__icon {
  width: var(--font-size_ss);
  height: var(--font-size_ss);
  margin-left: 2px;
  margin-right: 4px;
  fill: var(--color-black);
}

.c-contact__name {
  font-size: 20px;
}

.c-contact__txt__other {
  font-size: var(--font-size_s);
  line-height: 1.5;
}

.c-contact__attention {
  font-size: 12px;
  margin-top: 8px;
  padding-left: 12px;
  text-indent: -12px;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}

.snow-monkey-form {
  max-width: 1024px;
  margin: 0 auto;
  margin-top: var(--space_llll);
}

.smf-form .wp-block-preformatted a {
  text-decoration: underline;
  color: #c50505;
  fill: #c50505;
  font-weight: 500;
}

.snow-monkey-form .c-button {
  text-decoration: none !important;
  color: #fff !important;
}

.smf-progress-tracker {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .smf-progress-tracker {
    width: 60%;
  }
}

.smf-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 2em;
}

.wp-block-snow-monkey-forms-item {
  display: grid;
  grid-template-columns: auto;
  gap: 0;
}
@media (min-width: 768px) {
  .wp-block-snow-monkey-forms-item {
    grid-template-columns: 200px 1fr;
    gap: 60px;
  }
}

.smf-item__label__text {
  position: relative;
  display: inline-block;
  padding-left: 50px;
}

.smf-item:has([data-validations~=required]) .smf-item__label__text::before {
  content: "必須";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 23px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  background: #c50505;
}

.smf-item:not(:has([data-validations~=required])) .smf-item__label__text::after {
  content: "任意";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 23px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  background: #707070;
}

input::-moz-placeholder {
  opacity: 0.5;
  color: var(--color-black);
}

input::placeholder {
  opacity: 0.5;
  color: var(--color-black);
}

.smf-form .smf-checkbox-control__control {
  flex: none;
}

.smf-placeholder {
  font-size: 1.15em;
}

.smf-form .smf-text-control__control {
  max-width: 500px;
  width: 100%;
}

.smf-action {
  margin-top: 32px;
}

.smf-checkbox-control__label, .smf-radio-button-control__label {
  font-size: var(--font-size_s);
}

.smf-text-control__control, .smf-textarea-control__control {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .smf-text-control__control, .smf-textarea-control__control {
    margin-top: 0;
  }
}

.smf-error-messages {
  font-size: var(--font-size_s);
}

input::-moz-placeholder {
  font-size: var(--font-size_s);
}

input::placeholder {
  font-size: var(--font-size_s);
}

.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
  font-weight: 500;
}

.l-form_agree {
  max-width: 768px;
  margin-top: 2em;
  font-size: var(--font-size_s);
  line-height: 1.7;
}
.l-form_agree .smf-checkbox-control {
  margin-top: 1em;
}
.l-form_agree .smf-checkbox-control__label {
  font-size: var(--font-size_ml);
  font-weight: 500;
}
.l-form_agree .smf-checkbox-control__control {
  margin-top: calc(var(--font-size_ml) / 2);
}

input[type=date].smf-text-control__control {
  font-size: var(--font-size_s);
}

.form-subtitle {
  font-weight: 500;
  margin-top: 0.5em;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
}

input[type=date].smf-text-control__control {
  max-width: 500px !important;
  width: 100% !important;
  flex: 1;
  box-sizing: border-box;
}

/*
*
*
エントリー
*
*
*/
.wp-block-snow-monkey-forms-item.smf-item.entry-message {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .wp-block-snow-monkey-forms-item.smf-item.entry-message {
    margin-top: 2em;
  }
}

.entry .smf-item__controls {
  margin-top: 0.5em;
}

.entry .l-page__entry-content {
  max-width: 1024px;
}

.menu-button {
  z-index: 10001;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: grid;
  place-content: center;
  padding-top: 15px;
  height: 56px;
}

.menu-button .menu-button__line {
  position: relative;
  background-color: white;
  display: block;
  transition: all 0.2s ease-in-out;
  height: 1px;
  border-radius: 0.5px;
  width: 44px;
}

.menu-button .menu-button__line::before,
.menu-button .menu-button__line::after {
  background-color: white;
  position: absolute;
  content: "";
  transition: 0.3s ease;
  height: 1px;
  border-radius: 0.5px;
  width: 100%;
}
.menu-button .menu-button__line::before {
  top: -8px;
}

.menu-button .menu-button__line::after {
  top: 8px;
}

.menu-button[aria-expanded=true] .menu-button__line {
  top: 0px;
}

.menu-button[aria-expanded=true] .menu-button__line::before {
  top: 0px;
}

.menu-button[aria-expanded=true] .menu-button__line::after {
  top: 0;
}

.menu-button .menu-button__text {
  text-align: center;
  color: #fff;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 500;
}
/*
************************
*
メインビジュアル以外・メニューオープン時
*
************************
*/
.menu-button.is-open .menu-button__line,
.menu-button.is-open .menu-button__line::before,
.menu-button.is-open .menu-button__line::after,
.header.is-header-change .menu-button .menu-button__line,
.header.is-header-change .menu-button .menu-button__line::before,
.header.is-header-change .menu-button .menu-button__line::after {
  background-color: var(--color__primary--general);
}

.menu-button.is-open .menu-button__text,
.header.is-header-change .menu-button .menu-button__text {
  color: var(--color__primary--general);
}

@media (min-width: 1025px) {
  .header.is-header-change .menu-button {
    transform: none;
  }
}

/*
*
*
リクルート用
*
*
*
*/
.header.recruit .menu-button .menu-button__line,
.header.recruit .menu-button .menu-button__line::before,
.header.recruit .menu-button .menu-button__line::after {
  background-color: var(--color__black);
}

.header.recruit .menu-button .menu-button__text {
  color: var(--color__black);
}

button {
  border: 0;
}

/*
============================================
　メインボタン（グラデーションボタン）
============================================
*/
.c-button {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
  z-index: 0;
  gap: 8px;
  min-width: 200px;
  background: linear-gradient(90deg, var(--color__gradation--dark), var(--color__gradation--general));
  color: #fff;
  height: 48px;
  padding-right: 50px;
}
@media (min-width: 500px) {
  .c-button {
    font-size: 16px;
  }
}
@media (min-width: 500px) {
  .c-button {
    min-width: 250px;
    height: 56px;
    padding-left: 30px;
    padding-right: 60px;
  }
}

.c-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, var(--color__gradation--hover--dark), var(--color__gradation--hover--general));
  transition: opacity 0.3s;
}

.c-button__arrow {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  padding-left: 24px;
  transform: translateY(-50%);
  height: 1.4px;
  border-radius: 100vmax;
  transition: width 0.3s ease;
  background-color: #ffffff;
  width: 40px;
}
@media (min-width: 500px) {
  .c-button__arrow {
    width: 50px;
  }
}
.c-button__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.75px);
  right: 0;
  height: 1.4px;
  border-radius: 100vmax;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.7px) 50%;
  transition: right 0.3s ease, opacity 0.3s ease;
  width: 12px;
  background-color: #ffffff;
}
@media (min-width: 500px) {
  .c-button__arrow::after {
    top: calc(50% - 1px);
  }
}

@media (any-hover: hover) {
  .c-button:hover::before {
    opacity: 1;
  }
  .c-button:hover .c-button__arrow {
    width: 50px;
  }
}
@media (any-hover: hover) and (min-width: 500px) {
  .c-button:hover .c-button__arrow {
    width: 60px;
  }
}
/*
============================================
　サブボタン（1c）
============================================
*/
.c-button--sub {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
  z-index: 0;
  gap: 8px;
  min-width: 180px;
  background: #fff;
  color: var(--color__primary--general);
  height: 40px;
  padding-right: 26px;
}
@media (min-width: 500px) {
  .c-button--sub {
    font-size: 16px;
  }
}
@media (min-width: 500px) {
  .c-button--sub {
    min-width: 200px;
    height: 50px;
    padding-left: 16px;
    padding-right: 35px;
  }
}

.c-button--sub__arrow {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  padding-left: 24px;
  transform: translateY(-50%);
  height: 1.4px;
  border-radius: 100vmax;
  transition: width 0.3s ease;
  background-color: var(--color__primary--general);
  width: 16px;
}
@media (min-width: 500px) {
  .c-button--sub__arrow {
    width: 25px;
  }
}
.c-button--sub__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.75px);
  right: 0;
  height: 1.4px;
  border-radius: 100vmax;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.7px) 50%;
  transition: right 0.3s ease, opacity 0.3s ease;
  width: 12px;
  background-color: var(--color__primary--general);
}
@media (min-width: 500px) {
  .c-button--sub__arrow::after {
    top: calc(50% - 1px);
  }
}

@media (any-hover: hover) {
  .c-button--sub:hover .c-button--sub__arrow {
    width: 24px;
  }
}
@media (any-hover: hover) and (min-width: 500px) {
  .c-button--sub:hover .c-button--sub__arrow {
    width: 30px;
  }
}
/*
============================================
　カテゴリーアイコンボタン
============================================
*/
.c-category {
  display: grid;
  place-content: center;
  position: relative;
  z-index: 10;
  font-size: var(--font-size_s);
  border: 1px solid #fff;
  background-color: var(--color__bg-gray);
  color: var(--color__primary--general);
  padding: var(--space__padding--s) calc(var(--space__padding--s) * 3);
  border-radius: 100vmax;
  font-weight: 500;
}

.c-category.closed {
  color: var(--color__news-closeddays--general);
}

.c-category.activity {
  color: var(--color__news-activity--general);
}

.c-category.topics {
  color: var(--color__news-topics--general);
}

.c-link--whole {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  cursor: pointer;
}

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

.c-arrow::before,
.c-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--color__primary--general);
  transform-origin: calc(100% - 0.5px) 50%;
}

.c-arrow::before {
  transform: rotate(45deg);
}

.c-arrow::after {
  transform: rotate(-45deg);
}

.c-image-on__text--left {
  display: grid;
  place-content: center;
  width: clamp(14.063rem, 12.572rem + 6.361vw, 15.625rem);
  height: clamp(2.5rem, 2.202rem + 1.272vw, 2.813rem);
  position: absolute;
  top: initial;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: var(--color__primary--general);
  color: #fff;
  font-size: var(--font-size_ml);
  padding: 0 calc(var(--font-size_ml) / 2);
  line-height: 1;
}
@media (min-width: 768px) {
  .c-image-on__text--left {
    top: clamp(1rem, 0.686rem + 1.34vw, 1.875rem);
    left: calc(clamp(1rem, 0.686rem + 1.34vw, 1.875rem) * -1);
    width: 250px;
    height: 45px;
  }
}

.c-image-on__text--right {
  display: grid;
  place-content: center;
  width: clamp(14.063rem, 12.572rem + 6.361vw, 15.625rem);
  height: clamp(2.5rem, 2.202rem + 1.272vw, 2.813rem);
  position: absolute;
  top: initial;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: var(--color__primary--general);
  color: #fff;
  font-size: var(--font-size_ml);
  padding: 0 calc(var(--font-size_ml) / 2);
  line-height: 1;
}
@media (min-width: 768px) {
  .c-image-on__text--right {
    top: clamp(1rem, 0.686rem + 1.34vw, 1.875rem);
    left: calc(clamp(1rem, 0.686rem + 1.34vw, 1.875rem) * -1);
    width: 250px;
    height: 45px;
  }
}
@media (min-width: 768px) {
  .c-image-on__text--right {
    top: clamp(1rem, 0.686rem + 1.34vw, 1.875rem);
    left: initial;
    right: calc(clamp(1rem, 0.686rem + 1.34vw, 1.875rem) * -1);
  }
}

.c-media-block--right-image, .c-media-block--right-image-large {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  padding-top: var(--space__section);
}
@media (min-width: 768px) {
  .c-media-block--right-image, .c-media-block--right-image-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (min-width: 1420px) {
  .c-media-block--right-image, .c-media-block--right-image-large {
    grid-template-columns: 674px 1fr;
  }
}

.c-media-block--right-image-large {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .c-media-block--right-image-large {
    padding-bottom: clamp(3.438rem, 0.125rem + 6.902vw, 6.25rem);
  }
}

.sec-5 .c-media-block--right-image-large:first-of-type {
  margin-top: var(--space__section);
}

.c-media-block--left-image {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  padding-top: var(--space__section);
  flex-direction: column;
}
@media (min-width: 768px) {
  .c-media-block--left-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (min-width: 1420px) {
  .c-media-block--left-image {
    grid-template-columns: 1fr 674px;
  }
}

.c-media-block--imagebox {
  position: relative;
  height: 100%;
}

.c-media-block--imagebox img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}

.c-media-block--image,
.c-media-block--textbox--title {
  will-change: filter, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.c-media-block--textbox {
  padding: 0 var(--space__general-sp);
  padding-top: 8px;
}
@media (min-width: 500px) {
  .c-media-block--textbox {
    padding: 0 var(--space__general);
  }
}
@media (min-width: 768px) {
  .c-media-block--textbox {
    padding: 0;
  }
}

.c-media-block--text--not-ka {
  margin-top: 0 !important;
}
@media (min-width: 768px) {
  .c-media-block--text--not-ka {
    margin-top: 0 !important;
  }
}

.c-media-block--contents {
  margin-left: clamp(3.75rem, 0.172rem + 15.267vw, 7.5rem);
  display: grid;
  gap: 16px;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .c-media-block--contents {
    margin-left: clamp(4rem, -0.123rem + 8.589vw, 7.5rem);
  }
}

.c-media-block--text, .c-media-block--text--not-ka {
  margin-top: calc(clamp(2rem, -0.5rem + 6.107vw, 4rem) * -1);
  position: relative;
  z-index: 2;
}
@container (min-width:350px) {
  .c-media-block--text, .c-media-block--text--not-ka {
    margin-top: calc(clamp(3.75rem, 0.2rem + 8.267vw, 6rem) * -1);
  }
}

.c-media-block--imagebox--image {
  width: calc(100% - var(--space__general-sp));
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-left: auto;
}
@media (min-width: 500px) {
  .c-media-block--imagebox--image {
    width: calc(100% - var(--space__general));
  }
}
@media (min-width: 768px) {
  .c-media-block--imagebox--image {
    margin: 0;
    width: 100%;
  }
}

.c-media-block--left-image .c-media-block--imagebox--image {
  margin-left: 0;
}

.c-media-block--textbox--title.t-1, .c-media-block--textbox--title.t-3 {
  max-width: 674px;
}

.c-media-block--textbox--title.t-2 {
  padding-right: 0;
  width: 75%;
}
@media (min-width: 768px) {
  .c-media-block--textbox--title.t-2 {
    max-width: 500px;
  }
}

.c-media-block--textbox--title.t-3 {
  padding-right: 0;
  width: 90%;
  margin-right: auto;
}
@media (min-width: 768px) {
  .c-media-block--textbox--title.t-3 {
    padding-right: 48px;
  }
}

[class*=swiper]:focus {
  outline: none;
}

.c-works-header_swiper .slide {
  position: relative;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slide-media--overray {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: var(--color__bg-translucent--black);
}

.c-works-header_swiper .l-inner {
  padding-bottom: 0;
}

.c-works-header_swiper .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.c-works-header_swiper .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.c-works-header_swiper .swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  z-index: 1;
  top: clamp(1rem, 0.296rem + 2.254vw, 3rem);
  bottom: 0;
  right: clamp(1rem, 0.296rem + 2.254vw, 3rem);
  height: -moz-max-content;
  height: max-content;
  margin-bottom: auto;
}

.c-works-header_swiper .swiper-pagination-bullet {
  display: block;
  width: clamp(0.5rem, 0.377rem + 0.525vw, 1rem);
  height: clamp(0.5rem, 0.377rem + 0.525vw, 1rem);
  border-radius: 100vmax;
  cursor: pointer;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
  outline: none;
}

.c-works-header_swiper .swiper-pagination-bullet:not(:first-child) {
  margin-top: 0.8rem;
}

.c-works-header_swiper .swiper-pagination-bullet-active {
  background-color: var(--color__gradation--dark);
}

.c-works-header_swiper .slide-media {
  height: clamp(15.625rem, 11.783rem + 16.393vw, 31.25rem);
}

.c-works-header_swiper .slide-media img {
  transition: 7s 1s ease-out;
}

.c-works-header_swiper .swiper-slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.05);
}

.c-works-header_swiper .swiper-slide[class*=-active] .c-works-header_swiper__title-container {
  animation: c-works-header_swiper-fadeIn 2s 0.5s var(--easing) both;
}
@keyframes c-works-header_swiper-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.slide {
  width: 100%;
  position: relative;
}

.c-works-header_swiper__title-container {
  position: absolute;
  z-index: 10;
  bottom: 0px;
  left: 0;
  right: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 calc(clamp(1rem, 0.296rem + 2.254vw, 3rem) + 8px) clamp(3rem, 1.768rem + 3.944vw, 6.5rem) calc(clamp(1rem, 0.296rem + 2.254vw, 3rem) + 8px);
  color: #fff;
  text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.4);
  font-feature-settings: "palt";
}

.c-works-header_swiper__title {
  position: relative;
  font-size: var(--font-size_xl);
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 500px) {
  .c-works-header_swiper__title {
    font-size: calc(var(--font-size_lg) * 0.8);
  }
}

.c-works-header_swiper__subtitle {
  margin: 0;
  font-size: calc(var(--font-size_lg) * 0.8);
  font-weight: 400;
}
@media (max-width: 500px) {
  .c-works-header_swiper__subtitle {
    font-size: var(--font-size_m);
  }
}

.c-works-header_swiper__subtitle:after {
  content: "";
  display: block;
  background-color: #fff;
  width: clamp(2.5rem, 2.06rem + 1.408vw, 3.75rem);
  height: clamp(0.375rem, 0.287rem + 0.282vw, 0.625rem);
  margin: calc(clamp(0.375rem, 0.287rem + 0.282vw, 0.625rem) * 1.5) 0 calc(clamp(0.375rem, 0.287rem + 0.282vw, 0.625rem) * 2) 0;
}

:root {
  --bg-hover: #eee;
  --bg: #fff;
  --border: #ccc;
  --border-true: rgb(36 116 214);
  --border-hover: rgb(36 116 214);
}

[role=tab]:focus,
[role=tab]:hover {
  background-color: var(--bg-hover);
}

[role=tabpanel] {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
}

[role=tabpanel] * {
  display: none;
}

[role=tabpanel].is-active {
  visibility: visible;
  opacity: 1;
  width: 100%;
  overflow: auto;
  max-height: none;
}

[role=tabpanel].is-active * {
  display: block;
}

[role=tabpanel] p {
  margin: 0;
}

.iframeWrap {
  position: relative;
  height: 0;
  overflow: hidden;
  margin-top: 0.5em;
  padding-bottom: 100%;
}
@media (min-width: 500px) {
  .iframeWrap {
    padding-bottom: 66.66%;
  }
}
@media (min-width: 1024px) {
  .iframeWrap {
    padding-bottom: 40%; /* デフォルト：16:9 */
  }
}

.iframeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-works-tabs {
  position: relative;
}

.c-works__pagenation {
  position: absolute;
  bottom: -150px;
  left: 0;
  height: 80px;
}

.navigation.pagination {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.page-numbers {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border: 1px solid var(--color__primary--general);
  color: var(--color__primary--general);
}
@media (max-width: 500px) {
  .page-numbers {
    width: 30px;
    height: 30px;
  }
}

.page-numbers.current {
  background-color: var(--color__primary--general);
  border: 1px solid var(--color__primary--general);
  color: #fff;
}

.page-numbers.dots {
  border: none;
  padding-bottom: 8px;
}

.next.page-numbers {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 14px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 16px;
  right: 0;
}
@media (max-width: 500px) {
  .next.page-numbers {
    gap: 8px;
  }
}

.prev.page-numbers {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 14px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 16px;
  left: 0;
}
@media (max-width: 500px) {
  .prev.page-numbers {
    gap: 8px;
  }
}

.next.page-numbers:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 16px;
  background-image: url("../images/common/arrow_pagenation.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.prev.page-numbers:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 16px;
  background-image: url("../images/common/arrow_pagenation.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
}

@media (any-hover: hover) {
  .page-numbers:not(.current, .next, .prev, .dots):hover {
    color: #fff;
    background-color: var(--color__gradation--dark);
    border: 1px solid var(--color__gradation--dark);
  }
}
.c-works-tabs [role=tablist] {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: calc(clamp(3.125rem, 2.465rem + 2.113vw, 5rem) / 2 * -1);
}

@media (min-width: 768px) {
  .c-works-tabs [role=tablist] {
    gap: var(--space__gap--m);
  }
}
@media (max-width: 769px) {
  .c-works-tabs [role=tablist] {
    gap: var(--space__gap--s);
  }
}
.c-works-tabs [role=tabpanel] {
  overflow-y: hidden;
}

.c-works-tabs [role=tab] {
  flex: 1 1 0%;
  position: relative;
  z-index: 2;
  top: 2px;
  border: 0;
  background-color: var(--color__gray--dark);
  color: #fff;
  outline: none;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  font-weight: 400;
  height: clamp(3.125rem, 2.465rem + 2.113vw, 5rem);
  font-size: var(--font-size_s);
}

.c-works-tabs [role=tab][aria-selected=true] {
  background-color: var(--color__primary--general);
}

.c-works-tabs [role=tab] span.focus {
  display: inline-block;
}

.c-works-tabs__tabpanel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space__gap--m);
  min-height: 0;
}
@media (min-width: 768px) {
  .c-works-tabs__tabpanel {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-works-tabs [role=tabpanel].is-active {
  padding-top: var(--space__gap--m);
}

@media (min-width: 768px) {
  .c-works-tabs__works-item.is-hidden-sp {
    display: block;
  }
}
@media (max-width: 769px) {
  .c-works-tabs__works-item.is-hidden-sp {
    display: none;
  }
}
.c-works-tabs__works-thumb {
  aspect-ratio: 48/30;
  overflow: hidden;
  position: relative;
}

.c-works-tabs__works-thumb:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color__bg-translucent--black);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.c-works-tabs__works-thumb--hover {
  display: grid;
  place-content: center;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
  letter-spacing: 0.2em;
}

.c-works-tabs__works-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: center;
     object-fit: center;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .c-works-tabs__works-thumb:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .c-works-tabs__works-thumb:hover .c-works-tabs__works-thumb--hover {
    opacity: 1;
    visibility: visible;
  }
  .c-works-tabs__works-thumb:hover img {
    scale: 1.05;
  }
}
.c-works-tabs__works-item .c-works-tabs__works-thumb--caption {
  display: block;
  width: 100%;
  padding: 0 0.5em;
  margin: 0.3em auto 0;
}

.c-works-tabs__works-thumb--caption--client {
  font-size: var(--font-size_xs) !important;
  color: var(--color__gray--dark) !important;
  line-height: 1.3 !important;
  margin: 0.5em 0 0.3em 0 !important;
}

.c-works-tabs__works-thumb--caption--title {
  font-size: var(--font-size_s);
  font-weight: 500;
  line-height: 1.3;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}

.l-recruit__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space__general);
}
@media (max-width: 500px) {
  .l-recruit__aside {
    gap: var(--space__general-sp);
  }
}

.l-recruit__aside.interview {
  padding: calc(var(--space__contents) * 1.5) 0;
  margin-top: calc(var(--space__contents) * 1.5);
}

.l-recruit__aside.interview.design {
  background-color: var(--color__recruit--red);
}

.l-recruit__aside.interview.book {
  background-color: var(--color__recruit--blue);
}

.l-recruit__aside.interview.design .l-footer--contents--title {
  color: var(--color__recruit--red);
}

.l-recruit__aside.interview.book .l-footer--contents--title {
  color: var(--color__recruit--blue);
}

.l-recruit__aside.interview .l-footer--contents--title p {
  color: var(--color__black);
}

.l-recruit__aside.interview .l-footer--top--banner:after {
  content: none;
}

.u-recruit-banner__margin-minus {
  margin-top: calc(clamp(6.25rem, 3.216rem + 12.945vw, 18.75rem) / 2 * -1);
}

.l-recruit__banner {
  display: flex;
  flex-direction: column;
  gap: var(--space__general);
}
@media (max-width: 500px) {
  .l-recruit__banner {
    gap: var(--space__general-sp);
  }
}

.l-recruit__aside--description .l-recruit__banner {
  gap: clamp(24px, 3vw, 32px);
}
@media (max-width: 500px) {
  .l-recruit__aside--description .l-recruit__banner {
    gap: var(--space__general-sp);
  }
}

.l-recruit__banner li {
  width: clamp(20.938rem, 1.444rem + 83.172vw, 101.25rem);
  height: clamp(6.25rem, 3.216rem + 12.945vw, 18.75rem);
  overflow: hidden;
}
@media (max-width: 500px) {
  .l-recruit__banner li {
    width: calc(100% - var(--space__general-sp));
  }
}

.l-recruit__aside.interview .l-recruit__banner li {
  background-color: #fff;
  height: clamp(6rem, 4.422rem + 6.731vw, 12.5rem);
  transition: 0.3s;
}

.l-recruit__banner li.left {
  border-radius: 0 16px 16px 0;
}
@media (max-width: 500px) {
  .l-recruit__banner li.left {
    border-radius: 0 8px 8px 0;
  }
}

.l-recruit__banner li.right {
  margin-right: 0;
  margin-left: auto;
  border-radius: 16px 0 0 16px;
}
@media (max-width: 500px) {
  .l-recruit__banner li.right {
    border-radius: 8px 0 0 8px;
  }
}

.l-recruit__banner .l-footer--contents--title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-recruit__banner li:nth-of-type(even) .l-footer--contents--title {
  flex-direction: row-reverse;
}

.l-recruit__aside.interview .l-recruit__banner li:nth-of-type(even) .l-footer--contents--title,
.l-recruit__aside--description .l-recruit__banner li:nth-of-type(even) .l-footer--contents--title {
  flex-direction: row;
}

.l-recruit__banner .l-footer--contents--title h4, .l-recruit__banner .l-footer--contents--title p {
  margin: 0;
}

.l-recruit__banner .l-footer--contents--title h4 {
  font-size: calc(var(--font-size_xxxl) * 0.7);
}

.l-recruit__aside--description .l-recruit__banner .l-footer--contents--title h4 {
  font-size: calc(var(--font-size_xxxl) * 0.5);
}

.l-recruit__banner .l-footer--contents--title p {
  font-size: var(--font-size_ml);
  letter-spacing: 0.1em;
}
@media (max-width: 500px) {
  .l-recruit__banner .l-footer--contents--title p {
    font-size: var(--font-size_sm);
  }
}

@media (any-hover: hover) {
  .l-recruit__banner .l-footer--top--banner:hover.l-footer--top--banner:after {
    background-color: var(--color__bg-translucent--recruit-banner);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .l-recruit__aside.interview .l-recruit__banner li:hover {
    background-color: var(--color__accent-light);
  }
}
/*
*
*
エントリー
*
*
*/
.l-recruit__home-entry {
  padding-top: var(--space__contents);
}

/*
*
*
募集要項
*
*
*/
.l-recruit__banner .design, .l-recruit__banner .book {
  position: relative;
}

.l-recruit__aside--description .l-recruit__banner .design {
  background-color: var(--color__recruit--red);
  transition: var(--transition);
}

.l-recruit__aside--description .l-recruit__banner .book {
  background-color: var(--color__recruit--blue);
  transition: var(--transition);
}

.l-recruit__aside--description .l-recruit__banner li {
  width: 100%;
  height: clamp(4rem, 3em + 8vw, 10rem);
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
}
@media (max-width: 500px) {
  .l-recruit__aside--description .l-recruit__banner li {
    border-radius: 8px;
  }
}

.l-recruit__aside--description .l-footer--top--banner:after {
  content: none;
}

@media (any-hover: hover) {
  .l-recruit__aside--description .l-recruit__banner .design:hover {
    background-color: var(--color__recruit--red--hover);
  }
  .l-recruit__aside--description .l-recruit__banner .book:hover {
    background-color: var(--color__recruit--blue--hover);
  }
}
.u-color__white {
  color: #fff !important;
}

.u-color_primary--bg {
  background: var(--color__primary--bg);
}

.u-color_white--bg {
  background: #fff;
}

.u-typography__size110 {
  font-size: 1.1em !important;
}

.u-typography__size80 {
  font-size: 0.8em !important;
}

.u-typography-combine {
  text-combine-upright: all;
}

.u-tabular-num {
  font-variant-numeric: tabular-nums;
}

.u-margin__minus100 {
  margin-top: calc(clamp(16px, 6.58vw, 100px) * -1);
}

.u-margin__top-contents {
  margin-top: var(--space__contents);
}

.u-margin__top-4px {
  margin-top: 4px;
}

.u-margin__none {
  margin: 0 !important;
}

.u-padding__left16 {
  padding-left: 16px;
}

.u-padding__bottom-70 {
  padding-bottom: var(--wp--preset--spacing--70);
}

.u-place__center {
  display: grid;
  place-content: center;
}

.u-float__left {
  float: left;
  padding-right: 1em;
}

.u-float__right {
  float: right;
  padding-left: 1em;
}

.u-float__clear {
  clear: both;
}

.u-float__clear::after {
  content: "";
  display: block;
  clear: both;
}

.u-boxshadow {
  box-shadow: var(--box-shadow);
}

@media (max-width: 1200px) {
  .u-max-width-1200__none {
    display: none !important;
  }
}

.u-br__1024 {
  display: block;
}
@media (min-width: 1024px) {
  .u-br__1024 {
    display: none;
  }
}

.u-br__768 {
  display: block;
}
@media (min-width: 768px) {
  .u-br__768 {
    display: none;
  }
}

.u-br__450 {
  display: block;
}
@media (min-width: 450px) {
  .u-br__450 {
    display: none;
  }
}

/* マーカーのスタイル */
.u-marker {
  background-image: linear-gradient(90deg, var(--color__accent-light), var(--color__accent-light));
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 0.7em;
  padding-bottom: 3px;
  transition: background-size 1.5s;
  font-weight: 500;
}

/* マーカーが表示された時のスタイル */
.u-marker.active {
  background-size: 100% 0.7em;
}/*# sourceMappingURL=common.css.map */