@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: 0.7320644217vw;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr_height) !important;
}
@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.8rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #505050;
}
a,
button {
  text-decoration: none;
  outline: none;
  color: #505050;
}
@media (any-hover: hover) {
  a,
  button {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  a:hover,
  button:hover {
    opacity: 0.5;
  }
}

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

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

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

.l_hdr {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 3rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .l_hdr {
    padding-left: 1.7rem;
    background-color: #fff;
  }
}
.l_hdr__logo {
  margin-right: auto;
}
.l_hdr__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .l_hdr__logo a {
    gap: 0.8rem;
  }
}
.l_hdr__logo a img {
  width: 30.3rem;
}
@media screen and (max-width: 768px) {
  .l_hdr__logo a img {
    width: 16.3rem;
  }
}
.l_hdr__logo a .text {
  color: #003b90;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l_hdr__logo a .text {
    font-size: 1rem;
  }
}
.l_hdr__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.l_hdr__cta a {
  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;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0 4rem;
  height: 5.5rem;
  color: white;
  position: relative;
}
.l_hdr__cta a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l_hdr__cta a span {
  position: relative;
  z-index: 1;
}
@media (any-hover: hover) {
  .l_hdr__cta a:hover {
    opacity: 1;
  }
  .l_hdr__cta a:hover:before {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.l_hdr__cta a.new {
  font-size: 1.6rem;
  font-weight: bold;
}
.l_hdr__cta a.new:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #48abaf), to(#b0f4d7));
  background: linear-gradient(to right, #48abaf 50%, #b0f4d7 100%);
}
.l_hdr__cta a.entry {
  font-size: 2rem;
  font-weight: 900;
}
.l_hdr__cta a.entry:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #2e3a9a), to(#8bd3d6));
  background: linear-gradient(to right, #2e3a9a 50%, #8bd3d6 100%);
}
.l_hdr__cta a.entry:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.2rem;
  bottom: 0;
  margin: auto 0;
  background: url(../../images/btn_arrow.svg) center no-repeat;
  width: 1.3rem;
  height: 0.9rem;
}
.l_hdr__hmb {
  height: 9.6rem;
  width: 12rem;
  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;
}
@media screen and (max-width: 768px) {
  .l_hdr__hmb {
    width: 7.4rem;
    height: 7.4rem;
  }
}
.l_hdr__hmb .line {
  position: relative;
  height: 1.6rem;
  width: 6.8rem;
}
@media screen and (max-width: 768px) {
  .l_hdr__hmb .line {
    width: 5.3rem;
    height: 1.4rem;
  }
}
.l_hdr__hmb .line > span {
  position: absolute;
  left: 0;
  right: 0;
  height: 0.2rem;
  background: #2e5b9a;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l_hdr__hmb .line > span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.l_hdr__hmb .line > span:nth-child(2) {
  bottom: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
.l_hdr__hmb .text {
  color: #2e5b9a;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .l_hdr__hmb .text {
    font-size: 1.6rem;
  }
}
.l_hdr__hmb .text:before {
  content: "MENU";
}

body.is-gnavopen .l_hdr {
  background: transparent;
}
body.is-gnavopen .l_hdr__hmb .line > span:nth-child(1) {
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}
@media screen and (max-width: 768px) {
  body.is-gnavopen .l_hdr__hmb .line > span:nth-child(1) {
    -webkit-transform: rotate(-13deg);
            transform: rotate(-13deg);
  }
}
body.is-gnavopen .l_hdr__hmb .line > span:nth-child(2) {
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
}
@media screen and (max-width: 768px) {
  body.is-gnavopen .l_hdr__hmb .line > span:nth-child(2) {
    -webkit-transform: rotate(13deg);
            transform: rotate(13deg);
  }
}
body.is-gnavopen .l_hdr__hmb .text:before {
  content: "CLOSE";
}
body.is-gnavopen .l_menu {
  opacity: 1;
  visibility: visible;
}

.l_menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: url(../../images/menu_bg@2x.png) center no-repeat white;
  background-size: cover;
  padding-top: 17rem;
  padding-bottom: 3rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .l_menu {
    padding-top: 0;
    background: url(../../images/menu_bg_sp@2x.png) center repeat-y white;
    background-size: 100%;
    top: var(--hdr_height);
    z-index: 99999;
  }
}
.l_menu__inner {
  max-height: 100%;
  overflow: auto;
}
.l_menu__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) {
  .l_menu__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    padding-top: 4rem;
  }
}
.l_menu__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l_menu__left {
    gap: 1.7rem;
  }
}
.l_menu__title {
  color: white;
  font-size: 9.7rem;
  font-weight: bold;
  white-space: nowrap;
}
.l_menu__right {
  letter-spacing: 0.03em;
  width: 57rem;
}
@media screen and (max-width: 768px) {
  .l_menu__right {
    width: auto;
    border-bottom: 1px solid #2e5b9a;
  }
}
@media screen and (min-width: 769px) {
  .l_menu__right dl {
    border-bottom: 1px solid #2e5b9a;
    padding: 2.4rem 0;
  }
}
.l_menu__right dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .l_menu__right dl dt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.l_menu__right dl dt a {
  font-size: 1.8rem;
  color: #2e5b9a;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l_menu__right dl dt a {
    border-top: 1px solid #2e5b9a;
    padding: 2.4rem 0;
  }
}
.l_menu__right dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .l_menu__right dl dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.4rem;
    margin-top: 0;
  }
}
.l_menu__right dl dd a {
  font-size: 1.5rem;
}

body:has(.js-entry:hover) .l_entry {
  opacity: 1;
  visibility: visible;
}

.l_entry {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: url(../../images/entry_bg@2x.png) center no-repeat white;
  background-size: cover;
  padding-top: 17rem;
  padding-bottom: 9rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s 0s ease;
  transition: 0.3s 0s ease;
}
@media (any-hover: hover) {
  .l_entry:hover {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 768px) {
  .l_entry {
    top: auto;
    bottom: 0;
    padding: 5rem 0 8rem;
    background: white;
  }
}
.l_entry__btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  .l_entry__btns {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
}
.l_entry__btns2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-top: 6rem;
}
.l_spentry {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  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: 1rem;
  color: #2e5b9a;
  height: 7.4rem;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 1.5rem;
}
.l_spentry._entry {
  font-size: 2.5rem;
}
.l_spentry._entry:before {
  content: "ENTRY";
}
.l_spentry._entry:after {
  content: "";
  background: url(../../images/btn_arrow_blue.svg) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: 2rem;
}

body.is-entryopen .l_entry {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.28);
}
body.is-entryopen .l_spentry {
  color: white;
  background: transparent;
}
body.is-entryopen .l_spentry._entry:before {
  content: "CLOSE" !important;
}
body.is-entryopen .l_spentry._entry:after {
  content: "";
  background: url(../../images/btn_arrow.svg) center no-repeat;
  background-size: contain;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

@media screen and (max-width: 768px) {
  body {
    padding-bottom: 7.4rem;
  }
}

.l_fixbnr {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99;
}
.l_fixbnr a {
  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: 20.8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.2rem solid transparent;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.28);
}
.l_fixbnr a .casual {
  width: 12.3rem;
}
.l_fixbnr a .casual path {
  fill: white;
}
@media (any-hover: hover) {
  .l_fixbnr a:hover {
    opacity: 1;
    background-color: #fff;
    border-color: #2e5b9a;
  }
  .l_fixbnr a:hover svg path {
    fill: #2e5b9a;
  }
}
.l_fixbnr a.entry {
  width: 16.6rem;
}
.l_fixbnr a.entry svg {
  width: 12.3rem;
}
.l_fixbnr a.entry svg .icon1 {
  stroke: none !important;
  fill: white !important;
}
.l_fixbnr a.entry svg .icon2 path {
  stroke: white !important;
  fill: none !important;
}
@media (any-hover: hover) {
  .l_fixbnr a.entry:hover {
    opacity: 1;
    background-color: #fff;
    border-color: #2e5b9a;
  }
  .l_fixbnr a.entry:hover svg .icon1 {
    fill: #2e5b9a !important;
  }
  .l_fixbnr a.entry:hover svg .icon2 path {
    stroke: #2e5b9a !important;
  }
}

.l_ftr_sitemap {
  background-color: #fff;
  padding: 10rem 0 6rem;
}
@media screen and (max-width: 768px) {
  .l_ftr_sitemap {
    padding: 5rem 0 4rem;
  }
}
.l_ftr_sitemap__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .l_ftr_sitemap__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l_ftr_sitemap__left .logo img {
  width: 24.1rem;
}
.l_ftr_sitemap__left .addr {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  margin: 2rem 0;
}
.l_ftr_sitemap__left .bnrs {
  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.6rem;
}
.l_ftr_sitemap__left .bnrs a img {
  width: 24.9rem;
}
.l_ftr_sitemap__right {
  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__right .links {
  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;
}
.l_ftr_sitemap__right .links .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #cecece;
  gap: 6rem;
  padding-bottom: 2rem;
}
.l_ftr_sitemap__right .links dt + dt {
  margin-top: 2rem;
}
.l_ftr_sitemap__right .links dt a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.4;
}
.l_ftr_sitemap__right .links dd {
  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;
  margin-top: 1.5rem;
}
.l_ftr_sitemap__right .links dd a {
  font-size: 1.5rem;
  line-height: 1.4;
}
.l_ftr_sitemap__right .others {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l_ftr_sitemap__right .others {
    gap: 3rem;
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l_ftr_sitemap__right .others li a {
  font-size: 1.5rem;
  color: #2e5b9a;
  text-decoration: underline;
}
.l_ftr__copy {
  text-align: center;
  font-size: 1.2rem;
  color: white;
  background-color: #2e5b9a;
  padding: 1.2rem 0;
}
@media screen and (max-width: 768px) {
  .l_ftr__copy {
    font-size: 1rem;
  }
}

.l_recruit {
  clip-path: shape(from 0 12rem, curve to 100% 12rem with 50% -10rem, line to 100% 100%, line to 0% 100%, close);
  background: url(../../images/ftr_bg@2x.png) center top no-repeat;
  background-size: cover;
  padding: 12rem 0 14rem;
  margin-top: -12rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l_recruit {
    margin-top: -6rem;
    padding: 8rem 0;
    clip-path: shape(from 0 6rem, curve to 100% 6rem with 50% -6rem, line to 100% 100%, line to 0% 100%, close);
    background-image: url(../../images/ftr_bg_sp@2x.png);
  }
}
.l_recruit .c_inner {
  max-width: 90.4rem;
}
.l_recruit .c_titA {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .l_recruit .c_titA {
    margin-bottom: 1rem;
  }
}
.l_recruit__row + .l_recruit__row {
  padding-top: 6rem;
  margin-top: 6rem;
  border-top: 1px dashed #2e5b9a;
}
@media screen and (max-width: 768px) {
  .l_recruit__row + .l_recruit__row {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
.l_recruit__text {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.9444444444;
}
@media screen and (max-width: 768px) {
  .l_recruit__text {
    font-size: 1.5rem;
  }
}
.l_recruit__btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .l_recruit__btns {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}
.l_recruit__btns2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .l_recruit__btns2 {
    grid-template-columns: 1fr;
  }
}
.l_recruit__btns2 .c_btnA {
  font-size: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .l_recruit__btns2 .c_btnA {
    height: 8rem;
  }
}
.l_recruit__bnr {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .l_recruit__bnr {
    margin-top: 3rem;
  }
}

.l_popup {
  position: fixed;
  inset: 0;
  z-index: 99999999;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l_popup.is-open {
  opacity: 1;
  visibility: visible;
}
.l_popup__overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}
.l_popup__content {
  width: 108.8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_popup__content {
    width: 31.8rem;
  }
}
.l_popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.l_popup__close img {
  width: 3.4rem;
}
@media screen and (max-width: 768px) {
  .l_popup__close img {
    width: 2.4rem;
  }
}

.c_inner {
  max-width: 108.8rem;
  width: calc(100% - 7.2rem);
  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_btnA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0 4rem;
  height: 10rem;
  color: white;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c_btnA {
    height: 6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2rem;
    border-radius: 1rem;
    padding: 0 2rem;
  }
}
.c_btnA:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #2e3a9a), to(#8bd3d6));
  background: linear-gradient(to right, #2e3a9a 50%, #8bd3d6 100%);
}
.c_btnA__text {
  position: relative;
  z-index: 1;
}
.c_btnA:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto 0;
  background: url(../../images/btn_arrow_right.svg) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: 2.2rem;
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
}
@media screen and (max-width: 768px) {
  .c_btnA:after {
    width: 2.1rem;
    right: 1.5rem;
  }
}
@media (any-hover: hover) {
  .c_btnA:hover {
    opacity: 1;
  }
  .c_btnA:hover:before {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.c_btnA._green:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #48abaf), to(#b0f4d7));
  background: linear-gradient(to right, #48abaf 50%, #b0f4d7 100%);
}
.c_btnA._purple:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #888cea), to(#afd4ff));
  background: linear-gradient(to right, #888cea 50%, #afd4ff 100%);
}
.c_btnA._white {
  color: #2e5b9a;
}
.c_btnA._white:before {
  background: white;
}
.c_btnA._white:after {
  background: url(../../images/btn_arrow_right_blue.svg) center no-repeat;
}

.c_btnB {
  background-color: #fff;
  padding: 1rem 2rem;
  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: 2rem;
  border-radius: 1rem;
  border: 0.3rem solid #fff;
}
@media (any-hover: hover) {
  .c_btnB:hover {
    opacity: 1;
    border-color: #2e5b9a;
  }
}
.c_btnB__illust {
  width: 7.5rem;
}
.c_btnB__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c_btnB__text1 {
  font-size: 2rem;
  font-weight: bold;
  color: #2e5b9a;
}
.c_btnB__text2 {
  font-size: 1.4rem;
  line-height: 1.3333333333;
  margin-top: 1rem;
}
.c_btnB__arrow {
  width: 1.6rem;
  margin-left: auto;
}

.c_btnC {
  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;
  overflow: hidden;
  gap: 1.5rem;
  border-radius: 1rem;
  padding: 0 2rem;
  height: 6rem;
  color: white;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2e5b9a;
}
.c_btnC:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), to(#fff));
  background: linear-gradient(to right, #fff 50%, #fff 100%);
}
.c_btnC__text {
  position: relative;
  z-index: 1;
}
.c_btnC:after {
  content: "";
  background: url(../../images/btn_arrow_right_blue.svg) center no-repeat;
  background-size: contain;
  width: 1.2rem;
  height: 1.7rem;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
}
@media (any-hover: hover) {
  .c_btnC:hover:before {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.c_btnD {
  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;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0 2rem;
  height: 6.5rem;
  color: white;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .c_btnD {
    font-size: 1.5rem;
  }
}
.c_btnD:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #2e3a9a), to(#8bd3d6));
  background: linear-gradient(to right, #2e3a9a 50%, #8bd3d6 100%);
}
.c_btnD__text {
  position: relative;
  z-index: 1;
}
.c_btnD:after {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: 2rem;
  bottom: 0;
  margin: auto 0;
  background: url(../../images/btn_arrow_right.svg) center no-repeat;
  background-size: contain;
  width: 2rem;
  height: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c_btnD:after {
    width: 1.2rem;
  }
}
@media (any-hover: hover) {
  .c_btnD:hover {
    opacity: 1;
  }
  .c_btnD:hover:before {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.c_btnD._green:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #48abaf), to(#b0f4d7));
  background: linear-gradient(to right, #48abaf 50%, #b0f4d7 100%);
}
.c_btnD._purple:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #888cea), to(#afd4ff));
  background: linear-gradient(to right, #888cea 50%, #afd4ff 100%);
}
.c_btnD._white {
  color: #2e5b9a;
}
.c_btnD._white:before {
  background: white;
}
.c_btnD._white:after {
  background: url(../../images/btn_arrow_right_blue.svg) center no-repeat;
  background-size: contain;
}

.c_btnE {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0 2rem;
  width: 36.8rem;
  height: 6.5rem;
  color: white;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .c_btnE {
    font-size: 1.5rem;
  }
}
.c_btnE:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #2e3a9a), to(#8bd3d6));
  background: linear-gradient(to right, #2e3a9a 50%, #8bd3d6 100%);
}
.c_btnE__text {
  position: relative;
  z-index: 1;
}
.c_btnE:after {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: 2rem;
  bottom: 0;
  margin: auto 0;
  background: url(../../images/btn_arrow_right.svg) center no-repeat;
  background-size: contain;
  width: 1.4rem;
  height: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c_btnE:after {
    width: 1.1rem;
    right: 1.5rem;
  }
}
@media (any-hover: hover) {
  .c_btnE:hover {
    opacity: 1;
  }
  .c_btnE:hover:before {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.c_btnE._green:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #48abaf), to(#b0f4d7));
  background: linear-gradient(to right, #48abaf 50%, #b0f4d7 100%);
}
.c_btnE._purple:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #888cea), to(#afd4ff));
  background: linear-gradient(to right, #888cea 50%, #afd4ff 100%);
}
.c_btnE._white {
  color: #2e5b9a;
}
.c_btnE._white:before {
  background: white;
}
.c_btnE._white:after {
  background: url(../../images/btn_arrow_right_blue.svg) center no-repeat;
  background-size: contain;
}
@media (any-hover: hover) {
  .c_btnE._white:hover {
    color: white;
  }
  .c_btnE._white:hover:before {
    background: #2e5b9a;
  }
  .c_btnE._white:hover:after {
    background-image: url(../../images/btn_arrow_right.svg);
  }
}
.c_btnE._gray:before {
  background: #767676;
}
@media (any-hover: hover) {
  .c_btnE._gray:hover {
    opacity: 0.5;
  }
}

.c_btnF {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0 2rem;
  height: 6rem;
  color: white;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  max-width: 100%;
  background: #767676;
  width: 35rem;
}
.c_titA {
  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;
  margin-bottom: 3rem;
}
.c_titA__en {
  font-size: 10rem;
  color: #2e5b9a;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .c_titA__en {
    font-size: 5rem;
  }
}
.c_titA__ja {
  font-size: 3rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.44;
}
@media screen and (max-width: 768px) {
  .c_titA__ja {
    font-size: 2.5rem;
  }
}
.c_titA._left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.c_titA._green .c_titA__en {
  color: rgba(72, 169, 175, 0.6);
}
.c_titA._green .c_titA__ja {
  color: #48a9af;
}

@media screen and (max-width: 768px) {
  main .c_titA {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c_text18 {
  font-size: 1.8rem;
  line-height: 1.9444444444;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .c_text18 {
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

.c_text15 {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
}

.c_pankuzu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0;
  padding: 3rem 3.6rem 0;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .c_pankuzu {
    padding-top: 2rem;
  }
}
.c_pankuzu > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.c_pankuzu > span + span:before {
  margin: 0 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "/";
  -webkit-transform: translateY(-0.2rem);
          transform: translateY(-0.2rem);
}
.c_pankuzu > span > a,
.c_pankuzu > span > span {
  font-size: 1.2rem;
  line-height: 1.2;
}
.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.5rem;
  line-height: 2;
  word-break: break-all;
}
.c_wysywig *:first-child,
.editor-styles-wrapper .wp-block-post-content *:first-child {
  margin-top: 0 !important;
}
.c_wysywig *:last-child,
.editor-styles-wrapper .wp-block-post-content *:last-child {
  margin-bottom: 0 !important;
}
.c_wysywig > *,
.c_wysywig > *,
.editor-styles-wrapper .wp-block-post-content > *,
.editor-styles-wrapper .wp-block-post-content > * {
  margin-bottom: 2rem;
  clear: both;
}
.c_wysywig h1,
.c_wysywig h2,
.editor-styles-wrapper .wp-block-post-content h1,
.editor-styles-wrapper .wp-block-post-content h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-top: 1px solid #2e5b9a;
  border-bottom: 1px solid #2e5b9a;
  padding: 1.5rem 0;
  margin-top: 4rem;
  margin-bottom: 3.5rem;
}
.c_wysywig h3,
.editor-styles-wrapper .wp-block-post-content h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-left: 3px solid #2e5b9a;
  padding-left: 1.5rem;
}
.c_wysywig h4,
.editor-styles-wrapper .wp-block-post-content h4 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.c_wysywig h5,
.c_wysywig h6,
.editor-styles-wrapper .wp-block-post-content h5,
.editor-styles-wrapper .wp-block-post-content h6 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.c_wysywig ol,
.editor-styles-wrapper .wp-block-post-content ol {
  padding-left: 1.5em;
  list-style: decimal;
  list-style-position: outside;
}
.c_wysywig ol li,
.editor-styles-wrapper .wp-block-post-content ol li {
  margin: 0.25em 0;
  color: var(--blue);
}
.c_wysywig ul:not(:has(.toc_number)),
.editor-styles-wrapper .wp-block-post-content ul:not(:has(.toc_number)) {
  list-style: none;
}
.c_wysywig ul:not(:has(.toc_number)) > li,
.editor-styles-wrapper .wp-block-post-content ul:not(:has(.toc_number)) > li {
  color: #2e5b9a;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.c_wysywig ul:not(:has(.toc_number)) > li + li,
.editor-styles-wrapper .wp-block-post-content ul:not(:has(.toc_number)) > li + li {
  margin-top: 0.5rem;
}
.c_wysywig ul:not(:has(.toc_number)) > li:before,
.editor-styles-wrapper .wp-block-post-content ul:not(:has(.toc_number)) > li:before {
  content: "";
  background: #2e5b9a;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(0.4rem);
          transform: translateY(0.4rem);
}

@media (any-hover: hover) {
  .c_cardA:hover .c_cardA__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.c_cardA__image {
  aspect-ratio: 17/12;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: gray;
}
.c_cardA__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.c_cardA__cat {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  border-radius: 0 0 1rem 0;
  background: #2e5b9a;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c_cardA__cat {
    padding: 0.5rem 1rem;
  }
}
.c_cardA__cat._blog {
  background: #48a9af;
}
.c_cardA__cat._event {
  background: #afb2ff;
}
.c_cardA__date {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e5b9a;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.c_cardA__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c_cardA__title {
    font-size: 1.5rem;
  }
}

.c_cardB {
  background-color: #fff;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
  padding: 3.4rem 3.2rem;
  gap: 3.3rem;
}
@media screen and (max-width: 768px) {
  .c_cardB {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
  }
}
.c_cardB__cat {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  border-radius: 0 0 1rem 0;
  background: #48a9af;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 400;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c_cardB__cat {
    font-size: 1.5rem;
    padding: 0.8rem 1rem;
  }
}
.c_cardB__cat._mid {
  background: #afb2ff;
}
.c_cardB__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44.4rem;
  aspect-ratio: 444/284;
  background: gray;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c_cardB__image {
    width: 100%;
  }
}
.c_cardB__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c_cardB__textarea {
  width: 100%;
}
.c_cardB__title {
  font-size: 2.5rem;
  line-height: 1.44;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c_cardB__title {
    font-size: 1.8rem;
  }
}
.c_cardB__table {
  border-top: 1px solid #dbdbdb;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c_cardB__table {
    display: block;
    margin-top: 1rem;
  }
  .c_cardB__table tbody,
  .c_cardB__table tr,
  .c_cardB__table th,
  .c_cardB__table td {
    display: block;
  }
}
.c_cardB__table tr {
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (max-width: 768px) {
  .c_cardB__table tr {
    padding: 1.5rem 0;
  }
}
.c_cardB__table tr th,
.c_cardB__table tr td {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  .c_cardB__table tr th,
  .c_cardB__table tr td {
    padding: 0;
  }
}
.c_cardB__table tr th {
  color: #2e5b9a;
  white-space: nowrap;
  padding-right: 1rem;
}
@media screen and (max-width: 768px) {
  .c_cardB__table tr th {
    margin-bottom: 0.7rem;
  }
}
.c_cardB__foot {
  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;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c_cardB__foot {
    -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;
    gap: 1.8rem;
    margin-top: 1.5rem;
  }
}
.c_cardB__cap {
  color: #ff741d;
  font-size: 1.5rem;
  font-weight: bold;
}
.c_cardB__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  color: #2e5b9a;
  font-weight: bold;
  gap: 2rem;
}
.c_cardB__more img {
  width: 1.4rem;
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
}
.c_cardC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  padding-right: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_cardC {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
}
.c_cardC:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 0.3rem solid transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .c_cardC:hover {
    opacity: 1;
  }
  .c_cardC:hover:after {
    border-color: #2e5b9a;
  }
}
.c_cardC__image {
  width: 40rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: gray;
}
@media screen and (max-width: 768px) {
  .c_cardC__image {
    width: auto;
  }
}
.c_cardC__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c_cardC__textarea {
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .c_cardC__textarea {
    padding: 2rem;
    text-align: center;
  }
}
.c_cardC__textarea .mtitle {
  font-size: 6rem;
  color: rgba(46, 91, 154, 0.3);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c_cardC__textarea .mtitle {
    font-size: 5rem;
  }
}
.c_cardC__textarea .title {
  color: #2e5b9a;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c_cardC__textarea .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.c_cardC .arrow {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c_cardC .arrow {
    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.8rem;
    color: #2e5b9a;
    margin-left: 0;
    padding-bottom: 3rem;
    gap: 0.5rem;
  }
}
.c_cardC .arrow img {
  width: 2.3rem;
}
@media screen and (max-width: 768px) {
  .c_cardC .arrow img {
    width: 1.4rem;
    -webkit-transform: translateY(0.1rem);
            transform: translateY(0.1rem);
  }
}
.c_cardC._big .c_cardC__image {
  width: 48.1rem;
}
@media screen and (max-width: 768px) {
  .c_cardC._big .c_cardC__image {
    width: auto;
  }
}
.c_cardC._big .c_cardC__textarea {
  text-align: left;
}

.c_cardD {
  display: block;
}
.c_cardD:hover {
  opacity: 1;
}
.c_cardD:hover .c_cardD__image .back {
  opacity: 1;
}
.c_cardD__image {
  aspect-ratio: 330/419;
  position: relative;
  background: gray;
  border-radius: 0.5rem;
  overflow: hidden;
}
.c_cardD__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c_cardD__image .genre {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0.5rem 0 0.5rem;
  color: white;
  background: #2e5b9a;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1rem 2rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.c_cardD__image .back {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: gray;
}
.c_cardD__image .back:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20.4rem;
  border-radius: 0.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 91, 154, 0)), to(#2e5b9a));
  background: linear-gradient(to bottom, rgba(46, 91, 154, 0) 0%, #2e5b9a 100%);
}
.c_cardD__image .back .backtext {
  color: white;
  padding: 0 2.4rem 2rem;
  font-size: 2rem;
  line-height: 1.5;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
}
.c_cardD__name {
  font-size: 2rem;
  font-weight: 900;
  margin-top: 1rem;
}
.c_cardD__text {
  font-size: 1.5rem;
  margin-top: 1rem;
  line-height: 1.5;
}

.c_pager {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .c_pager {
    margin-top: 5rem;
  }
}
.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: 3rem;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi {
    font-size: 2rem;
    gap: 2rem;
  }
}
.c_pager .wp-pagenavi a,
.c_pager .wp-pagenavi span {
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
  /* border-radius: 4px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2e5b9a;
  text-align: center;
}
.c_pager .wp-pagenavi .pages {
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .pages {
    display: none;
  }
}
.c_pager .wp-pagenavi .current {
  color: #48abaf;
}
.c_pager .wp-pagenavi .nextpostslink,
.c_pager .wp-pagenavi .previouspostslink {
  background: url(../../images/btn_arrow_right_blue.svg) center no-repeat;
  background-size: contain;
  width: 1.4rem;
  height: 2rem;
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .nextpostslink,
  .c_pager .wp-pagenavi .previouspostslink {
    width: 1rem;
  }
}
.c_pager .wp-pagenavi .previouspostslink {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .c_pager .wp-pagenavi .first,
  .c_pager .wp-pagenavi .last {
    display: none;
  }
}

.c_mv {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .c_mv {
    margin-bottom: 5rem;
  }
}
.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;
  gap: 1rem;
}
.c_mv__title .en {
  font-weight: bold;
  font-size: 10rem;
  color: white;
}
@media screen and (max-width: 768px) {
  .c_mv__title .en {
    font-size: 5rem;
  }
}
.c_mv__title .ja {
  font-size: 4rem;
  color: #2e5b9a;
  font-weight: bold;
  line-height: 1.44;
}
@media screen and (max-width: 768px) {
  .c_mv__title .ja {
    font-size: 2.5rem;
  }
}
.c_mv__image {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .c_mv__image {
    margin-top: 2rem;
  }
}
.c_mv__image img {
  border-radius: 1rem;
  width: 100%;
}

.c_fixbg {
  background: url(../../images/fixbg@2x.png) center no-repeat;
  background-size: cover;
  position: fixed;
  inset: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c_fixbg {
    background-image: url(../../images/fixbg_sp@2x.png) !important;
  }
}
.c_fixbg._full {
  background: url(../../images/fixbg_full@2x.png) center no-repeat;
  background-size: cover;
}
.c_fixbg2 {
  background: url(../../images/mv_bg@2x.png) center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c_fixbg2 {
    display: none;
  }
}

.c_links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
@media screen and (max-width: 768px) {
  .c_links {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.c_links li a {
  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;
  gap: 1rem;
  color: #2e5b9a;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #2e5b9a;
}
@media screen and (max-width: 768px) {
  .c_links li a {
    padding: 2rem 0;
  }
}
.c_links li a img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1rem;
}

.c_interview {
  position: relative;
}
.c_interview__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
}
.c_interview__head .pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem;
}
.c_interview .c_titA {
  margin-bottom: 0;
}
.c_interview .swiper {
  overflow: visible;
}
.c_interview .swiper-button-prev,
.c_interview .swiper-button-next {
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 769px) {
  .c_interview .swiper-button-prev,
  .c_interview .swiper-button-next {
    position: static;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .c_interview .swiper-button-prev,
  .c_interview .swiper-button-next {
    bottom: auto;
    backdrop-filter: blur(10px);
    top: 57%;
    background: rgba(255, 255, 255, 0.6);
  }
}
.c_interview .swiper-button-prev:after,
.c_interview .swiper-button-next:after {
  display: none;
}
.c_interview .swiper-button-prev img,
.c_interview .swiper-button-next img {
  width: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c_interview .swiper-button-prev {
    left: -2.5rem;
  }
}
.c_interview .swiper-button-prev img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .c_interview .swiper-button-next {
    right: -2.5rem;
  }
}

.c_form_mv {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .c_form_mv {
    padding-bottom: 4rem;
  }
}
.c_form_mv__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;
}
@media screen and (max-width: 768px) {
  .c_form_mv__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
}
.c_form_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;
  gap: 1rem;
}
.c_form_mv__title .en {
  font-weight: bold;
  font-size: 10rem;
  color: white;
}
@media screen and (max-width: 768px) {
  .c_form_mv__title .en {
    font-size: 5rem;
  }
}
.c_form_mv__title .ja {
  font-size: 4rem;
  color: #2e5b9a;
  font-weight: bold;
  line-height: 1.44;
}
@media screen and (max-width: 768px) {
  .c_form_mv__title .ja {
    font-size: 2.5rem;
  }
}
.c_form__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c_form__flow li .circle {
  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;
  position: relative;
}
.c_form__flow li .circle .num {
  width: 6.3rem;
  height: 6.3rem;
  color: #2e5b9a;
  border: 1px solid #2e5b9a;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c_form__flow li .circle .num {
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
    padding-bottom: 0.4rem;
  }
}
.c_form__flow li .circle .num.is-active {
  background-color: #2e5b9a;
  color: white;
}
.c_form__flow li .circle .text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.5rem;
  color: #2e5b9a;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c_form__flow li .circle .text {
    margin-top: 0.5rem;
  }
}
.c_form__flow li .line {
  width: 19rem;
  height: 1px;
  background: #2e5b9a;
  display: block;
}
@media screen and (max-width: 768px) {
  .c_form__flow li .line {
    width: 8rem;
  }
}
.c_form__main {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 10rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .c_form__main {
    padding: 6rem 0;
  }
}
.c_form__main .c_inner {
  max-width: 72rem;
}
.c_form__intro {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 3.5rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .c_form__intro {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
  }
}
.c_form__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.c_form__parts dl {
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
.c_form__parts dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.c_form__parts dl dt .req {
  font-size: 1.4rem;
  color: white;
  background: #db0000;
  border-radius: 100vh;
  line-height: 1;
  padding: 0.5rem 1rem;
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
}
.c_form__parts dl dt .req._free {
  background: #919191;
}
.c_form__parts dl dd input[type=text],
.c_form__parts dl dd input[type=email],
.c_form__parts dl dd input[type=tel],
.c_form__parts dl dd input[type=file],
.c_form__parts dl dd select,
.c_form__parts dl dd textarea {
  width: 100%;
  border: 1px solid #2e5b9a;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  background-color: #fff;
}
.c_form__parts dl dd .select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../../images/select_arrow.svg) center right 1.5rem no-repeat;
  background-size: 1rem;
  background-color: #fff;
}
.c_form__parts dl dd .select._w140 {
  width: 14rem;
}
.c_form__parts dl dd .select._w75 {
  width: 7.5rem;
}
.c_form__parts dl dd .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c_form__parts dl dd .radio {
    gap: 1rem;
  }
}
.c_form__parts dl dd .radio .mwform-radio-field {
  margin: 0;
}
.c_form__parts dl dd .radio label {
  background: #f2f2f2;
  border-radius: 0.5rem;
  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: 14.5rem;
  height: 5.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c_form__parts dl dd .radio label {
    width: auto;
    height: 5rem;
    padding: 0 1rem;
  }
}
.c_form__parts dl dd .radio label input {
  opacity: 0;
  position: absolute;
}
.c_form__parts dl dd .radio label:has(input:checked) {
  background: #2e5b9a;
  color: white;
}
.c_form__parts dl dd .calendar input {
  background: url(../../images/icon_calender.svg) center right 2rem no-repeat white;
  background-size: 1.3rem;
  width: 29.7rem;
}
@media screen and (max-width: 768px) {
  .c_form__parts dl dd .calendar input {
    width: 20rem;
  }
}
.c_form__parts dl dd .graduation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .c_form__parts dl dd .graduation {
    gap: 2rem;
  }
}
.c_form__parts dl dd .graduation .line {
  background: #707070;
  width: 1px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.c_form__parts dl dd .caption {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.c_form__parts dl dd .file {
  position: relative;
}
.c_form__parts dl dd .file input[type=file]::-webkit-file-upload-button {
  background-color: #a8a8a8;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  cursor: pointer;
}
.c_form__parts dl dd .file input[type=file]::file-selector-button {
  background-color: #a8a8a8;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  cursor: pointer;
}
.c_form__parts dl dd .file .mwform-file-delete {
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 1rem;
  position: absolute;
  background: #ff4444;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c_form__parts dl dd .file .mwform-file-delete[style*=visible] {
  opacity: 1;
  visibility: visible;
}
.c_form__parts dl dd #inputlength {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  text-align: right;
}
.c_form .error {
  color: #db0000;
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
  display: block;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c_form .error {
    font-size: 1.6rem;
  }
}
.c_form__pp {
  margin-top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c_form__pp {
    margin-top: 4rem;
  }
}
.c_form__pp .mwform-checkbox-field-text {
  display: none;
}
.c_form__pp input {
  width: 1.6rem;
  height: 1.6rem;
}
.c_form__pp a {
  text-decoration: underline;
  color: #2e5b9a;
  margin-left: 1rem;
}
.c_form__pp .error {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
}
.c_form__btns {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.6rem;
}
@media screen and (max-width: 768px) {
  .c_form__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }
}
.c_form__btns a {
  -ms-flex-preferred-size: 1;
      flex-basis: 1;
}

.mw_wp_form_confirm .c_form__parts {
  border-top: 1px solid #174f70;
  gap: 0;
}
.mw_wp_form_confirm .c_form__parts dl {
  padding: 2.5rem 0;
  border-bottom: 1px solid #174f70;
}
.mw_wp_form_confirm .c_form__parts dl dt {
  margin-bottom: 1rem;
}
.mw_wp_form_confirm .c_form__parts dl dt .req,
.mw_wp_form_confirm .c_form__parts dl dt .cap,
.mw_wp_form_confirm .c_form__parts dl dd .caption,
.mw_wp_form_confirm .c_form__pp,
.mw_wp_form_confirm .c_form__parts dl dd #inputlength {
  display: none;
}
.mw_wp_form_confirm .c_form__parts dl dd .graduation {
  gap: 0;
}
.mw_wp_form_confirm .c_form__parts dl dd .select {
  width: auto !important;
}
.mw_wp_form_confirm .c_form__parts dl dd .graduation .line {
  margin: 0 0.5rem;
}

.c_line {
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 8rem;
  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) {
  .c_line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
    padding: 2.4rem 2rem;
  }
}
.c_line .textarea {
  width: 100%;
}
.c_line .textarea .title {
  font-size: 4.2rem;
  font-weight: bold;
  color: #5fdb85;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c_line .textarea .title {
    font-size: 2.2rem;
    line-height: 1.3636363636;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  .c_line .textarea .title img {
    width: 6.4rem;
  }
}
.c_line .textarea .text {
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c_line .textarea .text {
    font-size: 1.5rem;
  }
}
.c_line .textarea .btns {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c_line .textarea .btns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.c_line .textarea .btns li:nth-child(1) .cap {
  color: #48aaaf;
}
.c_line .textarea .btns .cap {
  margin-bottom: 1.5rem;
  color: #2e5b9a;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .c_line .textarea .btns .cap {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.c_line .textarea .btns .cap:before {
  content: "⚫︎";
}
@media screen and (max-width: 768px) {
  .c_line .textarea .btns .c_btnD {
    font-size: 2rem;
  }
  .c_line .textarea .btns .c_btnD:after {
    width: 1.4rem;
  }
}
.c_line .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c_line .image img {
  width: 23.1rem;
}

.c_thanks {
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .c_thanks {
    padding-bottom: 4rem;
  }
}
.c_thanks .c_pankuzu {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c_thanks .c_pankuzu {
    margin-bottom: 2rem;
  }
}
.c_thanks .c_form__flow {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .c_thanks .c_form__flow {
    margin-bottom: 4rem;
  }
}
.c_thanks__title {
  font-size: 10rem;
  color: #2e5b9a;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c_thanks__title {
    font-size: 4rem;
  }
}
.c_thanks__text {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c_thanks__text {
    font-size: 2rem;
  }
}
.c_thanks .c_text15 {
  text-align: center;
}
.c_thanks__btn {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c_thanks__btn {
    margin-top: 2rem;
  }
}
.c_thanks .c_line {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c_thanks .c_line {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 769px) {
  body:has(#top).is_scroll .l_hdr, body:has(#top).is-gnavopen .l_hdr, body:has(#top):has(.js-entry:hover) .l_hdr, body:has(#top):has(.l_entry:hover) .l_hdr {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 769px) {
  body:has(#top) .l_hdr {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
body:has(#top) .l_hdr._transparent {
  opacity: 1;
  visibility: visible;
  position: absolute;
  background: none;
  backdrop-filter: unset;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(86, 90, 95, 0.45)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(rgba(86, 90, 95, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 90;
}
body:has(#top) .l_hdr._transparent .l_hdr__logo a .text {
  color: white;
}
body:has(#top) .l_hdr._transparent .l_hdr__cta a {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid white;
}
body:has(#top) .l_hdr._transparent .l_hdr__cta a:before {
  display: none;
}
body:has(#top) .l_hdr._transparent .l_hdr__cta a:hover {
  background-color: #fff;
  backdrop-filter: blur(0px);
  color: #2e5b9a;
}
body:has(#top) .l_hdr._transparent .l_hdr__hmb .line > span {
  background-color: #fff;
}
body:has(#top) .l_hdr._transparent .l_hdr__hmb .text {
  color: white;
}
body:has(#top) .l_recruit {
  display: none;
}
body:has(#top) .l_ftr {
  position: relative;
  z-index: 1;
}

#top .p_sec01 {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  aspect-ratio: 16/9;
  padding-bottom: 9rem;
  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;
}
@media screen and (max-width: 768px) {
  #top .p_sec01 {
    aspect-ratio: unset;
    padding: 22rem 0 0;
  }
}
#top .p_sec01 .p_swiper {
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 768px) {
  #top .p_sec01 .p_swiper {
    aspect-ratio: 1/1;
  }
  #top .p_sec01 .p_swiper:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 9;
  }
}
#top .p_sec01 .p_swiper .swiper-slide {
  position: relative;
}
#top .p_sec01 .p_swiper .swiper-slide .mv {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#top .p_sec01:before {
  content: "";
  position: absolute;
  top: 29.6rem;
  left: 0;
  width: 100%;
  height: 172.8rem;
  background: url(../../images/top_mv_bg@2x.png) left top repeat-x;
  background-size: 535.3rem;
  -webkit-animation: moveBg 30s linear infinite;
          animation: moveBg 30s linear infinite;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .p_sec01:before {
    background: url(../../images/top_mv_bg_sp@2x.png) top center repeat-x;
    background-size: 78.6rem;
    height: 47rem;
  }
}
@-webkit-keyframes moveBg {
  0% {
    background-position: left 300rem top;
  }
  100% {
    background-position: left 835.3rem top;
  }
}
@keyframes moveBg {
  0% {
    background-position: left 300rem top;
  }
  100% {
    background-position: left 835.3rem top;
  }
}
#top .p_sec01 .c_inner {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  #top .p_sec01 .c_inner {
    max-width: 100%;
    width: calc(100% - 14rem);
  }
}
#top .p_sec01 .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  margin-top: 3rem;
}
#top .p_sec01 .swiper-pagination-bullet {
  width: 1.1rem;
  height: 1.1rem;
  background: transparent;
  border: 1px solid white;
  opacity: 1;
  margin: 0;
  position: relative;
}
#top .p_sec01 .swiper-pagination-bullet:after {
  content: "";
  left: 100%;
  top: 0%;
  bottom: 0;
  margin: auto 0;
  position: absolute;
  width: 3.5rem;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
#top .p_sec01 .swiper-pagination-bullet:last-child:after {
  display: none;
}
#top .p_sec01 .swiper-pagination-bullet-active {
  background-color: #fff;
}
#top .p_sec01 .swiper-pagination-bullet-active:after {
  -webkit-animation: lineProgress 6s ease-in-out forwards;
          animation: lineProgress 6s ease-in-out forwards;
}
@-webkit-keyframes lineProgress {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  51% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
@keyframes lineProgress {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  51% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec01__textarea {
    padding: 7rem 0 10rem;
    position: relative;
    z-index: 2;
  }
  #top .p_sec01__textarea:before {
    content: "";
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(104, 119, 201, 0)), color-stop(48.77%, rgba(115, 143, 209, 0.9)), to(rgba(46, 91, 154, 0)));
    background: linear-gradient(to bottom, rgba(104, 119, 201, 0) 0%, rgba(115, 143, 209, 0.9) 48.77%, rgba(46, 91, 154, 0) 100%);
  }
}
#top .p_sec01__textarea .title {
  font-size: 5.5rem;
  line-height: 1.6;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 768px) {
  #top .p_sec01__textarea .title {
    font-size: 3rem;
    position: relative;
    z-index: 1;
  }
}
#top .p_sec01__textarea .sub {
  font-size: 1.6rem;
  line-height: 1.4;
  color: white;
  position: relative;
  z-index: 1;
}
#top .p_bg {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(100vh, transparent), color-stop(100vh, white));
  background: linear-gradient(to bottom, transparent 100vh, white 100vh);
  z-index: 10;
  position: relative;
}
#top .p_sec02 {
  background: url(../../images/top_line@2x.png) center bottom -0.5rem no-repeat, url(../../images/top_bg@2x.png) center bottom no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(14rem, rgba(255, 255, 255, 0)), color-stop(63rem, rgba(255, 255, 255, 0.91)), color-stop(84rem, #fff)) no-repeat;
  background: url(../../images/top_line@2x.png) center bottom -0.5rem no-repeat, url(../../images/top_bg@2x.png) center bottom no-repeat, linear-gradient(to bottom, rgba(255, 255, 255, 0) 14rem, rgba(255, 255, 255, 0.91) 63rem, #fff 84rem) no-repeat;
  background-size: 100%, cover, 100%;
  position: relative;
  z-index: 5;
  margin-top: -35.3rem;
  padding-top: 63rem;
  padding-bottom: 50rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 {
    padding-top: 32rem;
    padding-bottom: 16rem;
  }
}
#top .p_sec02__title {
  font-size: 6rem;
  color: #2e5b9a;
  font-weight: bold;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  #top .p_sec02__title {
    font-size: 2.6rem;
  }
}
#top .p_sec02 .c_text18 {
  margin: 3rem 0 5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec02 .c_text18 {
    margin: 2rem 0 3rem;
  }
}
#top .p_sec02__image {
  position: absolute;
  bottom: -8.8rem;
  right: 4rem;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 58.8rem;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  #top .p_sec02__image {
    position: static;
    width: auto;
  }
}
#top .p_sec02__image img {
  border-radius: 1rem;
}
#top .p_sec02__image .img1 {
  width: 42.4rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec02__image .img1 {
    width: 24rem;
    margin-right: auto;
  }
}
#top .p_sec02__image .img2 {
  width: 26.6rem;
  margin-top: -6rem;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  #top .p_sec02__image .img2 {
    width: 13.5rem;
    margin-top: -12rem;
    margin-right: 0;
  }
}
#top .p_sec02__image .img3 {
  width: 21.1rem;
  margin-top: -9.4rem;
  position: relative;
  z-index: 6;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
#top .p_sec03 {
  margin-top: -5rem;
  padding-top: 1px;
  padding-bottom: 13rem;
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 768px) {
  #top .p_sec03 {
    margin-top: -2rem;
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .c_titA {
    margin-bottom: 1rem;
  }
}
#top .p_sec03 .c_text18 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03 .c_text18 {
    margin-bottom: 2rem;
  }
}
#top .p_sec03__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem 6rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
#top .p_sec03__list li a {
  display: block;
}
#top .p_sec03__list li a .image {
  overflow: hidden;
  position: relative;
}
#top .p_sec03__list li a .image img {
  width: 100%;
  border-radius: 1rem;
}
#top .p_sec03__list li a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1rem solid transparent;
  border-radius: 1rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#top .p_sec03__list li a .title {
  position: absolute;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: #fff;
  border-radius: 0 1rem 0 0;
  border-top: 1rem solid transparent;
  border-right: 1rem solid transparent;
  color: #2e5b9a;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 1rem 1rem 0 0;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .p_sec03__list li a .title {
    font-size: 2rem;
    padding: 0.5rem 0.5rem 0 0;
  }
}
#top .p_sec03__list li a .title small {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03__list li a .title small {
    font-size: 1.5rem;
  }
}
#top .p_sec03__list li a .textarea {
  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;
  margin-top: 1.5rem;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03__list li a .textarea {
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
#top .p_sec03__list li a .textarea .text {
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
#top .p_sec03__list li a .textarea .arrow {
  border-radius: 50%;
  border: 1px solid #2e5b9a;
  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: 5.2rem;
  height: 5.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #top .p_sec03__list li a .textarea .arrow {
    display: none;
  }
}
#top .p_sec03__list li a .textarea .arrow img {
  width: 1.2rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec03__list li a .textarea .c_btnD {
    height: 4.5rem;
    width: 100%;
    font-size: 1.5rem;
  }
  #top .p_sec03__list li a .textarea .c_btnD:after {
    display: none;
  }
}
@media (any-hover: hover) {
  #top .p_sec03__list li a:hover {
    opacity: 1;
  }
  #top .p_sec03__list li a:hover .image:after {
    border-color: #2e5b9a;
  }
  #top .p_sec03__list li a:hover .title {
    border-color: #2e5b9a;
  }
}
@media screen and (max-width: 768px) {
  #top .p_spbg {
    background: url(../../images/top_bg4_sp@2x.png) top center no-repeat white;
    background-size: cover;
    z-index: 10;
    position: relative;
  }
}
#top .p_bg2 {
  background: url(../../images/top_bg3@2x.png) center top no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(10rem, white), color-stop(10rem, transparent)) #edf4fb;
  background: url(../../images/top_bg3@2x.png) center top no-repeat, linear-gradient(to bottom, white 10rem, transparent 10rem) #edf4fb;
  background-size: 100%;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .p_bg2 {
    background: none;
  }
}
#top .p_sec04 {
  background: url(../../images/top_bg2@2x.png) top center no-repeat;
  background-size: 203.1rem;
  padding-top: 40rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 {
    background-size: 76.3rem;
    padding-top: 15rem;
  }
}
#top .p_sec04__inner {
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 7.6rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec04__inner {
    padding: 3rem 2.8rem;
  }
}
#top .p_sec04 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
#top .p_sec04 .flex .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 .flex .textarea .c_titA {
    margin-bottom: 1rem;
  }
}
#top .p_sec04 .flex .textarea .c_text18 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 .flex .textarea .c_text18 {
    margin-bottom: 2rem;
  }
}
#top .p_sec04 .flex .textarea .c_links {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 .flex .textarea .c_links {
    margin-bottom: 0;
  }
}
#top .p_sec04 .flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#top .p_sec04 .flex .image img {
  width: 46rem;
  border-radius: 0.5rem;
}
#top .p_sec04 .btn {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  #top .p_sec04 .btn {
    margin-top: 2.6rem;
  }
}
#top .p_sec04 .btn .c_btnE {
  width: 100%;
}
#top .p_sec05 {
  padding-top: 8rem;
  padding-bottom: 19rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top .p_sec05 {
    padding-bottom: 8rem;
    position: relative;
  }
}
#top .p_sec05__crosstalk {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05__crosstalk {
    margin-top: 8rem;
  }
}
#top .p_sec05__crosstalk .image {
  position: relative;
}
#top .p_sec05__crosstalk .image img {
  border-radius: 1rem;
  width: 100%;
}
#top .p_sec05__crosstalk .image .text {
  position: absolute;
  bottom: -0.7rem;
  left: 0;
  color: white;
  font-size: 10rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05__crosstalk .image .text {
    font-size: 5rem;
    bottom: -0.3rem;
  }
}
#top .p_sec05__crosstalk .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #top .p_sec05__crosstalk .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
#top .p_sec05__crosstalk .flex .textarea .title {
  font-size: 3rem;
  font-weight: bold;
  color: #2e5b9a;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05__crosstalk .flex .textarea .title {
    font-size: 2.5rem;
    margin-top: 1rem;
  }
}
#top .p_sec05__crosstalk .flex .textarea .c_text18 {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05__crosstalk .flex .textarea .c_text18 {
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec05__crosstalk .flex .btn {
    margin-top: 2rem;
  }
}
#top .p_sec05__crosstalk .flex .btn .c_btnE {
  width: 38.8rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec05__crosstalk .flex .btn .c_btnE {
    width: 100%;
  }
}
#top .p_sec06 {
  padding-top: 7rem;
  background: url(../../images/top_env@2x.png) top right no-repeat;
  background-size: 74.3rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec06 {
    background: none;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec06 .c_titA {
    margin-bottom: 1rem;
  }
  #top .p_sec06 .c_titA__en {
    font-size: 3.6rem;
  }
}
#top .p_sec06 .c_text18 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec06 .c_text18 {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top .p_sec06__image {
    margin-right: -3.6rem;
    margin-bottom: 2rem;
  }
  #top .p_sec06__image img {
    width: 100%;
    border-radius: 1rem 0 0 1rem;
  }
}
#top .p_sec06 .textarea {
  max-width: 43.9rem;
}
#top .p_sec06 .textarea .btn {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec06 .textarea .btn {
    margin-top: 3rem;
  }
}
#top .p_sec06 .textarea .btn .c_btnE {
  width: 100%;
}
#top .p_sec07 {
  margin-top: 17rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .p_sec07 {
    margin-top: 15rem;
  }
}
#top .p_sec07__flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #top .p_sec07__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: linear-gradient(45deg, #8bd3d6 0%, #d8ffa2 100%);
    padding: 3rem;
    border-radius: 1rem;
  }
}
#top .p_sec07__flex:before {
  content: "";
  width: 132.4rem;
  border-radius: 1rem;
  background: -webkit-gradient(linear, left top, right top, from(#8bd3d6), to(#d8ffa2));
  background: linear-gradient(to right, #8bd3d6 0%, #d8ffa2 100%);
  position: absolute;
  top: 5.6rem;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #top .p_sec07__flex:before {
    display: none;
  }
}
#top .p_sec07__flex .image {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #top .p_sec07__flex .image {
    margin: -10rem -3rem 3rem;
  }
}
#top .p_sec07__flex .image img {
  width: 61.1rem;
}
#top .p_sec07__flex .textarea {
  position: relative;
  z-index: 1;
}
#top .p_sec07__flex .textarea .c_titA {
  margin-bottom: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #top .p_sec07__flex .textarea .c_titA {
    margin-bottom: 1rem;
  }
}
#top .p_sec07__flex .textarea .c_titA__en {
  -webkit-text-stroke: 1px #2e5b9a;
  text-stroke: 1px #2e5b9a;
  paint-order: stroke transparent;
  font-size: 7rem;
  letter-spacing: 0;
  color: transparent;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #top .p_sec07__flex .textarea .c_titA__en {
    font-size: 4rem;
  }
}
#top .p_sec07__flex .textarea .c_text18 {
  color: #2e5b9a;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec07__flex .textarea .c_text18 {
    letter-spacing: 0;
    margin-bottom: 2rem;
  }
}
#top .p_sec07__flex .textarea .btn .c_btnE {
  width: 100%;
}
#top .p_bg3 {
  background: url(../../images/top_bg4@2x.png) center top 50rem no-repeat #edf4fb;
  background-size: 100%;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .p_bg3 {
    background: none;
  }
}
#top .p_sec08 {
  padding-top: 12rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .p_sec08 {
    padding-top: 5.5rem;
  }
}
#top .p_sec08__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec08__head {
    margin-bottom: 2rem;
  }
}
#top .p_sec08__head .c_titA {
  margin-bottom: 0;
}
#top .p_sec08__head .c_titA__en {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec08__head .c_titA__en {
    font-size: 4rem;
  }
}
#top .p_sec08__head .c_btnE {
  width: 34rem;
}
#top .p_sec08 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.4rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec08 .list {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
}
#top .p_sec09 {
  padding-top: 12rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .p_sec09 {
    padding-top: 5.5rem;
  }
}
#top .p_sec09__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec09__head {
    margin-bottom: 2rem;
  }
}
#top .p_sec09__head .c_titA {
  margin-bottom: 0;
}
#top .p_sec09__head .c_titA__en {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec09__head .c_titA__en {
    font-size: 4rem;
  }
}
#top .p_sec09__head .c_btnE {
  width: 34rem;
}
@media screen and (max-width: 768px) {
  #top .p_sec09 .c_cardB {
    margin-bottom: 2rem;
  }
}
#top .l_recruit {
  display: block !important;
  background: none;
  margin-top: 0;
}

#about .p_sec01 .c_titA {
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec01 .c_titA {
    gap: 1.5rem;
  }
}
#about .p_sec01__title {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec01__title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1rem;
  }
}
#about .p_sec01__text {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec01__text {
    text-align: left;
    margin-bottom: 3rem;
  }
}
#about .p_sec01__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec01__flex {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 2rem;
  }
}
#about .p_sec01__flex._rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec01__flex._rev {
    margin-top: 0;
  }
}
#about .p_sec01__flex .image {
  width: 41.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #about .p_sec01__flex .image {
    width: auto;
  }
}
#about .p_sec01__flex .image img {
  border-radius: 1rem;
}
#about .p_sec01__flex .textarea {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec01__flex .textarea {
    gap: 2rem;
  }
}
#about .p_sec01__flex .textarea .title {
  font-size: 3rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec01__flex .textarea .title {
    font-size: 1.9rem;
  }
}
#about .p_sec02 {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02 {
    margin-top: 6rem;
  }
}
#about .p_sec02__text {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__text {
    margin-bottom: 2rem;
  }
}
#about .p_sec02__anchor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__anchor {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 8rem;
  }
}
#about .p_sec02__anchor li:nth-child(1) .en img {
  width: 11.2rem;
}
#about .p_sec02__anchor li:nth-child(2) .en img {
  width: 10.6rem;
}
#about .p_sec02__anchor li:nth-child(3) .en img {
  width: 8.7rem;
}
#about .p_sec02__anchor li:nth-child(4) .en img {
  width: 7.4rem;
}
#about .p_sec02__anchor li a {
  height: 13rem;
  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;
  gap: 1rem;
  background: linear-gradient(45deg, #2e3a9a 0%, #8bd3d6 100%);
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__anchor li a {
    gap: 0.5rem;
  }
}
#about .p_sec02__anchor li a .ja {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}
#about .p_sec02__anchor li a .arrow {
  width: 2rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__anchor li a .arrow {
    margin-top: 0.5rem;
  }
}
#about .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: 16rem;
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__rows {
    gap: 6rem;
    margin-bottom: 6rem;
  }
}
#about .p_sec02__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about .p_sec02__title .en {
  color: #2e5b9a;
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__title .en {
    font-size: 4rem;
  }
}
#about .p_sec02__title .ja {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e5b9a;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__title .ja {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
#about .p_sec02__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__flex {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 2rem;
  }
}
#about .p_sec02__flex .textarea {
  width: 100%;
}
#about .p_sec02__flex .textarea .sub {
  font-size: 1.8rem;
  line-height: 1.9444444444;
  margin-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__flex .textarea .sub {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    letter-spacing: 0;
  }
}
#about .p_sec02__flex .textarea .stitle {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02__flex .textarea .stitle {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
#about .p_sec02__flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#about .p_sec02__flex .image img {
  border-radius: 1rem;
  width: 42.8rem;
}
#about .p_sec02_value .c_text18 {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value .c_text18 {
    margin-top: 0.5rem;
    letter-spacing: 0;
  }
}
#about .p_sec02_value__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: 4rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list {
    gap: 2rem;
  }
}
#about .p_sec02_value__list > li {
  border-radius: 1rem;
  border: 1px solid #2e5b9a;
  background-color: #fff;
  overflow: hidden;
}
#about .p_sec02_value__list > li .head {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 5rem;
  gap: 2rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem 1.5rem;
  }
}
#about .p_sec02_value__list > li .head .num {
  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) {
  #about .p_sec02_value__list > li .head .num {
    gap: 1rem;
  }
}
#about .p_sec02_value__list > li .head .num .no {
  font-size: 5rem;
  color: #2e5b9a;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .head .num .no {
    font-size: 2rem;
  }
}
#about .p_sec02_value__list > li .head .num .text {
  font-size: 2.5rem;
  color: #2e5b9a;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .head .num .text {
    font-size: 2rem;
  }
}
#about .p_sec02_value__list > li .head .sub {
  font-size: 1.8rem;
  line-height: 1.9444444444;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .head .sub {
    font-size: 1.5rem;
  }
}
#about .p_sec02_value__list > li .head .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  position: absolute;
  top: 50%;
  right: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none !important;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .head .close {
    right: 2rem;
  }
}
#about .p_sec02_value__list > li .head .close:before {
  content: "詳しく見る";
  font-size: 1.8rem;
  color: #2e5b9a;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .head .close:before {
    display: none;
  }
}
#about .p_sec02_value__list > li .head .close:after {
  content: "";
  background: url(../../images/about_close.svg) center no-repeat;
  background-size: contain;
  width: 2.2rem;
  height: 2.2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#about .p_sec02_value__list > li .head.is-open .close:before {
  content: "閉じる";
}
#about .p_sec02_value__list > li .head.is-open .close:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
#about .p_sec02_value__list > li .cont {
  background: #2e5b9a;
  padding: 4rem 5rem;
  display: none;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .cont {
    padding: 2rem;
  }
}
#about .p_sec02_value__list > li .cont .title {
  font-size: 1.8rem;
  background: white;
  border-radius: 100vh;
  color: #2e5b9a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .cont .title {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
}
#about .p_sec02_value__list > li .cont .c_text15 {
  color: white;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .cont .c_text15 {
    margin-bottom: 1rem;
  }
}
#about .p_sec02_value__list > li .cont .example {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .cont .example {
    grid-template-columns: 1fr;
    page-break-after: 1.5rem;
  }
}
#about .p_sec02_value__list > li .cont .example li {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .cont .example li {
    padding: 1.5rem;
  }
}
#about .p_sec02_value__list > li .cont .example li.ng dl dt:before {
  background: url(../../images/about_ng.svg) center no-repeat;
  background-size: contain;
}
#about .p_sec02_value__list > li .cont .example dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
#about .p_sec02_value__list > li .cont .example dl dt:before {
  content: "";
  background: url(../../images/about_ok.svg) center no-repeat;
  background-size: contain;
  width: 2.9rem;
  height: 2.9rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec02_value__list > li .cont .example dl dt:before {
    width: 1.9rem;
    height: 1.9rem;
  }
}
#about .p_sec02_value__list > li .cont .example dl dd p {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(46, 91, 154, 0.3);
}
#about .p_sec02_value__list > li .cont .example dl dd p + p {
  margin-top: 1.2rem;
}
#about .p_sec03 {
  margin-top: 20rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec03 {
    margin-top: 10rem;
  }
}
#about .p_sec03__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec03__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about .p_sec03__flex .textarea {
  width: 100%;
  margin-top: -2rem;
}
#about .p_sec03__flex .textarea .name {
  font-size: 1.8rem;
  line-height: 1.9444444444;
  margin-top: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #about .p_sec03__flex .textarea .name {
    margin-top: 2rem;
    text-align: right;
  }
}
#about .p_sec03__flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #about .p_sec03__flex .image {
    margin-bottom: 1.5rem;
  }
}
#about .p_sec03__flex .image img {
  border-radius: 1rem;
  width: 43.9rem;
}
#about .p_bigbg {
  background: url(../../images/about_bg@2x.png) bottom -100rem left -80rem no-repeat;
  background-size: 170.7rem;
  padding-bottom: 20rem;
  margin-bottom: -10rem;
}
@media screen and (max-width: 768px) {
  #about .p_bigbg {
    background-size: 100%;
  }
}
#about .p_sec04 {
  padding-top: 18rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec04 {
    padding-top: 10rem;
  }
}
#about .p_sec04 .c_titA {
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec04 .c_titA {
    gap: 1.5rem;
  }
}
#about .p_sec04__bg {
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 7rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec04__bg {
    padding: 3rem;
  }
}
#about .p_sec04 table {
  border-top: 1px solid #bfbfbf;
}
@media screen and (max-width: 768px) {
  #about .p_sec04 table {
    display: block;
  }
  #about .p_sec04 table tbody,
  #about .p_sec04 table tr,
  #about .p_sec04 table th,
  #about .p_sec04 table td {
    display: block;
  }
}
#about .p_sec04 table tr {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  border-bottom: 1px solid #bfbfbf;
}
@media screen and (max-width: 768px) {
  #about .p_sec04 table tr {
    font-size: 1.5rem;
    padding: 1.5rem 0;
  }
}
#about .p_sec04 table tr th,
#about .p_sec04 table tr td {
  vertical-align: middle;
  padding: 2.5rem 0;
}
@media screen and (max-width: 768px) {
  #about .p_sec04 table tr th,
  #about .p_sec04 table tr td {
    padding: 0;
  }
}
#about .p_sec04 table tr th {
  color: #2e5b9a;
  padding-right: 4rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #about .p_sec04 table tr th {
    margin-bottom: 0.5rem;
    padding-right: 0;
  }
}
#about .p_sec04__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.8rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec04__access {
    margin-top: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
#about .p_sec04__access .textarea {
  width: 100%;
}
#about .p_sec04__access .textarea .title {
  font-size: 1.8rem;
  color: #2e5b9a;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #about .p_sec04__access .textarea .title {
    font-size: 1.5rem;
  }
}
#about .p_sec04__access .textarea .c_text18 {
  margin-top: 1rem;
}
#about .p_sec04__access .map {
  width: 54.5rem;
  height: 31.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #about .p_sec04__access .map {
    width: auto;
    height: 18.8rem;
  }
}
#about .p_sec04__access .map iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
#about .p_sec05 {
  clip-path: shape(from 0 12rem, curve to 100% 12rem with 50% -10rem, line to 100% 100%, line to 0 100%, close);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding-top: 14rem;
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec05 {
    clip-path: shape(from 0 2.5rem, curve to 100% 2.5rem with 50% -2rem, line to 100% 100%, line to 0 100%, close);
    padding-top: 8rem;
    background-size: 70rem;
    padding-bottom: 12rem;
  }
}
#about .p_sec05__history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec05__history {
    gap: 4.5rem;
  }
}
#about .p_sec05__history:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #2e5b9a;
  width: 0.2rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #about .p_sec05__history:before {
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
#about .p_sec05__history li {
  width: 50.9rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .p_sec05__history li {
    width: auto;
    padding-left: 3rem;
  }
}
#about .p_sec05__history li:before {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  background: #2e5b9a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0.3rem;
  right: -4.4rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec05__history li:before {
    left: -0.7rem !important;
    right: auto !important;
  }
}
@media screen and (min-width: 769px) {
  #about .p_sec05__history li:nth-child(odd) {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  #about .p_sec05__history li:nth-child(odd):before {
    left: -4.4rem;
    right: auto;
  }
  #about .p_sec05__history li:nth-child(even) {
    text-align: right;
  }
}
#about .p_sec05__history li .date {
  font-size: 2rem;
  color: #2e5b9a;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec05__history li .date {
    font-size: 1.6rem;
  }
}
#about .p_sec05__history li .title {
  font-size: 2rem;
  color: #2e5b9a;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec05__history li .title {
    font-size: 1.8rem;
  }
  #about .p_sec05__history li .title br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #about .p_sec05__history li .c_text15 br {
    display: none;
  }
}
#about .p_sec05__history li .image {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #about .p_sec05__history li .image {
    margin-bottom: 0;
    margin-top: 1rem;
  }
}
#about .p_sec05__history li .image img {
  width: 100%;
  border-radius: 1rem;
}

#environment .p_sec01 .c_titA {
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .c_titA {
    gap: 1rem;
  }
}
#environment .p_sec01 .c_titA__ja {
  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) {
  #environment .p_sec01 .c_titA__ja {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#environment .p_sec01 .c_titA__ja small {
  font-size: 1.5rem;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01 .c_titA__ja small {
    margin-top: 0.5rem;
    margin-left: 0;
  }
}
#environment .p_sec01_info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info {
    gap: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#environment .p_sec01_info__row {
  border: 1px solid #2e5b9a;
  border-radius: 1rem;
  padding: 2.5rem;
}
#environment .p_sec01_info__row._span2 {
  grid-column: span 2;
}
#environment .p_sec01_info__title {
  margin-left: -2.5rem;
  background: #2e5b9a;
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: bold;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 1.4rem) 50%, 100% 100%, 0% 100%);
  padding: 1.4rem 2.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__title {
    margin-bottom: 2.5rem;
  }
}
#environment .p_sec01_info__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  grid-auto-flow: dense;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#environment .p_sec01_info__list li {
  position: relative;
}
#environment .p_sec01_info__list li img {
  width: 100%;
}
#environment .p_sec01_info__list li._colspan2 {
  grid-column-end: span 2;
}
#environment .p_sec01_info__list li._rowspan2 {
  grid-row-end: span 2;
}
#environment .p_sec01_info__list li._colspan4 {
  grid-column-end: span 4;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._splast {
    -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
            order: 99;
  }
}
#environment .p_sec01_info__list li .num {
  position: absolute;
  font-size: 5rem;
  font-weight: bold;
  color: #767676;
}
#environment .p_sec01_info__list li._info1 .num {
  top: 18.5rem;
  left: 7.7rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info1 .num {
    top: 17.9rem;
    left: 8.8rem;
  }
}
#environment .p_sec01_info__list li._info2 .num {
  top: 18.5rem;
  left: 5.2rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info2 .num {
    top: 17.9rem;
    left: 6.3rem;
  }
}
#environment .p_sec01_info__list li._info3 .num {
  font-size: 3.5rem;
  color: white;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info3 .num {
    font-size: 2rem;
  }
}
#environment .p_sec01_info__list li._info3 .num._num1 {
  top: 24.1rem;
  left: 32.1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info3 .num._num1 {
    top: 14.3rem;
    left: 16.9rem;
  }
}
#environment .p_sec01_info__list li._info3 .num._num2 {
  top: 37.3rem;
  left: 19.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info3 .num._num2 {
    top: 19.5rem;
    left: 9.8rem;
  }
}
#environment .p_sec01_info__list li._info3 .num._num3 {
  top: 23rem;
  left: 9.8rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info3 .num._num3 {
    top: 14.2rem;
    left: 5.2rem;
  }
}
#environment .p_sec01_info__list li._info3 .num._num4 {
  top: 12.3rem;
  left: 17.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info3 .num._num4 {
    top: 8.3rem;
    left: 9.5rem;
  }
}
#environment .p_sec01_info__list li._info4 .num {
  top: 5.7rem;
}
#environment .p_sec01_info__list li._info4 .num._num1 {
  left: 18.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info4 .num._num1 {
    left: 6.8rem;
  }
}
#environment .p_sec01_info__list li._info4 .num._num2 {
  left: 28.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info4 .num._num2 {
    left: 16.8rem;
  }
}
#environment .p_sec01_info__list li._info5 .num {
  top: 25.6rem;
}
#environment .p_sec01_info__list li._info5 .num._num1 {
  left: 7.2rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info5 .num._num1 {
    top: 19.8rem;
    left: 7.8rem;
  }
}
#environment .p_sec01_info__list li._info5 .num._num2 {
  left: 30.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info5 .num._num2 {
    top: 33.5rem;
    left: 7rem;
  }
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info6 .num {
    font-size: 4.2rem;
  }
}
#environment .p_sec01_info__list li._info6 .num._num1 {
  top: 22.8rem;
  left: 30rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info6 .num._num1 {
    top: 18.6rem;
    left: 8.7rem;
  }
}
#environment .p_sec01_info__list li._info6 .num._num2 {
  top: 51.8rem;
  left: 10.7rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info6 .num._num2 {
    top: 40.6rem;
    left: 8.7rem;
  }
}
#environment .p_sec01_info__list li._info7 .num {
  top: 23.1rem;
  left: 8.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info7 .num {
    top: 22.3rem;
    left: 9.7rem;
  }
}
#environment .p_sec01_info__list li._info8 .num {
  top: 23.1rem;
  left: 5.2rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info8 .num {
    top: 22.6rem;
    left: 6.5rem;
  }
}
#environment .p_sec01_info__list li._info9 .num {
  top: 15.7rem;
  left: 31.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info9 .num {
    top: 29.1rem;
    left: 10.2rem;
  }
}
#environment .p_sec01_info__list li._info10 .num {
  top: 18.8rem;
  left: 8.3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info10 .num {
    top: 19.2rem;
    left: 10.4rem;
  }
}
#environment .p_sec01_info__list li._info11 .num {
  top: 18.9rem;
  left: 5.2rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info11 .num {
    top: 19.4rem;
    left: 7.2rem;
  }
}
#environment .p_sec01_info__list li._info12 .num {
  top: 19rem;
  left: 2.7rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info12 .num {
    top: 19.4rem;
    left: 4.7rem;
  }
}
#environment .p_sec01_info__list li._info13 .num {
  top: 19rem;
  left: 9.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info13 .num {
    top: 19.4rem;
    left: 11.8rem;
  }
}
#environment .p_sec01_info__list li._info14 .num {
  top: 19rem;
  left: 6.6rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info14 .num {
    top: 19.4rem;
    left: 8.7rem;
  }
}
#environment .p_sec01_info__list li._info15 .num {
  top: 19rem;
  left: 6.9rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec01_info__list li._info15 .num {
    top: 19.4rem;
    left: 8.9rem;
  }
}
#environment .p_sec02 {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02 {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #environment .p_sec02 .c_titA {
    margin-bottom: 2rem;
  }
}
#environment .p_sec02 .c_text18 {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02 .c_text18 {
    margin-bottom: 3rem;
  }
}
#environment .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: 9rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__list {
    gap: 5rem;
  }
}
#environment .p_sec02__list li dt {
  font-size: 3rem;
  font-weight: bold;
  color: #2e5b9a;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__list li dt {
    font-size: 2rem;
  }
}
#environment .p_sec02__list li dd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__list li dd {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
#environment .p_sec02__list li dd .card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__list li dd .card {
    padding: 1.5rem 2.4rem;
  }
}
#environment .p_sec02__list li dd .card .title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__list li dd .card .title {
    margin-bottom: 1rem;
  }
}
#environment .p_sec02__list li dd .card .image img {
  border-radius: 0.5rem;
  width: 100%;
}
#environment .p_sec02__list li dd .card .c_text15 {
  margin-top: 1rem;
}
#environment .p_sec02__block {
  margin-top: 9rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 3.7rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__block {
    margin-top: 6rem;
    padding: 2rem;
  }
}
#environment .p_sec02__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4.4rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2rem;
  }
}
#environment .p_sec02__flex .textarea {
  width: 100%;
}
#environment .p_sec02__flex .textarea .title {
  font-size: 3rem;
  line-height: 1.5;
  color: #2e5b9a;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__flex .textarea .title {
    font-size: 2rem;
  }
}
#environment .p_sec02__flex .textarea .stitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__flex .textarea .stitle {
    font-size: 1.8rem;
  }
}
#environment .p_sec02__flex .image {
  width: 45.7rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__flex .image {
    width: auto;
    margin: 1rem 0;
  }
}
#environment .p_sec02__flex .image img {
  border-radius: 0.5rem;
}
#environment .p_sec02__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__cards {
    grid-template-columns: 1fr;
  }
}
#environment .p_sec02__cards li {
  background: rgba(46, 91, 154, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem 0.5rem;
  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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__cards li {
    padding: 1.4rem 1rem;
  }
}
#environment .p_sec02__cards li .title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #2e5b9a;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__cards li .title {
    text-align: left;
    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-bottom: 1px solid #2e5b9a;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    gap: 1rem;
  }
  #environment .p_sec02__cards li .title img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  #environment .p_sec02__cards li .title .img1 {
    width: 5rem;
  }
  #environment .p_sec02__cards li .title .img2 {
    width: 7.3rem;
  }
  #environment .p_sec02__cards li .title .img3 {
    width: 8.1rem;
  }
  #environment .p_sec02__cards li .title .img4 {
    width: 5.9rem;
  }
  #environment .p_sec02__cards li .title .img5 {
    width: 7.8rem;
  }
}
#environment .p_sec02__cards li .illust {
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__cards li .illust {
    display: none;
  }
}
#environment .p_sec02__cards li .illust .img1 {
  width: 5rem;
}
#environment .p_sec02__cards li .illust .img2 {
  width: 7.3rem;
}
#environment .p_sec02__cards li .illust .img3 {
  width: 8.1rem;
}
#environment .p_sec02__cards li .illust .img4 {
  width: 5.9rem;
}
#environment .p_sec02__cards li .illust .img5 {
  width: 7.8rem;
}
#environment .p_sec02__cards li .c_text15 {
  letter-spacing: 0;
}
#environment .p_sec02__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#environment .p_sec02__logo .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__logo .image {
    margin-bottom: 1rem;
    text-align: center;
  }
}
#environment .p_sec02__logo .image img {
  width: 26.5rem;
}
#environment .p_sec02__logo .textarea .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  color: #2e5b9a;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__logo .textarea .title {
    font-size: 2rem;
  }
}
#environment .p_sec02__logo .textarea .stitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec02__logo .textarea .stitle {
    font-size: 1.8rem;
  }
}
#environment .p_sec03 {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #environment .p_sec03 .c_titA {
    margin-bottom: 2rem;
  }
}
#environment .p_sec03__block {
  margin-top: 3rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 3.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03__block {
    padding: 3rem 2rem;
    margin-top: 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
#environment .p_sec03__block .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  color: #2e5b9a;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03__block .title {
    font-size: 2rem;
  }
}
#environment .p_sec03__block .stitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec03__block .stitle {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #environment .p_sec03__block .c_text15 {
    margin-top: 1rem;
  }
}
#environment .p_sec03__block .images {
  display: grid;
}
#environment .p_sec03__block .images img {
  border-radius: 0.5rem;
}
#environment .p_sec04 {
  clip-path: shape(from 0 12rem, curve to 100% 12rem with 50% -10rem, line to 100% 100%, line to 0 100%, close);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding-top: 14rem;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04 {
    clip-path: shape(from 0 2.5rem, curve to 100% 2.5rem with 50% -2rem, line to 100% 100%, line to 0 100%, close);
    margin-top: 8rem;
    padding-top: 6rem;
    background-size: 80rem;
  }
}
@media screen and (max-width: 768px) {
  #environment .p_sec04 .c_titA {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#environment .p_sec04__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3.3rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#environment .p_sec04__list li {
  background: linear-gradient(45deg, #2e3a9a 0%, #8bd3d6 100%);
  border-radius: 1rem;
  text-align: center;
  color: 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;
  padding: 3.5rem 2rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04__list li {
    padding: 2rem;
  }
}
#environment .p_sec04__list li .icon {
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04__list li .icon {
    margin-bottom: 0;
  }
}
#environment .p_sec04__list li .icon img {
  width: 13rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04__list li .icon img {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
#environment .p_sec04__list li .title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04__list li .title {
    font-size: 1.8rem;
  }
}
#environment .p_sec04__list li .cap {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  #environment .p_sec04__list li .cap {
    margin-top: 0;
  }
}
#environment .p_sec05 {
  padding-top: 13rem;
  padding-bottom: 24rem;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 {
    padding-top: 6rem;
    padding-bottom: 12rem;
  }
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .c_titA {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#environment .p_sec05 .swiper-slide img {
  border-radius: 1rem;
}
#environment .p_sec05 .swiper-pagination {
  position: static;
  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.6rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .swiper-pagination {
    margin-top: 1rem;
    gap: 0.3rem;
  }
}
#environment .p_sec05 .swiper-pagination-bullet {
  background: #bfbfbf;
  width: 1rem;
  height: 1rem;
  opacity: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}
#environment .p_sec05 .swiper-pagination-bullet-active {
  background: #2e5b9a;
}
#environment .p_sec05 .swiper-button-prev,
#environment .p_sec05 .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #2e5b9a;
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  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) {
  #environment .p_sec05 .swiper-button-prev,
  #environment .p_sec05 .swiper-button-next {
    width: 28px;
    height: 28px;
  }
}
#environment .p_sec05 .swiper-button-prev img,
#environment .p_sec05 .swiper-button-next img {
  width: 12px;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .swiper-button-prev img,
  #environment .p_sec05 .swiper-button-next img {
    width: 6px;
  }
}
#environment .p_sec05 .swiper-button-prev:after,
#environment .p_sec05 .swiper-button-next:after {
  display: none;
}
#environment .p_sec05 .swiper-button-prev {
  left: 30rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .swiper-button-prev {
    left: 4rem;
  }
}
#environment .p_sec05 .swiper-button-prev img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
#environment .p_sec05 .swiper-button-next {
  right: 30rem;
}
@media screen and (max-width: 768px) {
  #environment .p_sec05 .swiper-button-next {
    right: 4rem;
  }
}
body:has(#job_detail):not(:has(._corporate)) .l_recruit {
  background-color: transparent;
}

#job_detail .p_mv {
  margin-bottom: 3.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #job_detail .p_mv {
    margin-bottom: 4rem;
  }
}
#job_detail .p_mv .c_pankuzu {
  padding: 3rem 3.6rem 0;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_mv .c_pankuzu {
    padding-top: 2rem;
  }
}
#job_detail .p_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;
  gap: 1rem;
  margin-bottom: 2rem;
}
#job_detail .p_mv__title .en {
  font-weight: bold;
  font-size: 10rem;
  color: white;
}
@media screen and (max-width: 768px) {
  #job_detail .p_mv__title .en {
    font-size: 5rem;
  }
}
#job_detail .p_mv__title .ja {
  font-size: 4rem;
  color: #2e5b9a;
  font-weight: bold;
  line-height: 1.44;
}
@media screen and (max-width: 768px) {
  #job_detail .p_mv__title .ja {
    font-size: 2.5rem;
  }
}
#job_detail .p_mv__image {
  position: absolute;
  top: 7.6rem;
  right: -3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 65rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_mv__image {
    position: static;
    width: auto;
    margin-bottom: 2.5rem;
  }
}
#job_detail .p_mv__image img {
  border-radius: 1rem;
}
#job_detail .p_mv__image img:nth-child(1) {
  margin-left: auto;
  margin-bottom: -13rem;
  width: 38.9rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_mv__image img:nth-child(1) {
    width: 19rem;
    margin-bottom: -6rem;
  }
}
#job_detail .p_mv__image img:nth-child(2) {
  width: 48.3rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_mv__image img:nth-child(2) {
    width: 23rem;
  }
}
#job_detail .p_mv__text {
  font-size: 6rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.45;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #job_detail .p_mv__text {
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
}
#job_detail .p_sec01 {
  padding-top: 20rem;
  padding-bottom: 24rem;
  background: url(../../images/job_mask@2x.png) top center no-repeat, url(../../images/job_mask2@2x.png) bottom center no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(40rem, transparent), color-stop(40rem, white), color-stop(white), to(transparent));
  background: url(../../images/job_mask@2x.png) top center no-repeat, url(../../images/job_mask2@2x.png) bottom center no-repeat, linear-gradient(to bottom, transparent 40rem, white 40rem, white calc(100% - 48rem), transparent 100%);
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01 {
    background: url(../../images/job_mask_sp@2x.png) top center no-repeat, url(../../images/job_mask2_sp.png) bottom center no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(18rem, transparent), color-stop(18rem, white), color-stop(white), to(transparent));
    background: url(../../images/job_mask_sp@2x.png) top center no-repeat, url(../../images/job_mask2_sp.png) bottom center no-repeat, linear-gradient(to bottom, transparent 18rem, white 18rem, white calc(100% - 6rem), transparent 100%);
    background-size: 100%;
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
#job_detail .p_sec01__text {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 3rem;
  margin-top: -2rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__text {
    margin-bottom: 2rem;
  }
}
#job_detail .p_sec01__anchor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__anchor {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2.5rem;
  }
}
#job_detail .p_sec01__anchor li a {
  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;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(40deg, #2e3a9a 0%, #8bd3d6 100%);
  border-radius: 0.5rem;
  gap: 1.5rem;
  padding: 2.5rem 0 2rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__anchor li a {
    padding: 2rem 0 1.5rem;
    gap: 1rem;
  }
}
#job_detail .p_sec01__anchor li a img {
  width: 1.4rem;
}
#job_detail .p_sec01__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: 5.5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__rows {
    gap: 3rem;
  }
}
#job_detail .p_sec01__row {
  border: 1px solid #2e5b9a;
  border-radius: 1rem;
  padding: 4rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__row {
    padding: 2rem;
  }
}
#job_detail .p_sec01__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.3rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
  }
}
#job_detail .p_sec01__flex .textarea {
  width: 100%;
}
#job_detail .p_sec01__flex .textarea .num {
  font-size: 10rem;
  font-weight: 400;
  color: rgba(46, 91, 154, 0.3);
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex .textarea .num {
    font-size: 5rem;
  }
}
#job_detail .p_sec01__flex .textarea .title {
  color: #2e5b9a;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex .textarea .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
#job_detail .p_sec01__flex .textarea .stitle {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex .textarea .stitle {
    font-size: 1.8rem;
  }
}
#job_detail .p_sec01__flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex .image {
    margin-bottom: 1.5rem;
  }
}
#job_detail .p_sec01__flex .image img {
  width: 49.5rem;
  border-radius: 1rem;
}
#job_detail .p_sec01__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
  }
}
#job_detail .p_sec01__cards li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(46, 91, 154, 0.05);
  padding: 2rem 1rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__cards li {
    padding: 1.5rem;
  }
}
#job_detail .p_sec01__cards li:has(.title) {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 2rem 3rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__cards li:has(.title) {
    padding: 1.5rem;
  }
}
#job_detail .p_sec01__cards li .title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__cards li .title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}
#job_detail .p_sec01__example {
  margin-top: 3rem;
  border-radius: 0.5rem;
  background: #2e5b9a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  padding: 1.5rem 2rem;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__example {
    margin-top: 1.5rem;
    padding: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
#job_detail .p_sec01__example .title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__example .title {
    font-size: 1.8rem;
  }
}
#job_detail .p_sec01__example .title img {
  width: 5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__example .title img {
    width: 3.2rem;
  }
}
#job_detail .p_sec01__flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.7rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
#job_detail .p_sec01__flex2 .textarea {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex2 .textarea .c_titA {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex2 .textarea .list {
    margin-top: 2rem;
  }
}
#job_detail .p_sec01__flex2 .textarea .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.7rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #c1dbff;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex2 .textarea .list li {
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
#job_detail .p_sec01__flex2 .textarea .list li + li {
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__flex2 .textarea .list li + li {
    padding-top: 1.5rem;
  }
}
#job_detail .p_sec01__flex2 .textarea .list li:before {
  content: "";
  background-color: #2e5b9a;
  width: 1.7rem;
  height: 1.7rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#job_detail .p_sec01__flex2 .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#job_detail .p_sec01__flex2 .image img {
  width: 39.4rem;
  border-radius: 1rem;
}
#job_detail .p_sec01__skill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__skill {
    gap: 1rem;
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#job_detail .p_sec01__skill .c_titA {
  margin-bottom: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: -1.2rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__skill .c_titA {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0;
  }
}
#job_detail .p_sec01__skill .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__skill .list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
#job_detail .p_sec01__skill .list 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2e5b9a;
  border-radius: 1rem;
  padding: 3.5rem 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__skill .list li {
    padding: 2rem 1rem;
  }
}
#job_detail .p_sec01__skill .list li .text {
  color: white;
  font-size: 2rem;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__skill .list li .text {
    font-size: 1.8rem;
  }
}
#job_detail .p_sec01__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
}
#job_detail .p_sec01__lists .cardtitle {
  color: #2e5b9a;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__lists .cardtitle {
    font-size: 1.8rem;
  }
}
#job_detail .p_sec01__list .title {
  color: #2e5b9a;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec01__list .title {
    font-size: 2rem;
  }
}
#job_detail .p_sec02__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec02__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
#job_detail .p_sec02__flex .textarea {
  position: sticky;
  top: var(--hdr_height);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec02__flex .textarea {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec02__flex .textarea .c_titA {
    margin-bottom: 1rem;
  }
}
#job_detail .p_sec02__flex .textarea .image img {
  width: 38.6rem;
  border-radius: 1rem;
}
#job_detail .p_sec02__flex .flow {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem 3rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec02__flex .flow {
    gap: 4.5rem 1.6rem;
  }
}
#job_detail .p_sec02__flex .flow .time:first-child {
  position: relative;
}
#job_detail .p_sec02__flex .flow .time:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1000vh;
  background-image: linear-gradient(to bottom, #2e5b9a, #2e5b9a 4px, transparent 4px, transparent 8px);
  background-size: 3px 14px;
  background-repeat: repeat-Y;
  background-position: center;
}
#job_detail .p_sec02__flex .flow .time span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  background: #2e5b9a;
  padding: 0.9rem 2rem 1.1rem;
  border-radius: 100vh;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec02__flex .flow .time span {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
  }
}
#job_detail .p_sec02__flex .flow .cont {
  margin-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec02__flex .flow .cont {
    margin-top: 0.1rem;
  }
}
#job_detail .p_sec02__flex .flow .cont .text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.3888888889;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec02__flex .flow .cont .text {
    font-size: 1.5rem;
  }
}
#job_detail .p_sec02__flex .flow .cont .image {
  margin-top: 2rem;
}
#job_detail .p_sec02__flex .flow .cont .image img {
  width: 33.5rem;
  border-radius: 0.5rem;
}
#job_detail .p_sec03 {
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03 {
    margin-top: 8rem;
  }
}
#job_detail .p_sec03__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03__list {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
#job_detail .p_sec03__list li .circle {
  position: relative;
  margin-bottom: 5rem;
}
#job_detail .p_sec03__list li .circle .image {
  z-index: 1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid #2e5b9a;
}
#job_detail .p_sec03__list li .circle .image img {
  width: 100%;
}
#job_detail .p_sec03__list li .circle .image .text {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 11rem;
  background: #2e5b9a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  padding-bottom: 2rem;
}
#job_detail .p_sec03__list li .circle:after {
  content: "";
  background: url(../../images/job_arrow2.svg) center no-repeat;
  background-size: contain;
  width: 5.6rem;
  height: 9.3rem;
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#job_detail .p_sec03__list li .year {
  border-radius: 100vh;
  background: #2e5b9a;
  color: white;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 1rem;
}
#job_detail .p_sec03__other {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2e5b9a;
  border-radius: 1rem;
  padding: 2rem;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03__other {
    margin-top: 2rem;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#job_detail .p_sec03__other .title {
  color: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03__other .title {
    font-size: 2rem;
  }
}
#job_detail .p_sec03__other .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03__other .list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
#job_detail .p_sec03__other .list li {
  text-align: center;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
}
#job_detail .p_sec03__skill {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03__skill {
    margin-top: 7rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
#job_detail .p_sec03__skill 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#job_detail .p_sec03__skill li:not(.bgnone) {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3.5rem 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03__skill li:not(.bgnone) {
    padding: 2rem 1rem;
  }
}
#job_detail .p_sec03__skill li .c_titA {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03__skill li .c_titA {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#job_detail .p_sec03__skill li .title {
  color: #2e5b9a;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec03__skill li .title {
    font-size: 2rem;
  }
}
#job_detail .p_sec04 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec04 {
    margin-top: 7rem;
  }
}
#job_detail .p_sec04__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.7rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec04__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
#job_detail .p_sec04__flex .textarea {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec04__flex .textarea .list {
    margin-top: 2rem;
  }
}
#job_detail .p_sec04__flex .textarea .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.7rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #c1dbff;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec04__flex .textarea .list li {
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
#job_detail .p_sec04__flex .textarea .list li + li {
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec04__flex .textarea .list li + li {
    padding-top: 1.5rem;
  }
}
#job_detail .p_sec04__flex .textarea .list li:before {
  content: "";
  background-color: #2e5b9a;
  width: 1.7rem;
  height: 1.7rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#job_detail .p_sec04__flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#job_detail .p_sec04__flex .image img {
  width: 46rem;
  border-radius: 1rem;
}
#job_detail .p_sec05 {
  padding-top: 10rem;
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec05 {
    padding-top: 7rem;
    padding-bottom: 12rem;
  }
}
#job_detail .p_sec05 .c_interview {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec05 .c_interview {
    margin-bottom: 6rem;
  }
}
#job_detail .p_sec05__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec05__list {
    grid-template-columns: 1fr;
  }
}
#job_detail .p_sec05__last {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec05__last {
    margin-top: 4rem;
  }
}
#job_detail .p_sec05__last .text {
  font-size: 2.5rem;
  color: #2e5b9a;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec05__last .text {
    font-size: 2rem;
  }
}
#job_detail .p_sec05__last .arrow {
  margin-top: 2.2rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec05__last .arrow {
    margin-top: 1rem;
  }
}
#job_detail .p_sec05__last .arrow img {
  width: 13.5rem;
}
@media screen and (max-width: 768px) {
  #job_detail .p_sec05__last .arrow img {
    width: 8.6rem;
  }
}
#job_detail._corporate .p_sec01 {
  background: url(../../images/job_mask@2x.png) top center no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(40rem, transparent), color-stop(40rem, white));
  background: url(../../images/job_mask@2x.png) top center no-repeat, linear-gradient(to bottom, transparent 40rem, white 40rem);
  background-size: 100%;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #job_detail._corporate .p_sec01 {
    background: url(../../images/job_mask_sp@2x.png) top center no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(18rem, transparent), color-stop(18rem, white));
    background: url(../../images/job_mask_sp@2x.png) top center no-repeat, linear-gradient(to bottom, transparent 18rem, white 18rem);
    background-size: 100%;
  }
}
#job_detail._corporate .p_sec05 {
  background-color: #fff;
}

body:has(#recruitment) .l_recruit {
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  #recruitment .p_sec01 .c_titA {
    margin-bottom: 1rem;
  }
  #recruitment .p_sec01 .c_titA__en {
    font-size: 4rem;
  }
}
#recruitment .p_sec01__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3rem;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec01__list {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
#recruitment .p_sec01__list li {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem 0.5rem 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec01__list li {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 6.5rem auto;
    grid-template-rows: repeat(2, auto);
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 2rem;
  }
}
#recruitment .p_sec01__list li .title {
  font-size: 2rem;
  font-weight: bold;
  color: #2e5b9a;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec01__list li .title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0.5rem;
  }
}
#recruitment .p_sec01__list li .icon {
  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;
  margin: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec01__list li .icon {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    grid-row: auto/span 2;
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
#recruitment .p_sec01__list li .icon img {
  width: 10rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec01__list li .icon img {
    width: 7.5rem;
  }
}
#recruitment .p_sec01__list li .c_text15 {
  letter-spacing: 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec01__list li .c_text15 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#recruitment .p_sec02 {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02 {
    margin-top: 8rem;
  }
}
#recruitment .p_sec02__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
#recruitment .p_sec02__flex .left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#recruitment .p_sec02__flex .left .c_titA {
  gap: 3rem;
  margin-bottom: 2rem;
  margin-top: -3rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex .left .c_titA {
    gap: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
#recruitment .p_sec02__flex .left .c_text15 {
  margin: 1rem 0;
  color: #2e5b9a;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex .left .c_text15 {
    margin-bottom: 2rem;
  }
}
#recruitment .p_sec02__flex .left .image img {
  border-radius: 1rem;
  width: 53.7rem;
}
#recruitment .p_sec02__flex .right {
  width: 100%;
}
#recruitment .p_sec02__flex .right .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;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex .right .list {
    gap: 1.4rem;
  }
}
#recruitment .p_sec02__flex .right .list li .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  border-radius: 1rem;
  gap: 1.3rem;
  padding: 3rem 2rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex .right .list li .textarea {
    padding: 2rem;
    gap: 0;
    display: grid;
    grid-template-columns: 2.5em auto;
    grid-template-rows: repeat(2, auto);
    text-align: left;
  }
}
#recruitment .p_sec02__flex .right .list li .textarea .num {
  font-size: 3rem;
  color: rgba(46, 91, 154, 0.3);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex .right .list li .textarea .num {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    grid-row: auto/span 2;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
#recruitment .p_sec02__flex .right .list li .textarea .title {
  font-size: 2rem;
  color: #2e5b9a;
  font-weight: bold;
  width: 6em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex .right .list li .textarea .title {
    width: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#recruitment .p_sec02__flex .right .list li .textarea .c_text15 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex .right .list li .textarea .c_text15 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0.5rem;
  }
}
#recruitment .p_sec02__flex .right .list li .arrow {
  text-align: center;
}
#recruitment .p_sec02__flex .right .list li .arrow img {
  width: 5.9rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec02__flex .image {
    margin-top: 1rem;
  }
  #recruitment .p_sec02__flex .image img {
    border-radius: 1rem;
  }
}
#recruitment .p_sec03 {
  margin-top: 15rem;
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03 {
    margin-top: 7rem;
    padding-bottom: 12rem;
  }
}
#recruitment .p_sec03__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
}
#recruitment .p_sec03__flex .left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03__flex .left {
    position: static;
    width: 100%;
  }
}
#recruitment .p_sec03__flex .left .list li + li a {
  padding-top: 1.5rem;
}
#recruitment .p_sec03__flex .left .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #707070;
}
#recruitment .p_sec03__flex .left .list li a:before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: #505050;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03__flex .left .list li a:after {
    content: "";
    background: url(../../images/arrow_black.svg) center no-repeat;
    background-size: contain;
    width: 1.6rem;
    height: 1.1rem;
    margin-left: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
#recruitment .p_sec03__flex .right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.5rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03__flex .right {
    gap: 3rem;
  }
}
#recruitment .p_sec03__flex .right .row .title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
#recruitment .p_sec03__flex .right .row .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: 3rem;
}
#recruitment .p_sec03__flex .right .row .list li {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03__flex .right .row .list li {
    gap: 1rem;
  }
}
#recruitment .p_sec03__flex .right .row .list li details[open] summary img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#recruitment .p_sec03__flex .right .row .list li summary {
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.5rem;
  color: #2e5b9a;
  cursor: pointer;
  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;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03__flex .right .row .list li summary {
    gap: 0.5rem;
  }
}
#recruitment .p_sec03__flex .right .row .list li summary img {
  width: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03__flex .right .row .list li summary img {
    width: 1.3rem;
  }
}
#recruitment .p_sec03__flex .right .row .list li .textarea {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #recruitment .p_sec03__flex .right .row .list li .textarea {
    margin-top: 1rem;
  }
}
body:has(#interview) .l_recruit {
  background-color: transparent;
}

#interview .p_sec01 {
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #interview .p_sec01 {
    padding-bottom: 12rem;
  }
}
#interview .p_sec01__bnr {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  #interview .p_sec01__bnr {
    margin-bottom: 5rem;
  }
}
#interview .p_sec01__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  #interview .p_sec01__list {
    grid-template-columns: 1fr;
  }
}

body:has(#interview_detail) .l_recruit {
  background-color: transparent;
}

#interview_detail .p_mv {
  padding-bottom: 20rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_mv {
    background: none;
    padding-bottom: 5rem;
  }
}
#interview_detail .p_mv .c_pankuzu {
  padding: 3rem 3.6rem 0;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_mv .c_pankuzu {
    padding-top: 2rem;
  }
}
#interview_detail .p_mv__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;
  gap: 3.6rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  #interview_detail .p_mv__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    gap: 1.5rem;
  }
}
#interview_detail .p_mv__flex .textarea .title {
  font-size: 3rem;
  color: #2e5b9a;
  line-height: 1.6666666667;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_mv__flex .textarea .title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
#interview_detail .p_mv__flex .textarea .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_mv__flex .textarea .text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}
#interview_detail .p_mv__flex .textarea .text .pos {
  font-size: 1.4rem;
  color: white;
  background: #2e5b9a;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
}
#interview_detail .p_mv__flex .textarea .text .name {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 900;
}
#interview_detail .p_mv__flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_mv__flex .image {
    margin-right: -3.6rem;
  }
}
#interview_detail .p_mv__flex .image img {
  width: 73rem;
  border-radius: 1rem 0 0 1rem;
}
#interview_detail .p_sec01__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.7rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#interview_detail .p_sec01__flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: var(--hdr_height);
  left: 0;
}
#interview_detail .p_sec01__flex .image img {
  width: 46rem;
  border-radius: 1rem;
}
#interview_detail .p_sec01__flex .textarea {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__flex .textarea {
    gap: 6rem;
  }
}
#interview_detail .p_sec01__flex .textarea .qa .q {
  font-size: 2rem;
  color: #2e5b9a;
  line-height: 1.5;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #2e5b9a;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__flex .textarea .qa .q {
    margin-bottom: 1rem;
  }
}
#interview_detail .p_sec01__flex .textarea .qa .q:before {
  content: "Q";
  font-weight: 900;
  margin-right: 1rem;
  font-size: 3rem;
}
#interview_detail .p_sec01__flex .textarea .qa .ans .title {
  font-size: 2rem;
  color: #2e5b9a;
  line-height: 1.5;
  margin-bottom: 1rem;
}
#interview_detail .p_sec01__flex .textarea .qa .ans .title:before {
  content: "A";
  font-weight: 900;
  margin-right: 1rem;
  font-size: 3rem;
}
#interview_detail .p_sec01__flex .textarea .qa .ans .spimage {
  margin-top: 1rem;
}
#interview_detail .p_sec01__flex .textarea .qa .ans .spimage img {
  border-radius: 1rem;
}
#interview_detail .p_sec01_schedule {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01_schedule {
    margin-top: 4rem;
  }
}
#interview_detail .p_sec01_schedule__image img {
  width: 100%;
  border-radius: 1rem;
}
#interview_detail .p_sec01_schedule__textarea {
  max-width: 90.4rem;
  margin: -9.6rem auto 0;
  border-radius: 1rem;
  background-color: #fff;
  padding: 4rem 9rem 8rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01_schedule__textarea {
    margin-top: 4rem;
    padding: 2rem 1.5rem;
  }
}
#interview_detail .p_sec01_schedule__textarea .c_titA {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#interview_detail .p_sec01_schedule__textarea .flow {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem 3rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01_schedule__textarea .flow {
    gap: 4.5rem 1.6rem;
  }
}
#interview_detail .p_sec01_schedule__textarea .flow .time:first-child {
  position: relative;
}
#interview_detail .p_sec01_schedule__textarea .flow .time:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1000vh;
  background-image: linear-gradient(to bottom, #2e5b9a, #2e5b9a 4px, transparent 4px, transparent 8px);
  background-size: 3px 14px;
  background-repeat: repeat-Y;
  background-position: center;
}
#interview_detail .p_sec01_schedule__textarea .flow .time span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  background: #2e5b9a;
  padding: 0.9rem 2rem 1.1rem;
  border-radius: 100vh;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01_schedule__textarea .flow .time span {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
  }
}
#interview_detail .p_sec01_schedule__textarea .flow .cont {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01_schedule__textarea .flow .cont {
    margin-top: 0.1rem;
  }
}
#interview_detail .p_sec01_schedule__textarea .flow .cont .text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.3888888889;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01_schedule__textarea .flow .cont .text {
    font-size: 1.5rem;
  }
}
#interview_detail .p_sec01__video {
  max-width: 90.4rem;
  margin: 6rem auto 0;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__video {
    margin-top: 4rem;
  }
}
#interview_detail .p_sec01__video .title {
  font-size: 3rem;
  font-weight: bold;
  color: #2e5b9a;
  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;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__video .title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
#interview_detail .p_sec01__video .title:before, #interview_detail .p_sec01__video .title:after {
  content: "";
  background: url(../../images/interview_detail_kazari.svg) center no-repeat;
  background-size: contain;
  width: 3.3rem;
  height: 5.1rem;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__video .title:before, #interview_detail .p_sec01__video .title:after {
    width: 2rem;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
}
#interview_detail .p_sec01__video .title:before {
  -webkit-transform: scaleX(-1) translateY(1rem);
          transform: scaleX(-1) translateY(1rem);
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__video .title:before {
    -webkit-transform: scaleX(-1) translateY(0.5rem);
            transform: scaleX(-1) translateY(0.5rem);
  }
}
#interview_detail .p_sec01__video .video {
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
#interview_detail .p_sec01__video .video button {
  position: absolute;
  inset: 0;
  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;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  width: 100%;
  z-index: 2;
}
#interview_detail .p_sec01__video .video button img {
  width: 13.6rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec01__video .video button img {
    width: 6rem;
  }
}
#interview_detail .p_sec01__video .video video {
  width: 100%;
}
#interview_detail .p_sec02 {
  margin-top: 10rem;
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec02 {
    margin-top: 4rem;
    padding-bottom: 12rem;
  }
}
#interview_detail .p_sec02__bnr {
  margin-top: 11rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec02__bnr {
    margin-top: 5rem;
  }
}
#interview_detail .p_sec02__back {
  text-align: center;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  #interview_detail .p_sec02__back {
    margin-top: 5rem;
  }
}
#interview_detail .p_sec02__back .c_btnE:after {
  display: none;
}

body:has(#crosstalk) .l_recruit {
  background-color: transparent;
}

#crosstalk .p_mv {
  padding-bottom: 20rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_mv {
    background: none;
    padding-bottom: 5rem;
  }
}
#crosstalk .p_mv .c_pankuzu {
  padding: 3rem 3.6rem 0;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_mv .c_pankuzu {
    padding-top: 2rem;
  }
}
#crosstalk .p_mv__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;
  gap: 3.6rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  #crosstalk .p_mv__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    gap: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#crosstalk .p_mv__flex .textarea .title {
  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;
}
#crosstalk .p_mv__flex .textarea .title .en {
  font-size: 10rem;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_mv__flex .textarea .title .en {
    font-size: 5rem;
  }
}
#crosstalk .p_mv__flex .textarea .title .ja {
  font-size: 4rem;
  font-weight: bold;
  color: #2e5b9a;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_mv__flex .textarea .title .ja {
    font-size: 2.5rem;
  }
}
#crosstalk .p_mv__flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_mv__flex .image {
    margin-right: -3.6rem;
    height: 26.9rem;
  }
}
#crosstalk .p_mv__flex .image img {
  width: 87.7rem;
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_mv__flex .image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
#crosstalk .p_sec01 {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec01 {
    padding-bottom: 6rem;
  }
}
#crosstalk .p_sec01__title {
  color: #2e5b9a;
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec01__title {
    text-align: center;
    font-size: 2rem;
  }
}
#crosstalk .p_sec01__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec01__list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 25rem;
    margin: 0 auto 2rem;
  }
}
#crosstalk .p_sec01__list li {
  border-radius: 1rem;
  background-color: #fff;
  padding: 2.5rem 3rem;
  text-align: center;
}
#crosstalk .p_sec01__list li .image {
  margin-bottom: 2rem;
}
#crosstalk .p_sec01__list li .image img {
  border-radius: 0.5rem;
}
#crosstalk .p_sec01__list li .text1 {
  font-size: 1.2rem;
  padding: 0.2rem 1rem;
  color: #2e5b9a;
  border-radius: 100vh;
  border: 1px solid #2e5b9a;
  display: inline-block;
}
#crosstalk .p_sec01__list li .text2 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
}
#crosstalk .p_sec01__list li .text3 {
  font-size: 1.2rem;
}
#crosstalk .p_sec01__text {
  text-align: center;
  color: #2e5b9a;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec01__text {
    font-size: 1.8rem;
  }
}
#crosstalk .p_sec02 {
  clip-path: shape(from 0 12rem, curve to 100% 12rem with 50% -10rem, line to 100% 100%, line to 0 100%, close);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding-top: 18rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02 {
    clip-path: shape(from 0 2.5rem, curve to 100% 2.5rem with 50% -2rem, line to 100% 100%, line to 0 100%, close);
    padding-top: 8rem;
  }
}
#crosstalk .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) {
  #crosstalk .p_sec02__rows {
    gap: 5rem;
  }
}
#crosstalk .p_sec02__row .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
#crosstalk .p_sec02__row .title .q {
  background: #2e5b9a;
  border-radius: 1rem;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  width: 5.7rem;
  height: 5.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;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .title .q {
    font-size: 1.5rem;
    width: 3.8rem;
    height: 3.6rem;
  }
}
#crosstalk .p_sec02__row .title .text {
  color: #2e5b9a;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .title .text {
    font-size: 1.8rem;
  }
}
#crosstalk .p_sec02__row .comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
#crosstalk .p_sec02__row .comment li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .comment li {
    gap: 1rem;
  }
}
#crosstalk .p_sec02__row .comment li .face {
  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;
  font-size: 1.5rem;
  gap: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#crosstalk .p_sec02__row .comment li .face img {
  width: 9.2rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .comment li .face img {
    width: 7.2rem;
  }
}
#crosstalk .p_sec02__row .comment li .fukidashi {
  background: #ebf4ff;
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
  max-width: 75.3rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .comment li .fukidashi {
    padding: 1rem 1.4rem;
  }
}
#crosstalk .p_sec02__row .comment li .fukidashi:before {
  content: "";
  background: url(../../images/crosstalk_fukidashi.svg) no-repeat;
  background-size: contain;
  width: 2.3rem;
  height: 1.6rem;
  position: absolute;
  left: -2.2rem;
  top: 4rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .comment li .fukidashi:before {
    display: none;
  }
}
#crosstalk .p_sec02__row .comment li:nth-child(2n) .fukidashi {
  background: rgba(208, 208, 208, 0.15);
}
#crosstalk .p_sec02__row .comment li:nth-child(2n) .fukidashi:before {
  background-image: url(../../images/crosstalk_fukidashi_gray.svg);
}
#crosstalk .p_sec02__row .image {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .image {
    margin-top: 3rem;
  }
}
#crosstalk .p_sec02__row .image img {
  width: 100%;
  border-radius: 1rem;
}
#crosstalk .p_sec02__row .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .images {
    margin-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.6rem;
  }
}
#crosstalk .p_sec02__row .images img {
  width: 52rem;
  border-radius: 1rem;
}
#crosstalk .p_sec02__row .images img:nth-child(2) {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__row .images img:nth-child(2) {
    margin-top: 0;
  }
}
#crosstalk .p_sec02__aftertalk {
  text-align: center;
  border: 1px solid #2e5b9a;
  border-radius: 1rem;
  padding: 5rem 7rem;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__aftertalk {
    padding: 2rem;
    margin-top: 4rem;
  }
}
#crosstalk .p_sec02__aftertalk .title {
  font-size: 3rem;
  font-weight: bold;
  color: #2e5b9a;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__aftertalk .title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
#crosstalk .p_sec02__aftertalk .text {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec02__aftertalk .text {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
#crosstalk .p_sec03 {
  padding-top: 10rem;
  padding-bottom: 24rem;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec03 {
    padding-top: 4rem;
    padding-bottom: 12rem;
  }
}
#crosstalk .p_sec03__bnr {
  margin-top: 11rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec03__bnr {
    margin-top: 5rem;
  }
}
#crosstalk .p_sec03__back {
  text-align: center;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  #crosstalk .p_sec03__back {
    margin-top: 5rem;
  }
}
#crosstalk .p_sec03__back .c_btnE:after {
  display: none;
}

body:has(#recruitment) .l_recruit {
  background-color: transparent;
}

#news .c_mv {
  padding-bottom: 8rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #news .c_mv {
    padding-bottom: 4rem;
  }
  #news .c_mv__title .en {
    font-size: 4rem;
  }
}
#news .p_sec01 {
  padding-top: 8.5rem;
  padding-bottom: 24rem;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #news .p_sec01 {
    padding-bottom: 12rem;
  }
}
#news .p_sec01__tab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #news .p_sec01__tab {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
#news .p_sec01__tab li a {
  background-color: #fff;
  border-radius: 0.5rem;
  border: 1px solid #2e5b9a;
  color: #2e5b9a;
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  padding: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #news .p_sec01__tab li a {
    font-size: 1.5rem;
    padding: 1rem;
  }
}
#news .p_sec01__tab li a.is-current {
  background: #2e5b9a;
  color: #fff;
}
#news .p_sec01__title {
  font-size: 2rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #news .p_sec01__title {
    margin-bottom: 1rem;
  }
}
#news .p_sec01__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem 3.4rem;
}
@media screen and (max-width: 768px) {
  #news .p_sec01__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

#news_detail .p_sec01 .c_inner {
  max-width: 128.7rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01 .c_inner {
    width: 100%;
  }
}
#news_detail .p_sec01__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7.7rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 8.6rem 10rem 24rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
    padding: 4rem 2rem 12rem;
  }
}
#news_detail .p_sec01__article {
  width: 100%;
}
#news_detail .p_sec01__meta {
  margin-bottom: 2rem;
}
#news_detail .p_sec01__meta .cat {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background: #2e5b9a;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__meta .cat {
    font-size: 1.8rem;
  }
}
#news_detail .p_sec01__meta .cat._blog {
  background: #48a9af;
}
#news_detail .p_sec01__meta .cat._event {
  background: #afb2ff;
}
#news_detail .p_sec01__meta .date {
  color: #2e5b9a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#news_detail .p_sec01__meta .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__meta .title {
    font-size: 2rem;
  }
}
#news_detail .p_sec01__meta .eyecatch {
  margin-top: 1.5rem;
}
#news_detail .p_sec01__meta .eyecatch img {
  width: 100%;
  border-radius: 1rem;
}
#news_detail .p_sec01__pager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6rem;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__pager {
    margin-top: 4rem;
    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: 1rem 0;
  }
}
#news_detail .p_sec01__pager a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0 2rem;
  height: 6rem;
  color: white;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__pager a {
    height: 5rem;
    width: 17rem;
  }
}
#news_detail .p_sec01__pager a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #2e3a9a), to(#8bd3d6));
  background: linear-gradient(to right, #2e3a9a 50%, #8bd3d6 100%);
}
#news_detail .p_sec01__pager a .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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__pager a .text {
    gap: 0.5rem;
  }
}
#news_detail .p_sec01__pager a .text img {
  width: 2.1rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__pager a .text img {
    width: 1.4rem;
    margin-top: 0.1rem;
  }
}
#news_detail .p_sec01__pager a.next .text img {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
#news_detail .p_sec01__pager a.back {
  width: 35rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__pager a.back {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (any-hover: hover) {
  #news_detail .p_sec01__pager a:hover {
    opacity: 1;
  }
  #news_detail .p_sec01__pager a:hover:before {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
#news_detail .p_sec01__side {
  width: 34rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__side {
    width: auto;
  }
}
#news_detail .p_sec01__side .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__side .title {
    font-size: 1.8rem;
  }
}
#news_detail .p_sec01__side .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.5rem;
}
@media screen and (max-width: 768px) {
  #news_detail .p_sec01__side .news {
    font-optical-sizing: 4rem;
  }
}

#toc_container {
  background-color: #fff;
  border: 1px solid #2e5b9a;
  border-radius: 1rem;
  padding: 3.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
#toc_container .toc_title {
  font-weight: bold;
  margin-bottom: 1.5rem;
}
#toc_container .toc_list li + li {
  margin-top: 1.5rem;
}
#toc_container .toc_list li li {
  padding-left: 1em;
  margin-top: 0.5rem;
}

body:has(#recruitment) .l_recruit {
  background-color: transparent;
}

#event .c_mv {
  padding-bottom: 8rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #event .c_mv {
    padding-bottom: 4rem;
  }
  #event .c_mv__title .en {
    font-size: 4rem;
  }
}
#event .p_sec01 {
  padding-top: 8.5rem;
  padding-bottom: 24rem;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #event .p_sec01 {
    padding-bottom: 12rem;
    padding-top: 4rem;
  }
}
#event .p_sec01__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.7rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #event .p_sec01__search {
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#event .p_sec01__search .select {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#event .p_sec01__search .select:after {
  content: "";
  background: url(../../images/btn_arrow.svg) center no-repeat;
  background-size: contain;
  width: 1.3rem;
  height: 0.9rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto 0;
}
#event .p_sec01__search .select select {
  background: #2e5b9a;
  color: white;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  width: 25.7rem;
  height: 100%;
  padding: 1.4rem 2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 768px) {
  #event .p_sec01__search .select select {
    width: 100%;
  }
}
#event .p_sec01__search form {
  background-color: #fff;
  border: 1px solid #2E5B9A;
  border-radius: 0.5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
#event .p_sec01__search form input {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.4rem 2rem;
  width: 100%;
}
#event .p_sec01__search form button {
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto 0;
}
#event .p_sec01__search form button img {
  width: 2.7rem;
}
#event .p_sec01__title {
  font-size: 2rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #event .p_sec01__title {
    margin-bottom: 1rem;
  }
}
#event .p_sec01__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: 3.8rem;
}
#event .p_sec01__list li .c_cardB {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

#event_detail .p_sec01 {
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01 {
    padding-bottom: 12rem;
  }
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01 .c_inner {
    width: 100%;
  }
}
#event_detail .p_sec01__bg {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 7rem 9rem 5rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg {
    padding: 3rem 2rem;
  }
}
#event_detail .p_sec01__bg .date {
  font-size: 1.5rem;
  color: #2e5b9a;
  margin-bottom: 0.5rem;
}
#event_detail .p_sec01__bg .title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .title {
    font-size: 2rem;
  }
}
#event_detail .p_sec01__bg .eyecatch img {
  width: 100%;
  border-radius: 1rem;
}
#event_detail .p_sec01__bg .outline {
  border: 1px solid #2e5b9a;
  margin-top: 4rem;
  padding: 3rem 5rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .outline {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .outline table {
    display: block;
  }
  #event_detail .p_sec01__bg .outline table tbody,
  #event_detail .p_sec01__bg .outline table tr,
  #event_detail .p_sec01__bg .outline table th,
  #event_detail .p_sec01__bg .outline table td {
    display: block;
  }
}
#event_detail .p_sec01__bg .outline table tr {
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .outline table tr {
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .outline table tr + tr {
    padding-top: 1.5rem;
  }
}
#event_detail .p_sec01__bg .outline table tr + tr th,
#event_detail .p_sec01__bg .outline table tr + tr td {
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .outline table tr + tr th,
  #event_detail .p_sec01__bg .outline table tr + tr td {
    padding: 0;
  }
}
#event_detail .p_sec01__bg .outline table tr th,
#event_detail .p_sec01__bg .outline table tr td {
  vertical-align: middle;
  font-size: 1.5rem;
  line-height: 1.4;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .outline table tr th,
  #event_detail .p_sec01__bg .outline table tr td {
    padding: 0;
  }
}
#event_detail .p_sec01__bg .outline table tr th {
  color: #2e5b9a;
  white-space: nowrap;
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .outline table tr th {
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
}
#event_detail .p_sec01__bg .btn {
  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;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .btn {
    margin-top: 4rem;
  }
}
#event_detail .p_sec01__bg .btn .cap {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff741d;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__bg .btn .cap {
    margin-bottom: 1rem;
  }
}
#event_detail .p_sec01__back {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  #event_detail .p_sec01__back {
    margin-top: 2rem;
  }
}

body:has(#recruitment) .l_recruit {
  background-color: transparent;
}

#recruit_info .c_mv {
  margin-bottom: 0;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .c_mv {
    padding-bottom: 2rem;
  }
}
#recruit_info .p_tab {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_tab {
    margin-top: 2rem;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  #recruit_info .p_tab li {
    padding-right: 4rem;
  }
}
#recruit_info .p_tab li button {
  background-color: #fff;
  border-radius: 0.5rem;
  border: 1px solid #2e5b9a;
  color: #2e5b9a;
  display: block;
  padding: 1.4rem;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_tab li button {
    font-size: 1.5rem;
  }
}
#recruit_info .p_tab li button:after {
  content: "";
  background: url(../../images/recruit_info_arrow.svg) center no-repeat;
  background-size: contain;
  width: 4.1rem;
  height: 1.9rem;
  position: absolute;
  bottom: -3.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_tab li button:after {
    bottom: auto;
    left: auto;
    right: -4rem;
    margin: auto 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 3rem;
  }
}
#recruit_info .p_tab li button.is-current {
  background: #2e5b9a;
  color: white;
}
#recruit_info .p_tab li button.is-current:after {
  opacity: 1;
}
#recruit_info .p_sec01 {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding-top: 6rem;
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01 {
    padding-top: 4rem;
    padding-bottom: 12rem;
  }
}
#recruit_info .p_sec01__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
#recruit_info .p_sec01__list li button {
  border-radius: 0.5rem;
  color: #2e5b9a;
  border: 1px solid #2e5b9a;
  text-align: center;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.4rem 1rem;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__list li button {
    font-size: 1.5rem;
    padding: 1rem;
  }
}
#recruit_info .p_sec01__list li button.is-current {
  background-color: #2e5b9a;
  color: #fff;
}
#recruit_info .p_sec01__title {
  color: #2e5b9a;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__title {
    font-size: 1.8rem;
  }
}
#recruit_info .p_sec01__title span {
  margin-left: auto;
}
#recruit_info .p_sec01__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem 1.6rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__cards {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
#recruit_info .p_sec01__cards li a {
  border: 1px solid #2e5b9a;
  border-radius: 1rem;
  background-color: #fff;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 2.2rem 2.5rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__cards li a {
    padding: 1.5rem 1rem;
  }
}
#recruit_info .p_sec01__cards li a .cat {
  position: absolute;
  top: 0;
  left: 0;
  background: #2e5b9a;
  color: white;
  font-size: 1.5rem;
  padding: 1rem 1.3rem;
  border-radius: 0 0 1rem 0;
}
#recruit_info .p_sec01__cards li a .cat._consultant {
  background: #2e5b9a;
}
#recruit_info .p_sec01__cards li a .cat._adviser {
  background: #48a9af;
}
#recruit_info .p_sec01__cards li a .cat._assistant {
  background: #9294d6;
}
#recruit_info .p_sec01__cards li a .cat._corporate {
  background: #a1c470;
}
#recruit_info .p_sec01__cards li a .image {
  aspect-ratio: 3/2;
  margin-bottom: 1rem;
  background: gray;
  border-radius: 1rem;
  overflow: hidden;
}
#recruit_info .p_sec01__cards li a .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#recruit_info .p_sec01__cards li a .title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__cards li a .title {
    font-size: 1.8rem;
  }
}
#recruit_info .p_sec01__cards li a table {
  border-top: 1px solid #dedede;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__cards li a table {
    display: block;
  }
  #recruit_info .p_sec01__cards li a table tbody,
  #recruit_info .p_sec01__cards li a table tr,
  #recruit_info .p_sec01__cards li a table th,
  #recruit_info .p_sec01__cards li a table td {
    display: block;
  }
}
#recruit_info .p_sec01__cards li a table tr {
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__cards li a table tr {
    padding: 1rem 0;
  }
}
#recruit_info .p_sec01__cards li a table tr th,
#recruit_info .p_sec01__cards li a table tr td {
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 1.5rem 0;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__cards li a table tr th,
  #recruit_info .p_sec01__cards li a table tr td {
    padding: 0;
  }
}
#recruit_info .p_sec01__cards li a table tr th {
  font-weight: bold;
  white-space: nowrap;
  padding-right: 1rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__cards li a table tr th {
    margin-bottom: 0.5rem;
  }
}
#recruit_info .p_sec01__cards li a .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e5b9a;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #recruit_info .p_sec01__cards li a .more {
    margin-top: 1.5rem;
  }
}
#recruit_info .p_sec01__cards li a .more img {
  width: 1.3rem;
}
#recruit_info .p_sec01 .swiper-slide {
  padding-bottom: 0.5rem;
}

#recruit_info_detail .p_sec01 {
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01 {
    padding-bottom: 12rem;
  }
}
#recruit_info_detail .p_sec01 .c_inner {
  max-width: 128.7rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01 .c_inner {
    width: 100%;
  }
}
#recruit_info_detail .p_sec01__bg {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 7rem 10rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__bg {
    padding: 3rem 2rem;
  }
}
#recruit_info_detail .p_sec01__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
#recruit_info_detail .p_sec01__flex .textarea .cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
#recruit_info_detail .p_sec01__flex .textarea .cats span {
  font-size: 1.5rem;
  color: #2e5b9a;
  border: 1px solid #2e5b9a;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
}
#recruit_info_detail .p_sec01__flex .textarea .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__flex .textarea .title {
    font-size: 2rem;
  }
}
#recruit_info_detail .p_sec01__flex .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 49.9rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__flex .image {
    width: auto;
  }
}
#recruit_info_detail .p_sec01__flex .image img {
  border-radius: 0.5rem;
  width: 100%;
}
#recruit_info_detail .p_sec01__outline .title {
  color: #2e5b9a;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__outline .title {
    font-size: 2rem;
  }
}
#recruit_info_detail .p_sec01__outline table {
  border-top: 1px solid #D1D1D1;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__outline table {
    display: block;
  }
  #recruit_info_detail .p_sec01__outline table tbody, #recruit_info_detail .p_sec01__outline table tr, #recruit_info_detail .p_sec01__outline table th, #recruit_info_detail .p_sec01__outline table td {
    display: block;
  }
}
#recruit_info_detail .p_sec01__outline table tr {
  border-bottom: 1px solid #D1D1D1;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__outline table tr {
    padding: 1.5rem 0;
  }
}
#recruit_info_detail .p_sec01__outline table tr th,
#recruit_info_detail .p_sec01__outline table tr td {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__outline table tr th,
  #recruit_info_detail .p_sec01__outline table tr td {
    padding: 0;
  }
}
#recruit_info_detail .p_sec01__outline table tr th {
  color: #2e5b9a;
  font-weight: bold;
  white-space: nowrap;
  padding-right: 10rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__outline table tr th {
    margin-bottom: 0.5rem;
  }
}
#recruit_info_detail .p_sec01__outline .btns {
  margin-top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.8rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__outline .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
    margin-top: 4rem;
  }
}
#recruit_info_detail .p_sec01__outline .btns a {
  width: 38.8rem;
}
#recruit_info_detail .p_sec01__outline .btns a:nth-child(2) {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  #recruit_info_detail .p_sec01__outline .btns a:nth-child(2) {
    font-size: 2rem;
  }
}
body:has(#entry) .l_recruit {
  display: none;
}

body:has(#form) .l_recruit {
  display: none;
}

#notfound {
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #notfound {
    padding-bottom: 12rem;
  }
}

#other {
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #other {
    padding-bottom: 12rem;
  }
}
@media screen and (max-width: 768px) {
  #other .p_sec01 .c_inner {
    width: 100%;
  }
}
#other .p_sec01__bg {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 9rem 7rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #other .p_sec01__bg {
    padding: 3rem 2rem;
  }
}
#other .p_list li {
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  #other .p_list li {
    padding-bottom: 2rem;
  }
}
#other .p_list li + li {
  border-top: 1px solid #2e5b9a;
  padding-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  #other .p_list li + li {
    padding-top: 2rem;
  }
}
#other .p_list li h2 {
  color: #2e5b9a;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.9444444444;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  #other .p_list li h2 {
    margin-bottom: 0.5rem;
  }
}
#other .p_list li p a {
  text-decoration: underline;
  color: #2e5b9a;
}
#other .p_sitemap {
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-template-rows: repeat(8, auto);
  grid-auto-flow: column;
  gap: 3rem 2rem;
}
@media screen and (max-width: 768px) {
  #other .p_sitemap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 1.6rem;
  }
}
#other .p_sitemap dl.span2 {
  grid-row: span 2;
}
#other .p_sitemap dl.span3 {
  grid-row: span 3;
}
#other .p_sitemap dl.span4 {
  grid-row: span 4;
}
#other .p_sitemap dl.span5 {
  grid-row: span 5;
}
#other .p_sitemap dl.span6 {
  grid-row: span 6;
}
#other .p_sitemap dl.span7 {
  grid-row: span 7;
}
#other .p_sitemap dl.span8 {
  grid-row: span 8;
}
#other .p_sitemap dt a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2e5b9a;
  line-height: 1.4;
}
#other .p_sitemap dd {
  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;
  margin-top: 1.5rem;
}
#other .p_sitemap dd a {
  font-size: 1.5rem;
  line-height: 1.4;
}

body:has(#new_graduate) .l_fixbnr,
body:has(#new_graduate) .l_spentry {
  display: none;
}
#new_graduate .c_fixbg {
  background-image: url(../../images/new_graduate_fixbg@2x.png);
}
@media screen and (max-width: 768px) {
  #new_graduate .c_fixbg {
    background-image: url(../../images/new_graduate_fixbg_sp@2x.png) !important;
  }
}
@media screen and (max-width: 768px) {
  #new_graduate .c_fixbg2 {
    background-image: url(../../images/new_graduate_fixbg2_sp@2x.png) !important;
    background-size: 100%;
    background-position: 0 0;
    display: block;
    height: 84rem;
  }
}
#new_graduate .p_fixbnr {
  position: fixed;
  z-index: 99;
  bottom: 2rem;
  right: 2rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_fixbnr {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
}
#new_graduate .p_fixbnr a img {
  width: 17.6rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_fixbnr a img {
    width: 100%;
  }
}
#new_graduate .p_sec01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec01 {
    padding-left: 3.6rem;
    margin-bottom: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#new_graduate .p_sec01__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #48a9af;
  font-weight: bold;
  padding: 0 3.6rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec01__title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    color: white;
    padding: 0;
    margin-bottom: 1.5rem;
  }
}
#new_graduate .p_sec01__title .ja {
  font-size: 2.2rem;
}
#new_graduate .p_sec01__title .en {
  font-size: 2.1rem;
  margin-top: 1rem;
  display: inline-block;
}
#new_graduate .p_sec01__image {
  position: relative;
}
#new_graduate .p_sec01__image img {
  width: 100%;
  border-radius: 1rem 0 0 1rem;
}
#new_graduate .p_sec01__image .text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec01__image .text {
    position: static;
    margin-top: 1rem;
    font-size: 3rem;
    line-height: 1.333;
    font-weight: bold;
    color: #48abaf;
  }
}
#new_graduate .p_sec02 .c_text18 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02 .c_text18 {
    text-align: left;
  }
}
#new_graduate .p_sec02__text {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.333;
  margin: 2.4rem 0;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__text {
    font-size: 2rem;
    margin: 1.5rem 0;
    text-align: left;
  }
}
#new_graduate .p_sec02__images {
  background: url(../../images/new_graduate_images@2x.png) center repeat-x;
  background-size: 201rem;
  height: 34rem;
  margin-top: 5rem;
  margin-bottom: 11rem;
  -webkit-animation: scroll-bg 30s linear infinite;
          animation: scroll-bg 30s linear infinite;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__images {
    background-size: 142.2rem;
    height: 24rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@-webkit-keyframes scroll-bg {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -201rem center;
    @media screen and (max-width: 768px) {
      #new_graduate .p_sec02 {
        background-position: 142.2rem center;
      }
    }
  }
}
@keyframes scroll-bg {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -201rem center;
    @media screen and (max-width: 768px) {
      #new_graduate .p_sec02 {
        background-position: 142.2rem center;
      }
    }
  }
}
#new_graduate .p_sec02__stitle {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__stitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
#new_graduate .p_sec02__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }
}
#new_graduate .p_sec02__list li {
  width: 39.5rem;
  height: 39.5rem;
  border: 1px solid #48a9af;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__list li {
    width: 31.7rem;
    height: 31.7rem;
  }
}
#new_graduate .p_sec02__list li + li {
  margin-left: -3.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__list li + li {
    margin-left: 0;
    margin-top: -2.1rem;
  }
}
#new_graduate .p_sec02__list li .image {
  height: 16.7rem;
  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;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__list li .image {
    height: auto;
  }
}
#new_graduate .p_sec02__list li .image .img1 {
  width: 15.9rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__list li .image .img1 {
    width: 12.7rem;
  }
}
#new_graduate .p_sec02__list li .image .img2 {
  width: 17.1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__list li .image .img2 {
    width: 13.6rem;
  }
}
#new_graduate .p_sec02__list li .image .img3 {
  width: 15.8rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__list li .image .img3 {
    width: 12.6rem;
  }
}
#new_graduate .p_sec02__list li .title {
  color: #48a9af;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__list li .title {
    font-size: 2rem;
  }
}
#new_graduate .p_sec02__list li .c_text18 {
  text-align: center;
}
#new_graduate .p_sec02__text2 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__text2 {
    font-size: 1.8rem;
  }
}
#new_graduate .p_sec02__text3 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec02__text3 {
    font-size: 1.8rem;
    margin-top: 0;
  }
}
#new_graduate .p_sec03 {
  background: url(../../images/new_graduate_style@2x.png) top center no-repeat;
  background-size: 203.1rem;
  padding-top: 64rem;
  margin-top: 10rem;
  margin-bottom: 17rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03 {
    margin-top: 3.6rem;
    background: url(../../images/new_graduate_style_sp@2x.png) top center no-repeat;
    background-size: 55.6rem;
    padding-top: 21rem;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03 .c_titA {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
  #new_graduate .p_sec03 .c_titA__en {
    white-space: nowrap;
  }
}
#new_graduate .p_sec03__text {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.333;
  margin: 0 0 2rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__text {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
#new_graduate .p_sec03__text2 {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__text2 {
    text-align: left;
  }
}
#new_graduate .p_sec03__text2 .big {
  font-weight: 900;
  color: black;
}
#new_graduate .p_sec03__text2 strong {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__text2 strong {
    font-size: 2rem;
  }
}
#new_graduate .p_sec03__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__anchor {
    margin: 1rem 0 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
  }
}
#new_graduate .p_sec03__anchor li {
  color: white;
  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;
  font-size: 1.8rem;
  font-weight: bold;
  background: #48a9af;
  border-radius: 0.5rem;
  width: 21.2rem;
  height: 5.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__anchor li {
    width: 15.4rem;
  }
}
#new_graduate .p_sec03__links {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__links {
    margin-top: 2.6rem;
    gap: 3.6rem;
  }
}
#new_graduate .p_sec03__links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #48a9af;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__links li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#new_graduate .p_sec03__links li a:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#new_graduate .p_sec03__links li .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
#new_graduate .p_sec03__links li .image img {
  width: 59.9rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#new_graduate .p_sec03__links li .textarea {
  width: 100%;
  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;
  position: relative;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__links li .textarea {
    padding-bottom: 6rem;
    padding-top: 2rem;
  }
}
#new_graduate .p_sec03__links li .textarea .text1 {
  color: #48a9af;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__links li .textarea .text1 {
    font-size: 1.4rem;
  }
}
#new_graduate .p_sec03__links li .textarea .text2 {
  color: #48a9af;
  font-size: 3rem;
  font-weight: bold;
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__links li .textarea .text2 {
    font-size: 2.5rem;
  }
}
#new_graduate .p_sec03__links li .textarea .text3 {
  font-size: 1.5rem;
}
#new_graduate .p_sec03__links li .textarea .text4 {
  background: #48a9af;
  border-radius: 1rem 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 2rem;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__links li .textarea .text4 {
    left: 0;
    border-radius: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.5rem;
  }
}
#new_graduate .p_sec03__links li .textarea .text4 img {
  width: 1.4rem;
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec03__links li .textarea .text4 img {
    width: 1rem;
  }
}
#new_graduate .p_sec04 {
  clip-path: shape(from 0 12rem, curve to 100% 12rem with 50% -10rem, line to 100% 100%, curve to 0% 100% with 50% calc(100% - 22rem), close);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding-top: 14rem;
  margin-top: 10rem;
  padding-bottom: 30rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04 {
    clip-path: shape(from 0 2.5rem, curve to 100% 2.5rem with 50% -2rem, line to 100% 100%, curve to 0% 100% with 50% calc(100% - 4.5rem), close);
    margin-top: 8rem;
    padding-top: 6rem;
    padding-bottom: 9rem;
  }
}
#new_graduate .p_sec04 .c_titA {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04 .c_titA {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
#new_graduate .p_sec04 .c_titA__en {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04 .c_titA__en {
    font-size: 4rem;
  }
}
#new_graduate .p_sec04__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6666666667;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__title {
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 5rem;
  }
}
#new_graduate .p_sec04__image {
  position: relative;
}
#new_graduate .p_sec04__image img {
  width: 100%;
  border-radius: 0.5rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#new_graduate .p_sec04__image img.aos-animate {
  opacity: 1 !important;
}
#new_graduate .p_sec04__image .img2 {
  position: absolute;
  inset: 0;
  opacity: 0;
}
#new_graduate .p_sec04__image .img3 {
  position: absolute;
  inset: 0;
  opacity: 0;
}
#new_graduate .p_sec04__path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__path {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
}
#new_graduate .p_sec04__path .left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: var(--hdr_height);
  width: 52.4rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__path .left {
    width: auto;
    position: static;
  }
}
#new_graduate .p_sec04__path .right {
  padding-top: 29rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__path .right {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__path .right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.5rem;
  }
}
#new_graduate .p_sec04__path .right ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  min-height: 35.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__path .right ul li {
    -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;
    min-height: auto;
  }
}
#new_graduate .p_sec04__path .right ul li:last-child {
  min-height: auto;
}
#new_graduate .p_sec04__path .right ul li:last-child .num:after {
  display: none;
}
#new_graduate .p_sec04__path .right ul li .num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #48a9af;
  border-radius: 50%;
  border: 1px solid #48a9af;
  width: 9rem;
  height: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #48a9af;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
#new_graduate .p_sec04__path .right ul li .num span {
  font-size: 150%;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
}
#new_graduate .p_sec04__path .right ul li .num:after {
  content: "";
  width: 1px;
  height: 100vh;
  background: #48a9af;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__path .right ul li .num:after {
    display: none;
  }
}
#new_graduate .p_sec04__path .right ul li .textarea .text1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__path .right ul li .textarea .text1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
#new_graduate .p_sec04__path .right ul li .textarea .text1 .label {
  background: #48a9af;
  color: white;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
#new_graduate .p_sec04__path .right ul li .textarea .text1 .cap {
  color: #48a9af;
}
#new_graduate .p_sec04__path .right ul li .textarea .title {
  color: #48a9af;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__path .right ul li .textarea .title {
    font-size: 2rem;
    text-align: center;
  }
}
#new_graduate .p_sec04__path .right ul li .textarea .image {
  margin-top: 1rem;
}
#new_graduate .p_sec04__path .right ul li .textarea .image img {
  border-radius: 1rem;
  width: 100%;
}
#new_graduate .p_sec04__title2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-top: 11rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__title2 {
    font-size: 1.9rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
}
#new_graduate .p_sec04__text2 {
  text-align: center;
  margin-bottom: 6rem;
}
#new_graduate .p_sec04__list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__list2 {
    gap: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#new_graduate .p_sec04__list2 li .card {
  background: #48a9af;
  border-radius: 1rem;
  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;
  color: white;
  width: 28.8rem;
  height: 100%;
  padding: 1px 1rem 4.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__list2 li .card {
    width: 100%;
    padding-bottom: 3rem;
  }
}
#new_graduate .p_sec04__list2 li .card .image {
  height: 14.7rem;
  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;
  margin-top: -5rem;
  margin-bottom: 1.5rem;
}
#new_graduate .p_sec04__list2 li .card .image .img1 {
  width: 10.7rem;
}
#new_graduate .p_sec04__list2 li .card .image .img2 {
  width: 19.6rem;
}
#new_graduate .p_sec04__list2 li .card .image .img3 {
  width: 22.2rem;
}
#new_graduate .p_sec04__list2 li .card .title {
  font-size: 3rem;
  font-weight: bold;
  caret-color: 50/30;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__list2 li .card .title {
    font-size: 2.5rem;
  }
}
#new_graduate .p_sec04__list2 li .card .c_text18 {
  text-align: center;
}
#new_graduate .p_sec04__list2 li .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__list2 li .arrow {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 5rem;
  }
}
#new_graduate .p_sec04__list2 li .arrow img {
  width: 2.9rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__list2 li .arrow img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
#new_graduate .p_sec04__lasttext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  font-size: 3rem;
  font-weight: bold;
  color: #48a9af;
  margin-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__lasttext {
    font-size: 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec04__lasttext .arrow {
    width: 2.9rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin: -1rem 0;
  }
}
#new_graduate .p_sec04__lasttext .left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28rem;
}
#new_graduate .p_sec04__lasttext .text {
  -webkit-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
}
#new_graduate .p_sec04__lasttext .right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 25.3rem;
}
#new_graduate .p_sec05 {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05 {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05 .c_titA {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1rem;
  }
}
#new_graduate .p_sec05__title {
  text-align: center;
  font-size: 3rem;
  line-height: 1.3333;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05__title {
    font-size: 2rem;
  }
}
#new_graduate .p_sec05__text {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05__text {
    font-size: 1.5rem;
  }
}
#new_graduate .p_sec05__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 4rem;
  }
}
#new_graduate .p_sec05__list > div {
  border-radius: 1rem;
  border: 1px solid #48a9af;
  background-color: #48a9af;
  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;
  color: white;
  min-height: 12.3rem;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05__list > div {
    min-height: 10rem;
  }
}
#new_graduate .p_sec05__list > div .text1 {
  font-size: 2.5rem;
  font-weight: bold;
}
#new_graduate .p_sec05__list > div .text2 {
  font-size: 1.5rem;
  line-height: 1.5;
}
#new_graduate .p_sec05__list > div .text3 {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.3157894737;
}
#new_graduate .p_sec05__list > div.is-active {
  background-color: white;
  color: #48a9af;
}
#new_graduate .p_sec05__text2 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05__text2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
#new_graduate .p_sec05 .swiper {
  max-width: 64.9rem;
  margin: 0 auto;
  overflow: visible;
}
#new_graduate .p_sec05 .swiper-slide {
  height: auto;
}
#new_graduate .p_sec05 .swiper-pagination {
  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;
  margin-top: 3.5rem;
  position: static;
  gap: 0.7rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05 .swiper-pagination {
    margin-top: 3rem;
  }
}
#new_graduate .p_sec05 .swiper-pagination-bullet {
  width: 0.9rem;
  height: 0.9rem;
  background: #bfbfbf;
  opacity: 1;
  margin: 0;
}
#new_graduate .p_sec05 .swiper-pagination-bullet-active {
  background: #48a9af;
}
#new_graduate .p_sec05 .swiper-button-prev,
#new_graduate .p_sec05 .swiper-button-next {
  width: auto;
  margin: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#new_graduate .p_sec05 .swiper-button-prev img,
#new_graduate .p_sec05 .swiper-button-next img {
  width: 5.2rem;
}
#new_graduate .p_sec05 .swiper-button-prev:after,
#new_graduate .p_sec05 .swiper-button-next:after {
  display: none;
}
#new_graduate .p_sec05 .swiper-button-prev {
  left: -2.6rem;
}
#new_graduate .p_sec05 .swiper-button-prev img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
#new_graduate .p_sec05 .swiper-button-next {
  right: -2.6rem;
}
#new_graduate .p_sec05__card {
  border: 1px solid #48a9af;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem;
  gap: 4rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05__card {
    padding: 3rem;
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#new_graduate .p_sec05__card .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec05__card .image {
    height: 12rem;
    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;
  }
  #new_graduate .p_sec05__card .image img {
    max-height: 100%;
    width: auto;
  }
}
#new_graduate .p_sec05__card .textarea {
  width: 100%;
}
#new_graduate .p_sec05__card .textarea .text1 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
#new_graduate .p_sec06 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec06 {
    margin-top: 7rem;
  }
}
#new_graduate .p_sec06__btns {
  margin-top: 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.6rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec06__btns {
    margin-top: 4rem;
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#new_graduate .p_sec07 {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec07 {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec07 .c_titA {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1rem;
  }
}
#new_graduate .p_sec07__title {
  text-align: center;
  font-size: 3rem;
  line-height: 1.3333;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec07__title {
    font-size: 2rem;
  }
}
#new_graduate .p_sec07__text {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec07__text {
    margin-bottom: 2rem;
  }
}
#new_graduate .p_sec07__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem 3.1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec07__list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
#new_graduate .p_sec07__list li {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem 3.6rem 3.6rem;
  text-align: center;
}
#new_graduate .p_sec07__list li .title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec07__list li .title {
    margin-bottom: 0;
  }
}
#new_graduate .p_sec07__list li .c_text15 {
  letter-spacing: 0;
}
#new_graduate .p_sec07__list li .image {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec07__list li .image {
    margin-top: 0.5rem;
  }
}
#new_graduate .p_sec07__list li .image img {
  border-radius: 0.5rem;
  width: 100%;
}
#new_graduate .p_sec07__btn {
  text-align: center;
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec07__btn {
    margin-top: 4rem;
  }
}
#new_graduate .p_sec08 {
  margin-top: 15rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3rem, transparent), color-stop(3rem, white), color-stop(38rem, white), color-stop(38rem, transparent));
  background: linear-gradient(to bottom, transparent 3rem, white 3rem, white 38rem, transparent 38rem);
  padding-bottom: 24rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 {
    margin-top: 6rem;
    padding-bottom: 12rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1.2rem, transparent), color-stop(1.2rem, white));
    background: linear-gradient(to bottom, transparent 1.2rem, white 1.2rem);
  }
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .c_titA {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#new_graduate .p_sec08 .title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
  color: #48a9af;
  text-align: center;
  margin-bottom: 1rem;
  -webkit-text-stroke: 10px white;
  text-stroke: 10px white;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .title {
    font-size: 2rem;
  }
}
#new_graduate .p_sec08 .title:after {
  content: "まずは、話を聞きに来ませんか？";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-stroke: 0;
  -webkit-text-stroke: 0;
}
#new_graduate .p_sec08 .text {
  text-align: center;
}
#new_graduate .p_sec08 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .list {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    gap: 2rem;
  }
}
#new_graduate .p_sec08 .list li a .stitle {
  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: 3rem;
  font-weight: bold;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .list li a .stitle {
    font-size: 2rem;
  }
}
#new_graduate .p_sec08 .list li a .stitle::before, #new_graduate .p_sec08 .list li a .stitle:after {
  content: "";
  background: url(../../images/new_graduate_kazari.svg) center no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 4.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .list li a .stitle::before, #new_graduate .p_sec08 .list li a .stitle:after {
    width: 1.8rem;
  }
}
#new_graduate .p_sec08 .list li a .stitle:after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
#new_graduate .p_sec08 .list li a .image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
#new_graduate .p_sec08 .list li a .image img {
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .list li a .image:after {
    border-radius: 0 0 1rem 0;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../../images/new_grad_arrow@2x.png) center no-repeat;
    background-size: contain;
    width: 4.1rem;
    height: 4.2rem;
  }
}
#new_graduate .p_sec08 .list li a .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .list li a .textarea {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .list li a .textarea .c_text15 {
    letter-spacing: 0;
  }
}
#new_graduate .p_sec08 .list li a .textarea .arrow {
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5.2rem;
  height: 5.2rem;
  border: 1px solid #48abaf;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #new_graduate .p_sec08 .list li a .textarea .arrow {
    display: none;
  }
}
#new_graduate .p_sec08 .list li a .textarea .arrow img {
  width: 1.2rem;
}
@media (any-hover: hover) {
  #new_graduate .p_sec08 .list li a:hover .image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

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