@charset "UTF-8";
/*! TAK's Custom Base.css v1.3.4 | MIT License | github.com/tak-dcxi/taks-custom-base-css */
/* ======================================================
//
// MARK: # TAK's Custom Base.css
// Made by TAK - https: //www.tak-dcxi.com/
// This CSS is built based on Normalize.css. (https: //necolas.github.io/normalize.css/)
// It aims to normalize styles for better cross-browser compatibility, remove default browser styling, and enhance usability and accessibility for all users."
//
// ====================================================== */
/* ======================================================
// MARK: ## Universal
// ------------------------------------------------------ */
*,
::before,
::after {
  /* Ensure padding and borders are included within the dimensions of the element. */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* Prevent inline elements from extending beyond their container's bounds. */
  min-inline-size: 0;
  /* Remove any default borders. */
  border-width: 0;
  /* Set a default border style of solid for easy border additions. */
  border-style: solid;
}

/* ======================================================
// MARK: ## Document and Body Elements
// ------------------------------------------------------ */
:where(:root, body) {
  /* Prevent scrolling along the inline axis (usually horizontal) for root and body. */
  overflow-inline: clip;
}
@supports not (overflow-inline: clip) {
  :where(:root, body) {
    /* Prevent horizontal scrolling for root and body in browsers that don't support `overflow-inline`. */
    overflow-x: clip;
  }
}

:where(:root) {
  /* Specify a safe font-family for the default Gothic typeface. */
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", meiryo, sans-serif;
  /* Normalize font-style. */
  font-style: unset;
  /* Normalize font-style. */
  font-weight: 400;
  /* From an accessibility perspective, the line spacing within a paragraph should be at least 1.5 times the text size. (https://waic.jp/translations/WCAG21/#visual-presentation) */
  line-height: 1.5;
  /* Align text to the start of the element, accommodating left-to-right and right-to-left languages. */
  text-align: start;
  /* Remove leading white space for a cleaner text alignment. */
  text-spacing-trim: trim-start;
  /* Use the browser's default method to determine word breaking. */
  word-break: initial;
  /* Apply strict line breaking rules to enhance readability in languages that require it. */
  line-break: strict;
  /* Allow long words to be broken and wrapped at any point to prevent overflow. */
  overflow-wrap: anywhere;
  /* Automatically insert hyphens where appropriate for better text flow and alignment. */
  -ms-hyphens: auto;
      hyphens: auto;
  /* Prevent mobile browsers from scaling text sizes automatically. */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Preventing the layout shift caused by scrollbars. */
  scrollbar-gutter: stable;
  /* Allow animations and transitions of intrinsic sizing keywords. */
  interpolate-size: allow-keywords;
  /* Eliminate the tap highlight color on mobile devices for a cleaner interface. */
  -webkit-tap-highlight-color: transparent;
}
:where(:root):has(:where(:modal)) {
  /* Prevent scrolling of the document when a modal is open. */
  overflow: hidden;
}

:where(body) {
  /* Ensures the body element occupies at least 100% of the viewport's block size. */
  min-block-size: 100svb;
  /* Reset default margin. */
  margin: unset;
}

/* ======================================================
// MARK: ## Custom Properties
// ------------------------------------------------------ */
/* ------------------------------------------------------
// MARK: ### colors
*/
/*
  Define a custom property to use as a background color that remains visible in forced colors mode.
  This is useful when using `background-color: currentColor` as a foreground color,
  such as in pseudo-elements.

  Example usage:
  ```
  .button::after {
    content: '';
    justify-self: end;
    mask-image: url(...);
    inline-size: 1em;
    aspect-ratio: 1;
    background-color: var(--background-current);
    color: red;
  }
*/
@property --background-current {
  syntax: "currentColor | CanvasText";
  inherits: true;
  initial-value: currentColor;
}
@media (forced-colors: active) {
  :where(:root) {
    /* Set the default background color to the forced color mode background. */
    --background-current: CanvasText;
  }
}

/* ------------------------------------------------------
// MARK: ### easing function
*/
@property --ease-in-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.47, 0, 0.745, 0.715);
}
@property --ease-out-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.39, 0.575, 0.565, 1);
}
@property --ease-in-out-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@property --ease-in-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@property --ease-out-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@property --ease-in-out-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@property --ease-in-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
@property --ease-out-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@property --ease-in-out-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@property --ease-in-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
@property --ease-out-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@property --ease-in-out-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.77, 0, 0.175, 1);
}
@property --ease-in-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@property --ease-out-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.23, 1, 0.32, 1);
}
@property --ease-in-out-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.86, 0, 0.07, 1);
}
@property --ease-in-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}
@property --ease-out-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.19, 1, 0.22, 1);
}
@property --ease-in-out-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(1, 0, 0, 1);
}
@property --ease-in-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
@property --ease-out-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.075, 0.82, 0.165, 1);
}
@property --ease-in-out-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@property --ease-in-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
@property --ease-out-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@property --ease-in-out-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* ------------------------------------------------------
// MARK: ### triangle shapes
*/
/*
Example usage:
```
.tooltip::after {
  --_size: 16px;

  content: '';
  position: absolute;
  inset-inline: 0;
  inset-block-start: 100%;
  clip-path: var(--shape-triangle-bottom);
  inline-size: var(--_size);
  block-size: calc(var(--_size) / 2 * tan(60deg));
  margin-inline: auto;
  background-color: inherit;
}
```
*/
@property --shape-triangle-top {
  syntax: "*";
  inherits: false;
  initial-value: polygon(50% 0, 100% 100%, 0 100%);
}
@property --shape-triangle-bottom {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 50% 100%);
}
@property --shape-triangle-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 50%, 0 100%);
}
@property --shape-triangle-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 50%, 100% 0, 100% 100%);
}
@property --shape-triangle-lower-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 100%, 0 100%);
}
@property --shape-triangle-upper-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 0 100%);
}
@property --shape-triangle-lower-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(100% 0, 100% 100%, 0 100%);
}
@property --shape-triangle-upper-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 100% 100%);
}
/* ------------------------------------------------------
// MARK: ### chevron icons
*/
/*
The chevron icon is borrowed from Basicons (https://basicons.xyz/).

Example usage:
```
.button::after {
  content: '';
  justify-self: end;
  mask-image: var(--icon-chevron-right);
  inline-size: 1em;
  aspect-ratio: 1;
  background-color: var(--background-current);
}
```
*/
/* single chevron icons */
@property --icon-chevron-up {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m4 16 8-8 8 8" /></svg>');
}
@property --icon-chevron-right {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M8 4L16 12L8 20" /></svg>');
}
@property --icon-chevron-down {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M4 8L12 16L20 8" /></svg>');
}
@property --icon-chevron-left {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M16 4L8 12L16 20" /></svg>');
}
/* double chevron icons */
@property --icon-chevrons-up {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 18L12 13L7 18M17 11L12 6L7 11" /></svg>');
}
@property --icon-chevrons-right {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 7L11 12L6 17M13 7L18 12L13 17" /></svg>');
}
@property --icon-chevrons-down {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 6L12 11L7 6M17 13L12 18L7 13" /></svg>');
}
@property --icon-chevrons-left {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M18 7L13 12L18 17M11 7L6 12L11 17" /></svg>');
}
/* ------------------------------------------------------
// MARK: ### launch link icon
*/
/*
The chevron icon is borrowed from Basicons (https://basicons.xyz/).

Example usage:
```
.button[target="_blank"]::after {
  content: '' / '別ウインドウで開きます';
  justify-self: end;
  mask-image: var(--icon-launch-link);
  inline-size: 1em;
  aspect-ratio: 1;
  background-color: var(--background-current);
}
```
*/
@property --icon-launch-link {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 2H22V7" /><path d="M21 13V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V5C3 3.89543 3.89543 3 5 3H11" /><path d="M13 11L21.5 2.5" /></svg>');
}
/* ------------------------------------------------------
// MARK: ### leading trim
*/
/*
You can use the `--leading-trim` custom property to adjust the vertical spacing of text elements.
This helps in achieving more consistent and visually pleasing typography across different languages and font styles.

@see https://www.tak-dcxi.com/article/use-line-height-trim-as-css-variable

Example usage:
```
p {
  margin-block: var(--leading-trim);
}

.button {
  padding-block: calc(1.5em + var(--leading-trim));
}
```
*/
@property --leading-trim {
  syntax: "*";
  inherits: false;
  initial-value: calc((1em - 1lh) / 2);
}
:where(:lang(en)) {
  /* This ensures that the vertical space is evenly distributed, improving the visual balance of text. */
  --leading-trim: calc((1cap - 1lh) / 2);
}

/* ------------------------------------------------------
// MARK: ### hover state
*/
/*
You can use these custom properties to easily switch between hover and non-hover styles.
The var() function will use the first non-empty value, allowing you to define both states in one line.

Example usage:
```
.button {
  --_background-lighten: var(--is-hover-false, 0%) var(--is-hover-true, 20%);

  background-color: color-mix(in sRGB, var(--background-button), #fff var(--_background-lighten));
}
```
*/
:where(:-moz-any-link, :enabled, summary) {
  /* Define custom properties for hover state on interactive elements. Default state: `--is-hover-true` is empty, `--is-hover-false` has a value. */
  --is-hover-true: ;
  --is-hover-false: initial;
}
:where(:any-link, :enabled, summary) {
  /* Define custom properties for hover state on interactive elements. Default state: `--is-hover-true` is empty, `--is-hover-false` has a value. */
  --is-hover-true: ;
  --is-hover-false: initial;
}
@media (any-hover: hover) {
  :where(:-moz-any-link, :enabled, summary):where(:hover) {
    /* Set hover state for actual hover, but only on devices that support hover. Hover state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
    --is-hover-true: initial;
    --is-hover-false: ;
  }
  :where(:any-link, :enabled, summary):where(:hover) {
    /* Set hover state for actual hover, but only on devices that support hover. Hover state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
    --is-hover-true: initial;
    --is-hover-false: ;
  }
}
:where(:-moz-any-link, :enabled, summary):where(:focus-visible) {
  /* Set hover state for focus-visible state. Focus-visible state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
  --is-hover-true: initial;
  --is-hover-false: ;
}
:where(:any-link, :enabled, summary):where(:focus-visible) {
  /* Set hover state for focus-visible state. Focus-visible state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
  --is-hover-true: initial;
  --is-hover-false: ;
}

/* ======================================================
// MARK: ## Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Reset default margin. */
  margin-block: unset;
  /* Reset default font-size. */
  font-size: unset;
}

:where(search) {
  /* Render the `search` element consistently. */
  display: block flow;
}

/* ======================================================
// MARK: ## Grouping content
// ------------------------------------------------------ */
:where(p, blockquote, figure, pre, address, ul, ol, dl) {
  /* Reset default margin-block. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* Reset default margin-inline. */
  margin-inline: unset;
}

:where(address):where(:lang(ja)) {
  /* Reset font style for specific Japanese language elements. */
  font-style: unset;
}

:where(ul, ol) {
  /* Remove default padding-inline-start. */
  -webkit-padding-start: unset;
          padding-inline-start: unset;
  /* In Safari, using 'list-style: none' causes the list not to be announced by screen readers, so use 'list-style-type: ""' to hide markers without affecting accessibility. */
  list-style-type: "";
}

:where(dt) {
  /* Make definition terms bolder. */
  font-weight: 700;
}

:where(dd) {
  /* Remove default indentation. */
  -webkit-margin-start: unset;
          margin-inline-start: unset;
}

:where(hr) {
  /* Sets the thickness of the top border of the <hr> element to 1px. */
  border-block-start-width: 1px;
}

:where(pre) {
  /* Sets the tab character width to 2 spaces for better readability in preformatted text. */
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
}
@media print {
  :where(pre) {
    /* Allow text within <pre> elements to wrap when printing. */
    white-space: pre-wrap;
  }
}

/* ======================================================
// MARK: ## Text-level semantics
// ------------------------------------------------------ */
:where(b, strong) {
  /* Enhance the weight of bold elements for emphasis. */
  font-weight: 700;
}

:where(em):where(:lang(ja)) {
  /* Enhance the weight of bold elements for emphasis. */
  font-weight: 700;
}

:where(i, cite, em, dfn, var):where(:lang(ja)) {
  /* Reset font style for specific Japanese language elements. */
  font-style: unset;
}

:where(small) {
  /* Set the font size to 1em (same as the parent element). */
  font-size: 1em;
  /* Set the font weight to 400. */
  font-weight: 400;
}

:where(code, kbd, samp) {
  /* Set the monospace font using Tailwind as a reference(@see https://tailwindcss.com/docs/font-family). Specifying 'serif' is a countermeasure for Chrome's 13px issue. */
  font-family: ui-monospace, sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", serif;
  /* Reset font size to ensure consistent appearance across different devices. */
  font-size: unset;
}

:where(cite, dfn) {
  --_quotation-start: '“';
  --_quotation-end: '”';
}
:where(cite, dfn)::before {
  /* Inserts an opening quotation mark before the content of <cite> and <dfn> elements, defaulting to a double quote unless overridden. */
  content: var(--_quotation-start);
}
:where(cite, dfn)::after {
  /* Inserts a closing quotation mark after the content of <cite> and <dfn> elements, defaulting to a double quote unless overridden. */
  content: var(--_quotation-end);
}
:where(cite, dfn):where(:lang(ja)) {
  /* Overrides the default opening quotation mark with the Japanese opening quote for <cite> and <dfn> elements in Japanese. */
  --_quotation-start: '「';
  --_quotation-end: '」';
}

:where(var) {
  /* Sets the font family to serif for <var> elements, enhancing the typographic distinction of variable names in technical content. */
  font-family: serif;
}
:where(var):where(:lang(ja)) {
  /* Resets the font family for <var> elements in Japanese content. */
  font-family: unset;
}

@media (forced-colors: none) {
  :where(mark) {
    /* Remove any default background colors. */
    background-color: unset;
    /* Reset text color to default or inherited value. */
    color: unset;
    /* Applies an underline to the text to highlight it. */
    text-decoration-line: underline;
    /* Sets the color of the underline using a mix of the 'Mark' color and transparency. */
    text-decoration-color: oklch(from #ff0 l c h/50%);
    /* Specifies the thickness of the underline. */
    text-decoration-thickness: 0.4em;
    /* Adjusts the position of the underline closer to the text. */
    text-underline-offset: -0.2em;
    /* Ensures the underline is not broken by descenders in characters like g, j, p, q, and y. */
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }
}

/* ======================================================
// MARK: ## Links
// ------------------------------------------------------ */
:where(:-moz-any-link) {
  /* Remove any default background colors. */
  background-color: unset;
  /* Reset text color to default or inherited value. */
  color: unset;
  /* Remove underline from links. */
  text-decoration-line: none;
  /* Set the thickness of the text decoration based on the font metrics. */
  text-decoration-thickness: from-font;
  /* Position the underline slightly away from the text for enhanced legibility. */
  text-underline-offset: 0.25em;
  /* Adjust underline to skip over descenders for better readability. */
  text-decoration-skip-ink: auto;
}
:where(:any-link) {
  /* Remove any default background colors. */
  background-color: unset;
  /* Reset text color to default or inherited value. */
  color: unset;
  /* Remove underline from links. */
  text-decoration-line: none;
  /* Set the thickness of the text decoration based on the font metrics. */
  text-decoration-thickness: from-font;
  /* Position the underline slightly away from the text for enhanced legibility. */
  text-underline-offset: 0.25em;
  /* Adjust underline to skip over descenders for better readability. */
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* ======================================================
// MARK: ## Edits
// ------------------------------------------------------ */
:where(ins):not(:where(.adsbygoogle)) {
  /* Use a dashed line for underlining inserted content, making it distinctly visible. */
  text-decoration-style: dashed;
  /* Position the underline slightly away from the text for enhanced legibility. */
  text-underline-offset: 0.4em;
  /* Adjust underline to skip over descenders for better readability. */
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:where(del) {
  /* Apply a double line through the text for deleted content, enhancing visibility. */
  text-decoration-style: double;
}

/* ======================================================
// MARK: ## Embedded content
// ------------------------------------------------------ */
:where(img, picture, svg, video, canvas, audio, iframe, embed, object) {
  /* Set elements to display as block-level flow containers, suitable for complex layouts. */
  display: inline-block flow;
  /* Limits the maximum size inline to prevent overflow. */
  max-inline-size: 100%;
  /* Automatically adjusts the block size based on content. */
  block-size: auto;
}

/* ======================================================
// MARK: ## Tabular data
// ------------------------------------------------------ */
:where(table) {
  /* Collapses border for a more compact table design. */
  border-collapse: collapse;
}

:where(caption) {
  /* Aligns the caption text to the start of the element. */
  text-align: start;
}

:where(td, th) {
  /* Removes default padding from table cells and headers. */
  padding: unset;
  /* Aligns content of table cells to the top. */
  vertical-align: top;
}

:where(th) {
  /* Makes table header text bold. */
  font-weight: 700;
  /* Aligns header text to the start of the cell. */
  text-align: start;
}

/* ======================================================
// MARK: ## Forms
// ------------------------------------------------------ */
::-webkit-file-upload-button {
  /* Remove default padding. */
  padding: unset;
  /* Apply a transparent border for forced colors mode. */
  border: 1px solid transparent;
  /* Resets border-radius to default. */
  border-radius: unset;
  /* Removes default background color. */
  background-color: unset;
  /* Removes default text color. */
  color: unset;
  /* Resets font settings to inherit from parent. */
  font: unset;
  /* Centers the element vertically within its line box. */
  vertical-align: middle;
  /* Resets letter-spacing to default. */
  letter-spacing: unset;
  /* Resets text alignment to default. */
  text-align: unset;
  /* Resets text transformation to default. */
  text-transform: unset;
}
:where(button, input, select, textarea),
::file-selector-button {
  /* Remove default padding. */
  padding: unset;
  /* Apply a transparent border for forced colors mode. */
  border: 1px solid transparent;
  /* Resets border-radius to default. */
  border-radius: unset;
  /* Removes default background color. */
  background-color: unset;
  /* Removes default text color. */
  color: unset;
  /* Resets font settings to inherit from parent. */
  font: unset;
  /* Centers the element vertically within its line box. */
  vertical-align: middle;
  /* Resets letter-spacing to default. */
  letter-spacing: unset;
  /* Resets text alignment to default. */
  text-align: unset;
  /* Resets text transformation to default. */
  text-transform: unset;
}

:where([type=radio i], [type=checkbox i]) {
  /* Remove default margin. */
  margin: unset;
}

:where([type=file i]) {
  /* Default cursor for file input fields. */
  cursor: unset;
}

:where(textarea) {
  /* Remove default margin in Firefox. */
  margin-block: unset;
  /* Allows resizing of textarea vertically only. */
  resize: block;
}

::-webkit-file-upload-button {
  /* Set the inline-size of the button to match the content's inline-size exactly. */
  inline-size: -webkit-fit-content;
  inline-size: fit-content;
  /* Optimizes touch interaction for buttons. */
  touch-action: manipulation;
}

:where(button),
::file-selector-button {
  /* Set the inline-size of the button to match the content's inline-size exactly. */
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  /* Optimizes touch interaction for buttons. */
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(button)::-moz-focus-inner {
  /* Remove the inner padding in Firefox. */
  padding: unset;
}

::-webkit-file-upload-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(button, label[for], select, [role=tab], [role=button], [role=option]),
::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(select):where(:disabled) {
  /* Keep the opacity of disabled selects consistent with other disabled elements. */
  opacity: inherit;
}

:where(fieldset) {
  /* Remove default margin-inline. */
  margin-inline: unset;
  /* Remove default padding. */
  padding: unset;
}

:where(legend) {
  /* Remove default padding-inline. */
  padding-inline: unset;
}

:where(optgroup) {
  /* Resets font settings to inherit from parent. */
  font: unset;
}

::-webkit-input-placeholder {
  /* Normalize the opacity of placeholder text to fully opaque in Firefox, where it might be set to less by default. */
  opacity: unset;
}

::-moz-placeholder {
  /* Normalize the opacity of placeholder text to fully opaque in Firefox, where it might be set to less by default. */
  opacity: unset;
}

:-ms-input-placeholder {
  /* Normalize the opacity of placeholder text to fully opaque in Firefox, where it might be set to less by default. */
  opacity: unset;
}

::-ms-input-placeholder {
  /* Normalize the opacity of placeholder text to fully opaque in Firefox, where it might be set to less by default. */
  opacity: unset;
}

::placeholder {
  /* Normalize the opacity of placeholder text to fully opaque in Firefox, where it might be set to less by default. */
  opacity: unset;
}

::picker(select) {
  /* Render the `: :picker(select)` pseudo element consistently. */
  display: block flow;
  /* Remove default padding. */
  padding: unset;
}

/* ======================================================
// MARK: ## Interactive elements
// ------------------------------------------------------ */
:where(summary) {
  /* Eliminate the default marker from details summary for a cleaner disclosure widget. */
  display: block flow;
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

::-webkit-details-marker {
  /* Hide the default disclosure marker to allow for custom styling. */
  display: none;
}

:where(dialog, [popover]) {
  /* Resets overflow property. */
  overflow: unset;
  /* Resets the inline size property. */
  inline-size: unset;
  /* Resets the block size property. */
  block-size: unset;
  /* Resets the max inline size limit. */
  max-inline-size: unset;
  /* Resets the max block size limit. */
  max-block-size: unset;
  /* Removes default padding. */
  padding: unset;
  /* Removes default background color. */
  background-color: unset;
  /* Resets color to default. */
  color: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /* Hide the dialog element and popover element when it is not open. */
  display: none !important;
}

::-ms-backdrop {
  /* Remove default backdrop color for a clearer view of the underlying content. */
  background-color: unset;
}

::backdrop {
  /* Remove default backdrop color for a clearer view of the underlying content. */
  background-color: unset;
}

/* ======================================================
// MARK: ## Focus styles
// ------------------------------------------------------ */
:where(:-moz-focusring) {
  /* Improve outlines for Firefox and unify style with input elements and buttons. */
  outline: auto;
}

:where(:focus-visible) {
  /* Slightly offset focus outline for better visibility without overlapping text. */
  outline-offset: 2px;
}

:where(:focus):not(:where(:focus-visible)) {
  /* Hide focus outline unless element is explicitly focus-visible to reduce visual clutter. */
  outline: none;
}

[tabindex="-1"]:focus-visible {
  /* Ensure that programmatically focused elements do not show an outline unless they are naturally focusable. */
  outline: none !important;
}

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

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

/* ======================================================
// MARK: ## Reduced Motion
// ------------------------------------------------------ */
/* Target all elements that don't have the 'data-safe-animation' attribute. */
@media (prefers-reduced-motion: reduce) {
  :not([data-safe-animation])::-ms-backdrop {
    /* Disable animations and transitions for users who prefer reduced motion. */
    background-attachment: unset !important;
    scroll-behavior: unset !important;
    transition-delay: unset !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: unset !important;
    animation-iteration-count: unset !important;
    view-transition-name: none !important;
  }
  :not([data-safe-animation]), :not([data-safe-animation])::before, :not([data-safe-animation])::after, :not([data-safe-animation])::backdrop {
    /* Disable animations and transitions for users who prefer reduced motion. */
    background-attachment: unset !important;
    scroll-behavior: unset !important;
    -webkit-transition-delay: unset !important;
            transition-delay: unset !important;
    -webkit-transition-duration: 1ms !important;
            transition-duration: 1ms !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-delay: unset !important;
            animation-delay: unset !important;
    -webkit-animation-iteration-count: unset !important;
            animation-iteration-count: unset !important;
    view-transition-name: none !important;
  }
}

/* ======================================================
// MARK: ## Utility Classes
// ------------------------------------------------------ */
/* Create a pseudo-element to adjust the vertical space above and below an element. */
.leading-trim::before, .leading-trim::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.leading-trim::before {
  -webkit-margin-after: var(--leading-trim);
          margin-block-end: var(--leading-trim);
}
.leading-trim::after {
  -webkit-margin-before: var(--leading-trim);
          margin-block-start: var(--leading-trim);
}

/* Hide content visually but keep it accessible to screen readers. */
.visually-hidden {
  position: fixed !important;
  inset: 0 !important;
  contain: strict !important;
  visibility: initial !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  margin: unset !important;
  padding: unset !important;
  border: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html {
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr_height);
}
html:has(.is-gnavopen) {
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  min-width: 1000px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}

:where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-ja);
}

a,
button {
  text-decoration: none;
  outline: none;
  color: #000;
}
@media (any-hover: hover) {
  a,
  button {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  a:hover,
  button:hover {
    opacity: 0.5;
  }
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

table {
  border-collapse: collapse;
  max-width: 100%;
  width: 100%;
}
table th,
table td {
  vertical-align: top;
}

ul,
ol {
  list-style-position: inside;
  list-style: none;
}

.l_hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.l_hdr.is-scrolled {
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.l_hdr .c_inner {
  height: var(--hdr_height);
}
.l_hdr__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.l_hdr__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l_hdr__logo .image {
  width: 32px;
}
.l_hdr__logo .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: var(--text);
}
.l_hdr__logo-en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .l_hdr__logo-en {
    font-size: 1.6rem;
  }
}
.l_hdr__logo-en em {
  font-style: normal;
  color: var(--main-light);
}
.l_hdr__logo-ja {
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .l_hdr__nav {
    display: none;
  }
}
.l_hdr__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.l_hdr__nav-list a:not(.c_btn) {
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
.l_hdr__nav-list a:not(.c_btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--main);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (any-hover: hover) {
  .l_hdr__nav-list a:not(.c_btn):hover::after {
    width: 100%;
  }
}
.l_hdr__hmb {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .l_hdr__hmb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l_hdr__hmb span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main);
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.is-gnavopen .l_hdr__hmb span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.is-gnavopen .l_hdr__hmb span:nth-child(2) {
  opacity: 0;
}
.is-gnavopen .l_hdr__hmb span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
.l_hdr__drawer {
  display: none;
  position: fixed;
  top: var(--hdr_height);
  right: 0;
  width: 280px;
  height: calc(100vh - var(--hdr_height));
  background: var(--white);
  border-left: 1px solid var(--border);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}
@media screen and (max-width: 1200px) {
  .l_hdr__drawer {
    display: block;
  }
}
.is-gnavopen .l_hdr__drawer {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l_hdr__drawer-list {
  padding: 32px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.l_hdr__drawer-list li {
  border-bottom: 1px solid var(--border);
}
.l_hdr__drawer-list li:last-child {
  border-bottom: none;
  margin-top: 24px;
}
.l_hdr__drawer-list li:last-child a {
  display: block;
  text-align: center;
}
.l_hdr__drawer-list a:not(.c_btn) {
  display: block;
  padding: 16px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.l_hdr__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .l_hdr__overlay {
    display: block;
    pointer-events: none;
  }
}
.is-gnavopen .l_hdr__overlay {
  opacity: 1;
  pointer-events: auto;
}

.l_ftr {
  background: var(--text);
  color: var(--white);
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .l_ftr {
    padding: 48px 0 0;
  }
}
.l_ftr__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 768px) {
  .l_ftr__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
  }
}
.l_ftr__brand {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l_ftr__logo-en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l_ftr__logo-en img {
  width: 40px;
  margin-right: 10px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.l_ftr__logo-en em {
  font-style: normal;
  color: var(--sky);
}
.l_ftr__logo-ja {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}
.l_ftr__address {
  font-size: 1.2rem;
  color: var(--gray-light);
  line-height: 1.8;
}
.l_ftr__nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
}
.l_ftr__nav a {
  font-size: 1.3rem;
  color: var(--gray-light);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .l_ftr__nav a:hover {
    color: var(--sky);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .l_ftr__nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
  }
}
.l_ftr__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .l_ftr__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.l_ftr__copyright {
  font-size: 1.2rem;
  color: var(--gray-light);
}
.l_ftr__credit {
  font-size: 1.2rem;
  color: var(--gray-light);
}
.l_ftr__credit a {
  color: var(--gray-light);
  text-decoration: none;
}
@media (any-hover: hover) {
  .l_ftr__credit a:hover {
    opacity: 0.8;
  }
}

.c_pagetop {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--main);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c_pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
}
.c_pagetop svg {
  width: 20px;
  height: 20px;
}
@media (any-hover: hover) {
  .c_pagetop:hover {
    opacity: 0.8 !important;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media screen and (max-width: 768px) {
  .c_pagetop {
    bottom: 24px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

main {
  padding-top: var(--hdr_height);
}

.c_inner {
  max-width: 750px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.c_inner._full {
  max-width: 100%;
}
.c_inner._1000 {
  max-width: 1000px;
}

@media screen and (min-width: 1025px) {
  .c_tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .c_tab_none {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .c_sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .c_pc {
    display: none !important;
  }
}
.c_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  line-height: 1.2;
  border: none;
  outline: none;
}
@media screen and (max-width: 768px) {
  .c_btn {
    padding: 14px 28px;
    font-size: 1.4rem;
  }
}
.c_btn--primary {
  background: var(--main);
  color: var(--white);
}
@media (any-hover: hover) {
  .c_btn--primary:hover {
    background: var(--main-dark);
    opacity: 1;
  }
}
.c_btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (any-hover: hover) {
  .c_btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
  }
}
.c_btn--outline-dark {
  background: transparent;
  color: var(--main);
  border: 1px solid var(--main);
}
@media (any-hover: hover) {
  .c_btn--outline-dark:hover {
    background: var(--main);
    color: var(--white);
    opacity: 1;
  }
}
.c_btn--text {
  padding: 0 0 4px;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--main);
  border-bottom: 1px solid rgba(0, 100, 154, 0.4);
  background: transparent;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}
.c_btn--text::after {
  content: "→";
}
@media (any-hover: hover) {
  .c_btn--text:hover {
    gap: 20px;
    opacity: 1;
  }
}
.c_btn--sm {
  padding: 10px 20px;
  font-size: 1.3rem;
}
.c_btn--lg {
  padding: 20px 52px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c_btn--lg {
    padding: 16px 36px;
    font-size: 1.5rem;
  }
}

.c_ttl {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .c_ttl {
    margin-bottom: 40px;
  }
}
.c_ttl__en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.45em;
  color: var(--main);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  line-height: 1;
}
.c_ttl__en::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--main);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.c_ttl__ja {
  font-family: var(--font-ja);
  font-size: clamp(2.4rem, 3vw, 3.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.c_ttl__sub {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: #666;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c_ttl__sub {
    font-size: 1.4rem;
  }
}
.c_ttl--dark .c_ttl__en {
  color: rgba(255, 255, 255, 0.55);
}
.c_ttl--dark .c_ttl__en::before {
  background: rgba(255, 255, 255, 0.55);
}
.c_ttl--dark .c_ttl__ja {
  color: var(--white);
}
.c_ttl--dark .c_ttl__sub {
  color: rgba(255, 255, 255, 0.55);
}

.c_pankuzu {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.c_pankuzu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
}
.c_pankuzu > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: bold;
}
.c_pankuzu > span + span:before {
  margin: 0 5px;
  content: "/";
  color: white;
}
.c_pankuzu > span > a,
.c_pankuzu > span > span {
  color: white;
}
.wp-block-post-content {
  max-width: 750px;
  margin: 0 auto;
}

.wp-block-post-content .wp-block-group {
  padding: 1em;
  border: 1px solid #000;
}

.c_wysywig,
.editor-styles-wrapper .wp-block-post-content {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 500;
  letter-spacing: 0.05em;
  word-break: break-all;
}
.c_wysywig *:first-child,
.editor-styles-wrapper .wp-block-post-content *:first-child {
  margin-top: 0 !important;
}
.c_wysywig *:last-child,
.editor-styles-wrapper .wp-block-post-content *:last-child {
  margin-bottom: 0 !important;
}
.c_wysywig > *,
.c_wysywig > *,
.editor-styles-wrapper .wp-block-post-content > *,
.editor-styles-wrapper .wp-block-post-content > * {
  margin-bottom: 2rem;
  clear: both;
}
.c_wysywig h1,
.c_wysywig h2,
.editor-styles-wrapper .wp-block-post-content h1,
.editor-styles-wrapper .wp-block-post-content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
}
.c_wysywig h3,
.c_wysywig h4,
.c_wysywig h5,
.c_wysywig h6,
.editor-styles-wrapper .wp-block-post-content h3,
.editor-styles-wrapper .wp-block-post-content h4,
.editor-styles-wrapper .wp-block-post-content h5,
.editor-styles-wrapper .wp-block-post-content h6 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--blue);
  line-height: 1.5;
}
.c_wysywig ol,
.editor-styles-wrapper .wp-block-post-content ol {
  padding-left: 1.5em;
  list-style: decimal;
  list-style-position: outside;
}
.c_wysywig ol li,
.editor-styles-wrapper .wp-block-post-content ol li {
  margin: 0.25em 0;
  color: var(--blue);
}
.c_wysywig ul,
.editor-styles-wrapper .wp-block-post-content ul {
  padding-left: 1.5em;
  list-style: disc;
  list-style-position: outside;
}
.c_wysywig ul li,
.editor-styles-wrapper .wp-block-post-content ul li {
  margin: 0.25em 0;
  color: var(--blue);
}

.c_pager {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c_pager {
    margin-top: 30px;
  }
}
.c_pager .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  gap: 10px;
}
.c_pager .wp-pagenavi a,
.c_pager .wp-pagenavi span {
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
  /* border-radius: 4px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media (any-hover: hover) {
  .c_pager .wp-pagenavi a:hover {
    opacity: 1;
    color: white;
  }
}
.c_pager .wp-pagenavi .pages {
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .pages {
    display: none;
  }
}
.c_pager .wp-pagenavi .current {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .first,
  .c_pager .wp-pagenavi .last {
    display: none;
  }
}

#top {
  color: var(--text);
}

.p_mv {
  position: relative;
  min-height: calc(100svh - var(--hdr_height));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: url("../images/mv.jpg") center bottom/cover no-repeat;
  padding-bottom: 40svh;
}
@media screen and (max-width: 768px) {
  .p_mv {
    padding-bottom: 10svh;
  }
}
.p_mv__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 15, 40, 0.5)), color-stop(50%, rgba(0, 15, 40, 0.3)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(to bottom, rgba(0, 15, 40, 0.5) 0%, rgba(0, 15, 40, 0.3) 50%, rgba(0, 0, 0, 0.65) 100%);
}
.p_mv .c_inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_mv .c_inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.p_mv__eyecatch {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .p_mv__eyecatch {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
}
.p_mv__title {
  font-family: var(--font-ja);
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.p_mv__title em {
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .p_mv__title {
    margin-bottom: 16px;
  }
}
.p_mv__lead {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .p_mv__lead {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
.p_mv__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p_mv__tags {
    gap: 8px;
    margin-bottom: 32px;
  }
}
.p_mv__tags li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 8px 18px;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media screen and (max-width: 768px) {
  .p_mv__tags li {
    font-size: 1.2rem;
    padding: 6px 12px;
  }
}
.p_mv__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p_mv__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
  .p_mv__cta .c_btn {
    width: 100%;
    max-width: 320px;
  }
}

.p_feature {
  margin-top: 96px;
  padding: 96px 0;
  background: var(--bg-light);
}
@media screen and (max-width: 768px) {
  .p_feature {
    padding: 64px 0;
    margin-top: 64px;
  }
}
.p_feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 560px) {
  .p_feature__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p_feature__item {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .p_feature__item:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 8px 24px rgba(0, 100, 154, 0.12);
            box-shadow: 0 8px 24px rgba(0, 100, 154, 0.12);
  }
}
@media screen and (max-width: 768px) {
  .p_feature__item {
    padding: 24px 20px;
  }
}
.p_feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--main);
}
.p_feature__icon svg {
  width: 100%;
  height: 100%;
}
.p_feature__name {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
}
.p_feature__text {
  font-size: 1.3rem;
  color: var(--gray);
  line-height: 1.8;
}
.p_feature__news {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .p_feature__news {
    margin-top: 48px;
  }
}
.p_feature__news-label {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--main);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.p_feature__news-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--main);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p_jobs {
  padding: 96px 0;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .p_jobs {
    padding: 64px 0;
  }
}
.p_jobs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media screen and (max-width: 560px) {
  .p_jobs__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p_jobs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p_jobs__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--border);
}
.p_jobs__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p_jobs__num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--white);
  background: var(--main);
  line-height: 1;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.p_jobs__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p_jobs__body {
    padding: 16px 20px 20px;
  }
}
.p_jobs__name {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p_jobs__name {
    font-size: 1.6rem;
  }
}
.p_jobs__text {
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_jobs__salary {
  font-size: 1.3rem;
  color: var(--gray);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.p_jobs__salary strong {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--main);
}
.p_jobs__note {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  text-align: center;
}
.p_jobs__cta {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p_jobs__cta .c_btn {
    width: 100%;
  }
}
.p_jobs__entry {
  text-align: center;
}
.p_jobs__entry p {
  font-size: 1.4rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.p_welfare {
  padding: 96px 0;
  background: var(--bg-light);
}
@media screen and (max-width: 768px) {
  .p_welfare {
    padding: 64px 0;
  }
}
.p_welfare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 900px) {
  .p_welfare__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p_welfare__block {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
  .p_welfare__block {
    padding: 24px 20px;
  }
}
.p_welfare__name {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--main);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p_welfare__name::before {
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  background: var(--main);
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .p_welfare__name {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.p_welfare__chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.p_welfare__chips li {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--main);
  background: var(--bg-light);
  border: 1px solid rgba(0, 100, 154, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.p_welfare__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}
@media screen and (max-width: 560px) {
  .p_welfare__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p_welfare__item {
  position: relative;
  padding-left: 26px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text);
}
.p_welfare__item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--main);
  border-bottom: 2px solid var(--main);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p_welfare__item strong {
  font-weight: 500;
  color: var(--main);
  margin-left: 2px;
}
.p_welfare__sep {
  color: var(--gray-light);
}
.p_welfare__note {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 300;
}
.p_welfare__sub {
  display: block;
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: 4px;
  padding-left: 16px;
  line-height: 1.6;
  position: relative;
}
.p_welfare__sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1px;
  background: var(--gray-light);
}

.p_company {
  padding-top: 96px;
}
@media screen and (max-width: 768px) {
  .p_company {
    padding-top: 64px;
  }
}
.p_company__table table {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p_company__table table {
    font-size: 1.4rem;
  }
}
.p_company__table table tr {
  border-bottom: 1px solid var(--border);
}
.p_company__table table tr:first-child {
  border-top: 1px solid var(--border);
}
.p_company__table table th,
.p_company__table table td {
  padding: 18px 0;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p_company__table table th,
  .p_company__table table td {
    padding: 14px 0;
  }
}
.p_company__table table th {
  font-weight: 400;
  color: var(--gray);
  padding-right: 24px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p_company__table table th {
    padding-right: 16px;
  }
}
.p_company__table table td {
  color: var(--text);
}
.p_company__group {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p_company__group {
    padding: 24px 20px;
  }
}
.p_company__group-label {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--main);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.p_company__group-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p_company__group-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p_company__group-logo-wrap {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p_company__group-logo-wrap {
    padding: 20px 80px;
  }
}
.p_company__group-logo {
  width: 100%;
  height: auto;
}
.p_company__group-name {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.p_company__group-text {
  font-size: 1.3rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.p_team {
  padding: 96px 0;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .p_team {
    padding: 64px 0;
  }
}
.p_team__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 560px) {
  .p_team__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p_team__item {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
}
.p_team__img {
  aspect-ratio: 1/1;
}
.p_team__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p_team__img-placeholder {
  color: rgba(0, 100, 154, 0.3);
  width: 80px;
  height: 80px;
}
.p_team__img-placeholder svg {
  width: 100%;
  height: 100%;
}
.p_team__body {
  padding: 16px 20px;
}
.p_team__role {
  font-size: 1rem;
  font-weight: 300;
  color: var(--main);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.p_team__name {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.p_team__text {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.8;
}

.p_staff {
  padding: 96px 0;
  background: #0a1e38;
}
@media screen and (max-width: 768px) {
  .p_staff {
    padding: 64px 0;
  }
}
.p_staff__slider {
  position: relative;
}
.p_staff__slider .swiper-slide {
  height: auto;
}
.p_staff__card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto 1fr;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
}
@media screen and (max-width: 768px) {
  .p_staff__card {
    padding: 24px 20px;
  }
}
.p_staff__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-column: 1;
  grid-row: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_staff__icon svg {
  width: 30px;
  height: 30px;
}
.p_staff__icon--01 {
  background: var(--main);
}
.p_staff__icon--02 {
  background: #0891b2;
}
.p_staff__icon--03 {
  background: #475569;
}
.p_staff__icon--04 {
  background: #0ea5e9;
}
.p_staff__icon--05 {
  background: #1d4ed8;
}
.p_staff__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.p_staff__quote {
  grid-column: 1/-1;
  grid-row: 2;
}
.p_staff__age {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.p_staff__job {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--main);
  background: #dbeafe;
  padding: 2px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.p_staff__quote {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_staff__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.p_staff__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_staff__btn svg {
  width: 16px;
  height: 16px;
}
@media (any-hover: hover) {
  .p_staff__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
  }
}
.p_staff__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.p_staff__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_staff__pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  -webkit-transition: width 0.3s ease, background 0.3s ease;
  transition: width 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.p_staff__pagination .swiper-pagination-bullet-active {
  background: var(--white);
  width: 20px;
}

.p_flow {
  padding: 96px 0;
  background: var(--bg-light);
}
@media screen and (max-width: 768px) {
  .p_flow {
    padding: 64px 0;
  }
}
.p_flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  counter-reset: flow-counter;
}
@media screen and (max-width: 768px) {
  .p_flow__list {
    gap: 48px;
  }
}
.p_flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.p_flow__item:not(:last-child) .p_flow__step {
  position: relative;
}
.p_flow__item:not(:last-child) .p_flow__step::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 100%;
  width: 2px;
  height: 100px;
  background: var(--border);
}
@media screen and (max-width: 768px) {
  .p_flow__item:not(:last-child) .p_flow__step::after {
    left: 28px;
  }
}
@media screen and (max-width: 768px) {
  .p_flow__item {
    gap: 16px;
  }
}
.p_flow__step {
  width: 72px;
  height: 72px;
  background: var(--main);
  color: var(--white);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  gap: 2px;
  padding-top: 3px;
}
.p_flow__step span {
  font-size: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p_flow__step {
    width: 56px;
    height: 56px;
    font-size: 0.9rem;
  }
  .p_flow__step span {
    font-size: 1.5rem;
  }
}
.p_flow__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p_flow__name {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p_flow__name {
    font-size: 1.6rem;
  }
}
.p_flow__text {
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1.8;
}

.p_entry {
  padding: 96px 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#f0f9ff), to(var(--white)));
  background: linear-gradient(0deg, #f0f9ff 0%, var(--white) 100%);
}
@media screen and (max-width: 768px) {
  .p_entry {
    padding: 64px 0;
  }
}
.p_entry__wrap {
  margin: 0 auto 48px;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .p_entry__wrap {
    padding: 32px 24px;
  }
}
.p_entry__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.p_entry__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p_entry__label {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p_entry__required {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  background: var(--main);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.p_entry__optional {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-light);
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 3px;
}
.p_entry__input, .p_entry__select, .p_entry__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 1.6rem;
  color: var(--text);
  background: var(--white);
  font-family: inherit;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.p_entry__input::-webkit-input-placeholder, .p_entry__select::-webkit-input-placeholder, .p_entry__textarea::-webkit-input-placeholder {
  color: var(--gray-light);
}
.p_entry__input::-moz-placeholder, .p_entry__select::-moz-placeholder, .p_entry__textarea::-moz-placeholder {
  color: var(--gray-light);
}
.p_entry__input:-ms-input-placeholder, .p_entry__select:-ms-input-placeholder, .p_entry__textarea:-ms-input-placeholder {
  color: var(--gray-light);
}
.p_entry__input::-ms-input-placeholder, .p_entry__select::-ms-input-placeholder, .p_entry__textarea::-ms-input-placeholder {
  color: var(--gray-light);
}
.p_entry__input::placeholder, .p_entry__select::placeholder, .p_entry__textarea::placeholder {
  color: var(--gray-light);
}
.p_entry__input:focus, .p_entry__select:focus, .p_entry__textarea:focus {
  outline: none;
  border-color: var(--main);
  -webkit-box-shadow: 0 0 0 3px rgba(0, 100, 154, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 100, 154, 0.12);
}
.p_entry__input.is-error, .p_entry__select.is-error, .p_entry__textarea.is-error {
  border-color: #ef4444;
}
.p_entry__select-wrap {
  position: relative;
}
.p_entry__select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: var(--gray);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.p_entry__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p_entry__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text);
}
.p_entry__radio input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: var(--main);
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_entry__textarea {
  resize: vertical;
  min-height: 120px;
}
.p_entry__privacy {
  font-size: 1.2rem;
  color: var(--gray-light);
  line-height: 1.7;
  padding: 16px;
  background: #f8fafc;
  border-radius: 6px;
}
.p_entry__submit {
  text-align: center;
  margin-top: 8px;
}
.p_entry__error-box {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-left: 4px solid #ef4444;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.p_entry__error-box__msg {
  font-size: 1.4rem;
  font-weight: 400;
  color: #dc2626;
  margin-bottom: 8px;
}
.p_entry__error-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p_entry__error-box__list li {
  font-size: 1.3rem;
  color: #dc2626;
  padding-left: 1em;
  position: relative;
}
.p_entry__error-box__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p_entry__error {
  font-size: 1.2rem;
  color: #ef4444;
  margin-top: 2px;
}
.p_entry__success {
  text-align: center;
  padding: 24px;
}
.p_entry__success-icon {
  font-size: 4.8rem;
  margin-bottom: 16px;
}
.p_entry__success h3 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.p_entry__success p {
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1.8;
}
.p_entry__success-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.p_entry__error-result {
  padding: 24px;
}
.p_entry__error-result__inner {
  text-align: center;
}
.p_entry__error-result__icon {
  font-size: 4rem;
  margin-bottom: 16px;
}
.p_entry__error-result h3 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.p_entry__error-result p {
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.p_entry__error-result__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  background: #fef2f2;
  border-radius: 6px;
  padding: 12px 16px;
}
.p_entry__error-result__list li {
  font-size: 1.3rem;
  color: #dc2626;
  padding-left: 1em;
  position: relative;
}
.p_entry__error-result__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p_entry__error-result__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.p_entry__indeed {
  text-align: center;
}
.p_entry__indeed p {
  font-size: 1.4rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.p_faq {
  padding: 96px 0;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .p_faq {
    padding: 64px 0;
  }
}
.p_faq__list {
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  border-top: 1px solid var(--border);
}
.p_faq__item {
  border-bottom: 1px solid var(--border);
}
.p_faq__details[open] .p_faq__summary {
  color: var(--main);
}
.p_faq__details[open] .p_faq__icon::after {
  -webkit-transform: translate(-50%, -50%) scaleY(0);
          transform: translate(-50%, -50%) scaleY(0);
}
.p_faq__summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 22px 8px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.p_faq__summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  .p_faq__summary:hover {
    color: var(--main);
  }
}
@media screen and (max-width: 768px) {
  .p_faq__summary {
    gap: 12px;
    padding: 18px 4px;
  }
}
.p_faq__mark {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 400;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  letter-spacing: 0;
  line-height: 1;
  padding-top: 4px;
}
.p_faq__mark--q {
  background: var(--main);
  color: var(--white);
}
.p_faq__mark--a {
  background: var(--bg-light);
  color: var(--main);
  border: 1px solid rgba(0, 100, 154, 0.25);
}
@media screen and (max-width: 768px) {
  .p_faq__mark {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    padding-top: 2px;
  }
}
.p_faq__question {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p_faq__question {
    font-size: 1.4rem;
  }
}
.p_faq__icon {
  position: relative;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_faq__icon::before, .p_faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.p_faq__icon::before {
  width: 14px;
  height: 1.5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p_faq__icon::after {
  width: 1.5px;
  height: 14px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p_faq__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 0 8px 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 768px) {
  .p_faq__body {
    gap: 12px;
    padding: 0 4px 18px;
  }
}
.p_faq__answer {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--gray);
  padding-top: 6px;
}

.p_information {
  padding: 96px 0;
  background: var(--bg-light);
}
@media screen and (max-width: 768px) {
  .p_information {
    padding: 64px 0;
  }
}
.p_information__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media screen and (max-width: 600px) {
  .p_information__list {
    grid-template-columns: 1fr;
  }
}
.p_information__item {
  border-bottom: 1px solid var(--border);
}
.p_information__item:nth-child(odd) {
  border-right: 1px solid var(--border);
}
@media screen and (max-width: 600px) {
  .p_information__item:nth-child(odd) {
    border-right: none;
  }
}
.p_information__item:nth-child(-n+2) {
  border-top: 1px solid var(--border);
}
@media screen and (max-width: 600px) {
  .p_information__item:nth-child(-n+2):nth-child(2) {
    border-top: none;
  }
}
@media screen and (max-width: 600px) {
  .p_information__item:first-child {
    border-top: 1px solid var(--border);
  }
}
.p_information__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  height: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 18px 16px;
  color: var(--text);
  text-decoration: none;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  background-color: #fff;
}
@media (any-hover: hover) {
  .p_information__link {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .p_information__link:hover {
    background: var(--bg-light);
  }
  .p_information__link:hover .p_information__title {
    color: var(--main);
  }
}
@media screen and (max-width: 768px) {
  .p_information__link {
    padding: 14px 12px;
    gap: 10px;
  }
}
.p_information__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.p_information__source {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  overflow: hidden;
}
.p_information__source img {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 2px;
}
.p_information__title {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p_information__date {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.p_information__img {
  width: 100px;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--border);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_information__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p_information__img {
    width: 80px;
  }
}

:root {
  --hdr_height: 72px;
  --main: #00649a;
  --main-light: #0ea5e9;
  --main-dark: #004d78;
  --sky: #bae6fd;
  --bg-light: #f0f9ff;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --border: #cbd5e1;
  --text: #1e293b;
  --white: #ffffff;
  --font-ja: 'Noto Serif JP', "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
  --font-sans: 'Noto Sans JP', "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: 'Josefin Sans', sans-serif;
}
@media screen and (max-width: 768px) {
  :root {
    --hdr_height: 60px;
  }
}/*# sourceMappingURL=style.css.map */