@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;
  font-weight: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-family: Times, "Times New Roman", "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #000;
}
a,
button {
  text-decoration: none;
  outline: none;
  color: #000;
}
@media (any-hover: hover) {
  a,
  button {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  a:hover,
  button:hover {
    opacity: 0.5;
  }
}

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

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

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

.l_hdr {
  padding: 20px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: block;
}
@media screen and (max-width: 390px) {
  .l_hdr {
    padding: 15px 0;
  }
}
.l_hdr__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 390px) {
  .l_hdr__logo a img {
    width: 120px;
  }
}
.l_hdr__gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  gap: 69px;
}
@media screen and (max-width: 390px) {
  .l_hdr__gnav {
    display: none;
  }
}
.l_hdr__gnav a {
  font-size: 14px;
  letter-spacing: 0.2em;
}
.l_hdr__hmb {
  width: 20px;
  height: 20px;
  background: #000;
  margin-left: 70px;
}
@media screen and (max-width: 390px) {
  .l_hdr__hmb {
    width: 15px;
    height: 15px;
    margin-left: auto;
  }
}

.l_menu {
  position: absolute;
  top: 41px;
  right: 0;
  width: 330px;
  padding: 37px 40px;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
}
@media screen and (max-width: 390px) {
  .l_menu {
    width: 240px;
    padding: 60px 35px;
    top: 30px;
  }
}
.l_menu dl + dl {
  margin-top: 30px;
}
@media screen and (max-width: 390px) {
  .l_menu dl + dl {
    margin-top: 60px;
  }
}
@media screen and (max-width: 390px) {
  .l_menu dl dt {
    text-align: center;
  }
}
.l_menu dl dt a {
  color: white;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: normal;
}
@media screen and (max-width: 390px) {
  .l_menu dl dt a {
    font-size: 12px;
    letter-spacing: 0.15em;
  }
}
.l_menu dl dd {
  opacity: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 21px;
  margin-left: 31px;
}
@media screen and (max-width: 390px) {
  .l_menu dl dd {
    gap: 15px;
    margin-top: 15px;
    margin-left: 10px;
    display: none;
  }
}
.l_menu dl dd a {
  color: white;
  font-size: 14px;
  letter-spacing: 0.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 390px) {
  .l_menu dl dd a {
    font-size: 10px;
  }
}
.l_menu dl dd a .en:before {
  content: "-";
}
.l_menu dl dd a .ja {
  font-size: 12px;
  margin-left: 6px;
}
@media screen and (max-width: 390px) {
  .l_menu dl dd a .ja {
    font-size: 8px;
  }
}

.l_submenu__inner {
  border-top: 1px solid #000;
}
.l_submenu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 390px) {
  .l_submenu__nav {
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.l_submenu__nav._cat {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 29px 80px;
}
@media screen and (max-width: 390px) {
  .l_submenu__nav._cat {
    padding: 19px 0;
    grid-template-columns: repeat(4, auto);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l_submenu__nav._p {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 29px 0;
}
@media screen and (max-width: 390px) {
  .l_submenu__nav._p {
    padding: 19px 0;
    grid-template-columns: repeat(3, auto);
  }
}
.l_submenu__nav 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;
  font-size: 14px;
  letter-spacing: 0.2em;
  gap: 10px;
  opacity: 0.5;
}
@media screen and (max-width: 390px) {
  .l_submenu__nav a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 10px;
    letter-spacing: 0.1em;
    gap: 5px;
  }
}
.l_submenu__nav a.is-active {
  opacity: 1;
}
@media screen and (max-width: 390px) {
  .l_submenu__nav a:first-child {
    grid-row: span 2;
  }
}
.l_submenu__nav a .en:before {
  content: "-";
}
.l_submenu__nav a .ja {
  font-size: 12px;
}
@media screen and (max-width: 390px) {
  .l_submenu__nav a .ja {
    font-size: 8px;
    letter-spacing: 0.2em;
    margin-left: 4px;
  }
}

body:has(._pray_silence) .l_submenu__nav._p a:nth-child(1) {
  opacity: 1;
}
body:has(._harmony_with_nature) .l_submenu__nav._p a:nth-child(2) {
  opacity: 1;
}
body:has(._composition_body) .l_submenu__nav._p a:nth-child(3) {
  opacity: 1;
}
body:has(._color_memory) .l_submenu__nav._p a:nth-child(4) {
  opacity: 1;
}
body:has(._abstract_landscape) .l_submenu__nav._p a:nth-child(5) {
  opacity: 1;
}
.l_footer {
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 390px) {
  .l_footer {
    padding-bottom: 15px;
  }
}
.l_footer__copy {
  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;
  font-size: 11px;
  letter-spacing: 0.15em;
  gap: 21px;
}
@media screen and (max-width: 390px) {
  .l_footer__copy {
    font-size: 8px;
    line-height: 2;
    gap: 18px;
  }
}
.l_footer__copy:before, .l_footer__copy:after {
  content: "";
  background: url(../images/sankaku.svg) center no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
}
@media screen and (max-width: 390px) {
  .l_footer__copy:before, .l_footer__copy:after {
    width: 9px;
    height: 9px;
  }
}
.l_footer__copy:after {
  background-image: url(../images/circle.svg);
}

.c_inner {
  max-width: 1060px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 390px) {
  .c_inner {
    width: calc(100% - 30px);
  }
}
.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: 390px) {
  .c_pc {
    display: none !important;
  }
}
.c_en {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-block: calc((1em - 1lh) / 2);
}
@media screen and (max-width: 390px) {
  .c_en {
    font-size: 11px;
    line-height: 1.7272727273;
  }
}

.c_ja {
  font-size: 11px;
  line-height: 1.9090909091;
  letter-spacing: 0.1em;
  margin-block: calc((1em - 1lh) / 2);
}
@media screen and (max-width: 390px) {
  .c_ja {
    font-size: 10px;
    line-height: 1.9;
  }
}

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

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

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

.c_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 390px) {
  .c_cards {
    padding: 0 35px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 67px;
  }
}
@media screen and (min-width: 391px) {
  .c_cards li:nth-child(even) {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .c_cards li:nth-child(even) a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .c_cards li:nth-child(even) a .textarea {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .c_cards li:nth-child(n+2) {
    margin-top: -45px;
  }
}
.c_cards li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 390px) {
  .c_cards li a {
    display: block;
    position: relative;
    padding-bottom: 56px;
  }
}
.c_cards li a .image {
  width: 330px;
  aspect-ratio: 33/23;
}
@media screen and (max-width: 390px) {
  .c_cards li a .image {
    width: 100%;
  }
}
.c_cards li a .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c_cards li a .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 390px) {
  .c_cards li a .textarea {
    gap: 5px;
    margin-top: 5px;
    position: absolute;
    width: 100%;
  }
}
.c_cards li a .textarea .text1 {
  font-size: 14px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 390px) {
  .c_cards li a .textarea .text1 {
    font-size: 11px;
  }
}
.c_cards li a .textarea .text2 {
  font-size: 10px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 390px) {
  .c_cards li a .textarea .text2 {
    font-size: 9px;
  }
}
.c_cards li a .textarea .text3 {
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 390px) {
  .c_cards li a .textarea .text3 {
    font-size: 8px;
  }
}
.c_cards li a .textarea .text4 {
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 390px) {
  .c_cards li a .textarea .text4 {
    font-size: 8px;
  }
}

.c_icons {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 89px 0;
  max-width: 743px;
  margin: 140px auto 0;
}
@media screen and (max-width: 390px) {
  .c_icons {
    margin-top: 67px;
    gap: 40px 0;
  }
}
.c_icons li {
  grid-column: span 2;
}
.c_icons li:nth-child(5n+4), .c_icons li:nth-child(5n+5) {
  grid-column: span 3;
}
.c_icons li:nth-child(5n+1) a {
  margin-inline: 0;
}
.c_icons li:nth-child(5n+3) a {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.c_icons li a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c_icons li a img {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 390px) {
  .c_icons li a img {
    width: auto;
    height: 11px;
  }
}

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

#top .p_mv {
  margin-top: 80px;
}
@media screen and (max-width: 390px) {
  #top .p_mv {
    margin-top: 40px;
  }
}
#top .p_mv__inner {
  position: relative;
}
@media screen and (max-width: 390px) {
  #top .p_mv__inner {
    padding: 0 35px;
  }
}
#top .p_mv .circle {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 390px) {
  #top .p_mv .circle {
    width: 9px;
    margin-bottom: 55px;
  }
}
#top .p_mv .sankaku {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 390px) {
  #top .p_mv .sankaku {
    width: 9px;
  }
}
#top .p_mv .swiper {
  overflow: visible;
  margin-bottom: 94px;
}
@media screen and (max-width: 390px) {
  #top .p_mv .swiper {
    margin-bottom: 56px;
  }
}
#top .p_mv .swiper-slide {
  background-color: #fff;
}
#top .p_mv .textarea {
  position: absolute;
  inset: 0;
  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;
  gap: 60px;
  z-index: 10;
  padding: 20px;
}
@media screen and (max-width: 390px) {
  #top .p_mv .textarea {
    width: auto;
    padding: 0;
    background: none;
    height: auto;
    left: -35px;
    right: -35px;
    gap: 40px;
  }
}
#top .p_mv .textarea > div {
  height: 90px;
  padding: 1px 10px;
  background-color: rgba(255, 255, 255, 0.76);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 390px) {
  #top .p_mv .textarea > div {
    width: 100%;
    height: 100px;
    padding: 0;
  }
}
#top .p_mv .textarea .text1 {
  margin-right: auto;
}
#top .p_mv .textarea .text1 p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-block: calc((1em - 1lh) / 2);
  text-align: justify;
}
@media screen and (max-width: 390px) {
  #top .p_mv .textarea .text1 p {
    font-size: 11px;
    line-height: 1.8181818182;
    letter-spacing: 0.1em;
  }
}
#top .p_mv .textarea .text2 {
  margin-left: auto;
}
#top .p_mv .textarea .text2 p {
  font-size: 12px;
  line-height: 2.3333333333;
  letter-spacing: 0.12em;
  text-align: justify;
}
@media screen and (max-width: 390px) {
  #top .p_mv .textarea .text2 p {
    font-size: 10px;
    line-height: 2;
  }
}
#top .p_works {
  margin-top: 93px;
}
@media screen and (max-width: 390px) {
  #top .p_works {
    margin-top: 56px;
  }
}

body:has(#top) .l_submenu {
  margin-top: 141px;
}
@media screen and (max-width: 390px) {
  body:has(#top) .l_submenu {
    margin-top: 120px;
  }
}
body:has(#top) .l_footer {
  margin-top: 59px;
}
@media screen and (max-width: 390px) {
  body:has(#top) .l_footer {
    margin-top: 30px;
  }
}

#works .p_works {
  margin-top: 90px;
}
@media screen and (max-width: 390px) {
  #works .p_works {
    margin-top: 55px;
  }
}
#works .p_works .icon {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 390px) {
  #works .p_works .icon {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 390px) {
  #works .p_works .icon img {
    width: 9px;
  }
}
body:has(#works) .l_submenu {
  margin-top: 10px;
}
@media screen and (max-width: 390px) {
  body:has(#works) .l_submenu {
    margin-top: 5px;
  }
}
body:has(#works) .l_footer {
  margin-top: 140px;
}
@media screen and (max-width: 390px) {
  body:has(#works) .l_footer {
    margin-top: 120px;
  }
}

#works_detail .p_sec01 {
  margin-top: 40px;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01 {
    margin-top: 26px;
  }
}
#works_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: 56px;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__flex {
    display: block;
  }
}
#works_detail .p_sec01__left {
  position: sticky;
  top: calc(var(--hdr_height) + 40px);
  left: 0;
  width: 330px;
  padding-bottom: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-height: calc(100vh - var(--hdr_height) - 40px);
  overflow: auto;
  scrollbar-width: none; /* Firefox */
}
#works_detail .p_sec01__left::-webkit-scrollbar {
  display: none;
}
#works_detail .p_sec01__left { /* Chrome・Safari・Android */ }
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left {
    position: static;
    width: auto;
    max-height: none;
    padding-bottom: 0;
  }
}
#works_detail .p_sec01__left .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: normal;
}
#works_detail .p_sec01__left .title .en {
  font-size: 14px;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .title .en {
    font-size: 12px;
    padding-bottom: 5px;
  }
}
#works_detail .p_sec01__left .title .ja {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-top: 6px;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .title .ja {
    font-size: 10px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .spimage {
    margin-top: 20px;
  }
}
#works_detail .p_sec01__left .meta {
  margin-top: 56px;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .meta {
    margin-top: 20px;
  }
}
#works_detail .p_sec01__left .meta p {
  font-size: 11px;
  line-height: 1.7272727273;
  letter-spacing: 0.1em;
  margin-block: calc((1em - 1lh) / 2);
  text-align: right;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .meta p {
    font-size: 10px;
  }
}
#works_detail .p_sec01__left .meta .text2 {
  margin-top: 8px;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .meta .text2 {
    margin-top: 7px;
  }
}
#works_detail .p_sec01__left .detail {
  margin-top: 53px;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .detail {
    padding: 0 35px;
    margin-top: 49px;
  }
}
#works_detail .p_sec01__left .detail .icon {
  text-align: center;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .detail .icon img {
    width: 9px;
  }
}
#works_detail .p_sec01__left .detail .textarea {
  margin: 50px 0;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__left .detail .textarea {
    margin: 55px 0;
  }
}
#works_detail .p_sec01__left .detail .image {
  margin-bottom: 20px;
}
#works_detail .p_sec01__left .detail .text3 {
  text-align: justify;
}
#works_detail .p_sec01__left .detail .text4 {
  margin-top: 20px;
  text-align: justify;
}
#works_detail .p_sec01__left .detail .text5 {
  margin-top: 20px;
}
#works_detail .p_sec01__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 390px) {
  #works_detail .p_sec01__right {
    margin-top: 55px;
    gap: 20px;
    max-height: none;
  }
}

body:has(#works_detail) .l_footer {
  margin-top: 75px;
}
@media screen and (max-width: 390px) {
  body:has(#works_detail) .l_footer {
    margin-top: 40px;
  }
}

#news .p_sec01 {
  margin-top: 75px;
}
@media screen and (max-width: 390px) {
  #news .p_sec01 {
    margin-top: 57px;
  }
}
#news .p_sec01__title {
  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: 104px;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 93px;
}
@media screen and (max-width: 390px) {
  #news .p_sec01__title {
    font-size: 12px;
    letter-spacing: 0.15em;
    gap: 30px;
    margin-bottom: 70px;
  }
}
#news .p_sec01__title:before, #news .p_sec01__title:after {
  content: "";
  background: url(../images/circle.svg) center no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
  margin-top: -2px;
}
@media screen and (max-width: 390px) {
  #news .p_sec01__title:before, #news .p_sec01__title:after {
    width: 9px;
    height: 9px;
  }
}
#news .p_sec01__title:after {
  background-image: url(../images/sankaku.svg);
}
#news .p_sec01__list {
  border-top: 1px solid #000;
}
#news .p_sec01__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid #000;
  padding: 20px 0;
}
@media screen and (max-width: 390px) {
  #news .p_sec01__list li a {
    padding: 20px 35px;
    display: block;
  }
}
#news .p_sec01__list li a .textarea {
  width: 100%;
}
#news .p_sec01__list li a .textarea .text1 {
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 390px) {
  #news .p_sec01__list li a .textarea .text1 {
    font-size: 11px;
  }
}
#news .p_sec01__list li a .textarea .text2 {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-block: calc((1em - 1lh) / 2);
  margin-top: 10px;
  text-align: justify;
}
@media screen and (max-width: 390px) {
  #news .p_sec01__list li a .textarea .text2 {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}
#news .p_sec01__list li a .textarea .text3 {
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-block: calc((1em - 1lh) / 2);
  margin-top: 10px;
  text-align: justify;
}
@media screen and (max-width: 390px) {
  #news .p_sec01__list li a .textarea .text3 {
    font-size: 10px;
    line-height: 1.75;
    margin-top: 10px;
  }
}
#news .p_sec01__list li a .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 330px;
}
@media screen and (max-width: 390px) {
  #news .p_sec01__list li a .image {
    width: auto;
    text-align: center;
    margin-top: 10px;
  }
}

body:has(#news) .l_footer {
  margin-top: 140px;
}
@media screen and (max-width: 390px) {
  body:has(#news) .l_footer {
    margin-top: 90px;
  }
}

#news_detail .p_sec01 {
  margin-top: 75px;
}
@media screen and (max-width: 390px) {
  #news_detail .p_sec01 {
    margin-top: 26px;
  }
}
#news_detail .p_sec01__icon {
  text-align: center;
  margin-bottom: 93px;
}
@media screen and (max-width: 390px) {
  #news_detail .p_sec01__icon {
    margin-bottom: 70px;
  }
  #news_detail .p_sec01__icon img {
    width: 9px;
  }
}
#news_detail .p_sec01__meta {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
@media screen and (max-width: 390px) {
  #news_detail .p_sec01__meta {
    border-bottom-width: 0;
    padding-bottom: 0;
  }
}
#news_detail .p_sec01__meta .date {
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 390px) {
  #news_detail .p_sec01__meta .date {
    font-size: 11px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
}
#news_detail .p_sec01__meta .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#news_detail .p_sec01__meta .title .en {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-block: calc((1em - 1lh) / 2);
  margin-top: 10px;
}
@media screen and (max-width: 390px) {
  #news_detail .p_sec01__meta .title .en {
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-top: 0;
  }
}
#news_detail .p_sec01__meta .title .ja {
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-block: calc((1em - 1lh) / 2);
  margin-top: 10px;
}
@media screen and (max-width: 390px) {
  #news_detail .p_sec01__meta .title .ja {
    font-size: 10px;
    line-height: 1.75;
  }
}
#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: 55px;
  margin-top: 30px;
}
@media screen and (max-width: 390px) {
  #news_detail .p_sec01__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
#news_detail .p_sec01__flex .textarea {
  width: 100%;
}
#news_detail .p_sec01__flex .textarea .en {
  text-align: justify;
}
#news_detail .p_sec01__flex .textarea .ja {
  margin-top: 20px;
  text-align: justify;
}
#news_detail .p_sec01__flex .textarea .link {
  margin-top: 20px;
}
#news_detail .p_sec01__flex .textarea .link a {
  text-decoration: underline;
}
#news_detail .p_sec01__flex .image {
  width: 672px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 390px) {
  #news_detail .p_sec01__flex .image {
    width: auto;
  }
}
#news_detail .p_sec01__flex .image img {
  width: 100%;
}

body:has(#news_detail) .l_footer {
  margin-top: 129px;
}
@media screen and (max-width: 390px) {
  body:has(#news_detail) .l_footer {
    margin-top: 50px;
  }
}

#philosophy .p_sec01 {
  margin-top: 89px;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01 {
    margin-top: 48px;
  }
}
#philosophy .p_sec01__icon {
  text-align: center;
  margin-bottom: 93px;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__icon {
    margin-bottom: 55px;
  }
  #philosophy .p_sec01__icon img {
    width: 9px;
  }
}
#philosophy .p_sec01__intro {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 26px 0 28px;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__intro {
    padding: 15px 0;
  }
}
#philosophy .p_sec01__intro .en {
  text-align: justify;
}
#philosophy .p_sec01__intro .ja {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #000;
  text-align: justify;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__intro .ja {
    margin-top: 20px;
    padding-top: 20px;
  }
}
#philosophy .p_sec01__list {
  margin-top: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 68px;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__list {
    margin-top: 55px;
    gap: 55px;
  }
}
#philosophy .p_sec01__list li:before {
  display: block;
  content: "";
  background: url(../images/circle.svg) center no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__list li:before {
    width: 9px;
    height: 9px;
    margin-bottom: 56px;
  }
}
#philosophy .p_sec01__list li:nth-child(even):before {
  background-image: url(../images/sankaku.svg);
}
#philosophy .p_sec01__list li .textarea .title {
  font-size: 14px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__list li .textarea .title {
    font-size: 12px;
    letter-spacing: 0.15em;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
}
#philosophy .p_sec01__list li .textarea .en {
  text-align: justify;
}
#philosophy .p_sec01__list li .textarea .ja {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__list li .textarea .ja {
    margin-top: 15px;
  }
}
#philosophy .p_sec01__list li .textarea .images {
  margin-top: 20px;
  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: 390px) {
  #philosophy .p_sec01__list li .textarea .images {
    margin-top: 15px;
  }
}
#philosophy .p_sec01__list li .textarea .images a {
  width: 285px;
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__list li .textarea .images a {
    width: 165px;
  }
}
@media screen and (max-width: 390px) {
  #philosophy .p_sec01__list li .textarea .images a:nth-child(3) {
    display: none;
  }
}

body:has(#philosophy) .l_submenu {
  margin-top: 10px;
}
@media screen and (max-width: 390px) {
  body:has(#philosophy) .l_submenu {
    margin-top: 5px;
  }
}
body:has(#philosophy) .l_submenu .l_submenu__nav._cat {
  display: none;
}
body:has(#philosophy) .l_footer {
  margin-top: 67px;
}
@media screen and (max-width: 390px) {
  body:has(#philosophy) .l_footer {
    margin-top: 50px;
  }
}

#philosophy_detail .p_sec01 {
  margin-top: 90px;
}
@media screen and (max-width: 390px) {
  #philosophy_detail .p_sec01 {
    margin-top: 48px;
  }
}
#philosophy_detail .p_sec01__icon {
  text-align: center;
}
@media screen and (max-width: 390px) {
  #philosophy_detail .p_sec01__icon img {
    width: 9px;
  }
}
#philosophy_detail .p_sec01__textarea {
  margin: 95px 0 88px;
}
@media screen and (max-width: 390px) {
  #philosophy_detail .p_sec01__textarea {
    margin: 56px 0 45px;
  }
}
#philosophy_detail .p_sec01__textarea .title {
  font-size: 14px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 390px) {
  #philosophy_detail .p_sec01__textarea .title {
    font-size: 12px;
    letter-spacing: 0.15em;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
}
#philosophy_detail .p_sec01__textarea .en {
  text-align: justify;
}
#philosophy_detail .p_sec01__textarea .ja {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 390px) {
  #philosophy_detail .p_sec01__textarea .ja {
    margin-top: 15px;
  }
}
#philosophy_detail .p_works {
  margin-top: 95px;
}
@media screen and (max-width: 390px) {
  #philosophy_detail .p_works {
    margin-top: 55px;
  }
}
#philosophy_detail .p_works .c_cards li a .textarea .text4 {
  display: none;
}

body:has(#philosophy_detail) .l_submenu {
  margin-top: 10px;
}
@media screen and (max-width: 390px) {
  body:has(#philosophy_detail) .l_submenu {
    margin-top: 5px;
  }
}
body:has(#philosophy_detail) .l_footer {
  margin-top: 274px;
}
@media screen and (max-width: 390px) {
  body:has(#philosophy_detail) .l_footer {
    margin-top: 80px;
  }
}

#profile .p_sec01 {
  margin-top: 39px;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01 {
    margin-top: 27px;
  }
}
#profile .p_sec01__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#profile .p_sec01__flex .textarea {
  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;
  position: relative;
}
#profile .p_sec01__flex .textarea .name {
  font-size: 18px;
  text-align: center;
  width: 1em;
  line-height: 1.15;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__flex .textarea .name {
    font-size: 10px;
  }
}
#profile .p_sec01__flex .textarea .en {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
  letter-spacing: 0.15em;
}
#profile .p_sec01__flex .image {
  width: 530px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__flex .image {
    width: 240px;
  }
}
#profile .p_sec01__textarea1 {
  margin-top: 59px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 0;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea1 {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 27px;
  }
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea1 .block2,
  #profile .p_sec01__textarea1 .block4 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea1 .block2 {
    margin-top: 31px;
  }
}
#profile .p_sec01__textarea1 .text2 {
  position: relative;
}
#profile .p_sec01__textarea1 .text2 a {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 0;
}
#profile .p_sec01__textarea1 .text3 {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea1 .text3 {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
#profile .p_sec01__textarea1 .text5 {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea1 .text5 {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea1 .text7 {
    font-size: 10px;
    letter-spacing: 0.15em;
    margin-bottom: 26px;
  }
}
#profile .p_sec01__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 95px;
}
#profile .p_sec01__textarea2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 95px;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea2 {
    gap: 57px;
    margin-top: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#profile .p_sec01__textarea2 .icon {
  margin-left: 56px;
}
#profile .p_sec01__textarea2 .icon img {
  display: block;
  width: 9px;
}
#profile .p_sec01__textarea2 .text1 {
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea2 .text1 {
    font-size: 10px;
  }
}
#profile .p_sec01__textarea2 .text2 {
  margin-top: 20px;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea2 .text2 {
    margin-top: 10px;
  }
}
#profile .p_sec01__textarea2 .text3 {
  margin-top: 20px;
}
@media screen and (max-width: 390px) {
  #profile .p_sec01__textarea2 .text3 {
    margin-top: 10px;
  }
}

body:has(#profile) .l_footer {
  margin-top: 200px;
}
@media screen and (max-width: 390px) {
  body:has(#profile) .l_footer {
    margin-top: 115px;
  }
}

#contact .p_sec01 {
  margin-top: 38px;
}
@media screen and (max-width: 390px) {
  #contact .p_sec01 {
    margin-top: 12px;
  }
}
#contact .p_sec01 .c_inner {
  max-width: 672px;
}
#contact .p_sec01__intro .en {
  text-align: justify;
}
#contact .p_sec01__intro .ja {
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 390px) {
  #contact .p_sec01__intro .ja {
    margin-top: 30px;
  }
}
#contact .p_sec01__icon {
  margin: 67px 0 68px;
  text-align: center;
}
@media screen and (max-width: 390px) {
  #contact .p_sec01__icon {
    margin: 48px 0 55px;
  }
  #contact .p_sec01__icon img {
    width: 9px;
  }
}
#contact .p_sec01__form .formList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 29px;
}
@media screen and (max-width: 390px) {
  #contact .p_sec01__form .formList {
    gap: 10px;
  }
}
#contact .p_sec01__form label {
  font-size: 12px;
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 390px) {
  #contact .p_sec01__form label {
    font-size: 11px;
    margin-bottom: 4px;
  }
}
#contact .p_sec01__form input,
#contact .p_sec01__form textarea {
  width: 100%;
  border: 1px solid #000;
  font-size: 14px;
  line-height: 2;
  padding: 1px 5px 0;
  letter-spacing: 0.1em;
}
#contact .p_sec01__form textarea {
  height: 200px;
}
@media screen and (max-width: 390px) {
  #contact .p_sec01__form textarea {
    height: 150px;
  }
}
#contact .p_sec01__form button {
  border: 1px solid #000;
  font-size: 12px;
  letter-spacing: 0.1em;
  width: 60px;
  height: 60px;
  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: 30px auto 0;
}
@media screen and (max-width: 390px) {
  #contact .p_sec01__form button {
    font-size: 11px;
    width: 50px;
    height: 50px;
    margin-top: 11px;
  }
}

body:has(#contact) .l_footer {
  margin-top: 200px;
}
@media screen and (max-width: 390px) {
  body:has(#contact) .l_footer {
    margin-top: 120px;
  }
}

:root {
  --hdr_height: 81px;
}
@media screen and (max-width: 390px) {
  :root {
    --hdr_height: 59px;
  }
}

main .wp-pagenavi {
  text-align: center;
  margin-top: 140px;
  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: 10px;
}
@media screen and (max-width: 390px) {
  main .wp-pagenavi {
    margin-top: 90px;
  }
}
main .wp-pagenavi > span,
main .wp-pagenavi > a {
  margin: 0;
  padding: 0 0 0 2px;
  width: 20px;
  height: 20px;
  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: 14px;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (max-width: 390px) {
  main .wp-pagenavi > span,
  main .wp-pagenavi > a {
    font-size: 11px;
    width: 15px;
    height: 15px;
  }
}
main .wp-pagenavi > span.pages,
main .wp-pagenavi > a.pages {
  width: auto;
  margin-right: 5px;
  padding: 0 5px;
}
main .wp-pagenavi > span.previouspostslink, main .wp-pagenavi > span.nextpostslink,
main .wp-pagenavi > a.previouspostslink,
main .wp-pagenavi > a.nextpostslink {
  border-width: 0;
  background: #000;
  width: 10px;
}
main .wp-pagenavi > span.previouspostslink,
main .wp-pagenavi > a.previouspostslink {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  margin-right: 5px;
}
main .wp-pagenavi > span.nextpostslink,
main .wp-pagenavi > a.nextpostslink {
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin-left: 5px;
}/*# sourceMappingURL=style.css.map */