@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: calc(var(--hdr_height) + 100px) !important;
  font-size: 0.7320644217vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
}
html:has(.is-gnavopen) {
  overflow: hidden;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  background: #000000;
}
a,
button {
  text-decoration: none;
  outline: none;
  color: #FFFFFF;
}
@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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 11.8rem;
  z-index: 10;
}
.l_hdr .logo {
  padding: 1rem 3.5rem;
}
.l_hdr .logo img {
  width: 18.1rem;
}
.l_hdr .nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8rem;
  -ms-flex-item-align: center;
      align-self: center;
}
.l_hdr .nav a {
  font-size: 1.4rem;
  font-weight: 900;
}
.l_hdr .entry {
  display: block;
  background-color: #fff;
  margin-left: 3.8rem;
  -ms-flex-item-align: center;
      align-self: center;
  height: 100%;
  position: relative;
  color: black;
}
.l_hdr .entry:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.l_hdr .entry > span {
  position: relative;
  z-index: 1;
  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;
  width: 19.3rem;
  height: 100%;
  gap: 1.2rem;
  font-size: 2.3rem;
  font-weight: bold;
}
.l_hdr .entry > span:before {
  content: "";
  width: 1.4rem;
  height: 1.1rem;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background: black;
}
.l_hdr .entry:hover {
  color: white;
  opacity: 1;
}
.l_hdr .entry:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.l_hdr .entry:hover > span:before {
  background: white;
}

body.is-scroll .l_hdr2 {
  opacity: 1;
  visibility: visible;
}

.l_hdr2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  z-index: 9999;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (min-width: 769px) {
  .l_hdr2 {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 768px) {
  .l_hdr2 {
    height: auto;
    position: sticky;
  }
}
.l_hdr2 .logo {
  padding: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .l_hdr2 .logo {
    padding: 0 0.5rem;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.l_hdr2 .logo img {
  width: 39.1rem;
}
@media screen and (max-width: 768px) {
  .l_hdr2 .logo img {
    width: 26.3rem;
  }
}
.l_hdr2 .nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8rem;
  -ms-flex-item-align: center;
      align-self: center;
}
.l_hdr2 .nav a {
  font-size: 1.4rem;
  font-weight: 900;
  white-space: nowrap;
}
.l_hdr2 .entry {
  display: block;
  background-color: #fff;
  margin-left: 3.8rem;
  position: relative;
  color: black;
}
.l_hdr2 .entry:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.l_hdr2 .entry > span {
  position: relative;
  z-index: 1;
  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;
  width: 19.3rem;
  height: 11.8rem;
  gap: 1.2rem;
  font-size: 2.3rem;
  font-weight: bold;
}
.l_hdr2 .entry > span:before {
  content: "";
  width: 1.4rem;
  height: 1.1rem;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background: black;
}
.l_hdr2 .entry:hover {
  color: white;
  opacity: 1;
}
.l_hdr2 .entry:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.l_hdr2 .entry:hover > span:before {
  background: white;
}
@media screen and (max-width: 768px) {
  .l_hdr2 .hmb {
    margin-left: auto;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
    width: 8rem;
    height: 8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
  .l_hdr2 .hmb .line {
    width: 5.6rem;
    height: 1.8rem;
    position: relative;
    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;
  }
  .l_hdr2 .hmb .line > span {
    position: absolute;
    width: 100%;
    height: 1px;
    margin: auto 0;
    background: #000;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .l_hdr2 .hmb .line > span:nth-child(1) {
    top: 0;
  }
  .l_hdr2 .hmb .line > span:nth-child(2) {
    top: 50%;
  }
  .l_hdr2 .hmb .line > span:nth-child(3) {
    bottom: 0;
  }
  .l_hdr2 .hmb .text {
    font-size: 1.7rem;
    font-weight: 900;
    color: black;
  }
  .l_hdr2 .hmb .text:before {
    content: "MENU";
  }
  .l_hdr2 .hmb.is-open .line > span:nth-child(1) {
    top: 50%;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .l_hdr2 .hmb.is-open .line > span:nth-child(2) {
    opacity: 0;
  }
  .l_hdr2 .hmb.is-open .line > span:nth-child(3) {
    bottom: 50%;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .l_hdr2 .hmb.is-open .text:before {
    content: "CLOSE";
  }
}

.l_spnav {
  position: fixed;
  top: 8rem;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background: #000;
  padding: 4rem 3.6rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l_spnav.is-open {
  opacity: 1;
  visibility: visible;
}
.l_spnav .flex {
  border-top: 1px solid #7c7c7c;
}
.l_spnav .flex dl dt {
  border-bottom: 1px solid #7c7c7c;
  position: relative;
}
.l_spnav .flex dl dt a {
  font-size: 1.7rem;
  font-weight: bold;
  padding: 1.5rem 0;
  display: block;
}
.l_spnav .flex dl dt .toggle {
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  right: 0;
  border-left: 1px solid #7c7c7c;
  width: 6rem;
}
.l_spnav .flex dl dt .toggle:before, .l_spnav .flex dl dt .toggle:after {
  content: "";
  width: 1.8rem;
  height: 0.3rem;
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l_spnav .flex dl dt .toggle:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.l_spnav .flex dl dt .toggle._arrow {
  pointer-events: none;
}
.l_spnav .flex dl dt .toggle._arrow:before, .l_spnav .flex dl dt .toggle._arrow:after {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  width: 1.1rem;
}
.l_spnav .flex dl dt .toggle._arrow:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l_spnav .flex dl dt .toggle._arrow:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l_spnav .flex dl dt .toggle.is-open:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.l_spnav .flex dl dd {
  padding: 2rem;
  border-bottom: 1px solid #7c7c7c;
  display: none;
}
.l_spnav .flex dl dd a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.7142857143;
  display: block;
}
.l_spnav .vis {
  background: url(../images/cta_bg_sp@2x.jpg) center no-repeat;
  background-size: cover;
  padding: 12rem 0 9rem;
  text-align: center;
  margin-top: 8rem;
  margin-inline: calc(50% - 50vw);
}
.l_spnav .vis img {
  width: 17rem;
}
.l_spnav .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 4.2rem;
  gap: 2.6rem;
}

body.is-scroll .l_ftr__spfixbtn {
  opacity: 1;
  visibility: visible;
}

.l_ftr {
  padding: 15rem 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_ftr {
    padding: 10rem 0 6rem;
  }
}
.l_ftr__spfixbtn {
  position: fixed;
  bottom: 0;
  z-index: 99;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l_ftr__spfixbtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, right top, from(#6eb92b), to(#008ba4));
  background: linear-gradient(to right, #6eb92b 0%, #008ba4 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 6rem;
  font-size: 2.3rem;
  font-weight: bold;
  padding: 0 5rem;
}
.l_ftr__spfixbtn a:before {
  content: "";
  width: 1.8rem;
  height: 1.4rem;
  background-color: #fff;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.l_ftr__spfixbtn a span {
  margin: 0 auto;
}
.l_ftr__cta {
  padding: 10rem 0 8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_ftr__cta {
    padding-bottom: 0;
  }
}
.l_ftr__cta .bg {
  position: absolute;
  inset: 0;
}
.l_ftr__cta .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l_ftr__cta .bg img {
    height: 50rem;
  }
}
.l_ftr__cta .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;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l_ftr__cta .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12.5rem;
  }
}
.l_ftr__cta .textarea img {
  width: 20.4rem;
}
@media screen and (max-width: 768px) {
  .l_ftr__cta .textarea img {
    width: 17rem;
  }
}
.l_ftr__cta .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.7rem;
}
.l_ftr__bg {
  background: #000;
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 769px) {
  .l_ftr__sitemap .flex {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .l_ftr__sitemap .flex dl dt a {
    font-size: 1.7rem;
    line-height: 2.3529411765;
    font-weight: bold;
  }
  .l_ftr__sitemap .flex dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l_ftr__sitemap .flex dl dd a {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.1428571429;
  }
}
@media screen and (max-width: 768px) {
  .l_ftr__sitemap .flex {
    border-top: 1px solid #7c7c7c;
  }
  .l_ftr__sitemap .flex dl dt {
    border-bottom: 1px solid #7c7c7c;
    position: relative;
  }
  .l_ftr__sitemap .flex dl dt a {
    font-size: 1.7rem;
    font-weight: bold;
    padding: 1.5rem 0;
    display: block;
  }
  .l_ftr__sitemap .flex dl dt .toggle {
    position: absolute;
    top: 0.6rem;
    bottom: 0.6rem;
    right: 0;
    border-left: 1px solid #7c7c7c;
    width: 6rem;
  }
  .l_ftr__sitemap .flex dl dt .toggle:before, .l_ftr__sitemap .flex dl dt .toggle:after {
    content: "";
    width: 1.8rem;
    height: 0.3rem;
    position: absolute;
    inset: 0;
    margin: auto;
    background-color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .l_ftr__sitemap .flex dl dt .toggle:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .l_ftr__sitemap .flex dl dt .toggle._arrow {
    pointer-events: none;
  }
  .l_ftr__sitemap .flex dl dt .toggle._arrow:before, .l_ftr__sitemap .flex dl dt .toggle._arrow:after {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    width: 1.1rem;
  }
  .l_ftr__sitemap .flex dl dt .toggle._arrow:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .l_ftr__sitemap .flex dl dt .toggle._arrow:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .l_ftr__sitemap .flex dl dt .toggle.is-open:after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .l_ftr__sitemap .flex dl dd {
    padding: 2rem;
    border-bottom: 1px solid #7c7c7c;
    display: none;
  }
  .l_ftr__sitemap .flex dl dd a {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.7142857143;
    display: block;
  }
}
.l_ftr__bottom {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .l_ftr__bottom {
    margin-top: 7rem;
  }
}
.l_ftr__bottom .head {
  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;
}
@media screen and (max-width: 768px) {
  .l_ftr__bottom .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.l_ftr__bottom .head .logo img {
  width: 40.3rem;
}
@media screen and (max-width: 768px) {
  .l_ftr__bottom .head .logo img {
    width: 31.8rem;
  }
}
@media screen and (max-width: 768px) {
  .l_ftr__bottom .head .textarea {
    text-align: center;
  }
}
.l_ftr__bottom .head .textarea .name {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.12em;
}
.l_ftr__bottom .head .textarea .addr {
  font-size: 1.7rem;
  line-height: 1.6470588235;
  font-weight: bold;
  margin-top: 1rem;
}
.l_ftr__bottom .foot {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l_ftr__bottom .foot {
    margin-top: 2rem;
    padding-top: 2rem;
    -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;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .l_ftr__bottom .foot .nav {
    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;
  }
}
.l_ftr__bottom .foot .nav a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
}
.l_ftr__bottom .foot .nav a + a:before {
  content: " ／";
}
@media screen and (max-width: 768px) {
  .l_ftr__bottom .foot .nav a + a:before {
    display: none;
  }
}
.l_ftr__bottom .foot .copy {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 2;
}
.l_ftr__pagetop {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .l_ftr__pagetop {
    position: static;
    text-align: center;
    margin-top: 4rem;
  }
}
.l_ftr__pagetop img {
  width: 1.6rem;
}
@media screen and (max-width: 768px) {
  .l_ftr__pagetop img {
    width: 10rem;
  }
}

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

@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_sans {
  font-family: "Noto Sans JP", serif;
}

.c_btnA {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 100%;
  width: 24.4rem;
  height: 6rem;
  position: relative;
  border: 1px solid white;
}
.c_btnA:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c_btnA__text {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  font-size: 1.7rem;
  font-weight: 900;
  padding: 2rem;
}
.c_btnA__text:before {
  content: "";
  width: 1.4rem;
  height: 1.1rem;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background: white;
}
.c_btnA:hover {
  color: black;
  opacity: 1;
}
.c_btnA:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c_btnA:hover .c_btnA__text:before {
  background: black;
}
.c_btnA._big {
  width: 31.6rem;
  height: 7.8rem;
}
.c_btnA._big__text {
  font-size: 2.3rem;
  padding: 3rem;
}
.c_btnA._white {
  background-color: #fff;
  color: black;
  border-width: 0;
}
.c_btnA._white:before {
  background: black;
}
.c_btnA._white .c_btnA__text:before {
  background: black;
}
.c_btnA._white:hover {
  color: white;
}
.c_btnA._white:hover .c_btnA__text:before {
  background: white;
}

.c_btnB {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  text-decoration: underline;
}
.c_btnB:before {
  content: "";
  background: url(../images/btnB_arrow.svg) center no-repeat;
  background-size: contain;
  width: 2.4rem;
  height: 2.6rem;
}

.c_btnC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.8rem 2rem;
  border: 1px solid white;
}
.c_btnC img {
  width: 2.4rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c_btnC__text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin: 0 auto;
}

.c_titA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c_titA {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2.5rem;
    gap: 1rem;
  }
}
.c_titA:before {
  content: "";
  width: 0.8rem;
  height: 3.3rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#6eb92b), to(#008ba4));
  background: linear-gradient(#6eb92b 0%, #008ba4 100%);
}
.c_pankuzu {
  position: relative;
  z-index: 1;
}
.c_pankuzu .c_inner {
  max-width: 100%;
}
.c_pankuzu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
  padding: 0.5rem 0;
}
.c_pankuzu__list > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 500;
}
.c_pankuzu__list > span + span:before {
  content: "〉";
  margin-left: 1em;
  margin-right: 0.5em;
  color: white;
}
.c_pankuzu__list > span > a,
.c_pankuzu__list > span > span {
  display: inline-block;
  color: white;
  white-space: nowrap;
}
.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.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.08em;
  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: 2em;
  clear: both;
}
@media screen and (max-width: 768px) {
  .c_wysywig > *,
  .c_wysywig > *,
  .editor-styles-wrapper .wp-block-post-content > *,
  .editor-styles-wrapper .wp-block-post-content > * {
    margin-bottom: 1em;
  }
}
.c_wysywig h1,
.c_wysywig h2,
.editor-styles-wrapper .wp-block-post-content h1,
.editor-styles-wrapper .wp-block-post-content h2 {
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-top: 6rem;
}
.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: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.c_wysywig p,
.editor-styles-wrapper .wp-block-post-content p {
  font-family: "Noto Sans JP", serif;
}
.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_cardA {
  display: block;
  position: relative;
}
.c_cardA__image {
  height: 43.4rem;
  position: relative;
}
.c_cardA__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c_cardA__title {
  position: absolute;
  left: -3rem;
  bottom: 3rem;
}
.c_cardA__title span {
  background: #000;
  font-size: 2.3rem;
  line-height: 2.5217391304;
  font-weight: normal;
  letter-spacing: 0.03em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c_cardA__title span {
    font-size: 2rem;
  }
}
.c_cardA__title span:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
.c_cardA__title span br:before {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
.c_cardA__num {
  position: absolute;
  bottom: 0;
  right: 1.2rem;
  font-size: 10rem;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .c_cardA__num {
    font-size: 8rem;
    bottom: 2rem;
  }
}
.c_cardA__num br:before {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
.c_cardA__pos {
  margin-top: 2rem;
  font-size: 1.7rem;
}
.c_cardA__name {
  font-size: 2.3rem;
  margin-top: 1rem;
}

.c_cardB {
  display: block;
  padding: 2rem;
  border: 1px solid white;
}
.c_cardB__image {
  height: 17.9rem;
}
.c_cardB__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c_cardB__title {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 1.5rem;
}
.c_cardB__table tr th,
.c_cardB__table tr td {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 1rem 0;
  border-bottom: 1px solid #fff;
}
.c_cardB__table tr th {
  padding-right: 2rem;
  white-space: nowrap;
}
.c_cardB__more {
  text-align: center;
  margin-top: 2.5rem;
}

.c_pager {
  margin-top: 7rem;
}
.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: 1.6rem;
  gap: 0.8rem;
}
.c_pager .wp-pagenavi a,
.c_pager .wp-pagenavi span {
  color: #fff;
  width: 4rem;
  height: 4rem;
  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;
  border: 1px solid #fff;
}
.c_pager .wp-pagenavi .current {
  background-color: #fff;
  color: black;
}
.c_pager .wp-pagenavi .extend {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .extend {
    display: none;
  }
}
.c_pager .wp-pagenavi .nextpostslink,
.c_pager .wp-pagenavi .previouspostslink {
  background: url(../images/pager_arrow.svg) center no-repeat;
  background-size: 0.7rem;
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .previouspostslink {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .nextpostslink {
    margin-left: auto;
  }
}
.c_pager .wp-pagenavi .first,
.c_pager .wp-pagenavi .last {
  background: url(../images/pager_arrow_double.svg) center no-repeat;
  background-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .first,
  .c_pager .wp-pagenavi .last {
    display: none;
  }
}
.c_pager .wp-pagenavi .nextpostslink,
.c_pager .wp-pagenavi .last {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c_mv {
  text-align: center;
  padding: 20rem 0 3rem;
  background-image: url(../images/about_mv@2x.jpg);
  background-size: cover;
  background-position: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .c_mv {
    padding-top: 11rem;
    padding-bottom: 2rem;
    margin-bottom: 7rem;
  }
}
.c_mv .c_inner {
  max-width: 100%;
}
.c_mv .title {
  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;
  gap: 1rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .c_mv .title {
    margin-bottom: 8rem;
  }
}
.c_mv .title .en {
  font-size: 4.9rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c_mv .title .en {
    font-size: 3.5rem;
  }
}
.c_mv .title .ja {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.c_thanks .c_inner {
  max-width: 93.6rem;
}
.c_thanks__bd {
  border: 1px solid white;
  padding: 10rem 2rem;
}
@media screen and (max-width: 768px) {
  .c_thanks__bd {
    padding: 5rem 2rem 6.4rem;
  }
}
.c_thanks .title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  line-height: 1.8518518519;
  margin-bottom: 1rem;
}
.c_thanks .text {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
}
.c_thanks .btn {
  text-align: center;
  margin-top: 4rem;
}
.c_thanks .c_textswiper {
  margin-top: 5rem;
}

.c_textswiper.swiper {
  width: 193.4rem;
}
@media screen and (max-width: 768px) {
  .c_textswiper.swiper {
    width: 84rem;
  }
}
.c_textswiper .swiper-slide img {
  width: 100%;
}
.c_textswiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.c_cta {
  padding: 5rem 12rem;
  border: 1rem solid;
  -o-border-image: linear-gradient(to left, #6eb92b, #008ba4) 1;
     border-image: -webkit-gradient(linear, right top, left top, from(#6eb92b), to(#008ba4)) 1;
     border-image: linear-gradient(to left, #6eb92b, #008ba4) 1;
}
@media screen and (max-width: 768px) {
  .c_cta {
    padding: 5rem 3rem;
  }
}
.c_cta__text4 {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.7407407407;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .c_cta__text4 {
    font-size: 2.2rem;
  }
}
.c_cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.4rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .c_cta__btns {
    gap: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p_entrybg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.p_entrybg .image {
  background: #000;
  height: 100vh;
}
.p_entrybg img,
.p_entrybg video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

#top {
  position: relative;
  z-index: 1;
  background: #000;
  padding-bottom: 16rem;
}
@media screen and (max-width: 768px) {
  #top {
    padding-bottom: 10rem;
  }
}
#top + .l_ftr {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  #top + .l_ftr {
    padding-bottom: 0;
  }
}
#top + .l_ftr .l_ftr__cta .bg {
  display: none;
}
#top + .l_ftr .l_ftr__spfixbtn {
  display: none;
}
#top .p_mv {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000000;
}
#top .p_mv img,
#top .p_mv video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
#top .p_sec01 {
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .p_sec01 .p_mvsp {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
  }
  #top .p_sec01 .p_mvsp .image {
    background: #000;
    height: 72rem;
  }
  #top .p_sec01 .p_mvsp img,
  #top .p_sec01 .p_mvsp video {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.45;
  }
}
#top .p_sec01 .flex {
  z-index: 1;
  aspect-ratio: 16/9;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top .p_sec01 .flex {
    aspect-ratio: unset;
    height: 72rem;
  }
}
#top .p_sec01 .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#top .p_sec01 .title .img1 {
  width: 6.9rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec01 .title .img1 {
    width: 5.6rem;
  }
}
#top .p_sec01 .title .img2 {
  width: 6.6rem;
  margin-right: 1.7rem;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  #top .p_sec01 .title .img2 {
    width: 5.6rem;
    margin-right: 1.4rem;
  }
}
#top .p_sec01 .title .img3 {
  width: 5.1rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec01 .title .img3 {
    width: 4.1rem;
  }
}
#top .p_sec01 .scroll {
  position: absolute;
  right: 5rem;
  bottom: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  padding-bottom: 13.8rem;
}
#top .p_sec01 .scroll:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 12.8rem;
  background: #fff;
  opacity: 0.6;
}
#top .p_sec01 .scroll:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 12.8rem;
  background: #fff;
  -webkit-animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@-webkit-keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
#top .p_sec02 {
  padding-top: 10rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 2;
  }
}
#top .p_sec02 .c_inner {
  position: relative;
  z-index: 1;
}
#top .p_sec02 .text {
  font-size: 6.2rem;
  font-weight: bold;
  line-height: 1.3870967742;
  letter-spacing: -0.03em;
  margin-bottom: -3rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 .text {
    font-size: 2.8rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 3rem;
  }
}
#top .p_sec02 .images {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 .images {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: static;
    margin-top: 13rem;
  }
}
#top .p_sec02 .images .fixpoint {
  position: absolute;
  height: 100%;
  aspect-ratio: 16/9;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 .images .fixpoint {
    aspect-ratio: unset;
    height: 100vh;
    height: 100svh;
    width: 100%;
  }
}
#top .p_sec02 .images img {
  width: 116rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 .images img {
    width: 32.7rem;
  }
}
#top .p_sec02 .textarea {
  width: 48.8rem;
  margin-left: auto;
  margin-top: -8rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 .textarea {
    width: auto;
    margin-top: 0;
  }
}
#top .p_sec02 .textarea .text2 {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.0588235294;
}
#top .p_sec02 .textarea .btn {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 .textarea .btn {
    text-align: center;
    margin-top: 3rem;
  }
}
#top .p_sec02 .swiper {
  position: absolute;
  bottom: 23.7rem;
}
#top .p_sec03 {
  margin-top: 17rem;
}
#top .p_sec03 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 13.6rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .flex {
    display: block;
  }
}
#top .p_sec03 .textarea {
  position: sticky;
  top: var(--hdr_height);
  left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .textarea {
    position: static;
  }
}
#top .p_sec03 .textarea .title {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .textarea .title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
  }
}
#top .p_sec03 .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: 13rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .list {
    gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .list .row .image {
    height: 30rem;
  }
}
#top .p_sec03 .list .row .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#top .p_sec03 .list .row .title {
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .list .row .title {
    font-size: 2.3rem;
    text-align: center;
  }
}
#top .p_sec03 .list .row .text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  margin-top: 1.5rem;
}
#top .p_sec03 .list .row .btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .list .row .btn {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .btn {
    text-align: center;
    margin-top: 6rem;
  }
}
#top .p_sec04 {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 {
    margin-top: 10rem;
  }
}
#top .p_sec04 .intro {
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.5185185185;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 .intro {
    text-align: center;
    font-size: 2rem;
  }
}
#top .p_sec04 .swiper {
  overflow: visible;
}
#top .p_sec04 .swiper-slide {
  opacity: 0.5;
}
#top .p_sec04 .swiper-slide-active {
  opacity: 1;
}
#top .p_sec04 .swiper-slide-active + .swiper-slide {
  opacity: 1;
}
#top .p_sec04 .swiper-slide-active + .swiper-slide + .swiper-slide {
  opacity: 1;
}
#top .p_sec04 .bottom {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 .bottom {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
#top .p_sec04 .bottom .c_btnB {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#top .p_sec04 .swiper-scrollbar {
  height: 1px;
  width: 100%;
  background-color: #fff;
}
#top .p_sec04 .swiper-scrollbar-drag {
  background: -webkit-gradient(linear, right top, left top, from(#6eb92b), to(#008ba4));
  background: linear-gradient(to left, #6eb92b 0%, #008ba4 100%);
  height: 0.3rem;
  top: -0.1rem;
}
#top .p_sec05 {
  background: url(../images/top_env_bg@2x.jpg) center no-repeat;
  background-size: cover;
  padding: 14rem 0 20rem;
  margin-top: 16rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05 {
    margin-top: 10rem;
    background: none;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec05__spimage {
    margin-bottom: 3rem;
  }
  #top .p_sec05__spimage img {
    width: 100%;
  }
}
#top .p_sec05 .textarea {
  width: 31.4rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05 .textarea {
    width: auto;
  }
}
#top .p_sec05 .title {
  font-size: 2.7rem;
  line-height: 1.5185185185;
  font-weight: bold;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05 .title {
    text-align: center;
    margin-top: 0;
  }
}
#top .p_sec05 .text {
  font-size: 1.7rem;
  line-height: 2.0588235294;
  font-weight: 500;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05 .text {
    margin-top: 1.5rem;
  }
}
#top .p_sec05 .btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05 .btn {
    margin-top: 3rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec06 {
    margin-top: 10rem;
  }
}
#top .p_sec06 .flex {
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.7rem;
  padding: 10rem 10rem 0;
  margin-top: -6rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec06 .flex {
    padding: 0;
    margin-top: 0;
    display: block;
  }
}
#top .p_sec06 .left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#top .p_sec06 .right {
  width: 100%;
}
#top .p_sec06 .list {
  margin-top: -2.5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec06 .list {
    margin-top: -1rem;
  }
}
#top .p_sec06 .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2.5rem 0;
  gap: 1rem 3rem;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 768px) {
  #top .p_sec06 .list li a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#top .p_sec06 .list li a .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 3.3rem;
}
#top .p_sec06 .list li a .cat {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  border: 1px solid white;
  text-align: center;
  width: 14.4rem;
  line-height: 3.3rem;
}
#top .p_sec06 .list li a .title {
  font-size: 1.6rem;
  line-height: 3.3rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec06 .list li a .title {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec06 .btn {
    text-align: center;
    margin-top: 3rem;
  }
}

@media screen and (max-width: 768px) {
  #aboutus .c_mv {
    background-image: url(../images/about_mv_sp@2x.jpg);
  }
}
#aboutus .p_anchor ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.8rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_anchor ul {
    grid-template-columns: 24.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.7rem;
  }
}
#aboutus .p_sec01 {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec01 {
    margin-top: 9rem;
  }
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec01 .c_titA {
    margin-bottom: 0;
  }
}
#aboutus .p_sec01__logoarea {
  margin-top: 4rem;
  background: url(../images/about_vision@2x.png) left center repeat-x;
  background-size: 211rem;
  padding: 6rem 0;
  -webkit-animation: backgroundScroll 30s linear infinite;
          animation: backgroundScroll 30s linear infinite;
}
@-webkit-keyframes backgroundScroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -211rem 0;
    @media screen and (max-width: 768px) {
      #aboutus .p_sec01__logoarea {
        background-position: -132.1rem 0;
      }
    }
  }
}
@keyframes backgroundScroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -211rem 0;
    @media screen and (max-width: 768px) {
      #aboutus .p_sec01__logoarea {
        background-position: -132.1rem 0;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec01__logoarea {
    padding: 28.6rem 0 0;
    margin-top: 0;
    background-size: 132.1rem;
  }
}
#aboutus .p_sec01__logoarea .textarea {
  background: rgba(0, 0, 0, 0.85);
  text-align: center;
  padding: 3.5rem 2rem;
  width: 68.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec01__logoarea .textarea {
    width: auto;
    padding: 2.5rem 0 0;
    margin: 0 -1.5rem;
  }
}
#aboutus .p_sec01__logoarea .textarea .logo {
  margin-bottom: 2.5rem;
}
#aboutus .p_sec01__logoarea .textarea .logo img {
  width: 13.8rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec01__logoarea .textarea .logo img {
    width: 11.2rem;
  }
}
#aboutus .p_sec01__logoarea .textarea .text1 {
  font-size: 2.5rem;
  line-height: 1.68;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec01__logoarea .textarea .text1 {
    font-size: 1.8rem;
  }
}
#aboutus .p_sec01__logoarea .textarea .text2 {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec01__logoarea .textarea .text2 {
    font-size: 1.7rem;
  }
}
#aboutus .p_sec02 {
  margin-top: 15.5rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec02 {
    margin-top: 10rem;
  }
}
#aboutus .p_sec02 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.6rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec02 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }
}
#aboutus .p_sec02 .flex .textarea .title {
  font-size: 2.5rem;
  line-height: 1.68;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec02 .flex .textarea .title {
    font-size: 1.8rem;
    text-align: center;
  }
}
#aboutus .p_sec02 .flex .textarea .text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  margin-top: 2rem;
}
#aboutus .p_sec02 .flex .textarea .name {
  line-height: 1.4;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec02 .flex .textarea .name {
    text-align: center;
  }
}
#aboutus .p_sec02 .flex .textarea .name small {
  font-weight: bold;
  font-size: 1.7rem;
}
#aboutus .p_sec02 .flex .textarea .name strong {
  font-weight: bold;
  font-size: 2rem;
}
#aboutus .p_sec02 .flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#aboutus .p_sec02 .flex .image img {
  width: 44.2rem;
}
#aboutus .p_sec03 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 {
    margin-top: 10rem;
  }
}
#aboutus .p_sec03 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 .flex {
    display: block;
  }
}
#aboutus .p_sec03 .flex .textarea {
  width: 26rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 .flex .textarea {
    width: auto;
  }
}
#aboutus .p_sec03 .flex .table {
  width: 100%;
  margin-top: -2rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 .flex .table {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 .flex .table table {
    display: block;
    border-top: 1px solid #7b7b7b;
  }
  #aboutus .p_sec03 .flex .table table tbody,
  #aboutus .p_sec03 .flex .table table tr,
  #aboutus .p_sec03 .flex .table table th,
  #aboutus .p_sec03 .flex .table table td {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 .flex .table table tr {
    padding: 2.5rem 0;
    border-bottom: 1px solid #7b7b7b;
  }
}
#aboutus .p_sec03 .flex .table table tr th,
#aboutus .p_sec03 .flex .table table tr td {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 .flex .table table tr th,
  #aboutus .p_sec03 .flex .table table tr td {
    padding: 0;
  }
}
#aboutus .p_sec03 .flex .table table tr th {
  background: -webkit-gradient(linear, right top, left top, color-stop(0.8rem, #000), color-stop(0.8rem, #6eb92b), to(#008ba4)) no-repeat bottom;
  background: linear-gradient(to left, #000 0.8rem, #6eb92b 0.8rem, #008ba4 100%) no-repeat bottom;
  background-size: 100% 1px;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 .flex .table table tr th {
    background: none;
  }
}
#aboutus .p_sec03 .flex .table table tr td {
  background: -webkit-gradient(linear, right top, left top, from(#7b7b7b), to(#7b7b7b)) no-repeat bottom;
  background: linear-gradient(to left, #7b7b7b 0%, #7b7b7b 100%) no-repeat bottom;
  background-size: 100% 1px;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec03 .flex .table table tr td {
    background: none;
  }
}
#aboutus .p_sec04 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec04 {
    margin-top: 10rem;
  }
}
#aboutus .p_sec04 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec04 .flex {
    display: block;
  }
}
#aboutus .p_sec04 .flex .textarea {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec04 .flex .textarea {
    width: auto;
  }
}
#aboutus .p_sec04 .flex .list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 3rem 5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec04 .flex .list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 2.3rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
#aboutus .p_sec04 .flex .list .date {
  font-size: 1.7rem;
  line-height: 2;
  font-weight: bold;
  position: relative;
  padding-right: 6.1rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec04 .flex .list .date {
    padding-right: 0;
  }
}
#aboutus .p_sec04 .flex .list .date:after {
  content: "";
  position: absolute;
  top: 1.2rem;
  right: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#6eb92b), to(#008ba4));
  background: linear-gradient(to bottom, #6eb92b 0%, #008ba4 100%);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec04 .flex .list .date:after {
    right: auto;
    left: -2.3rem;
  }
}
#aboutus .p_sec04 .flex .list .date:first-child:before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 0.5rem;
  width: 1px;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#6eb92b), to(#008ba4));
  background: linear-gradient(to bottom, #6eb92b 0%, #008ba4 100%);
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec04 .flex .list .date:first-child:before {
    right: auto;
    left: -1.8rem;
  }
}
#aboutus .p_sec04 .flex .list .text {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  #aboutus .p_sec04 .flex .list .text + .date {
    margin-top: 5rem;
  }
}
#aboutus .p_sec04 .flex dialog {
  text-align: center;
  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;
}
#aboutus .p_sec04 .flex dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.5);
}
#aboutus .p_sec04 .flex dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
#aboutus .p_sec04 .flex dialog img {
  max-height: 90%;
}

#environment .c_mv {
  background-image: url(../images/environment_mv@2x.jpg);
}
#environment .p_anchor .c_inner {
  max-width: 90rem;
}
#environment .p_anchor ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_anchor ul {
    gap: 2.7rem;
  }
}
#environment .p_anchor .c_btnC {
  width: 24.4rem;
}
#environment .p_sec01 {
  margin-top: 10rem;
}
#environment .p_sec01 .c_titA {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .c_titA {
    margin-bottom: 2rem;
  }
}
#environment .p_sec01 .title {
  text-align: center;
  font-size: 2.7rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .title {
    font-size: 2.2rem;
  }
}
#environment .p_sec01 .title2 {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .title2 {
    font-size: 2rem;
  }
}
#environment .p_sec01 .text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .text {
    text-align: center;
  }
}
#environment .p_sec01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .flex {
    display: block;
  }
}
#environment .p_sec01 .flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#environment .p_sec01 .flex .image img {
  width: 56.2rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .flex .textarea {
    text-align: center;
    margin-top: 1rem;
  }
}
#environment .p_sec01 .support {
  margin-top: 6rem;
}
#environment .p_sec01 .support .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .support .list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
#environment .p_sec01 .support .list .image {
  margin-bottom: 1.5rem;
}
#environment .p_sec01 .support .list .image img {
  width: 100%;
}
#environment .p_sec01 .support .list .title2 {
  text-align: center;
}
#environment .p_sec02 {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02 {
    margin-top: 10rem;
  }
}
#environment .p_sec02 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 4.7rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
#environment .p_sec02 .list li {
  border: 1px solid white;
  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;
  text-align: center;
  padding: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02 .list li {
    font-size: 1.7rem;
    min-height: 7rem;
    padding: 1rem 0;
  }
}
#environment .p_sec02 .list li small {
  font-size: 1.2rem;
  font-weight: 500;
}
#environment .p_sec03 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 {
    margin-top: 10rem;
  }
}
#environment .p_sec03 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list {
    gap: 1rem 0;
  }
}
#environment .p_sec03 .list li:nth-child(2n) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
#environment .p_sec03 .list li .img1 {
  width: 53.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img1 {
    width: 31.8rem;
  }
}
#environment .p_sec03 .list li .img2 {
  width: 53.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img2 {
    width: 31.8rem;
  }
}
#environment .p_sec03 .list li .img3 {
  width: 53.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img3 {
    width: 31.8rem;
  }
}
#environment .p_sec03 .list li .img4 {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img4 {
    width: 31.8rem;
  }
}
#environment .p_sec03 .list li .img5 {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img5 {
    width: 31.8rem;
  }
}
#environment .p_sec03 .list li .img6 {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img6 {
    width: 15.4rem;
  }
}
#environment .p_sec03 .list li .img7 {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img7 {
    width: 15.4rem;
  }
}
#environment .p_sec03 .list li .img8 {
  width: 53.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img8 {
    width: 31.8rem;
  }
}
#environment .p_sec03 .list li .img9 {
  width: 53.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img9 {
    width: 31.8rem;
  }
}
#environment .p_sec03 .list li .img10 {
  width: 53.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list li .img10 {
    width: 31.8rem;
  }
}
#environment .p_sec03 .title {
  text-align: center;
  margin-top: 9rem;
  margin-bottom: 6rem;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .title {
    margin-bottom: 2.5rem;
    white-space: nowrap;
  }
}
#environment .p_sec03 .list2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 {
    grid-template-columns: 1fr;
  }
}
#environment .p_sec03 .list2 li {
  grid-column: span 3;
  text-align: center;
  border-bottom: 1px solid #ffffff;
  padding: 3rem 0;
}
#environment .p_sec03 .list2 li:nth-child(2n) .image, #environment .p_sec03 .list2 li:last-child .image {
  border-left: 1px dotted #b2b2b2;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li:nth-child(2n) .image, #environment .p_sec03 .list2 li:last-child .image {
    border-left-width: 0;
  }
}
#environment .p_sec03 .list2 li.small {
  grid-column: span 2;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .image {
    margin-inline: calc(50% - 50vw);
  }
  #environment .p_sec03 .list2 li .image img {
    max-width: none;
  }
}
#environment .p_sec03 .list2 li .img1 {
  width: 32.3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img1 {
    width: 32.3rem;
  }
}
#environment .p_sec03 .list2 li .img2 {
  width: 43.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img2 {
    width: 33rem;
  }
}
#environment .p_sec03 .list2 li .img3 {
  width: 46.3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img3 {
    width: 34.1rem;
  }
}
#environment .p_sec03 .list2 li .img4 {
  width: 46.1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img4 {
    width: 33.2rem;
  }
}
#environment .p_sec03 .list2 li .img5 {
  width: 41.9rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img5 {
    width: 30.6rem;
  }
}
#environment .p_sec03 .list2 li .img6 {
  width: 45.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img6 {
    width: 34.3rem;
  }
}
#environment .p_sec03 .list2 li .img7 {
  width: 24.4rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img7 {
    width: 24.4rem;
  }
}
#environment .p_sec03 .list2 li .img8 {
  width: 34.7rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img8 {
    width: 34.9rem;
  }
}
#environment .p_sec03 .list2 li .img9 {
  width: 25.8rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .list2 li .img9 {
    width: 31rem;
  }
}
#environment .p_sec04 {
  margin-top: 20rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04 {
    margin-top: 10rem;
  }
}
#environment .p_sec04 .swiper {
  overflow: visible;
  max-width: 59.5rem;
  margin: 0 auto;
}
#environment .p_sec04 .swiper-slide {
  opacity: 0.5;
}
#environment .p_sec04 .swiper-slide img {
  width: 100%;
}
#environment .p_sec04 .swiper-slide-active {
  opacity: 1;
}
#environment .p_sec04 .swiper-button-prev,
#environment .p_sec04 .swiper-button-next {
  width: auto;
  height: auto;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#environment .p_sec04 .swiper-button-prev img,
#environment .p_sec04 .swiper-button-next img {
  width: 2.6rem;
}
#environment .p_sec04 .swiper-button-prev:after,
#environment .p_sec04 .swiper-button-next:after {
  display: none;
}
#environment .p_sec04 .swiper-button-prev {
  left: -2rem;
}
#environment .p_sec04 .swiper-button-next {
  right: -2rem;
}
#environment .p_sec04 .thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 59.5rem;
  margin: 2rem auto 0;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04 .thumb {
    margin-top: 1rem;
  }
}
#environment .p_sec04 .thumb button {
  width: 5.6rem;
  height: 5.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04 .thumb button {
    width: 4.7rem;
    height: 4.7rem;
  }
}
#environment .p_sec04 .thumb button img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#environment .p_sec05 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 {
    margin-top: 13rem;
  }
}
#environment .p_sec05 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#environment .p_sec05 .flex .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: 2rem;
  width: 82.8rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .flex .list {
    width: auto;
  }
}
#environment .p_sec05 .flex .list li details[open] .question .toggle:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
#environment .p_sec05 .flex .list li .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  border: 1px solid white;
  background: #383838;
  padding: 1.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .flex .list li .question {
    gap: 1rem;
    padding: 2rem;
  }
}
#environment .p_sec05 .flex .list li .question .icon {
  font-size: 2.6rem;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .flex .list li .question .icon {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    font-size: 2rem;
  }
}
#environment .p_sec05 .flex .list li .question .text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .flex .list li .question .text {
    font-size: 1.7rem;
  }
}
#environment .p_sec05 .flex .list li .question .toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-left: auto;
  -ms-flex-item-align: center;
      align-self: center;
}
#environment .p_sec05 .flex .list li .question .toggle:before, #environment .p_sec05 .flex .list li .question .toggle:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 0.4rem;
  background: -webkit-gradient(linear, right top, left top, from(#6eb92b), to(#008ba4));
  background: linear-gradient(to left, #6eb92b 0%, #008ba4 100%);
  margin: auto;
}
#environment .p_sec05 .flex .list li .question .toggle:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#environment .p_sec05 .flex .list li .ans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  border: 1px solid white;
  border-top-width: 0;
  padding: 1.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .flex .list li .ans {
    gap: 1rem;
    padding: 2rem;
  }
}
#environment .p_sec05 .flex .list li .ans .icon {
  font-size: 2.6rem;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .flex .list li .ans .icon {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    font-size: 2rem;
  }
}
#environment .p_sec05 .flex .list li .ans .text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7857142857;
}

#interview .c_mv {
  background-image: url(../images/interview_mv@2x.jpg);
}
@media screen and (max-width: 768px) {
  #interview .c_mv {
    background-image: url(../images/interview_mv_sp@2x.jpg);
  }
}
#interview .p_sec01 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13rem 6rem;
}
@media screen and (max-width: 768px) {
  #interview .p_sec01 .cards {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

body:has(#interview_detail) .l_hdr {
  display: none;
}
body:has(#interview_detail) .l_hdr2 {
  opacity: 1;
  visibility: visible;
}

#interview_detail {
  margin-top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  #interview_detail {
    margin-top: 0;
  }
}
#interview_detail .c_pankuzu {
  margin: 2rem 0 5rem;
}
#interview_detail .c_pankuzu .c_inner {
  max-width: 100%;
}
#interview_detail .p_sec01 .c_inner {
  max-width: 110.5rem;
}
#interview_detail .p_sec01__main {
  position: relative;
  height: 51rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__main {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#interview_detail .p_sec01__main .text1 {
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__main .text1 {
    margin-top: 2rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#interview_detail .p_sec01__main .text2 {
  font-size: 2.3rem;
  margin-top: 1rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#interview_detail .p_sec01__main .text3 {
  font-size: 1.7rem;
  line-height: 1.9411764706;
  margin-top: 2rem;
  width: 20rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__main .text3 {
    font-size: 1.4rem;
    margin-top: 3rem;
    width: auto;
  }
}
#interview_detail .p_sec01__main .text4 {
  position: absolute;
  left: -25rem;
  bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__main .text4 {
    left: 0;
    bottom: 0;
  }
}
#interview_detail .p_sec01__main .text4 span {
  background: #000;
  font-size: 3.5rem;
  line-height: 2.5217391304;
  font-weight: normal;
  letter-spacing: 0.03em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__main .text4 span {
    font-size: 2rem;
  }
}
#interview_detail .p_sec01__main .text4 span:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
#interview_detail .p_sec01__main .text4 span br:before {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
#interview_detail .p_sec01__main .image {
  width: 86rem;
  height: 51rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__main .image {
    position: relative;
    margin-inline: calc(50% - 50vw);
    height: 43rem;
    width: auto;
  }
}
#interview_detail .p_sec01__main .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#interview_detail .p_sec02 {
  margin-top: 8rem;
}
#interview_detail .p_sec02 .c_inner {
  max-width: 75rem;
}
#interview_detail .p_sec02 .btn {
  text-align: center;
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec02 .btn {
    margin-top: 5rem;
  }
}
#interview_detail .p_sec02 .c_textswiper {
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec02 .c_textswiper {
    margin-top: 10rem;
  }
}
#interview_detail .p_sec03 {
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec03 {
    margin-top: 3rem;
  }
}
#interview_detail .p_sec03 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13rem 6rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec03 .cards {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

#jobs .c_mv {
  background-image: url(../images/jobs_mv@2x.jpg);
}
@media screen and (max-width: 768px) {
  #jobs .p_tabbtn .c_inner {
    width: 100%;
  }
}
#jobs .p_tabbtn nav {
  border-bottom: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.7rem;
}
@media screen and (max-width: 768px) {
  #jobs .p_tabbtn nav {
    gap: 1.5rem;
  }
}
#jobs .p_tabbtn nav button {
  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;
  width: 24.4rem;
  height: 6rem;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  border: 1px solid white;
  border-bottom-width: 0;
}
@media screen and (max-width: 768px) {
  #jobs .p_tabbtn nav button {
    width: 9.6rem;
  }
}
#jobs .p_tabbtn nav button.is-active {
  background: white;
  color: black;
}
#jobs .p_sec01 {
  margin-top: 6.5rem;
}
#jobs .p_sec01__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
#jobs .p_sec01__side {
  position: sticky;
  top: var(--hdr_height);
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__side {
    position: static;
    gap: 2.7rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 769px) {
  #jobs .p_sec01__side a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    font-size: 1.7rem;
    font-weight: 900;
  }
  #jobs .p_sec01__side a:before {
    content: "";
    width: 0.6rem;
    height: 2.3rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#6eb92b), to(#008ba4));
    background: linear-gradient(#6eb92b 0%, #008ba4 100%);
  }
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__side a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.8rem 2rem;
    border: 1px solid white;
    width: 24.4rem;
  }
  #jobs .p_sec01__side a img {
    width: 2.4rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #jobs .p_sec01__side a .text {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    margin: 0 auto;
  }
}
#jobs .p_sec01__main {
  width: 78rem;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main {
    width: auto;
  }
}
#jobs .p_sec01__main .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15rem;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .rows {
    gap: 10rem;
  }
}
#jobs .p_sec01__main .image1 img {
  width: 100%;
}
#jobs .p_sec01__main .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3333;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .title {
    font-size: 2rem;
    text-align: center;
  }
}
#jobs .p_sec01__main .text {
  margin-top: 1rem;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6470588235;
}
#jobs .p_sec01__main .title2 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .title2 {
    font-size: 2rem;
    text-align: center;
  }
}
#jobs .p_sec01__main .text2 {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  margin-top: 2rem;
}
#jobs .p_sec01__main .cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .cards {
    grid-template-columns: 1fr;
  }
}
#jobs .p_sec01__main .cards li {
  border: 1px solid white;
  padding: 3rem 2rem;
}
#jobs .p_sec01__main .title3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
#jobs .p_sec01__main .text3 {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  margin-top: 1rem;
}
#jobs .p_sec01__main .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6rem;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.7rem;
  }
}
#jobs .p_sec01__main .list {
  border-top: 1px solid #fff;
}
#jobs .p_sec01__main .list li {
  border-bottom: 1px solid #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  font-weight: bold;
  padding: 2.5rem 0;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .list li {
    text-align: center;
    font-size: 1.5rem;
    display: block;
  }
}
#jobs .p_sec01__main .list li small {
  font-size: 70%;
  line-height: 1.6;
  display: block;
  margin-top: 1rem;
}
#jobs .p_sec01__main .image2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#jobs .p_sec01__main .image2 img {
  width: 36.9rem;
}
#jobs .p_sec01__main .prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
}
#jobs .p_sec01__main .prof .icon img {
  width: 6.8rem;
}
#jobs .p_sec01__main .prof .name {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}
#jobs .p_sec01__main .prof .name small {
  font-weight: bold;
  font-size: 1.7rem;
}
#jobs .p_sec01__main .text3 {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
}
#jobs .p_sec01__main .other {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .other {
    gap: 5rem;
    grid-template-columns: 1fr;
  }
}
#jobs .p_sec01__main .card2 {
  display: block;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .card2 {
    text-align: center;
  }
}
#jobs .p_sec01__main .image3 img {
  width: 100%;
}
#jobs .p_sec01__main .title4 {
  font-size: 2.7rem;
  font-weight: 100;
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  #jobs .p_sec01__main .title4 {
    font-size: 2.5rem;
  }
}
#jobs .p_sec01 .swiper {
  overflow: visible;
}

#new_graduate {
  margin-top: var(--hdr_height);
  position: relative;
}
@media screen and (max-width: 768px) {
  #new_graduate {
    margin-top: 0;
  }
}
#new_graduate .c_pankuzu {
  position: absolute;
  top: 14rem;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #new_graduate .c_pankuzu {
    position: static;
    margin-bottom: 3rem;
    margin-top: 2rem;
  }
}
#new_graduate .c_pankuzu .c_inner {
  max-width: 100%;
}
#new_graduate .p_sec01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec01 .flex {
    display: block;
  }
}
#new_graduate .p_sec01 .flex .textarea {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 42rem;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec01 .flex .textarea {
    width: auto;
  }
}
#new_graduate .p_sec01 .flex .textarea .title {
  font-size: 4.9rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec01 .flex .textarea .title {
    font-size: 3.2rem;
    text-align: center;
  }
}
#new_graduate .p_sec01 .flex .textarea .text1 {
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec01 .flex .textarea .text1 {
    font-size: 2rem;
    text-align: center;
  }
}
#new_graduate .p_sec01 .flex .textarea .text2 {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  margin-top: 3rem;
}
#new_graduate .p_sec01 .flex .image {
  -webkit-margin-end: calc(50% - 50vw);
          margin-inline-end: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec01 .flex .image {
    margin-inline: calc(50% - 50vw);
    margin-top: 3rem;
  }
}
#new_graduate .p_sec01 .flex .image img {
  width: 100%;
}
#new_graduate .p_anchor {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_anchor {
    margin-top: 4rem;
  }
}
#new_graduate .p_anchor .c_inner {
  max-width: 90rem;
}
#new_graduate .p_anchor ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_anchor ul {
    gap: 2.7rem;
  }
}
#new_graduate .p_anchor .c_btnC {
  width: 24.4rem;
}
#new_graduate .p_sec02 {
  margin-top: 9rem;
}
#new_graduate .p_sec02 .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: 2rem;
  margin-top: 2rem;
}
#new_graduate .p_sec02 .list li {
  background: #383838;
  text-align: center;
  padding: 3rem;
}
#new_graduate .p_sec02 .list li .title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02 .list li .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
#new_graduate .p_sec02 .list li .text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7857142857;
}
#new_graduate .p_sec03 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03 {
    margin-top: 10rem;
  }
}
#new_graduate .p_sec03 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 6.8rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03 .list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
#new_graduate .p_sec03 .list li .image {
  position: relative;
}
#new_graduate .p_sec03 .list li .image img {
  width: 100%;
}
#new_graduate .p_sec03 .list li .image .title {
  position: absolute;
  bottom: 2rem;
  left: -2.3rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03 .list li .image .title {
    bottom: 0;
  }
}
#new_graduate .p_sec03 .list li .image .title span {
  background: #000;
  font-size: 2.3rem;
  line-height: 2.5217391304;
  font-weight: normal;
  letter-spacing: 0.03em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 1.5rem;
}
#new_graduate .p_sec03 .list li .image .title span:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
#new_graduate .p_sec03 .list li .image .title span br:before {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
#new_graduate .p_sec03 .list li .text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  margin-top: 1.5rem;
}
#new_graduate .p_sec04 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04 {
    margin-top: 10rem;
  }
}
#new_graduate .p_sec04 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem 3rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
#new_graduate .p_sec04 .list li {
  background: #383838;
  padding: 4rem 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  width: 34.2rem;
  text-align: center;
  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) {
  #new_graduate .p_sec04 .list li {
    width: auto;
    font-size: 2rem;
    letter-spacing: 0;
  }
}
#new_graduate .p_sec05 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05 {
    margin-top: 10rem;
  }
}
#new_graduate .p_sec05 .swiper {
  overflow: visible;
}
#new_graduate .p_sec05 .swiper-slide {
  opacity: 0.5;
}
#new_graduate .p_sec05 .swiper-slide-active {
  opacity: 1;
}
#new_graduate .p_sec05 .swiper-slide-active + .swiper-slide {
  opacity: 1;
}
#new_graduate .p_sec05 .swiper-slide-active + .swiper-slide + .swiper-slide {
  opacity: 1;
}
#new_graduate .p_sec05 .bottom {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05 .bottom {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
#new_graduate .p_sec05 .bottom .c_btnB {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#new_graduate .p_sec05 .swiper-scrollbar {
  height: 1px;
  width: 100%;
  background-color: #fff;
}
#new_graduate .p_sec05 .swiper-scrollbar-drag {
  background: -webkit-gradient(linear, right top, left top, from(#6eb92b), to(#008ba4));
  background: linear-gradient(to left, #6eb92b 0%, #008ba4 100%);
  height: 0.3rem;
  top: -0.1rem;
}
#new_graduate .p_sec06 {
  margin-top: 15rem;
}
#new_graduate .p_sec06 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 6.4rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec06 .list {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
}

#news .c_mv {
  background-image: url(../images/news_mv@2x.jpg);
}
@media screen and (max-width: 768px) {
  #news .c_mv {
    background-image: url(../images/news_mv_sp@2x.jpg);
  }
}
#news .p_sec01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #news .p_sec01 .flex {
    display: block;
  }
}
#news .p_sec01 .flex .selectarea {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  #news .p_sec01 .flex .selectarea {
    width: auto;
  }
}
#news .p_sec01 .flex .selectarea select {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem 3rem 1rem 1.3rem;
  background: url(../images/select_arrow.svg) center right 1.2rem no-repeat white;
  background-size: 1.3rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #D1D1D1;
  color: black;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#news .p_sec01 .flex .textarea {
  width: 73.6rem;
}
@media screen and (max-width: 768px) {
  #news .p_sec01 .flex .textarea {
    width: auto;
  }
}
#news .p_sec01 .list {
  margin-top: -2.5rem;
}
@media screen and (max-width: 768px) {
  #news .p_sec01 .list {
    margin-top: 2.5rem;
  }
}
#news .p_sec01 .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2.5rem 0;
  gap: 1rem 3rem;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 768px) {
  #news .p_sec01 .list li a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#news .p_sec01 .list li a .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 3.3rem;
}
#news .p_sec01 .list li a .cat {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  border: 1px solid white;
  text-align: center;
  width: 14.4rem;
  line-height: 3.3rem;
}
#news .p_sec01 .list li a .title {
  font-size: 1.6rem;
  line-height: 3.3rem;
}
@media screen and (max-width: 768px) {
  #news .p_sec01 .list li a .title {
    width: 100%;
  }
}

body:has(#news_detail) .l_hdr {
  display: none;
}
body:has(#news_detail) .l_hdr2 {
  opacity: 1;
  visibility: visible;
}

#news_detail {
  margin-top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  #news_detail {
    margin-top: 0;
  }
}
#news_detail .c_pankuzu {
  margin: 2rem 0 5rem;
}
#news_detail .c_pankuzu .c_inner {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #news_detail .c_pankuzu .c_inner {
    width: calc(100% - 3rem);
  }
}
#news_detail .p_sec01 .c_inner {
  max-width: 93.6rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01 .c_inner {
    width: calc(100% - 3rem);
  }
}
#news_detail .p_sec01__main {
  border: 1px solid white;
  padding: 8rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__main {
    padding: 4rem;
  }
}
#news_detail .p_sec01__main .date {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__main .date {
    font-size: 1.4rem;
  }
}
#news_detail .p_sec01__main .title {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: normal;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__main .title {
    font-size: 2.5rem;
  }
}
#news_detail .p_sec01__main .cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
#news_detail .p_sec01__main .cats span {
  font-size: 1.4rem;
  border: 1px solid white;
  text-align: center;
  width: 14.4rem;
  line-height: 3.3rem;
}
#news_detail .p_sec01__main .c_wysywig {
  margin-top: 3rem;
}
#news_detail .p_sec01 .btn {
  text-align: center;
  margin-top: 4.5rem;
}

body:has(#notfound) .l_hdr {
  display: none;
}
body:has(#notfound) .l_hdr2 {
  opacity: 1;
  visibility: visible;
}
body:has(#notfound) .l_ftr__spfixbtn,
body:has(#notfound) .l_ftr__cta {
  display: none;
}
body:has(#notfound) .l_ftr__bg {
  padding-top: 0;
}

#notfound {
  margin-top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  #notfound {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #notfound .c_inner {
    width: calc(100% - 3rem);
  }
}
#notfound .c_pankuzu {
  margin: 2rem 0 5rem;
}
@media screen and (max-width: 768px) {
  #notfound .c_pankuzu {
    margin-bottom: 3rem;
  }
}
#notfound .c_pankuzu .c_inner {
  max-width: 100%;
}

body:has(#privacipolicy) .l_hdr {
  display: none;
}
body:has(#privacipolicy) .l_hdr2 {
  opacity: 1;
  visibility: visible;
}
body:has(#privacipolicy) .l_ftr__spfixbtn,
body:has(#privacipolicy) .l_ftr__cta {
  display: none;
}
body:has(#privacipolicy) .l_ftr__bg {
  padding-top: 0;
}

#privacipolicy {
  margin-top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  #privacipolicy {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #privacipolicy .c_inner {
    width: calc(100% - 3rem);
  }
}
#privacipolicy .c_pankuzu {
  margin: 2rem 0 5rem;
}
@media screen and (max-width: 768px) {
  #privacipolicy .c_pankuzu {
    margin-bottom: 3rem;
  }
}
#privacipolicy .c_pankuzu .c_inner {
  max-width: 100%;
}
#privacipolicy .p_sec01__bd {
  border: 1px solid white;
  padding: 8rem 9rem 6rem;
}
@media screen and (max-width: 768px) {
  #privacipolicy .p_sec01__bd {
    padding: 5rem 3.7rem 6.4rem;
  }
}
#privacipolicy .p_sec01 .title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #privacipolicy .p_sec01 .title {
    font-size: 2.7rem;
  }
}
#privacipolicy .p_sec01 .text {
  font-size: 1.4rem;
  line-height: 2;
}
#privacipolicy .p_sec01 .text a {
  font-weight: bold;
  text-decoration: underline;
}

#recruit_info .c_mv {
  background-image: url(../images/recruit_info_mv@2x.jpg);
}
#recruit_info .p_sec01 select {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem 3rem 1rem 1.3rem;
  background: url(../images/select_arrow.svg) center right 1.2rem no-repeat white;
  background-size: 1.3rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d1d1;
  color: black;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-bottom: 7.2rem;
  min-width: 26rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01 select {
    margin-bottom: 4rem;
    min-width: auto;
    width: 100%;
  }
}
#recruit_info .p_sec01 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 6.4rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01 .list {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
}

body:has(#recruit_info_detail) .l_hdr {
  display: none;
}
body:has(#recruit_info_detail) .l_hdr2 {
  opacity: 1;
  visibility: visible;
}

#recruit_info_detail {
  margin-top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  #recruit_info_detail {
    margin-top: 0;
  }
}
#recruit_info_detail .c_pankuzu {
  margin: 2rem 0 5rem;
}
#recruit_info_detail .c_pankuzu .c_inner {
  max-width: 100%;
}
#recruit_info_detail .p_sec01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
#recruit_info_detail .p_sec01 .flex .textarea {
  width: 48.8rem;
  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) {
  #recruit_info_detail .p_sec01 .flex .textarea {
    width: auto;
  }
}
#recruit_info_detail .p_sec01 .flex .textarea .title {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01 .flex .textarea .title {
    font-size: 2.5rem;
    text-align: center;
  }
}
#recruit_info_detail .p_sec01 .flex .textarea .text1 {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01 .flex .textarea .text1 {
    text-align: center;
  }
}
#recruit_info_detail .p_sec01 .flex .textarea .text2 {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
#recruit_info_detail .p_sec01 .flex .textarea .btn {
  margin-top: auto;
}
#recruit_info_detail .p_sec01 .flex .image img {
  width: 53.6rem;
}
#recruit_info_detail .p_sec02 {
  margin-top: 11rem;
}
#recruit_info_detail .p_sec02 .c_inner {
  max-width: 82.8rem;
}
#recruit_info_detail .p_sec02 .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 .rows {
    gap: 10rem;
  }
}
#recruit_info_detail .p_sec02__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.7rem;
  line-height: 1.6666666667;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 table {
    display: block;
    border-top: 1px solid #7b7b7b;
  }
  #recruit_info_detail .p_sec02 table tbody,
  #recruit_info_detail .p_sec02 table tr,
  #recruit_info_detail .p_sec02 table th,
  #recruit_info_detail .p_sec02 table td {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 table tr {
    padding: 2.5rem 0;
    border-bottom: 1px solid #7b7b7b;
  }
}
#recruit_info_detail .p_sec02 table tr th,
#recruit_info_detail .p_sec02 table tr td {
  font-size: 1.4rem;
  line-height: 2;
  padding: 1.5rem 0;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 table tr th,
  #recruit_info_detail .p_sec02 table tr td {
    padding: 0;
  }
}
#recruit_info_detail .p_sec02 table tr th {
  background: -webkit-gradient(linear, right top, left top, color-stop(0.8rem, #000), color-stop(0.8rem, #6eb92b), to(#008ba4)) no-repeat bottom;
  background: linear-gradient(to left, #000 0.8rem, #6eb92b 0.8rem, #008ba4 100%) no-repeat bottom;
  background-size: 100% 1px;
  width: 22rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 table tr th {
    background: none;
    font-weight: bold;
    width: auto;
  }
}
#recruit_info_detail .p_sec02 table tr td {
  background: -webkit-gradient(linear, right top, left top, from(#7b7b7b), to(#7b7b7b)) no-repeat bottom;
  background: linear-gradient(to left, #7b7b7b 0%, #7b7b7b 100%) no-repeat bottom;
  background-size: 100% 1px;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 table tr td {
    background: none;
  }
}
#recruit_info_detail .p_sec02 .c_cta {
  margin-top: 10rem;
}
#recruit_info_detail .p_sec02 .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: 2rem;
  margin-top: 2rem;
}
#recruit_info_detail .p_sec02 .list li {
  background: #383838;
  text-align: center;
  padding: 3rem;
}
#recruit_info_detail .p_sec02 .list li .title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 .list li .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
#recruit_info_detail .p_sec02 .list li .text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7857142857;
}
#recruit_info_detail .p_sec02 .list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.7rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 .list2 {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
#recruit_info_detail .p_sec02 .list2 .image {
  text-align: center;
}
#recruit_info_detail .p_sec02 .list2 .image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec02 .list2 .image img {
    width: 22rem;
  }
}
#recruit_info_detail .p_sec02 .list2 .title {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.4705882353;
  text-align: center;
  margin: 1.5rem 0 1rem;
}
#recruit_info_detail .p_sec02 .list2 .text {
  font-size: 1.4rem;
  line-height: 2;
}

body:has(#sitemap) .l_hdr {
  display: none;
}
body:has(#sitemap) .l_hdr2 {
  opacity: 1;
  visibility: visible;
}
body:has(#sitemap) .l_ftr__spfixbtn,
body:has(#sitemap) .l_ftr__cta {
  display: none;
}
body:has(#sitemap) .l_ftr__bg {
  padding-top: 0;
}

#sitemap {
  margin-top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  #sitemap {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #sitemap .c_inner {
    width: calc(100% - 3rem);
  }
}
#sitemap .c_pankuzu {
  margin: 2rem 0 5rem;
}
@media screen and (max-width: 768px) {
  #sitemap .c_pankuzu {
    margin-bottom: 3rem;
  }
}
#sitemap .c_pankuzu .c_inner {
  max-width: 100%;
}
#sitemap .p_sec01__bd {
  border: 1px solid white;
  padding: 8rem 16rem 10rem;
}
@media screen and (max-width: 768px) {
  #sitemap .p_sec01__bd {
    padding: 5rem 2rem 6.4rem;
  }
}
#sitemap .p_sec01 .title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #sitemap .p_sec01 .title {
    font-size: 2.7rem;
  }
}
#sitemap .p_sec01 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 10rem;
}
@media screen and (max-width: 768px) {
  #sitemap .p_sec01 .grid {
    grid-template-columns: 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#sitemap .p_sec01 .grid dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  #sitemap .p_sec01 .grid dl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#sitemap .p_sec01 .grid dl dt a {
  font-size: 1.7rem;
  font-weight: 900;
}
#sitemap .p_sec01 .grid dl dd {
  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) {
  #sitemap .p_sec01 .grid dl dd {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#sitemap .p_sec01 .grid dl dd a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1428571429;
}

body:has(#entry) .l_hdr {
  display: none;
}
body:has(#entry) .l_hdr2 {
  opacity: 1;
  visibility: visible;
}
body:has(#entry) .l_ftr__spfixbtn,
body:has(#entry) .l_ftr__cta {
  display: none;
}
body:has(#entry) .l_ftr__bg {
  padding-top: 0;
}

#entry {
  margin-top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  #entry {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #entry .c_inner {
    width: calc(100% - 3rem);
  }
}
#entry .c_pankuzu {
  margin: 2rem 0 5rem;
}
@media screen and (max-width: 768px) {
  #entry .c_pankuzu {
    margin-bottom: 3rem;
  }
}
#entry .c_pankuzu .c_inner {
  max-width: 100%;
}
#entry .p_sec01 .c_inner {
  max-width: 93.6rem;
}
#entry .p_sec01__bd {
  border: 1px solid white;
  padding: 8rem 14rem 12rem;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01__bd {
    padding: 5rem 3.6rem 6.4rem;
  }
}
#entry .p_sec01__title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}
#entry .p_sec01__progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto 0;
  gap: 8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01__progress {
    margin-top: 2.5rem;
    gap: 4.6rem;
  }
}
#entry .p_sec01__progress:before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 6rem);
  height: 1px;
  background: #bac4c3;
}
#entry .p_sec01__progress li {
  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;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
#entry .p_sec01__progress li .dot {
  width: 2.7rem;
  height: 2.7rem;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50%;
  position: relative;
}
#entry .p_sec01__progress li .dot:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: #383838;
  border: 1px solid white;
}
#entry .p_sec01__progress li .text {
  font-size: 1.4rem;
  font-weight: 500;
}
#entry .p_sec01__progress li.is-active .dot {
  background-color: rgba(255, 255, 255, 0.5);
}
#entry .p_sec01__progress li.is-active .dot:after {
  background-color: #fff;
}
#entry .p_sec01__intro {
  margin-top: 4rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01__intro {
    margin-top: 2rem;
  }
}
#entry .p_sec01 .p_form {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01 .p_form {
    margin-top: 5rem;
  }
}
#entry .p_sec01 .p_form dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.3rem;
}
#entry .p_sec01 .p_form dl dt .req {
  background: #eb1210;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#entry .p_sec01 .p_form dl dd {
  position: relative;
}
#entry .p_sec01 .p_form dl + dl {
  margin-top: 5rem;
}
#entry .p_sec01 .p_form input[type=text],
#entry .p_sec01 .p_form input[type=email],
#entry .p_sec01 .p_form input[type=tel],
#entry .p_sec01 .p_form input[type=password],
#entry .p_sec01 .p_form textarea,
#entry .p_sec01 .p_form select {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  padding: 1.3rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d1d1;
  color: black;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background-color: #fff;
}
#entry .p_sec01 .p_form input[type=text]::-webkit-input-placeholder, #entry .p_sec01 .p_form input[type=email]::-webkit-input-placeholder, #entry .p_sec01 .p_form input[type=tel]::-webkit-input-placeholder, #entry .p_sec01 .p_form input[type=password]::-webkit-input-placeholder, #entry .p_sec01 .p_form textarea::-webkit-input-placeholder, #entry .p_sec01 .p_form select::-webkit-input-placeholder {
  color: #c1c1c1;
}
#entry .p_sec01 .p_form input[type=text]::-moz-placeholder, #entry .p_sec01 .p_form input[type=email]::-moz-placeholder, #entry .p_sec01 .p_form input[type=tel]::-moz-placeholder, #entry .p_sec01 .p_form input[type=password]::-moz-placeholder, #entry .p_sec01 .p_form textarea::-moz-placeholder, #entry .p_sec01 .p_form select::-moz-placeholder {
  color: #c1c1c1;
}
#entry .p_sec01 .p_form input[type=text]:-ms-input-placeholder, #entry .p_sec01 .p_form input[type=email]:-ms-input-placeholder, #entry .p_sec01 .p_form input[type=tel]:-ms-input-placeholder, #entry .p_sec01 .p_form input[type=password]:-ms-input-placeholder, #entry .p_sec01 .p_form textarea:-ms-input-placeholder, #entry .p_sec01 .p_form select:-ms-input-placeholder {
  color: #c1c1c1;
}
#entry .p_sec01 .p_form input[type=text]::-ms-input-placeholder, #entry .p_sec01 .p_form input[type=email]::-ms-input-placeholder, #entry .p_sec01 .p_form input[type=tel]::-ms-input-placeholder, #entry .p_sec01 .p_form input[type=password]::-ms-input-placeholder, #entry .p_sec01 .p_form textarea::-ms-input-placeholder, #entry .p_sec01 .p_form select::-ms-input-placeholder {
  color: #c1c1c1;
}
#entry .p_sec01 .p_form input[type=text]::placeholder,
#entry .p_sec01 .p_form input[type=email]::placeholder,
#entry .p_sec01 .p_form input[type=tel]::placeholder,
#entry .p_sec01 .p_form input[type=password]::placeholder,
#entry .p_sec01 .p_form textarea::placeholder,
#entry .p_sec01 .p_form select::placeholder {
  color: #c1c1c1;
}
#entry .p_sec01 .p_form select {
  background: url(../images/select_arrow.svg) center right 1.2rem no-repeat white;
  background-size: 1.3rem;
  padding-right: 3rem;
}
#entry .p_sec01 .p_form textarea {
  height: 23rem;
}
#entry .p_sec01 .p_form .mwform-radio-field label {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.5rem;
  border: 1px solid #d1d1d1;
  padding: 1.3rem 2.8rem;
  display: block;
}
#entry .p_sec01 .p_form .mwform-radio-field label input {
  opacity: 0;
  position: absolute;
}
#entry .p_sec01 .p_form .mwform-radio-field label:has(input:checked) {
  background-color: #fff;
  color: black;
}
#entry .p_sec01 .p_form .mwform-radio-field label:has(input:checked) .mwform-radio-field-text:after {
  opacity: 1;
}
#entry .p_sec01 .p_form .mwform-radio-field-text {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  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: 0.8rem;
}
#entry .p_sec01 .p_form .mwform-radio-field-text:before, #entry .p_sec01 .p_form .mwform-radio-field-text:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: white;
  border: 1px solid #c1c1c1;
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
}
#entry .p_sec01 .p_form .mwform-radio-field-text:after {
  position: absolute;
  top: 0;
  left: 0.3rem;
  bottom: 0;
  margin: auto 0;
  background: #13a36b;
  width: 1rem;
  height: 1rem;
  opacity: 0;
}
#entry .p_sec01 .p_form .sex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#entry .p_sec01 .p_form .birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01 .p_form .birth {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#entry .p_sec01 .p_form .birth__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#entry .p_sec01 .p_form .birth__year input {
  width: 11.5rem;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01 .p_form .birth__year input {
    width: 8rem;
  }
}
#entry .p_sec01 .p_form .birth__month, #entry .p_sec01 .p_form .birth__day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#entry .p_sec01 .p_form .birth__month input, #entry .p_sec01 .p_form .birth__day input {
  width: 6.7rem;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01 .p_form .birth__month input, #entry .p_sec01 .p_form .birth__day input {
    width: 6rem;
  }
}
#entry .p_sec01 .p_form .birth .line {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 1.9rem 0 0.9rem;
}
#entry .p_sec01 .p_form .postal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
}
#entry .p_sec01 .p_form .postal input {
  width: 14rem;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01 .p_form .postal input {
    width: 12rem;
  }
}
#entry .p_sec01 .p_form .postal button {
  text-decoration: underline;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid white;
  width: 21.8rem;
  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;
  text-align: center;
}
#entry .p_sec01 .p_form .file__btn {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01 .p_form .file__btn {
    font-size: 1.4rem;
  }
}
#entry .p_sec01 .p_form .file__btn ::-webkit-file-upload-button {
  color: #000;
  background: #fff;
  padding: 1rem 1.5rem;
  text-decoration: underline;
  margin-right: 2rem;
  padding: 1.3rem 2.8rem;
  flex-shrink: 0;
}
#entry .p_sec01 .p_form .file__btn ::file-selector-button {
  color: #000;
  background: #fff;
  padding: 1rem 1.5rem;
  text-decoration: underline;
  margin-right: 2rem;
  padding: 1.3rem 2.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #entry .p_sec01 .p_form .file__btn ::-webkit-file-upload-button {
    display: block;
    margin-bottom: 1rem;
  }
  #entry .p_sec01 .p_form .file__btn ::file-selector-button {
    display: block;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #entry .p_sec01 .p_form .file__btn input {
    width: 16rem;
  }
}
#entry .p_sec01 .p_form .file__caption {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  color: #c1c1c1;
  font-weight: 500;
  margin-top: 0.8rem;
}
#entry .p_sec01 .p_form .pp {
  margin-top: 3rem;
  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: 1.4rem;
  font-weight: bold;
  position: relative;
}
#entry .p_sec01 .p_form .pp input {
  width: 2.1rem;
  height: 2.1rem;
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
  opacity: 0;
  position: absolute;
}
#entry .p_sec01 .p_form .pp label:before {
  display: block;
  content: "";
  background-color: #fff;
  width: 2.1rem;
  height: 2.1rem;
}
#entry .p_sec01 .p_form .pp label:has(input:checked):before {
  background: url(../images/check.svg) center no-repeat;
  background-size: cover;
}
#entry .p_sec01 .p_form .pp .mwform-checkbox-field-text {
  display: none;
}
#entry .p_sec01 .p_form .pp a {
  text-decoration: underline;
  margin-left: 1.7rem;
}
#entry .p_sec01 .p_form .pp .error {
  right: 0;
  text-align: center;
}
#entry .p_sec01 .p_form .error {
  color: #ff9a9a;
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  position: absolute;
  top: 100%;
  left: 0;
}
#entry .p_sec01__btns {
  margin-top: 6rem;
  text-align: center;
  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;
  gap: 7rem;
}
#entry .p_sec01__btns .c_btnA {
  width: auto;
}
#entry .p_sec01._confirm .p_form dl dt .req,
#entry .p_sec01._confirm .p_form .postal button,
#entry .p_sec01._confirm .p_form .pp,
#entry .p_sec01._confirm .p_form .file__caption {
  display: none;
}
#entry .p_sec01._confirm .p_form dl dt {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dedede;
}
#entry .p_sec01._confirm .p_form .sex .mwform-radio-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#entry .p_sec01._confirm .p_form .sex .mwform-radio-field + .mwform-radio-field:before {
  content: "/";
}
#entry .mw_wp_form .horizontal-item + .horizontal-item {
  margin: 0;
}

:root {
  --hdr_height: 9rem;
}
@media screen and (max-width: 768px) {
  :root {
    --hdr_height: 8rem;
  }
}/*# sourceMappingURL=style.css.map */