@charset "UTF-8";
/*! kiso.css v1.2.4 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}
/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;

  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;

  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;

  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;

  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;

  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;

  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;

  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}
:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;

  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}
/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}
:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}
/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}
:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}
:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;

  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}
:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}
:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;

  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}
@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}
:where(:is(i, cite, em, dfn):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;

  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;

  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}
:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}
:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}
@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}
:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;

  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;

  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}
:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}
:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}
/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}
:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}
:where(caption:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;

  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}
:where(input:is([type="radio" i], [type="checkbox" i])) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}
:where(input[type="file" i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}
:where(input[type="search" i]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}
@supports (-webkit-touch-callout: none) {
  :where(input[type="search" i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(
    input:is(
        [type="tel" i],
        [type="url" i],
        [type="email" i],
        [type="number" i]
      ):not(:placeholder-shown)
  ) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;

  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}
:where(
    input:not([type="button" i], [type="submit" i], [type="reset" i]),
    textarea,
    [contenteditable]
  ) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}
:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i])
  ),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}
:where(
    button,
    input:is([type="button" i], [type="submit" i], [type="reset" i]),
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}
:where(
    button:enabled,
    label[for],
    select:enabled,
    input:is(
        [type="button" i],
        [type="submit" i],
        [type="reset" i],
        [type="radio" i],
        [type="checkbox" i]
      ):enabled,
    [role="tab" i],
    [role="button" i],
    [role="option" i]
  ),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}
:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;

  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}
:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}
:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}
::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}
/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";

  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}
:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}
:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;

  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}
:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}
:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}
:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 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;
}
:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}
:where(p) {
  margin: 0;
}
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner */
  --inner: min(1200px, 100%);
  --inner-sp: min(500px, 100%);
  --padding-inner: 25px;
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #fff;
  --color-text: #0d2936;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #234f5e;
  --color-secondary: #00f;
  --color-orange: #f57c00;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --title-font-family: "Lato", sans-serif;
  --label-font-family: "Patrick Hand", cursive;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 64px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 80px;
    --padding-inner: 25px;
  }
}
html {
  font-size: 16px;
  overflow-x: hidden;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(16px, 4.266vw, 28px);
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
a[href^=tel] {
  text-decoration: none;
}
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}
img,
svg {
  vertical-align: middle;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}
:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}
:focus:not(:focus-visible) {
  outline: none;
}
input[type=text] {
  font-size: 1rem;
}
textarea {
  field-sizing: content;
}
body {
  color: var(--color-text);
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
}
body.is-loading {
  opacity: 0;
}
body.is-loaded {
  opacity: 1;
  transition: opacity 0.15s ease;
}
body.is-leaving {
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.l-inner {
  max-width: calc(var(--inner-sp) + var(--padding-inner) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-inner);
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: calc(var(--inner) + var(--padding-inner) * 2);
  }
}
.l-main {
  margin-block-start: var(--header-height);
}
.c-button {
  position: relative;
  display: inline-block;
  padding: 0.875rem 3.75rem;
  border: 1px solid currentcolor;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  translate: 0 -50%;
  rotate: 45deg;
  transition: rotate 0.3s, translate 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.7;
  }
  .c-button:hover::before {
    translate: 5px -50%;
  }
}
.c-button[data-color=black] {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-button[data-color=black]::before {
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}
/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-archive__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_pagination-* を設定する
 *   - 親の CSS ファイルに c-pagination のクラス名は書かない（コンポーネントのカプセル化）
 *
 * 上書き可能な変数: --_pagination-bg, --_pagination-text, --_pagination-text-hover,
 *   --_pagination-bg-hover, --_pagination-active-bg, --_pagination-active-text,
 *   --_pagination-border, --_pagination-border-hover
 */
.c-pagination {
  /* 色（ローカル変数。親の wrapper で上書き可能） */
  --_pagination-bg: var(--color-white, #fff);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: #374151;
  --_pagination-bg-hover: #f9fafb;
  --_pagination-active-bg: var(--color-black, #000);
  --_pagination-active-text: var(--color-white, #fff);
  --_pagination-border: #d1d5db;
  --_pagination-border-hover: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  min-width: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--_pagination-border);
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    height: 2.75rem;
    min-width: 2.75rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]) {
    border-color: var(--_pagination-border-hover);
    background-color: var(--_pagination-bg-hover);
    color: var(--_pagination-text-hover);
  }
}
.c-pagination__item[data-state=current] {
  border-color: var(--_pagination-active-bg);
  background-color: var(--_pagination-active-bg);
  color: var(--_pagination-active-text);
}
.c-pagination__item[data-state=dots] {
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
.c-pagination__item[data-state=dots]:hover {
  border-color: transparent;
  background-color: transparent;
}
.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  font-weight: var(--fw-medium, 500);
}
.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=disabled]:hover {
    border-color: var(--_pagination-border);
    background-color: var(--_pagination-bg);
    color: var(--_pagination-text);
  }
}
.c-section-title {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  width: max-content;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    gap: 0.75rem;
  }
}
.c-section-title[data-align=center] {
  justify-items: center;
  text-align: center;
}
.c-section-title[data-align=left] {
  justify-items: start;
  text-align: left;
}
.c-section-title[data-align=right] {
  justify-items: end;
  text-align: right;
}
.c-section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 0.1875rem;
  background-color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .c-section-title::after {
    width: 80%;
  }
}
.c-section-title__main {
  color: blue;
  font-family: var(--title-font-family);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: 3rem;
  }
}
.c-section-title__sub {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: 1rem;
  }
}
.c-triangle {
  display: inline-block;
  width: 4rem;
  aspect-ratio: 1/1;
  background-color: var(--color-black);
}
.c-triangle[data-direction=top] {
  clip-path: var(--clip-triangle-top);
}
.c-triangle[data-direction=bottom] {
  clip-path: var(--clip-triangle-bottom);
}
.c-triangle[data-direction=left] {
  clip-path: var(--clip-triangle-left);
}
.c-triangle[data-direction=right] {
  clip-path: var(--clip-triangle-right);
}
.c-triangle[data-direction=lower-left] {
  clip-path: var(--clip-triangle-lower-left);
}
.c-triangle[data-direction=upper-left] {
  clip-path: var(--clip-triangle-upper-left);
}
.c-triangle[data-direction=lower-right] {
  clip-path: var(--clip-triangle-lower-right);
}
.c-triangle[data-direction=upper-right] {
  clip-path: var(--clip-triangle-upper-right);
}
.p-about {
  position: relative;
  padding-block: 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 3.75rem;
  }
}
.p-about__bg-wrap {
  max-width: 114.375rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__bg-wrap {
    padding-inline: 1.25rem;
  }
}
.p-about__bg-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0rem;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-about__bg-wrap::before {
    left: -1.875rem;
    top: 20%;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-about__inner {
  width: 100%;
  max-width: 80rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-inline: 0rem;
  }
}
.p-about__label {
  width: 6.5rem;
  height: 1.125rem;
  margin-inline: auto;
}
.p-about__label img {
  display: inline-block;
  display: block;
  height: 100%;
  width: auto;
}
.p-about__title {
  margin-block-start: 2.1875rem;
  text-align: center;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-about__lead {
  margin-block-start: 2.1875rem;
  margin-inline: auto;
  max-width: 43.75rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-about__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-about__content {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-block-start: 6rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    flex-direction: column;
    margin-block-start: 3.125rem;
    gap: 2.5rem;
  }
}
.p-about__detail {
  flex: 0 0 33.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__detail {
    flex: none;
    width: 100%;
  }
}
.p-about__detailTitle {
  font-weight: var(--fw-medium);
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-about__detailTitle {
    font-size: 1.125rem;
  }
}
.p-about__detailText {
  margin-block-start: 3.625rem;
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-about__detailText {
    margin-block-start: 1.875rem;
    font-size: 0.875rem;
  }
}
.p-about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
  margin-block-start: 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__tags {
    margin-block-start: 1.875rem;
  }
}
.p-about__tag {
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border: 0.0625rem solid #f68b1e;
  border-radius: 1.25rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #f68b1e;
  background-color: #fef5ee;
}
.p-about__image {
  flex: 1;
  height: 31.25rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-about__image {
    width: 100%;
    height: 17.5rem;
  }
}
.p-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-access {
  padding-block: 6.25rem 10.375rem;
  background-color: #fff8f5;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-block: 3.75rem;
  }
}
.p-access__inner {
  max-width: 88.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    padding-inline: 1.25rem;
  }
}
.p-access__label {
  text-align: center;
  height: 1.125rem;
}
.p-access__label img {
  display: inline-block;
}
.p-access__title {
  margin-block-start: 2.1875rem;
  text-align: center;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-access__lead {
  margin-block-start: 2.1875rem;
  text-align: center;
  margin-inline: auto;
  max-width: 43.75rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-access__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-access__locations {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6875rem;
}
@media screen and (max-width: 1200px) {
  .p-access__locations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-access__locations {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-block-start: 2.5rem;
  }
}
.p-access__location {
  display: flex;
  flex-direction: column;
  gap: 5.75rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-access__location {
    gap: 1.5rem;
  }
}
.p-access__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-access__locationName {
  font-weight: var(--fw-medium);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-access__locationName {
    font-size: 1.125rem;
  }
}
.p-access__details {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-access__details {
    gap: 1.25rem;
    margin-block-start: 1.25rem;
  }
}
.p-access__detailItem {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.p-access__detailTerm {
  font-weight: var(--fw-bold);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-access__detailTerm {
    font-size: 0.875rem;
  }
}
.p-access__detailData {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.1111em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-access__detailData {
    font-size: 0.8125rem;
  }
}
.p-access__detailData span {
  color: #00E;
}
.p-access__map {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.p-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    aspect-ratio: 4/3;
  }
}
.p-appeal {
  position: relative;
  padding-block: 6.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-appeal {
    padding-block: 3.75rem;
  }
}
.p-appeal__bg-wrap {
  position: relative;
  max-width: 103.25rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-appeal__bg-wrap {
    padding-inline: 1.25rem;
  }
}
.p-appeal__bg-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url("../mikan-orange-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-appeal__bg-wrap::after {
    right: -1.875rem;
    top: 20%;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-appeal__inner {
  max-width: 75.5rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  text-align: center;
}
.p-appeal__label {
  display: inline-block;
  height: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-appeal__label {
    height: 1.375rem;
  }
}
.p-appeal__title {
  margin-block-start: 2.1875rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-appeal__title {
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-appeal__lead {
  margin-block-start: 2.1875rem;
  margin-inline: auto;
  max-width: 43.75rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-appeal__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-appeal__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-block-start: 4.875rem;
  padding: 0;
  list-style: none;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .p-appeal__list {
    gap: 5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-appeal__list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-block-start: 2.5rem;
  }
}
.p-appeal__item {
  display: flex;
  gap: 1.875rem;
  max-width: 34.125rem;
}
@media screen and (max-width: 767px) {
  .p-appeal__item {
    max-width: 100%;
    gap: 1.25rem;
  }
}
.p-appeal__itemNum {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #f68b1e;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #ffffff;
}
.p-appeal__itemBody {
  flex: 1;
}
.p-appeal__itemTitle {
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.1111em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-appeal__itemTitle {
    font-size: 1rem;
  }
}
.p-appeal__itemText {
  margin-block-start: 0.9375rem;
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.1538em;
  color: #666666;
}
.p-archive {
  padding-block: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive {
    padding-block: 5rem;
  }
}
.p-archive__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}
.p-archive__header {
  margin-block-end: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__header {
    margin-block-end: 3.75rem;
  }
}
.p-archive__title {
  margin-block-end: 1rem;
}
@media screen and (max-width: 767px) {
  .p-archive__title {
    margin-block-end: 1.5rem;
  }
}
.p-archive__description {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__description {
    margin-block-start: 1.5rem;
    font-size: 1rem;
  }
}
.p-archive__list {
  display: grid;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-archive__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  background-color: var(--color-white);
  text-decoration: none;
  transition: translate 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-archive__link {
    padding: 1.25rem;
  }
}
@media (any-hover: hover) {
  .p-archive__link:hover {
    box-shadow: 0 8px 24px oklch(from var(--color-black) l c h/10%);
    translate: 0 calc(-4 * var(--to-rem));
  }
}
.p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-archive__thumbnail {
    margin-block-end: 1.25rem;
  }
}
.p-archive__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}
@media (any-hover: hover) {
  .p-archive__link:hover .p-archive__thumbnail img {
    scale: 1.05;
  }
}
.p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
}
.p-archive__item-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-archive__item-title {
    font-size: 1.25rem;
  }
}
.p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  color: var(--color-text);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-archive__meta {
    font-size: 0.875rem;
  }
}
.p-archive__date {
  display: inline-block;
}
.p-archive__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-archive__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-archive__category {
    font-size: 0.75rem;
  }
}
.p-archive__excerpt {
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__excerpt {
    font-size: 1rem;
  }
}
.p-archive__pagination {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-archive__pagination {
    margin-block-start: 3.75rem;
  }
}
.p-archive__empty {
  padding-block: 3.75rem;
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__empty {
    padding-block: 5rem;
    font-size: 1.125rem;
  }
}
.p-single__back {
  margin-block-start: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single__back {
    margin-block-start: 3.75rem;
  }
}
.p-archive--works .p-archive__link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0.125rem 0.5rem oklch(from var(--color-black) l c h/8%);
  background-color: var(--color-white);
  text-decoration: none;
}
.p-archive--works .p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: 0;
  border-radius: 12px 12px 0 0;
}
.p-archive--works .p-archive__thumbnail img {
  transition: scale 0.5s ease;
}
@media (any-hover: hover) {
  .p-archive--works .p-archive__link:has(.p-archive__thumbnail):hover .p-archive__thumbnail img {
    scale: 1.1;
  }
}
.p-archive--works .p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}
.p-archive--works .p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-block-end: 0.5rem;
  color: var(--color-text);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__meta {
    font-size: 0.875rem;
  }
}
.p-archive--works .p-archive__date {
  display: inline-block;
}
.p-archive--works .p-archive__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__category {
    font-size: 0.75rem;
  }
}
.p-archive--works .p-archive__item-title {
  margin: 0;
  margin-block-end: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__item-title {
    margin-block-end: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
.p-archive--works .p-archive__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-block-start: 0;
  color: var(--color-text);
  font-size: 0.8125rem;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__excerpt {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-archive--works .p-archive__client,
.p-archive--works .p-archive__period {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-text);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__client,
  .p-archive--works .p-archive__period {
    font-size: 0.875rem;
  }
}
.p-archive--works .p-archive__client-label,
.p-archive--works .p-archive__period-label {
  font-weight: var(--fw-medium);
}
.p-archive--works .p-archive__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 0.75rem;
}
.p-archive--works .p-archive__technology {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__technology {
    font-size: 0.75rem;
  }
}
.p-ashirai {
  width: 12.5rem;
  height: 12.5rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.p-ashirai img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-ashirai {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-ashirai--mv {
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-ashirai--mv {
    right: -1.875rem;
    top: auto;
    bottom: -2.5rem;
    transform: none;
  }
}
.p-ashirai--about {
  position: absolute;
  top: 0;
  left: 0rem;
}
@media screen and (max-width: 767px) {
  .p-ashirai--about {
    left: -1.875rem;
    top: 20%;
  }
}
.p-ashirai--facility {
  left: -3.75rem;
  top: 30%;
}
@media screen and (max-width: 767px) {
  .p-ashirai--facility {
    left: -1.875rem;
    top: 20%;
  }
}
.p-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-card-list {
    gap: 2rem;
  }
}
.p-contact__complete {
  padding-block: 5rem;
  text-align: center;
}
.p-contact__complete-title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-contact__complete-title {
    font-size: 2.5rem;
  }
}
.p-contact__complete-text {
  margin-block-start: 1.875rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-contact__complete-text {
    font-size: 1.125rem;
  }
}
.p-contact__complete-button {
  margin-block-start: 3.125rem;
  margin-inline: auto;
}
.p-contact {
  padding-block: 4.5rem;
}
.p-contact__form {
  margin-block-start: 4rem;
}
.p-contact__title {
  display: grid;
  place-items: center;
}
.p-cta {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 3.75rem;
  }
}
.p-cta__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: 88.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
.p-cta__bg-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12.5rem;
  height: 12.5rem;
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-cta__bg-wrap::before {
    left: -1.875rem;
    top: auto;
    bottom: 0rem;
    transform: none;
    width: 7.5rem;
    height: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__bg-wrap {
    padding-inline: 1.25rem;
  }
}
.p-cta__inner {
  max-width: 52.5rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  text-align: center;
}
.p-cta__title {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.375rem;
  }
}
.p-cta__lead {
  margin-block-start: 2.1875rem;
  margin-inline: auto;
  max-width: 43.75rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-cta__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-block-start: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-cta__buttons {
    flex-direction: column;
    align-items: center;
    margin-block-start: 3rem;
    gap: 1rem;
  }
}
.p-cta__btn {
  display: inline-block;
  padding-block: 1.1875rem;
  padding-inline: 3.75rem;
  border-radius: 62.4375rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  white-space: nowrap;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    padding-inline: 2.5rem;
    font-size: 0.9375rem;
    width: 100%;
    max-width: 20rem;
  }
}
.p-cta__btn--apply {
  background-color: #ffffff;
  border: 2px solid #f68b1e;
  color: #f68b1e;
}
.p-cta__btn--line {
  background-color: #06c755;
  border: 2px solid #06c755;
  color: #ffffff;
}
@media (any-hover: hover) {
  .p-cta__btn--apply:hover {
    background-color: #f68b1e;
    color: #ffffff;
  }
  .p-cta__btn--line:hover {
    background-color: #ffffff;
    color: #06c755;
  }
}
.p-dev-notice {
  padding-block: 1.5rem;
  background-color: #fff3cd;
}
@media screen and (max-width: 767px) {
  .p-dev-notice {
    padding-block: 2rem;
  }
}
.p-dev-notice__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}
.p-dev-notice__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__content {
    gap: 1.25rem;
    font-size: 1rem;
  }
}
.p-dev-notice__title {
  color: red;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__title {
    font-size: 1.25rem;
  }
}
.p-dev-notice__text code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__text code {
    font-size: 0.875rem;
  }
}
.p-dev-notice__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding-inline-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__list {
    gap: 1rem;
    padding-inline-start: 2rem;
  }
}
.p-dev-notice__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.8;
}
.p-dev-notice__item strong {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}
.p-dev-notice__item code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__item code {
    font-size: 0.875rem;
  }
}
.p-error {
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: 5rem;
  }
}
.p-error__header {
  margin-block-end: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__header {
    margin-block-end: 2rem;
  }
}
.p-error__title {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: 2rem;
  }
}
.p-error__content {
  max-width: 40rem;
  margin-inline: auto;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__content {
    font-size: 1rem;
  }
}
.p-error__content p + p {
  margin-block-start: 1.5rem;
}
.p-facility {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-facility {
    padding-block: 3.75rem;
  }
}
.p-facility__bg-wrap {
  position: relative;
  max-width: 115.75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-facility__bg-wrap {
    padding-inline: 1.25rem;
  }
}
.p-facility__bg-wrap::before {
  content: "";
  position: absolute;
  top: 34.1875rem;
  left: 0rem;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-facility__bg-wrap::before {
    left: -1.875rem;
    top: 20%;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-facility__inner {
  max-width: 75rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  text-align: center;
}
.p-facility__label {
  display: inline-block;
  height: 1.25rem;
}
.p-facility__title {
  margin-block-start: 2.1875rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-facility__title {
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-facility__lead {
  margin-block-start: 2.1875rem;
  margin-inline: auto;
  max-width: 43.75rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-facility__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-facility__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-block-start: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-facility__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.875rem;
  }
}
.p-facility__figure {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.p-facility__caption {
  font-weight: 350;
  font-size: 0.8125rem;
  line-height: 1.8;
  text-align: center;
  color: #999999;
}
.p-facility__imageWrap {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 23.75rem;
}
.p-facility__imageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-facility__imageWrap {
    height: 13.75rem;
  }
}
.p-facility__imageWrap--placeholder {
  background-color: #f5f5f5;
}
.p-flow {
  padding-block: 6.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-block: 3.75rem;
  }
}
.p-flow__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: 99.625rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__bg-wrap {
    padding-inline: 1.25rem;
  }
}
.p-flow__bg-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url("../mikan-orange-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-flow__bg-wrap::after {
    right: -1.875rem;
    top: 20%;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-flow__inner {
  max-width: 59.125rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  margin-inline: auto;
  text-align: center;
}
.p-flow__label {
  display: inline-block;
  height: 1.25rem;
}
.p-flow__title {
  margin-block-start: 2.1875rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-flow__lead {
  margin-block-start: 2.1875rem;
  margin-inline: auto;
  max-width: 43.75rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-flow__steps {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  margin-block-start: 6rem;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-flow__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.25rem;
    margin-block-start: 3.125rem;
  }
}
@media screen and (max-width: 375px) {
  .p-flow__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-flow__step {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-flow__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 3.125rem;
  right: -1.875rem;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.125;
  color: #f68b1e;
}
@media screen and (max-width: 767px) {
  .p-flow__step:not(:last-child)::after {
    display: none;
  }
}
.p-flow__stepBadge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: #f68b1e;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
}
.p-flow__stepTitle {
  margin-block-start: 1.5625rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-flow__stepTitle {
    font-size: 0.9375rem;
  }
}
.p-flow__stepDesc {
  margin-block-start: 1.8125rem;
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.1538em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-flow__stepDesc {
    margin-block-start: 1rem;
  }
}
.p-footer {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-block-start: 3.75rem;
  padding-block-end: 2.5rem;
  padding-inline: 2.5rem;
  background-color: #2e8b57;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block-start: 3rem;
    padding-block-end: 2rem;
    padding-inline: 1.25rem;
    gap: 1.875rem;
  }
}
.p-footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    gap: 1.25rem;
  }
}
.p-footer__text {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__text {
    font-size: 0.8125rem;
  }
}
.p-footer__bottom {
  border-block-start: 1px solid rgba(255, 255, 255, 0.1);
  padding-block-start: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    padding-block-start: 1.25rem;
  }
}
.p-footer__copyright {
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.1538em;
  color: rgba(255, 255, 255, 0.5);
}
.p-form {
  --_form-color-text: var(--color-text);
  --_form-color-bg: var(--color-white);
  --_form-color-badge-text: var(--color-white);
  --_form-color-badge-bg: var(--color-orange);
  --_form-color-accent: var(--color-accent);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
  max-width: 50rem;
  margin-inline: auto;
}
.p-form > * {
  margin-block-start: 2.5rem;
}
.p-form > *:nth-last-child(2) {
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form > * {
    margin-block-start: 3rem;
  }
  .p-form > *:nth-last-child(2) {
    margin-block-start: 1.5rem;
  }
}
.p-form__item {
  display: grid;
  gap: 0.5rem;
}
.p-form__label {
  display: block;
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: var(--fw-bold);
}
.p-form__label--required {
  position: relative;
  padding-inline-end: 3.125rem;
}
.p-form__label--required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 0;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  border-radius: 4px;
  background-color: var(--_form-color-badge-bg);
  color: var(--_form-color-badge-text);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  translate: 0 -50%;
}
.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--_form-color-border);
  border-radius: 8px;
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.p-form__input::placeholder,
.p-form__select::placeholder,
.p-form__textarea::placeholder {
  color: oklch(from var(--_form-color-text) l c h/50%);
}
.p-form__input:focus,
.p-form__select:focus,
.p-form__textarea:focus {
  border-color: var(--_form-color-accent);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}
.p-form__input:hover:not(:focus),
.p-form__select:hover:not(:focus),
.p-form__textarea:hover:not(:focus) {
  border-color: var(--_form-color-accent);
  opacity: 0.7;
}
.p-form__input.is-error,
.p-form__select.is-error,
.p-form__textarea.is-error {
  border-color: var(--_form-color-badge-bg);
}
@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: 1rem 1.25rem;
  }
}
.p-form__select {
  position: relative;
  padding-inline-end: 3rem;
  cursor: pointer;
  appearance: none;
}
.p-form__select-wrap {
  position: relative;
}
.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  clip-path: var(--clip-triangle-bottom);
  width: 0.75rem;
  height: 0.5rem;
  border: none;
  background-color: var(--_form-color-primary);
  pointer-events: none;
  translate: 0 -50%;
}
.p-form__textarea {
  min-height: 10rem;
}
.p-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__radio-group {
    flex-flow: row wrap;
    gap: 2rem 2.5rem;
  }
}
.p-form__radio {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  align-items: center;
  cursor: pointer;
}
.p-form__radio input[type=radio] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 1rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}
.p-form__radio input[type=radio]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}
.p-form__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--_form-color-bg);
  translate: -50% -50%;
}
.p-form__radio input[type=radio]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}
.p-form__radio input[type=radio]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}
.p-form__radio-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  user-select: none;
}
.p-form__checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-form__checkbox input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}
.p-form__checkbox input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}
.p-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}
.p-form__checkbox input[type=checkbox]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}
.p-form__checkbox input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}
.p-form__checkbox-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  user-select: none;
}
.p-form__link {
  color: var(--_form-color-accent);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-form__link:hover {
    opacity: 0.8;
  }
}
.p-form__button-wrap {
  text-align: center;
}
.p-form__error {
  display: block;
  color: var(--_form-color-badge-bg);
  font-size: 0.875rem;
}
.p-form__success {
  padding: 1.5rem;
  border: 1px solid var(--_form-color-accent);
  border-radius: 8px;
  background-color: rgba(64, 143, 149, 0.1);
  color: var(--_form-color-accent);
  font-size: 1rem;
  text-align: center;
}
.p-form__radio .wpcf7-list-item-label,
.p-form__radio .wpcf7-li label {
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  user-select: none;
}
.p-form__checkbox .wpcf7-form-control-wrap,
.p-form__checkbox .wpcf7-form-control {
  display: flex;
  align-items: center;
}
.p-form__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.p-form__item .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.p-header {
  position: relative;
  z-index: 1000;
  background-color: var(--color-orange);
  height: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4.625rem;
  }
}
@media screen and (max-width: 375px) {
  .p-header {
    height: 3.75rem;
  }
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
}
.p-header__logo-area {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo-area {
    gap: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .p-header__logo-area {
    gap: 0.625rem;
  }
}
.p-header__logo {
  width: 12.5rem;
  height: 3.125rem;
  margin: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 10rem;
    height: 2.625rem;
  }
}
@media screen and (max-width: 375px) {
  .p-header__logo {
    width: 6.875rem;
    height: 1.8125rem;
  }
}
.p-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.p-header__logo a:hover {
  opacity: 0.7;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-header__site-name {
  font-weight: 900;
  font-size: 1.5625rem;
  line-height: 1.44;
  letter-spacing: 0.08em;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
.p-header__site-name:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-header__site-name {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 375px) {
  .p-header__site-name {
    font-size: 0.75rem;
  }
}
.p-header__official-link {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.08333em;
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.p-header__official-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-header__official-link {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 375px) {
  .p-header__official-link {
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__official-link {
    display: none;
  }
}
.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 1000;
  }
}
.p-header__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s ease;
  transform-origin: center center;
}
.js-hamburger.is-open .p-header__hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.js-hamburger.is-open .p-header__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.js-hamburger.is-open .p-header__hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.p-drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 900;
    background-color: var(--color-orange);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.35s, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .p-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.p-drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 6.25rem 2.5rem 3.75rem;
  gap: 3rem;
}
.p-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.p-drawer__link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: 15rem;
  text-align: center;
  transition: opacity 0.2s ease;
}
.p-drawer__link:hover {
  opacity: 0.7;
}
.p-drawer__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 17.5rem;
}
.p-drawer__btn {
  display: block;
  width: 100%;
  padding-block: 1rem;
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.p-drawer__btn--apply {
  background-color: var(--color-white);
  border: 2px solid #f68b1e;
  color: #f68b1e;
}
.p-drawer__btn--apply:hover {
  background-color: #f68b1e;
  color: var(--color-white);
}
.p-drawer__btn--line {
  background-color: #06c755;
  border: 2px solid #06c755;
  color: var(--color-white);
}
.p-drawer__btn--line:hover {
  background-color: #05b04a;
  border-color: #05b04a;
}
.p-jobs {
  padding-block: 6.25rem;
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-jobs {
    padding-block: 3.75rem;
  }
}
.p-jobs__inner {
  max-width: 75rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  text-align: center;
}
.p-jobs__label {
  display: inline-block;
  height: 1.25rem;
}
.p-jobs__title {
  margin-block-start: 2.1875rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-jobs__title {
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-jobs__filter {
  margin-block-start: 2.1875rem;
  margin-inline: auto;
  max-width: 43.75rem;
}
@media screen and (max-width: 767px) {
  .p-jobs__filter {
    margin-block-start: 1.25rem;
  }
}
.p-jobs__filterLabel {
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-jobs__filterLabel {
    font-size: 0.875rem;
  }
}
.p-jobs__filterButtons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-jobs__filterButtons {
    margin-block-start: 1.5rem;
    gap: 0.75rem;
  }
}
.p-jobs__filterBtn {
  height: 2.8125rem;
  padding-inline: 1.25rem;
  border-radius: 1.25rem;
  background-color: #c6ecd2;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  color: #666666;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-jobs__filterBtn {
    font-size: 0.875rem;
    height: 2.375rem;
  }
}
@media (any-hover: hover) {
  .p-jobs__filterBtn:hover {
    opacity: 0.7;
  }
}
.p-jobs__cards {
  display: flex;
  gap: 2.5rem;
  margin-block-start: 6rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-jobs__cards {
    flex-direction: column;
    margin-block-start: 3.125rem;
    gap: 2rem;
    margin-block-start: 2.5rem;
  }
}
.p-jobs__card {
  flex: 1;
  border-radius: 0.75rem;
  background-color: #ffffff;
  border: 2px solid #eeeeee;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.p-jobs__cardImage {
  width: 100%;
  height: 15.625rem;
  overflow: hidden;
}
.p-jobs__cardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardImage {
    height: 11.25rem;
  }
}
.p-jobs__cardBody {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-block: 2.5rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardBody {
    padding-block: 1.5rem;
    padding-inline: 1.25rem;
    gap: 1rem;
  }
}
.p-jobs__cardTitle {
  font-weight: var(--fw-medium);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardTitle {
    font-size: 1.125rem;
  }
}
.p-jobs__cardDesc {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.125em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardDesc {
    font-size: 0.8125rem;
  }
}
.p-jobs__cardDetails {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-block-start: 0.625rem;
  padding-block-end: 0.9375rem;
}
.p-jobs__cardRow {
  display: flex;
  gap: 0.625rem;
}
.p-jobs__cardTerm {
  min-width: 4.375rem;
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.1538em;
  color: #999999;
}
.p-jobs__cardData {
  flex: 1;
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.1538em;
  color: #666666;
}
.p-jobs__cardBtn {
  display: block;
  padding-block: 0.9375rem;
  border-radius: 0.5rem;
  background-color: #f68b1e;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.79;
  text-align: center;
  color: #ffffff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-jobs__cardBtn {
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-jobs__cardBtn:hover {
    opacity: 0.7;
  }
}
.p-mv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 37.5rem;
  background-image: url("../image_mv_01.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv {
    min-height: 31.25rem;
  }
}
.p-mv__inner {
  width: 100%;
  max-width: 62.5rem;
  padding-block: 2.625rem 20.1875rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    padding-block: 2.5rem 11.25rem;
    padding-inline: 1.25rem;
  }
}
.p-mv__label {
  width: 8.75rem;
  height: 1.125rem;
  margin-inline: auto;
}
.p-mv__label img {
  display: block;
}
.p-mv__title {
  margin-block-start: 1.6875rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.28;
  letter-spacing: 0.08em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    margin-block-start: 1.25rem;
    font-size: 1.875rem;
  }
}
.p-mv__text {
  margin-block-start: 3rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    margin-block-start: 1.75rem;
    font-size: 0.875rem;
  }
}
.p-mv__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-block-start: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__buttons {
    margin-block-start: 2.5rem;
    gap: 0.75rem;
  }
}
.p-mv__btn {
  display: inline-block;
  padding-block: 1.25rem;
  padding-inline: 3.75rem;
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-mv__btn {
    width: 100%;
    max-width: 17.5rem;
    padding-block: 0.875rem;
    padding-inline: 2.5rem;
    font-size: 1rem;
  }
}
.p-mv__btn--apply {
  background-color: #ffffff;
  border: 2px solid #f68b1e;
  color: #f68b1e;
}
.p-mv__btn--line {
  background-color: #06c755;
  border: 2px solid #06c755;
  color: #ffffff;
}
@media (any-hover: hover) {
  .p-mv__btn--apply:hover {
    background-color: #f68b1e;
    color: #ffffff;
  }
  .p-mv__btn--line:hover {
    background-color: #ffffff;
    color: #06c755;
  }
}
.p-news-list {
  padding-block: 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: 2.5rem 3.75rem;
  }
}
.p-news-list__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-news-list__inner > .p-news-list__title {
  margin-block-end: 0;
}
.p-news-list__container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 1px 3px oklch(from var(--color-black) l c h/10%), 0 1px 2px oklch(from var(--color-black) l c h/10%);
  background-color: var(--color-white);
}
.p-news-list__item {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.p-news-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray);
}
@media (any-hover: hover) {
  .p-news-list__item:hover {
    background-color: oklch(from var(--color-gray) l c h/50%);
  }
}
.p-news-list__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__card {
    gap: 0.75rem;
    padding: 2rem;
  }
}
.p-news-list__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-border-gray);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__meta {
    font-size: 0.875rem;
  }
}
.p-news-list__separator {
  color: var(--color-border-gray);
}
.p-news-list__content {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.p-news-list__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
}
.p-news-list__card .p-news-list__title {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-news-list__card .p-news-list__title {
    font-size: 1.125rem;
  }
}
.p-news-list__excerpt {
  color: var(--color-border-gray);
  font-size: 0.8125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-news-list__excerpt {
    font-size: 0.875rem;
  }
}
.p-news-list__arrow {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-border-gray);
  transition: color 0.2s ease, transform 0.2s ease;
}
.p-news-list__arrow svg {
  width: 100%;
  height: 100%;
}
.p-news-list__item:hover .p-news-list__arrow {
  color: var(--color-text);
  transform: translateX(0.25rem);
}
.p-news-list__empty {
  padding: 3.75rem;
  border-radius: 10px;
  box-shadow: 0 1px 3px oklch(from var(--color-black) l c h/10%), 0 1px 2px oklch(from var(--color-black) l c h/10%);
  background-color: var(--color-white);
  color: var(--color-border-gray);
  font-size: 1rem;
  text-align: center;
}
.p-news-list__empty p {
  margin: 0;
}
.p-news-list__pagination {
  --_pagination-bg: var(--color-white);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-black);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-gray);
  --_pagination-border-hover: var(--color-text);
}
.p-philosophy {
  padding-block: 6.25rem;
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-philosophy {
    padding-block: 3.75rem;
  }
}
.p-philosophy__inner {
  width: 100%;
  max-width: 80rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-philosophy__inner {
    padding-inline: 1.25rem;
  }
}
.p-philosophy__label {
  display: inline-block;
  height: 1.1875rem;
}
.p-philosophy__title {
  margin-block-start: 2.1875rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-philosophy__title {
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-philosophy__lead {
  margin-block-start: 2.1875rem;
  margin-inline: auto;
  max-width: 43.75rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-philosophy__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-philosophy__cards {
  display: flex;
  justify-content: center;
  gap: 3.75rem;
  margin-block-start: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-philosophy__cards {
    margin-block-start: 3.125rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.p-philosophy__card {
  flex: 1;
  max-width: 21.625rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__card {
    max-width: 100%;
    width: 100%;
  }
}
.p-philosophy__cardIcon {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 6.25rem;
}
.p-philosophy__cardIcon img {
  max-height: 100%;
  object-fit: contain;
}
.p-philosophy__cardTitle {
  margin-block-start: 1.875rem;
  font-weight: var(--fw-medium);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-philosophy__cardTitle {
    font-size: 1.25rem;
  }
}
.p-philosophy__cardText {
  margin-block-start: 2rem;
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.1538em;
  color: #666666;
}
.p-child-instructor {
  display: flex;
  justify-content: center;
  padding-block: 3.75rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-child-instructor {
    padding-block: 2.5rem 3.75rem;
  }
}
.p-child-instructor__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 52.5rem;
  padding-inline: 1.25rem;
}
.p-child-instructor__label {
  display: inline-block;
  padding: 0.4375rem 1.5rem;
  background-color: #f68b1e;
  border-radius: 4px;
  font-weight: var(--fw-medium);
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-white);
}
.p-child-instructor__heading {
  margin-top: 2.6875rem;
  width: 100%;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-child-instructor__heading {
    font-size: 1.5rem;
    margin-top: 1.75rem;
  }
}
.p-child-instructor__text {
  margin-top: 2.875rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-child-instructor__text {
    font-size: 0.875rem;
    margin-top: 1.75rem;
  }
}
.p-child-instructor__tags {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
}
.p-child-instructor__tag {
  display: inline-block;
  padding: 0.4375rem 1rem;
  background-color: #c6ecd2;
  border-radius: 1.25rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #666666;
}
.p-child-instructor__hero-image {
  margin-top: 2.1875rem;
  width: 100%;
  min-height: 25.25rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
.p-child-instructor__hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-child-instructor__hero-image {
    min-height: 13.75rem;
  }
}
.p-child-instructor__buttons {
  margin-top: 4.125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-child-instructor__buttons {
    gap: 0.75rem;
    margin-top: 2.875rem;
  }
}
.p-child-instructor__btn {
  display: inline-block;
  padding: 1.125rem 3.125rem;
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-child-instructor__btn {
    width: 100%;
    max-width: 17.5rem;
    padding: 0.875rem 2.5rem;
  }
}
.p-child-instructor__btn--apply {
  background-color: var(--color-white);
  border: 2px solid #f68b1e;
  color: #f68b1e;
}
.p-child-instructor__btn--line {
  background-color: #06c755;
  border: 2px solid #06c755;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-child-instructor__btn--apply:hover {
    background-color: #f68b1e;
    color: #ffffff;
  }
  .p-child-instructor__btn--line:hover {
    background-color: #ffffff;
    color: #06c755;
  }
}
.p-candidate-profile {
  padding-top: 8.0625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-candidate-profile {
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
  }
}
.p-candidate-profile__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: 92.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-candidate-profile__bg-wrap {
    padding-inline: 1.25rem;
  }
}
.p-candidate-profile__bg-wrap::before {
  content: "";
  position: absolute;
  bottom: 11.4375rem;
  left: 0rem;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-candidate-profile__bg-wrap::before {
    left: -1.875rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-candidate-profile__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  width: 100%;
  max-width: 52.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-candidate-profile__inner {
    gap: 2.5rem;
  }
}
.p-candidate-profile__heading {
  width: 100%;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-candidate-profile__heading {
    font-size: 1.5rem;
  }
}
.p-candidate-profile__list {
  width: 100%;
  max-width: 37.5rem;
  list-style: none;
}
.p-candidate-profile__item {
  position: relative;
  padding: 1.25rem 0 1.25rem 1.875rem;
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #333333;
}
.p-candidate-profile__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #f68b1e;
  border-radius: 3px;
}
.p-facility-info {
  background-color: #fef5ee;
  padding-block: 4.9375rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-facility-info {
    padding-block: 3.125rem;
  }
}
.p-facility-info__inner {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  width: 100%;
  max-width: 52.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-facility-info__inner {
    gap: 2.5rem;
  }
}
.p-facility-info__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-facility-info__heading {
    font-size: 1.5rem;
  }
}
.p-facility-info__body {
  display: flex;
  align-items: center;
  gap: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-facility-info__body {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.p-facility-info__text-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1;
  min-width: 0;
  max-width: 27.6875rem;
}
@media screen and (max-width: 767px) {
  .p-facility-info__text-block {
    max-width: 100%;
  }
}
.p-facility-info__name {
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.1111em;
  color: #333333;
}
.p-facility-info__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.p-facility-info__text {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
}
.p-facility-info__image {
  flex: 1;
  min-width: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
.p-facility-info__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
@media screen and (max-width: 767px) {
  .p-facility-info__image img {
    aspect-ratio: 16/9;
  }
}
.p-job-description {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-job-description {
    padding-block: 3.125rem;
  }
}
.p-job-description__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: 88.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-job-description__bg-wrap {
    padding-inline: 1.25rem;
  }
}
.p-job-description__bg-wrap::after {
  content: "";
  position: absolute;
  top: 3.125rem;
  right: 0rem;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url("../mikan-orange-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-description__bg-wrap::after {
    right: -1.875rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-job-description__bg-wrap::before {
  content: "";
  position: absolute;
  bottom: 10.5625rem;
  left: 0rem;
  width: 12.5rem;
  height: 12.5rem;
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-description__bg-wrap::before {
    left: -1.875rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-job-description__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  width: 100%;
  max-width: 52.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-job-description__inner {
    gap: 3.125rem;
  }
}
.p-job-description__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job-description__heading {
    font-size: 1.5rem;
  }
}
.p-job-description__body {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  width: 100%;
  max-width: 43.75rem;
}
.p-job-description__section {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}
.p-job-description__subtitle {
  padding-left: 0.9375rem;
  border-left: 4px solid #f68b1e;
  font-weight: var(--fw-medium);
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-job-description__subtitle {
    font-size: 1.125rem;
  }
}
.p-job-description__list {
  list-style: none;
  padding-bottom: 1.875rem;
}
.p-job-description__item {
  position: relative;
  padding: 0.9375rem 0 0.9375rem 1.5625rem;
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #333333;
}
.p-job-description__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4375rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #f68b1e;
  border-radius: 3px;
}
.p-job-description__schedule {
  background-color: #fef5ee;
  border-radius: 0.5rem;
  padding: 3.6875rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-job-description__schedule {
    padding: 1.5rem 1.25rem;
  }
}
.p-job-description__schedule-row {
  display: flex;
  gap: 1.875rem;
  padding: 2.125rem 0 2.125rem;
  border-bottom: 1px solid #f0e5d8;
}
.p-job-description__schedule-row:first-child {
  padding-top: 0;
}
.p-job-description__schedule-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-job-description__schedule-row {
    gap: 1rem;
  }
}
.p-job-description__schedule-time {
  flex-shrink: 0;
  min-width: 7.5rem;
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #f68b1e;
}
@media screen and (max-width: 767px) {
  .p-job-description__schedule-time {
    min-width: 6.25rem;
    font-size: 0.875rem;
  }
}
.p-job-description__schedule-task {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-job-description__schedule-task {
    font-size: 0.875rem;
  }
}
.p-job-description__note {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
  text-align: center;
}
.p-work-appeal {
  display: flex;
  justify-content: center;
  padding-block: 5rem;
  padding-inline: 1.25rem;
  background: #FEF5EE;
}
@media screen and (max-width: 767px) {
  .p-work-appeal {
    padding-block: 3.125rem;
  }
}
.p-work-appeal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  width: 100%;
  max-width: 52.5rem;
}
@media screen and (max-width: 767px) {
  .p-work-appeal__inner {
    gap: 2.5rem;
  }
}
.p-work-appeal__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-work-appeal__heading {
    font-size: 1.5rem;
  }
}
.p-work-appeal__list {
  display: flex;
  flex-direction: column;
  gap: 6.1875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-work-appeal__list {
    gap: 3.125rem;
  }
}
.p-work-appeal__item {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.p-work-appeal__subtitle {
  font-weight: var(--fw-medium);
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.0833em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-work-appeal__subtitle {
    font-size: 1.125rem;
  }
}
.p-work-appeal__text {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
}
.p-training-support {
  display: flex;
  justify-content: center;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-training-support {
    padding-block: 3.125rem;
  }
}
.p-training-support__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  max-width: 55rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-training-support__inner {
    gap: 2.5rem;
  }
}
.p-training-support__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-training-support__heading {
    font-size: 1.5rem;
  }
}
.p-training-support__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  width: 100%;
}
.p-training-support__sub-heading {
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.1111em;
  color: #999999;
  text-align: center;
}
.p-training-support__timeline {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-training-support__timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.p-training-support__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.375rem;
  flex: 1;
  max-width: 11.125rem;
  padding-block: 1.8125rem;
  background-color: #fef5ee;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-training-support__card {
    max-width: 100%;
    gap: 1.25rem;
    padding: 1.25rem 1rem;
  }
}
.p-training-support__week {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #f68b1e;
  text-align: center;
}
.p-training-support__card-title {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #333333;
  text-align: center;
}
.p-training-support__card-caption {
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.1538em;
  color: #666666;
  text-align: center;
}
.p-training-support__image {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.p-training-support__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 800/415;
}
@media screen and (max-width: 767px) {
  .p-training-support__image img {
    aspect-ratio: 16/9;
  }
}
.p-training-support__list {
  list-style: none;
  width: 100%;
  max-width: 37.5rem;
}
.p-training-support__item {
  position: relative;
  padding: 0.9375rem 0 0.9375rem 1.5625rem;
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.125em;
  color: #333333;
}
.p-training-support__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4375rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #f68b1e;
  border-radius: 3px;
}
.p-job-requirements {
  padding-block: 4.9375rem 7.4375rem;
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-job-requirements {
    padding-block: 3.125rem 3.75rem;
  }
}
.p-job-requirements__bg-wrap {
  position: relative;
  overflow: hidden;
  max-width: 100.375rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__bg-wrap {
    padding-inline: 1.25rem;
  }
}
.p-job-requirements__bg-wrap::after {
  content: "";
  position: absolute;
  top: 5.75rem;
  right: 0rem;
  width: 14.5625rem;
  height: 14.5625rem;
  background-image: url("../mikan-orange-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__bg-wrap::after {
    left: 0;
    top: 2.5rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-job-requirements__bg-wrap::before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  width: 15.25rem;
  height: 15.25rem;
  background-image: url("../mikan-orange-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__bg-wrap::before {
    left: -1.875rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-job-requirements__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  width: 100%;
  max-width: 52.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__inner {
    gap: 2.5rem;
  }
}
.p-job-requirements__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__heading {
    font-size: 1.5rem;
  }
}
.p-job-requirements__table {
  width: 100%;
}
.p-job-requirements__row {
  display: flex;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__row {
    flex-direction: column;
  }
}
.p-job-requirements__cell {
  flex-shrink: 0;
  width: 11.25rem;
  padding: 1.1875rem 1.25rem 1.25rem;
  background-color: #fef5ee;
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.125em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__cell {
    width: 100%;
    padding: 1rem 1rem 0.5rem;
    font-size: 0.875rem;
    font-weight: var(--fw-bold);
  }
}
.p-job-requirements__data {
  flex: 1;
  padding: 1.1875rem 1.25rem 1.25rem;
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-job-requirements__data {
    padding: 0.5rem 1rem 1rem;
    font-size: 0.875rem;
  }
}
.p-recruit-voice {
  display: flex;
  justify-content: center;
  padding-block: 5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice {
    padding-block: 3.125rem;
  }
}
.p-recruit-voice__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__inner {
    gap: 2.5rem;
  }
}
.p-recruit-voice__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__heading {
    font-size: 1.5rem;
  }
}
.p-recruit-voice__cards {
  display: flex;
  justify-content: center;
  gap: 3.125rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .p-recruit-voice__cards {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__cards {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}
.p-recruit-voice__card {
  width: 20.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__card {
    width: 100%;
    max-width: 17.5rem;
  }
}
.p-recruit-voice__photo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 15.625rem;
  margin-inline: auto;
  background-color: #f5f5f5;
  border-radius: 1.25rem;
  overflow: hidden;
}
.p-recruit-voice__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruit-voice__photo-placeholder {
  font-weight: 350;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #999999;
}
.p-recruit-voice__role {
  margin-block-start: 1.1875rem;
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.1538em;
  color: #999999;
  text-align: center;
}
.p-recruit-voice__text {
  margin-block-start: 1.6875rem;
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.125em;
  color: #666666;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__text {
    font-size: 0.875rem;
  }
}
.p-recruit-flow {
  padding-block: 4.9375rem;
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow {
    padding-block: 3.125rem;
  }
}
.p-recruit-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  max-width: 58.75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__inner {
    gap: 2.5rem;
  }
}
.p-recruit-flow__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__heading {
    font-size: 1.5rem;
  }
}
.p-recruit-flow__steps {
  display: flex;
  justify-content: center;
  gap: 1.6875rem;
  list-style: none;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.25rem;
  }
}
@media screen and (max-width: 375px) {
  .p-recruit-flow__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-recruit-flow__step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.125rem;
  max-width: 11.5625rem;
  background-color: #fef5ee;
  border-radius: 0.5rem;
  text-align: center;
}
.p-recruit-flow__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 54%;
  right: -1.5rem;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 2rem;
  color: #f68b1e;
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__step:not(:last-child)::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-flow__step {
    max-width: 100%;
  }
}
.p-recruit-flow__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: #f68b1e;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
}
.p-recruit-flow__title {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.125em;
  color: #333333;
  text-align: center;
}
.p-recruit-flow__caption {
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.1538em;
  color: #666666;
  text-align: center;
}
.p-recruit-faq {
  display: flex;
  justify-content: center;
  padding-block: 5rem 2.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq {
    padding-block: 3.125rem 1.875rem;
  }
}
.p-recruit-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6875rem;
  max-width: 55rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__inner {
    gap: 2.5rem;
  }
}
.p-recruit-faq__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__heading {
    font-size: 1.5rem;
  }
}
.p-recruit-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2.4375rem;
  width: 100%;
  max-width: 43.75rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__list {
    gap: 1.75rem;
  }
}
.p-recruit-faq__item {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.p-recruit-faq__question {
  position: relative;
  padding-left: 1.875rem;
}
.p-recruit-faq__q-label {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: var(--fw-bold);
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP";
  color: #f68b1e;
}
.p-recruit-faq__q-text {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__q-text {
    font-size: 0.875rem;
  }
}
.p-recruit-faq__answer {
  position: relative;
  padding-left: 1.875rem;
}
.p-recruit-faq__a-label {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: var(--fw-bold);
  font-size: 0.9375rem;
  line-height: 2;
  color: #333333;
}
.p-recruit-faq__a-text {
  font-weight: 350;
  font-size: 0.9375rem;
  line-height: 2;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-recruit-faq__a-text {
    font-size: 0.8125rem;
  }
}
.p-recruit-cta {
  background-color: #fef5ee;
  padding-block: 5rem 8.0625rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta {
    padding-block: 3.125rem 3.75rem;
  }
}
.p-recruit-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
  width: 100%;
  max-width: 52.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__inner {
    gap: 2.25rem;
  }
}
.p-recruit-cta__text {
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__text {
    font-size: 1rem;
  }
}
.p-recruit-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__buttons {
    gap: 0.75rem;
  }
}
.p-recruit-cta__btn {
  display: inline-block;
  padding: 1.125rem 3.125rem;
  border-radius: 999px;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__btn {
    width: 100%;
    max-width: 17.5rem;
    padding: 0.875rem 2.5rem;
  }
}
.p-recruit-cta__btn--apply {
  background-color: var(--color-white);
  border: 2px solid #f68b1e;
  color: #f68b1e;
}
.p-recruit-cta__btn--line {
  background-color: #06c755;
  border: 2px solid #06c755;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .p-recruit-cta__btn--apply:hover {
    background-color: #f68b1e;
    color: #ffffff;
  }
  .p-recruit-cta__btn--line:hover {
    background-color: #ffffff;
    color: #06c755;
  }
}
.p-recruit-access {
  display: flex;
  justify-content: center;
  padding-block: 5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-access {
    padding-block: 3.125rem;
  }
}
.p-recruit-access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  max-width: 88.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__inner {
    gap: 2.5rem;
    padding-inline: 1.25rem;
  }
}
.p-recruit-access__heading {
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__heading {
    font-size: 1.5rem;
  }
}
.p-recruit-access__locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.25rem;
}
@media screen and (max-width: 1200px) {
  .p-recruit-access__locations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-access__locations {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.p-recruit-access__location {
  display: flex;
  flex-direction: column;
  gap: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__location {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-recruit-access__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-recruit-access__name {
  font-weight: var(--fw-medium);
  font-size: 1.25rem;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__name {
    font-size: 1.125rem;
  }
}
.p-recruit-access__address {
  font-weight: 350;
  font-size: 0.9375rem;
  line-height: 2;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__address {
    white-space: normal;
  }
}
.p-recruit-access__contact {
  font-weight: 350;
  font-size: 0.9375rem;
  line-height: 2;
  color: #666666;
}
.p-recruit-access__contact span {
  color: #00E;
}
.p-recruit-access__map {
  flex: 0 0 23.125rem;
  aspect-ratio: 1/1;
  border-radius: 1.25rem;
  overflow: hidden;
}
.p-recruit-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-access__map {
    flex: none;
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.p-recruit-footer {
  display: flex;
  flex-direction: column;
  gap: 1.8125rem;
  padding-block-start: 3.75rem;
  padding-block-end: 2.5rem;
  padding-inline: 2.5rem;
  background-color: #2e8b57;
}
@media screen and (max-width: 767px) {
  .p-recruit-footer {
    padding-block-start: 3rem;
    padding-block-end: 2rem;
    padding-inline: 1.25rem;
  }
}
.p-recruit-footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-recruit-footer__text {
  font-weight: var(--fw-medium);
  font-size: 0.9375rem;
  line-height: 1.875rem;
  letter-spacing: 0.125em;
  color: var(--color-white);
  text-align: center;
}
.p-recruit-footer__text span {
  color: #00E;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-recruit-footer__text {
    font-size: 0.8125rem;
  }
}
.p-recruit-footer__bottom {
  text-align: center;
}
.p-recruit-footer__copyright {
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.1538em;
  color: rgba(255, 255, 255, 0.5);
}
.p-sample {
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-sample {
    padding-block: 5rem;
  }
}
.p-sample__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sample__inner {
    gap: 1.5rem;
  }
}
.p-sample__title {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sample__title {
    margin-block-start: 2rem;
  }
}
.p-sample__button-wrap {
  width: min(15rem, 100%);
}
.p-sample__button-wrap > * {
  width: 100%;
}
.p-sample__divider {
  width: 100%;
  height: 1px;
  max-width: 37.5rem;
  margin: 0;
  border: 0;
  background-color: var(--color-gray);
}
.p-sample__bg {
  width: 100%;
  height: 18.75rem;
  max-width: 37.5rem;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-sample__bg {
    height: 25rem;
  }
}
.p-sample__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 32rem;
  border-radius: 8px;
}
.p-sample__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.25rem;
  background: linear-gradient(to top, var(--color-white), transparent);
  pointer-events: none;
}
.p-sample__image img {
  display: block;
  width: 100%;
  height: auto;
}
.p-sample p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-sample p {
    font-size: 1rem;
  }
}
.p-single {
  padding-block: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-block: 5rem;
  }
}
.p-single__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}
.p-single__header {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-single__header {
    margin-block-start: 3rem;
  }
}
.p-single__subtitle {
  margin-block-end: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    margin-block-end: 0.75rem;
    font-size: 1rem;
  }
}
.p-single__title {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    margin-block-start: 1.5rem;
    font-size: 2rem;
  }
}
.p-single__summary {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__summary {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 1.5rem;
    font-size: 1rem;
  }
}
.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-block-start: 1rem;
  color: var(--color-border-gray);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    margin-block-start: 1.5rem;
  }
}
.p-single__author {
  display: inline-block;
  color: var(--color-text);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__author {
    font-size: 1rem;
  }
}
.p-single__date {
  display: inline-block;
}
.p-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-single__category {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__category:hover {
    opacity: 0.8;
  }
}
.p-single__thumbnail {
  overflow: hidden;
  margin-block-start: 2rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail {
    margin-block-start: 3rem;
  }
}
.p-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: scale 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail img {
    border-radius: 12px;
  }
}
.p-single__featured-image {
  overflow: hidden;
  margin-block-start: 2rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image {
    margin-block-start: 3rem;
  }
}
.p-single__featured-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image img {
    border-radius: 12px;
  }
}
.p-single__content {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-block-start: 4rem;
  }
}
.p-single__content h1,
.p-single h1:not(.p-single__title) {
  margin-block-start: 3rem;
  padding-block-end: 1rem;
  border-bottom: 0.125rem solid var(--color-gray);
  color: var(--color-text);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h1,
  .p-single h1:not(.p-single__title) {
    margin-block-start: 4rem;
    font-size: 2.25rem;
  }
}
.p-single__content h2,
.p-single h2 {
  margin-block-start: 2.5rem;
  padding-block-start: 1rem;
  padding-inline-start: 1rem;
  border-inline-start: 0.25rem solid var(--color-accent);
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h2,
  .p-single h2 {
    margin-block-start: 3.5rem;
    padding-inline-start: 1.25rem;
    font-size: 1.75rem;
  }
}
.p-single__content h3,
.p-single h3 {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h3,
  .p-single h3 {
    margin-block-start: 2.5rem;
    font-size: 1.5rem;
  }
}
.p-single__content h4,
.p-single h4 {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h4,
  .p-single h4 {
    margin-block-start: 2rem;
    font-size: 1.25rem;
  }
}
.p-single__content p,
.p-single p {
  margin-block-start: 1rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content p,
  .p-single p {
    margin-block-start: 1.25rem;
  }
}
.p-single__content ul,
.p-single__content ol,
.p-single ul,
.p-single ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content ul,
  .p-single__content ol,
  .p-single ul,
  .p-single ol {
    margin-block-start: 1.25rem;
    padding-inline-start: 2rem;
  }
}
.p-single__content ul,
.p-single ul {
  list-style-type: disc;
}
.p-single__content ol,
.p-single ol {
  list-style-type: decimal;
}
.p-single__content li,
.p-single li {
  margin-block-start: 0.5rem;
  line-height: 1.8;
}
.p-single__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
.p-single__content a:hover {
  opacity: 0.8;
}
.p-single__content img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: 1.5rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__content img {
    margin-block-start: 2rem;
  }
}
.p-single__content blockquote,
.p-single blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem 1.5rem;
  border-inline-start: 0.25rem solid var(--color-accent);
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-single__content blockquote,
  .p-single blockquote {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 2rem 2rem;
  }
}
.p-single__content blockquote p,
.p-single blockquote p {
  margin-block-start: 0;
}
.p-single__content code,
.p-single code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: 0.875rem;
}
.p-single__content pre,
.p-single pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content pre,
  .p-single pre {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}
.p-single__content pre code,
.p-single pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}
.p-single__content table,
.p-single table {
  width: 100%;
  margin-block-start: 1.5rem;
  border: 0.0625rem solid var(--color-border-gray);
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-single__content table,
  .p-single table {
    margin-block-start: 2rem;
  }
}
.p-single__content th,
.p-single__content td,
.p-single th,
.p-single td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  border: 0.0625rem solid var(--color-border-gray);
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-single__content th,
  .p-single__content td,
  .p-single th,
  .p-single td {
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}
.p-single__content th,
.p-single th {
  background-color: var(--color-gray);
  color: var(--color-text);
  font-weight: var(--fw-bold);
}
.p-single__content td,
.p-single td {
  color: var(--color-text);
}
.p-single__content hr,
.p-single hr {
  margin-block-start: 2rem;
  border: none;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__content hr,
  .p-single hr {
    margin-block-start: 3rem;
  }
}
.p-single__content strong,
.p-single strong {
  color: var(--color-text);
  font-weight: var(--fw-bold);
}
.p-single__content em,
.p-single em {
  font-style: italic;
}
.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 3rem;
  padding-block: 1.5rem;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__tags {
    margin-block-start: 4rem;
    padding-block: 2rem;
  }
}
.p-single__tag {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-accent);
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__tag {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-single__tag:hover {
    opacity: 0.8;
  }
}
.p-single__tag--custom {
  color: var(--color-text);
  cursor: default;
}
.p-single__navigation {
  display: grid;
  gap: 1rem;
  margin-block-start: 3rem;
  padding-block-start: 2rem;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-block-start: 4rem;
    padding-block-start: 3rem;
  }
}
.p-single__nav-item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-single__nav-item--prev {
    text-align: start;
  }
}
@media screen and (max-width: 767px) {
  .p-single__nav-item--next {
    text-align: end;
  }
}
.p-single__nav-link {
  display: block;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__nav-link {
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
  }
}
@media (any-hover: hover) {
  .p-single__nav-link:hover {
    opacity: 0.8;
  }
}
.p-single__nav-label {
  display: block;
  margin-block-start: 0.5rem;
  color: var(--color-border-gray);
  font-size: 0.75rem;
}
.p-single__nav-title {
  display: block;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__nav-title {
    font-size: 1rem;
  }
}
.p-single--works .p-single__works-info {
  display: grid;
  gap: 1.5rem;
  margin-block-start: 2rem;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-info {
    gap: 2rem;
    margin-block-start: 3rem;
    padding-block: 2rem;
    padding-inline: 2rem;
  }
}
.p-single--works .p-single__works-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-item {
    flex-direction: row;
    align-items: center;
  }
}
.p-single--works .p-single__works-label {
  min-width: 7.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-label {
    font-size: 1rem;
  }
}
.p-single--works .p-single__works-value {
  color: var(--color-text);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-value {
    font-size: 1rem;
  }
}
.p-single--works .p-single__works-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-single--works .p-single__works-technology {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.75rem;
}
.p-single--works .p-single__works-url {
  color: var(--color-accent);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__works-url {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-single--works .p-single__works-url:hover {
    opacity: 0.8;
  }
}
.p-single--works .p-single__gallery {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__gallery {
    margin-block-start: 4rem;
  }
}
.p-single--works .p-single__gallery-title {
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__gallery-title {
    margin-block-end: 2rem;
    font-size: 1.5rem;
  }
}
.p-single--works .p-single__gallery-list {
  display: grid;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-single--works .p-single__gallery-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.p-single--works .p-single__gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--color-gray);
}
.p-single--works .p-single__gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-single--post .p-single__related {
  margin-block-start: 3rem;
  padding-block-start: 2rem;
  border-top: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related {
    margin-block-start: 4rem;
    padding-block-start: 3rem;
  }
}
.p-single--post .p-single__related-title {
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-title {
    margin-block-end: 2rem;
    font-size: 1.5rem;
  }
}
.p-single--post .p-single__related-list {
  display: grid;
  gap: 1rem;
}
@media screen and (max-width: 375px) {
  .p-single--post .p-single__related-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-single--post .p-single__related-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-single--post .p-single__related-link {
  display: grid;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 375px) {
  .p-single--post .p-single__related-link {
    grid-template-columns: 7.5rem 1fr;
    align-items: start;
  }
}
@media (any-hover: hover) {
  .p-single--post .p-single__related-link:hover {
    opacity: 0.7;
  }
}
.p-single--post .p-single__related-thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 375px) {
  .p-single--post .p-single__related-thumbnail {
    aspect-ratio: 4/3;
  }
}
.p-single--post .p-single__related-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-single--post .p-single__related-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-single--post .p-single__related-date {
  color: var(--color-text);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-date {
    font-size: 0.875rem;
  }
}
.p-single--post .p-single__related-item-title {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-item-title {
    font-size: 1rem;
  }
}
.p-voice {
  padding-block: 6.25rem;
  background-color: #fef5ee;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-block: 3.75rem;
  }
}
.p-voice__inner {
  max-width: 75rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  text-align: center;
}
.p-voice__label {
  display: inline-block;
  height: 1.25rem;
}
.p-voice__title {
  margin-block-start: 2.1875rem;
  font-family: "M PLUS Rounded 1c", var(--base-font-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  color: #f57c00;
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-voice__lead {
  margin-block-start: 2.1875rem;
  margin-inline: auto;
  max-width: 43.75rem;
  font-weight: var(--fw-medium);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.1111em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-voice__lead {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-voice__cards {
  display: flex;
  gap: 2.5rem;
  margin-block-start: 6rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-voice__cards {
    flex-direction: column;
    margin-block-start: 3.125rem;
    gap: 1.5rem;
    margin-block-start: 2.5rem;
  }
}
.p-voice__card {
  flex: 1;
  padding-block: 2.5rem;
  padding-inline: 1.875rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}
.p-voice__profile {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.p-voice__profileAvatar {
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: #f5f5f5;
  overflow: hidden;
}
.p-voice__profileAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-voice__profileInfo {
  flex: 1;
}
.p-voice__profileName {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.125em;
  color: #333333;
}
.p-voice__profileRole {
  margin-block-start: 0.25rem;
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.1538em;
  color: #999999;
}
.p-voice__text {
  margin-block-start: 1.5625rem;
  font-weight: var(--fw-medium);
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.1538em;
  color: #666666;
}
.p-works-list {
  padding-block: 3rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-works-list {
    padding-block: 2.5rem 3.75rem;
  }
}
.p-works-list__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__filter {
    gap: 0.75rem;
  }
}
.p-works-list__filter-btn {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: transparent;
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-works-list__filter-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-works-list__filter-btn:hover:not(.is-active) {
    border-color: var(--color-border);
    background-color: var(--color-gray);
  }
}
.p-works-list__filter-btn.is-active {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-white);
}
.p-works-list__grid {
  --_card-widht: rem(320);
  display: grid;
  gap: 1.5rem;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__grid {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--_card-widht), 100%), 1fr));
    gap: 2rem;
    margin-block-start: 2rem;
  }
}
.p-works-list__card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (any-hover: hover) {
  .p-works-list__card:hover .p-works-list__thumbnail img {
    scale: 1.05;
  }
}
.p-works-list__link {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
}
.p-works-list__thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-works-list__thumbnail img {
  transition: scale 0.4s ease;
}
.p-works-list__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
}
.p-works-list__content {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 0.5rem;
  padding: 1.25rem;
}
.p-works-list__card-title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-works-list__card-title {
    font-size: 1.125rem;
  }
}
.p-works-list__client {
  color: oklch(from var(--color-text) l c h/70%);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-works-list__client {
    font-size: 0.8125rem;
  }
}
.p-works-list__date {
  color: oklch(from var(--color-text) l c h/70%);
  font-size: 0.75rem;
}
.p-works-list__empty {
  padding-block: 3.75rem;
  color: oklch(from var(--color-text) l c h/70%);
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works-list__empty {
    padding-block: 5rem;
    font-size: 1.125rem;
  }
}
:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}
@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}
@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}
.u-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}
.u-text__inline-block {
  display: inline-block;
}
.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}