@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, 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: 70px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
}

a,
button {
  text-decoration: none;
  outline: none;
  color: #000;
}
@media print, screen and (min-width: 600px) {
  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;
}

@media print, screen and (min-width: 600px) {
  body {
    min-width: 1280px;
  }
  .c_inner {
    max-width: 1280px;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .c_sp {
    display: none !important;
  }
  .c_btnA {
    background: #60bf30;
    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;
    width: 400px;
    height: 74px;
    color: white;
    font-size: 28px;
    font-weight: 600;
  }
  .c_btnB {
    background: #60bf30;
    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;
    width: 330px;
    height: 60px;
    color: white;
    font-size: 24px;
    font-weight: 600;
  }
  .c_btnB._blue {
    background: #149ecc;
  }
  .c_btnB._green {
    background: #53a629;
  }
  .c_mv {
    position: relative;
    padding-bottom: 300px;
  }
  .c_mv__bg {
    position: absolute;
    inset: 0;
  }
  .c_mv__bg video,
  .c_mv__bg img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .c_mv .c_inner {
    position: relative;
    z-index: 1;
    max-width: 904px;
  }
  .c_mv__title {
    padding-top: 80px;
  }
  .c_mv__title img {
    width: 443px;
  }
  .c_mv__searchbox {
    margin-top: 430px;
  }
  .c_mv__searchbox form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c_mv__searchbox .title {
    background: #e60012;
    color: white;
    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: 22px;
    letter-spacing: 0.2em;
    width: 210px;
  }
  .c_mv__searchbox input {
    background-color: #fff;
    font-size: 20px;
    letter-spacing: 0.2em;
    padding: 15px 40px;
    width: 600px;
  }
  .c_mv__searchbox button {
    background: #e60012;
    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: 76px;
  }
  .c_mv._low {
    padding-bottom: 90px;
  }
  .c_mv._low .c_mv__title {
    padding-top: 40px;
  }
  .c_mv._low .c_mv__searchbox {
    margin-top: 145px;
  }
  .c_mv2 {
    background: url(../../assets/img/common/ks_products_top_image.jpg) center no-repeat;
    background-size: cover;
    padding: 100px 0;
  }
  .c_mv2__text {
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
  }
  .c_news {
    background-color: #fff;
    border: 1px solid #707070;
  }
  .c_news li + li {
    border-top: 1px solid #707070;
  }
  .c_news li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 30px;
    gap: 20px;
  }
  .c_news li a .date {
    font-size: 18px;
    font-weight: 400;
    color: #373737;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .c_news li a .cat {
    width: 146px;
    color: white;
    font-size: 18px;
    padding: 5px;
    text-align: center;
    background: #000;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 100vh;
  }
  .c_news li a .cat._blue {
    background-color: #1781eb;
  }
  .c_news li a .cat._orange {
    background-color: #fa7719;
  }
  .c_news li a .cat._green {
    background-color: #80bf26;
  }
  .c_news li a .title {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
  }
  .c_pankuzu {
    padding: 40px 0 60px;
  }
  .c_pankuzu__list {
    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: 5px 0;
  }
  .c_pankuzu__list > 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;
  }
  .c_pankuzu__list > span + span:before {
    margin: 0 5px;
    content: "＞";
    display: block;
  }
  .c_pankuzu__list > span > a,
  .c_pankuzu__list > span > span {
    display: block;
    font-size: 18px;
    color: #b4b4b4;
    font-weight: 400;
  }
  .c_pankuzu__list > span > a > span,
  .c_pankuzu__list > span > span > span {
    display: block;
  }
  .c_pager {
    margin-top: 60px;
  }
  .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;
    gap: 10px;
  }
  .c_pager .wp-pagenavi .previouspostslink,
  .c_pager .wp-pagenavi .nextpostslink {
    width: 20px;
    height: 28px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    background: #53a629;
  }
  .c_pager .wp-pagenavi .nextpostslink {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .c_pager .wp-pagenavi .page,
  .c_pager .wp-pagenavi .current {
    font-size: 24px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #707070;
    width: 50px;
    height: 58px;
    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;
  }
  .c_side dl + dl {
    margin-top: 40px;
  }
  .c_side dl dt {
    background: #000;
    color: white;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 16px;
  }
  .c_side dl dt:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background: #f92401;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  .c_side dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
  }
  .c_side dl dd a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 15px;
    border-bottom: 1px solid #707070;
  }
  .c_side dl dd a:hover, .c_side dl dd a.is-current {
    color: #f92401;
  }
  .c_side dl dd a:before {
    content: "";
    width: 15px;
    height: 15px;
    background: #f92401;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin-right: 10px;
  }
  .c_cardA:hover .c_cardA__more {
    color: #f92401;
  }
  .c_cardA__image {
    aspect-ratio: 450/317;
    margin-bottom: 10px;
  }
  .c_cardA__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c_cardA__name {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
  }
  .c_cardA__name .sub {
    font-size: 80%;
  }
  .c_cardA__cat {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .c_cardA__more {
    text-align: right;
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
  }
  .c_cardA__more:before {
    content: "＞";
  }
}
@media screen and (max-width: 599px) {
  html {
    scroll-padding-top: 40px;
  }
  .c_inner {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .c_pc {
    display: none !important;
  }
  .c_btnA {
    background: #60bf30;
    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;
    width: 200px;
    height: 40px;
    color: white;
    font-size: 14px;
    font-weight: 600;
  }
  .c_btnB {
    background: #60bf30;
    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;
    width: 180px;
    height: 30px;
    color: white;
    font-size: 12px;
    font-weight: 600;
  }
  .c_btnB._blue {
    background: #149ecc;
  }
  .c_btnB._green {
    background: #53a629;
  }
  .c_mv {
    position: relative;
    padding-bottom: 100px;
  }
  .c_mv__bg {
    position: absolute;
    inset: 0;
  }
  .c_mv__bg video,
  .c_mv__bg img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .c_mv .c_inner {
    position: relative;
    z-index: 1;
  }
  .c_mv__title {
    padding: 20px 0 0;
    text-align: center;
  }
  .c_mv__title img {
    width: 200px;
  }
  .c_mv__searchbox {
    margin-top: 50px;
  }
  .c_mv__searchbox form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c_mv__searchbox .title {
    background: #e60012;
    color: white;
    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: 11px;
    letter-spacing: 0.2em;
    width: 80px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .c_mv__searchbox input {
    background-color: #fff;
    font-size: 16px;
    letter-spacing: 0.2em;
    padding: 10px;
    width: 100%;
  }
  .c_mv__searchbox input::-webkit-input-placeholder {
    letter-spacing: -0.1em;
  }
  .c_mv__searchbox input::-moz-placeholder {
    letter-spacing: -0.1em;
  }
  .c_mv__searchbox input:-ms-input-placeholder {
    letter-spacing: -0.1em;
  }
  .c_mv__searchbox input::-ms-input-placeholder {
    letter-spacing: -0.1em;
  }
  .c_mv__searchbox input::placeholder {
    letter-spacing: -0.1em;
  }
  .c_mv__searchbox button {
    background: #e60012;
    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: 50px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .c_mv__searchbox button img {
    width: 20px;
  }
  .c_mv._low {
    padding-bottom: 40px;
  }
  .c_mv._low .c_mv__title {
    padding-top: 20px;
  }
  .c_mv._low .c_mv__searchbox {
    margin-top: 60px;
  }
  .c_mv2 {
    background: url(../../assets/img/common/ks_products_top_image.jpg) center no-repeat;
    background-size: cover;
    padding: 30px 0;
  }
  .c_mv2__text {
    text-align: center;
    color: white;
    font-size: 15px;
    font-weight: 700;
  }
  .c_mv2__title {
    text-align: center;
    color: white;
    font-size: 25px;
    font-weight: 700;
    margin-top: 10px;
  }
  .c_news {
    background-color: #fff;
    border: 1px solid #707070;
  }
  .c_news li + li {
    border-top: 1px solid #707070;
  }
  .c_news li a {
    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;
    padding: 10px;
    gap: 5px 10px;
  }
  .c_news li a .date {
    font-size: 8px;
    font-weight: 400;
    color: #373737;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .c_news li a .cat {
    width: 80px;
    color: white;
    font-size: 8px;
    padding: 5px;
    text-align: center;
    background: #000;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 100vh;
  }
  .c_news li a .cat._blue {
    background-color: #1781eb;
  }
  .c_news li a .cat._orange {
    background-color: #fa7719;
  }
  .c_news li a .cat._green {
    background-color: #80bf26;
  }
  .c_news li a .title {
    font-size: 8px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
  }
  .c_pankuzu {
    padding: 10px 0 30px;
  }
  .c_pankuzu__list {
    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: 5px 0;
  }
  .c_pankuzu__list > 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;
  }
  .c_pankuzu__list > span + span:before {
    font-size: 10px;
    margin: 0 5px;
    content: "＞";
    display: block;
  }
  .c_pankuzu__list > span > a,
  .c_pankuzu__list > span > span {
    display: block;
    font-size: 10px;
    color: #b4b4b4;
    font-weight: 400;
  }
  .c_pankuzu__list > span > a > span,
  .c_pankuzu__list > span > span > span {
    display: block;
  }
  .c_pager {
    margin-top: 40px;
  }
  .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;
    gap: 5px;
  }
  .c_pager .wp-pagenavi .previouspostslink,
  .c_pager .wp-pagenavi .nextpostslink {
    width: 20px;
    height: 28px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    background: #53a629;
  }
  .c_pager .wp-pagenavi .nextpostslink {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .c_pager .wp-pagenavi .page,
  .c_pager .wp-pagenavi .current {
    font-size: 12px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #707070;
    width: 30px;
    height: 34px;
    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;
  }
  .c_side__togglebtn {
    background: #000;
    color: white;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 10px;
    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: 20px;
    width: 100%;
    margin-bottom: 20px;
  }
  .c_side__togglebtn:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: #f92401;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  .c_side__togglebtn .toggle {
    width: 20px;
    height: 20px;
    position: relative;
  }
  .c_side__togglebtn .toggle:before, .c_side__togglebtn .toggle:after {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    inset: 0;
    margin: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .c_side__togglebtn .toggle:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .c_side__togglebtn.is-open .toggle:after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .c_side__toggle {
    display: none;
  }
  .c_side dl + dl {
    padding-top: 20px;
  }
  .c_side dl dt {
    background: #000;
    color: white;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 10px;
    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: 20px;
  }
  .c_side dl dt:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: #f92401;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  .c_side dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    page-break-inside: 5px;
  }
  .c_side dl dd a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 10px;
    border-bottom: 1px solid #707070;
  }
  .c_side dl dd a:hover, .c_side dl dd a.is-current {
    color: #f92401;
  }
  .c_side dl dd a:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #f92401;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin-right: 10px;
  }
  .c_cardA:hover .c_cardA__more {
    color: #f92401;
  }
  .c_cardA__image {
    aspect-ratio: 450/317;
    margin-bottom: 10px;
  }
  .c_cardA__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c_cardA__name {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
  }
  .c_cardA__name .sub {
    font-size: 80%;
  }
  .c_cardA__cat {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .c_cardA__more {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
  }
  .c_cardA__more:before {
    content: "＞";
  }
}
/* -------------------------------------------------------------------
 ヘッダー
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  .l_hdr {
    background: -webkit-gradient(linear, left top, right top, color-stop(70%, white), color-stop(70%, #e60012));
    background: linear-gradient(to right, white 70%, #e60012 70%);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
  }
  .l_hdr__inner {
    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;
  }
  .l_hdr__nav {
    background: #e60012;
    clip-path: polygon(75px 0, 100% 0, 100% 100%, 0% 100%);
    padding-left: 80px;
  }
  .l_hdr__nav nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
  .l_hdr__nav nav a {
    color: white;
    font-size: 18px;
    padding: 25px 0;
  }
}
@media screen and (max-width: 599px) {
  .l_hdr {
    background-color: #fff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
  }
  .l_hdr .c_inner {
    width: 100%;
  }
  .l_hdr__inner {
    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;
  }
  .l_hdr__logo {
    width: 120px;
    margin-left: 20px;
  }
  .l_hdr__btn {
    background: #e60012;
    width: 45px;
    height: 40px;
    position: relative;
  }
  .l_hdr__btn > span {
    width: 29px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    inset: 0;
    margin: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .l_hdr__btn > span:nth-child(1) {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .l_hdr__btn > span:nth-child(2) {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .l_hdr__btn > span:nth-child(3) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .l_hdr__btn > span:nth-child(4) {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  .l_hdr__btn > span:nth-child(5) {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  .l_hdr__btn.is-open > span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(0);
            transform: rotate(45deg) translateY(0);
  }
  .l_hdr__btn.is-open > span:nth-child(2) {
    opacity: 0;
  }
  .l_hdr__btn.is-open > span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(0);
            transform: rotate(-45deg) translateY(0);
  }
  .l_hdr__btn.is-open > span:nth-child(4) {
    opacity: 0;
  }
  .l_hdr__btn.is-open > span:nth-child(5) {
    opacity: 0;
  }
  .l_spgnav {
    position: fixed;
    top: 40px;
    right: 0;
    width: 100%;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .l_spgnav__inner {
    background-color: #fff;
    width: 300px;
    height: 100%;
    margin-left: auto;
    overflow: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .l_spgnav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .l_spgnav.is-open .l_spgnav__inner {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .l_spgnav__search {
    padding: 20px;
    background: url(../../assets/img/common/ks_products_top_image.jpg) center no-repeat;
    background-size: cover;
  }
  .l_spgnav__search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l_spgnav__search input {
    background-color: #fff;
    font-size: 16px;
    letter-spacing: 0.2em;
    padding: 10px 15px;
    width: 100%;
    border: 1px solid #1b3a59;
  }
  .l_spgnav__search button {
    background: #e60012;
    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: 45px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .l_spgnav__search button img {
    width: 20px;
  }
  .l_spgnav__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l_spgnav__nav a {
    padding: 20px;
    border-bottom: 1px solid #1b3a59;
  }
}
/* -------------------------------------------------------------------
 フォーム関連
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
 フッター
------------------------------------------------------------------- */
.l_pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.l_pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.l_pagetop a {
  display: block;
}

@media print, screen and (min-width: 600px) {
  body:has(#single-news) .l_cta, body:has(#single-products) .l_cta, body:has(#products) .l_cta {
    background: #fafafa;
  }
  body:has(#contact) .l_cta, body:has(#pvp) .l_cta {
    display: none;
  }
  .l_cta {
    padding: 60px 0;
  }
  .l_cta .c_inner {
    max-width: 860px;
  }
  .l_cta__title {
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .l_cta__text {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 400;
  }
  .l_cta__btns {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 74px;
  }
  .l_ftr {
    background: linear-gradient(135deg, rgb(221, 0, 37) 0%, rgb(155, 0, 26) 100%);
    padding: 50px 0 20px;
  }
  .l_ftr__logo {
    text-align: center;
  }
  .l_ftr__text {
    text-align: center;
    font-size: 16px;
    color: white;
    margin-bottom: 60px;
    margin-top: 20px;
  }
  .l_ftr__sitemap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 80px;
    gap: 40px;
  }
  .l_ftr__sitemap dl dt {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .l_ftr__sitemap dl dt a {
    color: white;
    font-size: 14px;
    font-weight: bold;
  }
  .l_ftr__sitemap dl dd {
    display: grid;
    gap: 10px;
  }
  .l_ftr__sitemap dl dd.clm3 {
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(5, 1fr);
    grid-auto-flow: column;
  }
  .l_ftr__sitemap dl dd a {
    color: white;
    font-size: 12px;
  }
  .l_ftr__sns {
    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: 40px;
    margin-bottom: 40px;
  }
  .l_ftr__sns li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    color: white;
  }
  .l_ftr__copy {
    text-align: center;
    font-size: 11px;
    color: #d9a3a8;
  }
}
@media screen and (max-width: 599px) {
  body:has(#single-news) .l_cta, body:has(#single-products) .l_cta, body:has(#products) .l_cta {
    background: #fafafa;
  }
  body:has(#contact) .l_cta, body:has(#pvp) .l_cta {
    display: none;
  }
  .l_cta {
    padding: 40px 0;
  }
  .l_cta__title {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .l_cta__text {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
  }
  .l_cta__btns {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .l_ftr {
    background: linear-gradient(135deg, rgb(221, 0, 37) 0%, rgb(155, 0, 26) 100%);
    padding: 30px 0 10px;
  }
  .l_ftr__logo {
    text-align: center;
  }
  .l_ftr__logo img {
    width: 200px;
  }
  .l_ftr__text {
    text-align: center;
    font-size: 10px;
    color: white;
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .l_ftr__sitemap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
    gap: 40px 20px;
  }
  .l_ftr__sitemap dl dt {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .l_ftr__sitemap dl dt a {
    color: white;
    font-size: 14px;
    font-weight: bold;
  }
  .l_ftr__sitemap dl dd {
    display: grid;
    gap: 10px;
  }
  .l_ftr__sitemap dl dd.clm3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 1fr);
    grid-auto-flow: column;
  }
  .l_ftr__sitemap dl dd a {
    color: white;
    font-size: 10px;
  }
  .l_ftr__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .l_ftr__sns li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    color: white;
  }
  .l_ftr__sns li a span {
    display: none;
  }
  .l_ftr__copy {
    text-align: center;
    font-size: 10px;
    color: #d9a3a8;
  }
}
/* -------------------------------------------------------------------
 ユーティリティー
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  .mt-pc00 {
    margin-top: 0 !important;
  }
  .pt-pc00 {
    padding-top: 0 !important;
  }
  .mt-pc05 {
    margin-top: 0.5rem !important;
  }
  .pt-pc05 {
    padding-top: 0.5rem !important;
  }
  .mt-pc10 {
    margin-top: 1rem !important;
  }
  .pt-pc10 {
    padding-top: 1rem !important;
  }
  .mt-pc15 {
    margin-top: 1.5rem !important;
  }
  .pt-pc15 {
    padding-top: 1.5rem !important;
  }
  .mt-pc20 {
    margin-top: 2rem !important;
  }
  .pt-pc20 {
    padding-top: 2rem !important;
  }
  .mt-pc25 {
    margin-top: 2.5rem !important;
  }
  .pt-pc25 {
    padding-top: 2.5rem !important;
  }
  .mt-pc30 {
    margin-top: 3rem !important;
  }
  .pt-pc30 {
    padding-top: 3rem !important;
  }
  .mt-pc35 {
    margin-top: 3.5rem !important;
  }
  .pt-pc35 {
    padding-top: 3.5rem !important;
  }
  .mt-pc40 {
    margin-top: 4rem !important;
  }
  .pt-pc40 {
    padding-top: 4rem !important;
  }
  .mt-pc45 {
    margin-top: 4.5rem !important;
  }
  .pt-pc45 {
    padding-top: 4.5rem !important;
  }
  .mt-pc50 {
    margin-top: 5rem !important;
  }
  .pt-pc50 {
    padding-top: 5rem !important;
  }
  .mt-pc55 {
    margin-top: 5.5rem !important;
  }
  .pt-pc55 {
    padding-top: 5.5rem !important;
  }
  .mt-pc60 {
    margin-top: 6rem !important;
  }
  .pt-pc60 {
    padding-top: 6rem !important;
  }
  .mt-pc65 {
    margin-top: 6.5rem !important;
  }
  .pt-pc65 {
    padding-top: 6.5rem !important;
  }
  .mt-pc70 {
    margin-top: 7rem !important;
  }
  .pt-pc70 {
    padding-top: 7rem !important;
  }
  .mt-pc75 {
    margin-top: 7.5rem !important;
  }
  .pt-pc75 {
    padding-top: 7.5rem !important;
  }
  .mt-pc80 {
    margin-top: 8rem !important;
  }
  .pt-pc80 {
    padding-top: 8rem !important;
  }
  .mt-pc85 {
    margin-top: 8.5rem !important;
  }
  .pt-pc85 {
    padding-top: 8.5rem !important;
  }
  .mt-pc90 {
    margin-top: 9rem !important;
  }
  .pt-pc90 {
    padding-top: 9rem !important;
  }
  .mt-pc95 {
    margin-top: 9.5rem !important;
  }
  .pt-pc95 {
    padding-top: 9.5rem !important;
  }
  .mt-pc100 {
    margin-top: 10rem !important;
  }
  .pt-pc100 {
    padding-top: 10rem !important;
  }
  .mr-pc00 {
    margin-right: 0 !important;
  }
  .pr-pc00 {
    padding-right: 0 !important;
  }
  .mr-pc05 {
    margin-right: 0.5rem !important;
  }
  .pr-pc05 {
    padding-right: 0.5rem !important;
  }
  .mr-pc10 {
    margin-right: 1rem !important;
  }
  .pr-pc10 {
    padding-right: 1rem !important;
  }
  .mr-pc15 {
    margin-right: 1.5rem !important;
  }
  .pr-pc15 {
    padding-right: 1.5rem !important;
  }
  .mr-pc20 {
    margin-right: 2rem !important;
  }
  .pr-pc20 {
    padding-right: 2rem !important;
  }
  .mr-pc25 {
    margin-right: 2.5rem !important;
  }
  .pr-pc25 {
    padding-right: 2.5rem !important;
  }
  .mr-pc30 {
    margin-right: 3rem !important;
  }
  .pr-pc30 {
    padding-right: 3rem !important;
  }
  .mr-pc35 {
    margin-right: 3.5rem !important;
  }
  .pr-pc35 {
    padding-right: 3.5rem !important;
  }
  .mr-pc40 {
    margin-right: 4rem !important;
  }
  .pr-pc40 {
    padding-right: 4rem !important;
  }
  .mr-pc45 {
    margin-right: 4.5rem !important;
  }
  .pr-pc45 {
    padding-right: 4.5rem !important;
  }
  .mr-pc50 {
    margin-right: 5rem !important;
  }
  .pr-pc50 {
    padding-right: 5rem !important;
  }
  .mr-pc55 {
    margin-right: 5.5rem !important;
  }
  .pr-pc55 {
    padding-right: 5.5rem !important;
  }
  .mr-pc60 {
    margin-right: 6rem !important;
  }
  .pr-pc60 {
    padding-right: 6rem !important;
  }
  .mr-pc65 {
    margin-right: 6.5rem !important;
  }
  .pr-pc65 {
    padding-right: 6.5rem !important;
  }
  .mr-pc70 {
    margin-right: 7rem !important;
  }
  .pr-pc70 {
    padding-right: 7rem !important;
  }
  .mr-pc75 {
    margin-right: 7.5rem !important;
  }
  .pr-pc75 {
    padding-right: 7.5rem !important;
  }
  .mr-pc80 {
    margin-right: 8rem !important;
  }
  .pr-pc80 {
    padding-right: 8rem !important;
  }
  .mr-pc85 {
    margin-right: 8.5rem !important;
  }
  .pr-pc85 {
    padding-right: 8.5rem !important;
  }
  .mr-pc90 {
    margin-right: 9rem !important;
  }
  .pr-pc90 {
    padding-right: 9rem !important;
  }
  .mr-pc95 {
    margin-right: 9.5rem !important;
  }
  .pr-pc95 {
    padding-right: 9.5rem !important;
  }
  .mr-pc100 {
    margin-right: 10rem !important;
  }
  .pr-pc100 {
    padding-right: 10rem !important;
  }
  .mb-pc00 {
    margin-bottom: 0 !important;
  }
  .pb-pc00 {
    padding-bottom: 0 !important;
  }
  .mb-pc05 {
    margin-bottom: 0.5rem !important;
  }
  .pb-pc05 {
    padding-bottom: 0.5rem !important;
  }
  .mb-pc10 {
    margin-bottom: 1rem !important;
  }
  .pb-pc10 {
    padding-bottom: 1rem !important;
  }
  .mb-pc15 {
    margin-bottom: 1.5rem !important;
  }
  .pb-pc15 {
    padding-bottom: 1.5rem !important;
  }
  .mb-pc20 {
    margin-bottom: 2rem !important;
  }
  .pb-pc20 {
    padding-bottom: 2rem !important;
  }
  .mb-pc25 {
    margin-bottom: 2.5rem !important;
  }
  .pb-pc25 {
    padding-bottom: 2.5rem !important;
  }
  .mb-pc30 {
    margin-bottom: 3rem !important;
  }
  .pb-pc30 {
    padding-bottom: 3rem !important;
  }
  .mb-pc35 {
    margin-bottom: 3.5rem !important;
  }
  .pb-pc35 {
    padding-bottom: 3.5rem !important;
  }
  .mb-pc40 {
    margin-bottom: 4rem !important;
  }
  .pb-pc40 {
    padding-bottom: 4rem !important;
  }
  .mb-pc45 {
    margin-bottom: 4.5rem !important;
  }
  .pb-pc45 {
    padding-bottom: 4.5rem !important;
  }
  .mb-pc50 {
    margin-bottom: 5rem !important;
  }
  .pb-pc50 {
    padding-bottom: 5rem !important;
  }
  .mb-pc55 {
    margin-bottom: 5.5rem !important;
  }
  .pb-pc55 {
    padding-bottom: 5.5rem !important;
  }
  .mb-pc60 {
    margin-bottom: 6rem !important;
  }
  .pb-pc60 {
    padding-bottom: 6rem !important;
  }
  .mb-pc65 {
    margin-bottom: 6.5rem !important;
  }
  .pb-pc65 {
    padding-bottom: 6.5rem !important;
  }
  .mb-pc70 {
    margin-bottom: 7rem !important;
  }
  .pb-pc70 {
    padding-bottom: 7rem !important;
  }
  .mb-pc75 {
    margin-bottom: 7.5rem !important;
  }
  .pb-pc75 {
    padding-bottom: 7.5rem !important;
  }
  .mb-pc80 {
    margin-bottom: 8rem !important;
  }
  .pb-pc80 {
    padding-bottom: 8rem !important;
  }
  .mb-pc85 {
    margin-bottom: 8.5rem !important;
  }
  .pb-pc85 {
    padding-bottom: 8.5rem !important;
  }
  .mb-pc90 {
    margin-bottom: 9rem !important;
  }
  .pb-pc90 {
    padding-bottom: 9rem !important;
  }
  .mb-pc95 {
    margin-bottom: 9.5rem !important;
  }
  .pb-pc95 {
    padding-bottom: 9.5rem !important;
  }
  .mb-pc100 {
    margin-bottom: 10rem !important;
  }
  .pb-pc100 {
    padding-bottom: 10rem !important;
  }
  .ml-pc00 {
    margin-left: 0 !important;
  }
  .pl-pc00 {
    padding-left: 0 !important;
  }
  .ml-pc05 {
    margin-left: 0.5rem !important;
  }
  .pl-pc05 {
    padding-left: 0.5rem !important;
  }
  .ml-pc10 {
    margin-left: 1rem !important;
  }
  .pl-pc10 {
    padding-left: 1rem !important;
  }
  .ml-pc15 {
    margin-left: 1.5rem !important;
  }
  .pl-pc15 {
    padding-left: 1.5rem !important;
  }
  .ml-pc20 {
    margin-left: 2rem !important;
  }
  .pl-pc20 {
    padding-left: 2rem !important;
  }
  .ml-pc25 {
    margin-left: 2.5rem !important;
  }
  .pl-pc25 {
    padding-left: 2.5rem !important;
  }
  .ml-pc30 {
    margin-left: 3rem !important;
  }
  .pl-pc30 {
    padding-left: 3rem !important;
  }
  .ml-pc35 {
    margin-left: 3.5rem !important;
  }
  .pl-pc35 {
    padding-left: 3.5rem !important;
  }
  .ml-pc40 {
    margin-left: 4rem !important;
  }
  .pl-pc40 {
    padding-left: 4rem !important;
  }
  .ml-pc45 {
    margin-left: 4.5rem !important;
  }
  .pl-pc45 {
    padding-left: 4.5rem !important;
  }
  .ml-pc50 {
    margin-left: 5rem !important;
  }
  .pl-pc50 {
    padding-left: 5rem !important;
  }
  .ml-pc55 {
    margin-left: 5.5rem !important;
  }
  .pl-pc55 {
    padding-left: 5.5rem !important;
  }
  .ml-pc60 {
    margin-left: 6rem !important;
  }
  .pl-pc60 {
    padding-left: 6rem !important;
  }
  .ml-pc65 {
    margin-left: 6.5rem !important;
  }
  .pl-pc65 {
    padding-left: 6.5rem !important;
  }
  .ml-pc70 {
    margin-left: 7rem !important;
  }
  .pl-pc70 {
    padding-left: 7rem !important;
  }
  .ml-pc75 {
    margin-left: 7.5rem !important;
  }
  .pl-pc75 {
    padding-left: 7.5rem !important;
  }
  .ml-pc80 {
    margin-left: 8rem !important;
  }
  .pl-pc80 {
    padding-left: 8rem !important;
  }
  .ml-pc85 {
    margin-left: 8.5rem !important;
  }
  .pl-pc85 {
    padding-left: 8.5rem !important;
  }
  .ml-pc90 {
    margin-left: 9rem !important;
  }
  .pl-pc90 {
    padding-left: 9rem !important;
  }
  .ml-pc95 {
    margin-left: 9.5rem !important;
  }
  .pl-pc95 {
    padding-left: 9.5rem !important;
  }
  .ml-pc100 {
    margin-left: 10rem !important;
  }
  .pl-pc100 {
    padding-left: 10rem !important;
  }
  .mt-pc00 {
    margin-top: 0 !important;
  }
  .pt-pc00 {
    padding-top: 0 !important;
  }
  .mt-pc05 {
    margin-top: 0.5rem !important;
  }
  .pt-pc05 {
    padding-top: 0.5rem !important;
  }
  .mt-pc10 {
    margin-top: 1rem !important;
  }
  .pt-pc10 {
    padding-top: 1rem !important;
  }
  .mt-pc15 {
    margin-top: 1.5rem !important;
  }
  .pt-pc15 {
    padding-top: 1.5rem !important;
  }
  .mt-pc20 {
    margin-top: 2rem !important;
  }
  .pt-pc20 {
    padding-top: 2rem !important;
  }
  .mt-pc25 {
    margin-top: 2.5rem !important;
  }
  .pt-pc25 {
    padding-top: 2.5rem !important;
  }
  .mt-pc30 {
    margin-top: 3rem !important;
  }
  .pt-pc30 {
    padding-top: 3rem !important;
  }
  .mt-pc35 {
    margin-top: 3.5rem !important;
  }
  .pt-pc35 {
    padding-top: 3.5rem !important;
  }
  .mt-pc40 {
    margin-top: 4rem !important;
  }
  .pt-pc40 {
    padding-top: 4rem !important;
  }
  .mt-pc45 {
    margin-top: 4.5rem !important;
  }
  .pt-pc45 {
    padding-top: 4.5rem !important;
  }
  .mt-pc50 {
    margin-top: 5rem !important;
  }
  .pt-pc50 {
    padding-top: 5rem !important;
  }
  .mt-pc55 {
    margin-top: 5.5rem !important;
  }
  .pt-pc55 {
    padding-top: 5.5rem !important;
  }
  .mt-pc60 {
    margin-top: 6rem !important;
  }
  .pt-pc60 {
    padding-top: 6rem !important;
  }
  .mt-pc65 {
    margin-top: 6.5rem !important;
  }
  .pt-pc65 {
    padding-top: 6.5rem !important;
  }
  .mt-pc70 {
    margin-top: 7rem !important;
  }
  .pt-pc70 {
    padding-top: 7rem !important;
  }
  .mt-pc75 {
    margin-top: 7.5rem !important;
  }
  .pt-pc75 {
    padding-top: 7.5rem !important;
  }
  .mt-pc80 {
    margin-top: 8rem !important;
  }
  .pt-pc80 {
    padding-top: 8rem !important;
  }
  .mt-pc85 {
    margin-top: 8.5rem !important;
  }
  .pt-pc85 {
    padding-top: 8.5rem !important;
  }
  .mt-pc90 {
    margin-top: 9rem !important;
  }
  .pt-pc90 {
    padding-top: 9rem !important;
  }
  .mt-pc95 {
    margin-top: 9.5rem !important;
  }
  .pt-pc95 {
    padding-top: 9.5rem !important;
  }
  .mt-pc100 {
    margin-top: 10rem !important;
  }
  .pt-pc100 {
    padding-top: 10rem !important;
  }
  .mr-pc00 {
    margin-right: 0 !important;
  }
  .pr-pc00 {
    padding-right: 0 !important;
  }
  .mr-pc05 {
    margin-right: 0.5rem !important;
  }
  .pr-pc05 {
    padding-right: 0.5rem !important;
  }
  .mr-pc10 {
    margin-right: 1rem !important;
  }
  .pr-pc10 {
    padding-right: 1rem !important;
  }
  .mr-pc15 {
    margin-right: 1.5rem !important;
  }
  .pr-pc15 {
    padding-right: 1.5rem !important;
  }
  .mr-pc20 {
    margin-right: 2rem !important;
  }
  .pr-pc20 {
    padding-right: 2rem !important;
  }
  .mr-pc25 {
    margin-right: 2.5rem !important;
  }
  .pr-pc25 {
    padding-right: 2.5rem !important;
  }
  .mr-pc30 {
    margin-right: 3rem !important;
  }
  .pr-pc30 {
    padding-right: 3rem !important;
  }
  .mr-pc35 {
    margin-right: 3.5rem !important;
  }
  .pr-pc35 {
    padding-right: 3.5rem !important;
  }
  .mr-pc40 {
    margin-right: 4rem !important;
  }
  .pr-pc40 {
    padding-right: 4rem !important;
  }
  .mr-pc45 {
    margin-right: 4.5rem !important;
  }
  .pr-pc45 {
    padding-right: 4.5rem !important;
  }
  .mr-pc50 {
    margin-right: 5rem !important;
  }
  .pr-pc50 {
    padding-right: 5rem !important;
  }
  .mr-pc55 {
    margin-right: 5.5rem !important;
  }
  .pr-pc55 {
    padding-right: 5.5rem !important;
  }
  .mr-pc60 {
    margin-right: 6rem !important;
  }
  .pr-pc60 {
    padding-right: 6rem !important;
  }
  .mr-pc65 {
    margin-right: 6.5rem !important;
  }
  .pr-pc65 {
    padding-right: 6.5rem !important;
  }
  .mr-pc70 {
    margin-right: 7rem !important;
  }
  .pr-pc70 {
    padding-right: 7rem !important;
  }
  .mr-pc75 {
    margin-right: 7.5rem !important;
  }
  .pr-pc75 {
    padding-right: 7.5rem !important;
  }
  .mr-pc80 {
    margin-right: 8rem !important;
  }
  .pr-pc80 {
    padding-right: 8rem !important;
  }
  .mr-pc85 {
    margin-right: 8.5rem !important;
  }
  .pr-pc85 {
    padding-right: 8.5rem !important;
  }
  .mr-pc90 {
    margin-right: 9rem !important;
  }
  .pr-pc90 {
    padding-right: 9rem !important;
  }
  .mr-pc95 {
    margin-right: 9.5rem !important;
  }
  .pr-pc95 {
    padding-right: 9.5rem !important;
  }
  .mr-pc100 {
    margin-right: 10rem !important;
  }
  .pr-pc100 {
    padding-right: 10rem !important;
  }
  .mb-pc00 {
    margin-bottom: 0 !important;
  }
  .pb-pc00 {
    padding-bottom: 0 !important;
  }
  .mb-pc05 {
    margin-bottom: 0.5rem !important;
  }
  .pb-pc05 {
    padding-bottom: 0.5rem !important;
  }
  .mb-pc10 {
    margin-bottom: 1rem !important;
  }
  .pb-pc10 {
    padding-bottom: 1rem !important;
  }
  .mb-pc15 {
    margin-bottom: 1.5rem !important;
  }
  .pb-pc15 {
    padding-bottom: 1.5rem !important;
  }
  .mb-pc20 {
    margin-bottom: 2rem !important;
  }
  .pb-pc20 {
    padding-bottom: 2rem !important;
  }
  .mb-pc25 {
    margin-bottom: 2.5rem !important;
  }
  .pb-pc25 {
    padding-bottom: 2.5rem !important;
  }
  .mb-pc30 {
    margin-bottom: 3rem !important;
  }
  .pb-pc30 {
    padding-bottom: 3rem !important;
  }
  .mb-pc35 {
    margin-bottom: 3.5rem !important;
  }
  .pb-pc35 {
    padding-bottom: 3.5rem !important;
  }
  .mb-pc40 {
    margin-bottom: 4rem !important;
  }
  .pb-pc40 {
    padding-bottom: 4rem !important;
  }
  .mb-pc45 {
    margin-bottom: 4.5rem !important;
  }
  .pb-pc45 {
    padding-bottom: 4.5rem !important;
  }
  .mb-pc50 {
    margin-bottom: 5rem !important;
  }
  .pb-pc50 {
    padding-bottom: 5rem !important;
  }
  .mb-pc55 {
    margin-bottom: 5.5rem !important;
  }
  .pb-pc55 {
    padding-bottom: 5.5rem !important;
  }
  .mb-pc60 {
    margin-bottom: 6rem !important;
  }
  .pb-pc60 {
    padding-bottom: 6rem !important;
  }
  .mb-pc65 {
    margin-bottom: 6.5rem !important;
  }
  .pb-pc65 {
    padding-bottom: 6.5rem !important;
  }
  .mb-pc70 {
    margin-bottom: 7rem !important;
  }
  .pb-pc70 {
    padding-bottom: 7rem !important;
  }
  .mb-pc75 {
    margin-bottom: 7.5rem !important;
  }
  .pb-pc75 {
    padding-bottom: 7.5rem !important;
  }
  .mb-pc80 {
    margin-bottom: 8rem !important;
  }
  .pb-pc80 {
    padding-bottom: 8rem !important;
  }
  .mb-pc85 {
    margin-bottom: 8.5rem !important;
  }
  .pb-pc85 {
    padding-bottom: 8.5rem !important;
  }
  .mb-pc90 {
    margin-bottom: 9rem !important;
  }
  .pb-pc90 {
    padding-bottom: 9rem !important;
  }
  .mb-pc95 {
    margin-bottom: 9.5rem !important;
  }
  .pb-pc95 {
    padding-bottom: 9.5rem !important;
  }
  .mb-pc100 {
    margin-bottom: 10rem !important;
  }
  .pb-pc100 {
    padding-bottom: 10rem !important;
  }
  .ml-pc00 {
    margin-left: 0 !important;
  }
  .pl-pc00 {
    padding-left: 0 !important;
  }
  .ml-pc05 {
    margin-left: 0.5rem !important;
  }
  .pl-pc05 {
    padding-left: 0.5rem !important;
  }
  .ml-pc10 {
    margin-left: 1rem !important;
  }
  .pl-pc10 {
    padding-left: 1rem !important;
  }
  .ml-pc15 {
    margin-left: 1.5rem !important;
  }
  .pl-pc15 {
    padding-left: 1.5rem !important;
  }
  .ml-pc20 {
    margin-left: 2rem !important;
  }
  .pl-pc20 {
    padding-left: 2rem !important;
  }
  .ml-pc25 {
    margin-left: 2.5rem !important;
  }
  .pl-pc25 {
    padding-left: 2.5rem !important;
  }
  .ml-pc30 {
    margin-left: 3rem !important;
  }
  .pl-pc30 {
    padding-left: 3rem !important;
  }
  .ml-pc35 {
    margin-left: 3.5rem !important;
  }
  .pl-pc35 {
    padding-left: 3.5rem !important;
  }
  .ml-pc40 {
    margin-left: 4rem !important;
  }
  .pl-pc40 {
    padding-left: 4rem !important;
  }
  .ml-pc45 {
    margin-left: 4.5rem !important;
  }
  .pl-pc45 {
    padding-left: 4.5rem !important;
  }
  .ml-pc50 {
    margin-left: 5rem !important;
  }
  .pl-pc50 {
    padding-left: 5rem !important;
  }
  .ml-pc55 {
    margin-left: 5.5rem !important;
  }
  .pl-pc55 {
    padding-left: 5.5rem !important;
  }
  .ml-pc60 {
    margin-left: 6rem !important;
  }
  .pl-pc60 {
    padding-left: 6rem !important;
  }
  .ml-pc65 {
    margin-left: 6.5rem !important;
  }
  .pl-pc65 {
    padding-left: 6.5rem !important;
  }
  .ml-pc70 {
    margin-left: 7rem !important;
  }
  .pl-pc70 {
    padding-left: 7rem !important;
  }
  .ml-pc75 {
    margin-left: 7.5rem !important;
  }
  .pl-pc75 {
    padding-left: 7.5rem !important;
  }
  .ml-pc80 {
    margin-left: 8rem !important;
  }
  .pl-pc80 {
    padding-left: 8rem !important;
  }
  .ml-pc85 {
    margin-left: 8.5rem !important;
  }
  .pl-pc85 {
    padding-left: 8.5rem !important;
  }
  .ml-pc90 {
    margin-left: 9rem !important;
  }
  .pl-pc90 {
    padding-left: 9rem !important;
  }
  .ml-pc95 {
    margin-left: 9.5rem !important;
  }
  .pl-pc95 {
    padding-left: 9.5rem !important;
  }
  .ml-pc100 {
    margin-left: 10rem !important;
  }
  .pl-pc100 {
    padding-left: 10rem !important;
  }
}
@media screen and (max-width: 599px) {
  .mt-sp00 {
    margin-top: 0 !important;
  }
  .pt-sp00 {
    padding-top: 0 !important;
  }
  .mt-sp05 {
    margin-top: 0.5rem !important;
  }
  .pt-sp05 {
    padding-top: 0.5rem !important;
  }
  .mt-sp10 {
    margin-top: 1rem !important;
  }
  .pt-sp10 {
    padding-top: 1rem !important;
  }
  .mt-sp15 {
    margin-top: 1.5rem !important;
  }
  .pt-sp15 {
    padding-top: 1.5rem !important;
  }
  .mt-sp20 {
    margin-top: 2rem !important;
  }
  .pt-sp20 {
    padding-top: 2rem !important;
  }
  .mt-sp25 {
    margin-top: 2.5rem !important;
  }
  .pt-sp25 {
    padding-top: 2.5rem !important;
  }
  .mt-sp30 {
    margin-top: 3rem !important;
  }
  .pt-sp30 {
    padding-top: 3rem !important;
  }
  .mt-sp35 {
    margin-top: 3.5rem !important;
  }
  .pt-sp35 {
    padding-top: 3.5rem !important;
  }
  .mt-sp40 {
    margin-top: 4rem !important;
  }
  .pt-sp40 {
    padding-top: 4rem !important;
  }
  .mt-sp45 {
    margin-top: 4.5rem !important;
  }
  .pt-sp45 {
    padding-top: 4.5rem !important;
  }
  .mt-sp50 {
    margin-top: 5rem !important;
  }
  .pt-sp50 {
    padding-top: 5rem !important;
  }
  .mt-sp55 {
    margin-top: 5.5rem !important;
  }
  .pt-sp55 {
    padding-top: 5.5rem !important;
  }
  .mt-sp60 {
    margin-top: 6rem !important;
  }
  .pt-sp60 {
    padding-top: 6rem !important;
  }
  .mt-sp65 {
    margin-top: 6.5rem !important;
  }
  .pt-sp65 {
    padding-top: 6.5rem !important;
  }
  .mt-sp70 {
    margin-top: 7rem !important;
  }
  .pt-sp70 {
    padding-top: 7rem !important;
  }
  .mt-sp75 {
    margin-top: 7.5rem !important;
  }
  .pt-sp75 {
    padding-top: 7.5rem !important;
  }
  .mt-sp80 {
    margin-top: 8rem !important;
  }
  .pt-sp80 {
    padding-top: 8rem !important;
  }
  .mt-sp85 {
    margin-top: 8.5rem !important;
  }
  .pt-sp85 {
    padding-top: 8.5rem !important;
  }
  .mt-sp90 {
    margin-top: 9rem !important;
  }
  .pt-sp90 {
    padding-top: 9rem !important;
  }
  .mt-sp95 {
    margin-top: 9.5rem !important;
  }
  .pt-sp95 {
    padding-top: 9.5rem !important;
  }
  .mt-sp100 {
    margin-top: 10rem !important;
  }
  .pt-sp100 {
    padding-top: 10rem !important;
  }
  .mr-sp00 {
    margin-right: 0 !important;
  }
  .pr-sp00 {
    padding-right: 0 !important;
  }
  .mr-sp05 {
    margin-right: 0.5rem !important;
  }
  .pr-sp05 {
    padding-right: 0.5rem !important;
  }
  .mr-sp10 {
    margin-right: 1rem !important;
  }
  .pr-sp10 {
    padding-right: 1rem !important;
  }
  .mr-sp15 {
    margin-right: 1.5rem !important;
  }
  .pr-sp15 {
    padding-right: 1.5rem !important;
  }
  .mr-sp20 {
    margin-right: 2rem !important;
  }
  .pr-sp20 {
    padding-right: 2rem !important;
  }
  .mr-sp25 {
    margin-right: 2.5rem !important;
  }
  .pr-sp25 {
    padding-right: 2.5rem !important;
  }
  .mr-sp30 {
    margin-right: 3rem !important;
  }
  .pr-sp30 {
    padding-right: 3rem !important;
  }
  .mr-sp35 {
    margin-right: 3.5rem !important;
  }
  .pr-sp35 {
    padding-right: 3.5rem !important;
  }
  .mr-sp40 {
    margin-right: 4rem !important;
  }
  .pr-sp40 {
    padding-right: 4rem !important;
  }
  .mr-sp45 {
    margin-right: 4.5rem !important;
  }
  .pr-sp45 {
    padding-right: 4.5rem !important;
  }
  .mr-sp50 {
    margin-right: 5rem !important;
  }
  .pr-sp50 {
    padding-right: 5rem !important;
  }
  .mr-sp55 {
    margin-right: 5.5rem !important;
  }
  .pr-sp55 {
    padding-right: 5.5rem !important;
  }
  .mr-sp60 {
    margin-right: 6rem !important;
  }
  .pr-sp60 {
    padding-right: 6rem !important;
  }
  .mr-sp65 {
    margin-right: 6.5rem !important;
  }
  .pr-sp65 {
    padding-right: 6.5rem !important;
  }
  .mr-sp70 {
    margin-right: 7rem !important;
  }
  .pr-sp70 {
    padding-right: 7rem !important;
  }
  .mr-sp75 {
    margin-right: 7.5rem !important;
  }
  .pr-sp75 {
    padding-right: 7.5rem !important;
  }
  .mr-sp80 {
    margin-right: 8rem !important;
  }
  .pr-sp80 {
    padding-right: 8rem !important;
  }
  .mr-sp85 {
    margin-right: 8.5rem !important;
  }
  .pr-sp85 {
    padding-right: 8.5rem !important;
  }
  .mr-sp90 {
    margin-right: 9rem !important;
  }
  .pr-sp90 {
    padding-right: 9rem !important;
  }
  .mr-sp95 {
    margin-right: 9.5rem !important;
  }
  .pr-sp95 {
    padding-right: 9.5rem !important;
  }
  .mr-sp100 {
    margin-right: 10rem !important;
  }
  .pr-sp100 {
    padding-right: 10rem !important;
  }
  .mb-sp00 {
    margin-bottom: 0 !important;
  }
  .pb-sp00 {
    padding-bottom: 0 !important;
  }
  .mb-sp05 {
    margin-bottom: 0.5rem !important;
  }
  .pb-sp05 {
    padding-bottom: 0.5rem !important;
  }
  .mb-sp10 {
    margin-bottom: 1rem !important;
  }
  .pb-sp10 {
    padding-bottom: 1rem !important;
  }
  .mb-sp15 {
    margin-bottom: 1.5rem !important;
  }
  .pb-sp15 {
    padding-bottom: 1.5rem !important;
  }
  .mb-sp20 {
    margin-bottom: 2rem !important;
  }
  .pb-sp20 {
    padding-bottom: 2rem !important;
  }
  .mb-sp25 {
    margin-bottom: 2.5rem !important;
  }
  .pb-sp25 {
    padding-bottom: 2.5rem !important;
  }
  .mb-sp30 {
    margin-bottom: 3rem !important;
  }
  .pb-sp30 {
    padding-bottom: 3rem !important;
  }
  .mb-sp35 {
    margin-bottom: 3.5rem !important;
  }
  .pb-sp35 {
    padding-bottom: 3.5rem !important;
  }
  .mb-sp40 {
    margin-bottom: 4rem !important;
  }
  .pb-sp40 {
    padding-bottom: 4rem !important;
  }
  .mb-sp45 {
    margin-bottom: 4.5rem !important;
  }
  .pb-sp45 {
    padding-bottom: 4.5rem !important;
  }
  .mb-sp50 {
    margin-bottom: 5rem !important;
  }
  .pb-sp50 {
    padding-bottom: 5rem !important;
  }
  .mb-sp55 {
    margin-bottom: 5.5rem !important;
  }
  .pb-sp55 {
    padding-bottom: 5.5rem !important;
  }
  .mb-sp60 {
    margin-bottom: 6rem !important;
  }
  .pb-sp60 {
    padding-bottom: 6rem !important;
  }
  .mb-sp65 {
    margin-bottom: 6.5rem !important;
  }
  .pb-sp65 {
    padding-bottom: 6.5rem !important;
  }
  .mb-sp70 {
    margin-bottom: 7rem !important;
  }
  .pb-sp70 {
    padding-bottom: 7rem !important;
  }
  .mb-sp75 {
    margin-bottom: 7.5rem !important;
  }
  .pb-sp75 {
    padding-bottom: 7.5rem !important;
  }
  .mb-sp80 {
    margin-bottom: 8rem !important;
  }
  .pb-sp80 {
    padding-bottom: 8rem !important;
  }
  .mb-sp85 {
    margin-bottom: 8.5rem !important;
  }
  .pb-sp85 {
    padding-bottom: 8.5rem !important;
  }
  .mb-sp90 {
    margin-bottom: 9rem !important;
  }
  .pb-sp90 {
    padding-bottom: 9rem !important;
  }
  .mb-sp95 {
    margin-bottom: 9.5rem !important;
  }
  .pb-sp95 {
    padding-bottom: 9.5rem !important;
  }
  .mb-sp100 {
    margin-bottom: 10rem !important;
  }
  .pb-sp100 {
    padding-bottom: 10rem !important;
  }
  .ml-sp00 {
    margin-left: 0 !important;
  }
  .pl-sp00 {
    padding-left: 0 !important;
  }
  .ml-sp05 {
    margin-left: 0.5rem !important;
  }
  .pl-sp05 {
    padding-left: 0.5rem !important;
  }
  .ml-sp10 {
    margin-left: 1rem !important;
  }
  .pl-sp10 {
    padding-left: 1rem !important;
  }
  .ml-sp15 {
    margin-left: 1.5rem !important;
  }
  .pl-sp15 {
    padding-left: 1.5rem !important;
  }
  .ml-sp20 {
    margin-left: 2rem !important;
  }
  .pl-sp20 {
    padding-left: 2rem !important;
  }
  .ml-sp25 {
    margin-left: 2.5rem !important;
  }
  .pl-sp25 {
    padding-left: 2.5rem !important;
  }
  .ml-sp30 {
    margin-left: 3rem !important;
  }
  .pl-sp30 {
    padding-left: 3rem !important;
  }
  .ml-sp35 {
    margin-left: 3.5rem !important;
  }
  .pl-sp35 {
    padding-left: 3.5rem !important;
  }
  .ml-sp40 {
    margin-left: 4rem !important;
  }
  .pl-sp40 {
    padding-left: 4rem !important;
  }
  .ml-sp45 {
    margin-left: 4.5rem !important;
  }
  .pl-sp45 {
    padding-left: 4.5rem !important;
  }
  .ml-sp50 {
    margin-left: 5rem !important;
  }
  .pl-sp50 {
    padding-left: 5rem !important;
  }
  .ml-sp55 {
    margin-left: 5.5rem !important;
  }
  .pl-sp55 {
    padding-left: 5.5rem !important;
  }
  .ml-sp60 {
    margin-left: 6rem !important;
  }
  .pl-sp60 {
    padding-left: 6rem !important;
  }
  .ml-sp65 {
    margin-left: 6.5rem !important;
  }
  .pl-sp65 {
    padding-left: 6.5rem !important;
  }
  .ml-sp70 {
    margin-left: 7rem !important;
  }
  .pl-sp70 {
    padding-left: 7rem !important;
  }
  .ml-sp75 {
    margin-left: 7.5rem !important;
  }
  .pl-sp75 {
    padding-left: 7.5rem !important;
  }
  .ml-sp80 {
    margin-left: 8rem !important;
  }
  .pl-sp80 {
    padding-left: 8rem !important;
  }
  .ml-sp85 {
    margin-left: 8.5rem !important;
  }
  .pl-sp85 {
    padding-left: 8.5rem !important;
  }
  .ml-sp90 {
    margin-left: 9rem !important;
  }
  .pl-sp90 {
    padding-left: 9rem !important;
  }
  .ml-sp95 {
    margin-left: 9.5rem !important;
  }
  .pl-sp95 {
    padding-left: 9.5rem !important;
  }
  .ml-sp100 {
    margin-left: 10rem !important;
  }
  .pl-sp100 {
    padding-left: 10rem !important;
  }
}
/* -------------------------------------------------------------------
 全体設定
------------------------------------------------------------------- */
.wp-block-post-content {
  max-width: 750px;
  margin: 0 auto;
}

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

#tinymce {
  font-family: "游ゴシック体", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.c_wysywig,
.editor-styles-wrapper .wp-block-post-content,
#tinymce {
  font-size: 18px;
  line-height: 1.7272727273;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .c_wysywig,
  .editor-styles-wrapper .wp-block-post-content,
  #tinymce {
    font-size: 11px;
  }
}
.c_wysywig *:first-child,
.editor-styles-wrapper .wp-block-post-content *:first-child,
#tinymce *:first-child {
  margin-top: 0 !important;
}
.c_wysywig *:last-child,
.editor-styles-wrapper .wp-block-post-content *:last-child,
#tinymce *:last-child {
  margin-bottom: 0 !important;
}
.c_wysywig > *,
.c_wysywig > *,
.editor-styles-wrapper .wp-block-post-content > *,
.editor-styles-wrapper .wp-block-post-content > *,
#tinymce > *,
#tinymce > * {
  margin-bottom: 2rem;
  clear: both;
}
@media screen and (max-width: 768px) {
  .c_wysywig > *,
  .c_wysywig > *,
  .editor-styles-wrapper .wp-block-post-content > *,
  .editor-styles-wrapper .wp-block-post-content > *,
  #tinymce > *,
  #tinymce > * {
    margin-bottom: 10px;
  }
}
.c_wysywig h1,
.editor-styles-wrapper .wp-block-post-content h1,
#tinymce h1 {
  margin-top: 90px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 1px solid #1e1e1e;
  padding-left: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .c_wysywig h1,
  .editor-styles-wrapper .wp-block-post-content h1,
  #tinymce h1 {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 10px;
  }
}
.c_wysywig h2,
.editor-styles-wrapper .wp-block-post-content h2,
#tinymce h2 {
  margin-top: 90px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 1px solid #1e1e1e;
  padding-bottom: 5px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .c_wysywig h2,
  .editor-styles-wrapper .wp-block-post-content h2,
  #tinymce h2 {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.c_wysywig h3,
.c_wysywig h4,
.editor-styles-wrapper .wp-block-post-content h3,
.editor-styles-wrapper .wp-block-post-content h4,
#tinymce h3,
#tinymce h4 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c_wysywig h3,
  .c_wysywig h4,
  .editor-styles-wrapper .wp-block-post-content h3,
  .editor-styles-wrapper .wp-block-post-content h4,
  #tinymce h3,
  #tinymce h4 {
    font-size: 16px;
  }
}
.c_wysywig h5,
.editor-styles-wrapper .wp-block-post-content h5,
#tinymce h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c_wysywig h5,
  .editor-styles-wrapper .wp-block-post-content h5,
  #tinymce h5 {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.c_wysywig h6,
.editor-styles-wrapper .wp-block-post-content h6,
#tinymce h6 {
  font-weight: normal;
}
.c_wysywig a,
.editor-styles-wrapper .wp-block-post-content a,
#tinymce a {
  color: blue;
  text-decoration: underline;
}
.c_wysywig em,
.editor-styles-wrapper .wp-block-post-content em,
#tinymce em {
  font-style: italic;
}
.c_wysywig ol,
.editor-styles-wrapper .wp-block-post-content ol,
#tinymce 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,
#tinymce ol li {
  margin: 0.25em 0;
}
.c_wysywig ul,
.editor-styles-wrapper .wp-block-post-content ul,
#tinymce 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,
#tinymce ul li {
  margin: 0.25em 0;
}
.c_wysywig .alignright,
.editor-styles-wrapper .wp-block-post-content .alignright,
#tinymce .alignright {
  display: block;
  margin-left: auto;
}
.c_wysywig .alignleft,
.editor-styles-wrapper .wp-block-post-content .alignleft,
#tinymce .alignleft {
  display: block;
}
.c_wysywig .aligncenter,
.editor-styles-wrapper .wp-block-post-content .aligncenter,
#tinymce .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------
 全体設定
------------------------------------------------------------------- */
.wp-block-post-content {
  max-width: 750px;
  margin: 0 auto;
}

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

#tinymce {
  font-family: "游ゴシック体", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.c_wysywig_products,
.editor-styles-wrapper .wp-block-post-content,
#tinymce {
  font-size: 22px;
  line-height: 1.7272727273;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products,
  .editor-styles-wrapper .wp-block-post-content,
  #tinymce {
    font-size: 11px;
  }
}
.c_wysywig_products *:first-child,
.editor-styles-wrapper .wp-block-post-content *:first-child,
#tinymce *:first-child {
  margin-top: 0 !important;
}
.c_wysywig_products *:last-child,
.editor-styles-wrapper .wp-block-post-content *:last-child,
#tinymce *:last-child {
  margin-bottom: 0 !important;
}
.c_wysywig_products > *,
.c_wysywig_products > *,
.editor-styles-wrapper .wp-block-post-content > *,
.editor-styles-wrapper .wp-block-post-content > *,
#tinymce > *,
#tinymce > * {
  margin-bottom: 40px;
  clear: both;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products > *,
  .c_wysywig_products > *,
  .editor-styles-wrapper .wp-block-post-content > *,
  .editor-styles-wrapper .wp-block-post-content > *,
  #tinymce > *,
  #tinymce > * {
    margin-bottom: 20px;
  }
}
.c_wysywig_products h1,
.editor-styles-wrapper .wp-block-post-content h1,
#tinymce h1 {
  border-bottom: 1px solid #f92401;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 5px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products h1,
  .editor-styles-wrapper .wp-block-post-content h1,
  #tinymce h1 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.c_wysywig_products h2,
.editor-styles-wrapper .wp-block-post-content h2,
#tinymce h2 {
  background: #eeeeee;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 15px 25px;
  margin-bottom: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products h2,
  .editor-styles-wrapper .wp-block-post-content h2,
  #tinymce h2 {
    font-size: 12px;
    padding: 10px 15px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
}
.c_wysywig_products h3,
.editor-styles-wrapper .wp-block-post-content h3,
#tinymce h3 {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products h3,
  .editor-styles-wrapper .wp-block-post-content h3,
  #tinymce h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.c_wysywig_products h4,
.editor-styles-wrapper .wp-block-post-content h4,
#tinymce h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products h4,
  .editor-styles-wrapper .wp-block-post-content h4,
  #tinymce h4 {
    font-size: 13px;
    margin-bottom: 5px;
  }
}
.c_wysywig_products h4:before,
.editor-styles-wrapper .wp-block-post-content h4:before,
#tinymce h4:before {
  color: #000000;
  content: "▶";
  margin-right: 10px;
}
.c_wysywig_products h4 + p,
.editor-styles-wrapper .wp-block-post-content h4 + p,
#tinymce h4 + p {
  padding-left: 40px;
  font-weight: 300;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products h4 + p,
  .editor-styles-wrapper .wp-block-post-content h4 + p,
  #tinymce h4 + p {
    font-size: 10px;
    padding-left: 25px;
  }
}
.c_wysywig_products h5,
.editor-styles-wrapper .wp-block-post-content h5,
#tinymce h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products h5,
  .editor-styles-wrapper .wp-block-post-content h5,
  #tinymce h5 {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.c_wysywig_products h6,
.editor-styles-wrapper .wp-block-post-content h6,
#tinymce h6 {
  font-weight: normal;
}
.c_wysywig_products a,
.editor-styles-wrapper .wp-block-post-content a,
#tinymce a {
  color: blue;
  text-decoration: underline;
}
.c_wysywig_products em,
.editor-styles-wrapper .wp-block-post-content em,
#tinymce em {
  font-style: italic;
}
.c_wysywig_products ul,
.c_wysywig_products ol,
.editor-styles-wrapper .wp-block-post-content ul,
.editor-styles-wrapper .wp-block-post-content ol,
#tinymce ul,
#tinymce ol {
  list-style: none;
  padding: 0;
}
.c_wysywig_products ul li,
.c_wysywig_products ol li,
.editor-styles-wrapper .wp-block-post-content ul li,
.editor-styles-wrapper .wp-block-post-content ol li,
#tinymce ul li,
#tinymce ol li {
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products ul li,
  .c_wysywig_products ol li,
  .editor-styles-wrapper .wp-block-post-content ul li,
  .editor-styles-wrapper .wp-block-post-content ol li,
  #tinymce ul li,
  #tinymce ol li {
    font-size: 12px;
  }
}
.c_wysywig_products ol,
.editor-styles-wrapper .wp-block-post-content ol,
#tinymce ol {
  counter-reset: section;
}
.c_wysywig_products ol li,
.editor-styles-wrapper .wp-block-post-content ol li,
#tinymce ol li {
  counter-increment: section;
}
.c_wysywig_products ol li:before,
.editor-styles-wrapper .wp-block-post-content ol li:before,
#tinymce ol li:before {
  content: counter(section) ".";
  margin-right: 10px;
}
.c_wysywig_products table tr th,
.c_wysywig_products table tr td,
.editor-styles-wrapper .wp-block-post-content table tr th,
.editor-styles-wrapper .wp-block-post-content table tr td,
#tinymce table tr th,
#tinymce table tr td {
  line-height: 1.5;
  border: 1px solid #707070;
}
.c_wysywig_products table thead tr th,
.c_wysywig_products table thead tr td,
.editor-styles-wrapper .wp-block-post-content table thead tr th,
.editor-styles-wrapper .wp-block-post-content table thead tr td,
#tinymce table thead tr th,
#tinymce table thead tr td {
  padding: 20px 25px;
  text-align: center;
  background: #f0f0f0;
  font-weight: 600;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products table thead tr th,
  .c_wysywig_products table thead tr td,
  .editor-styles-wrapper .wp-block-post-content table thead tr th,
  .editor-styles-wrapper .wp-block-post-content table thead tr td,
  #tinymce table thead tr th,
  #tinymce table thead tr td {
    padding: 10px 15px;
    font-size: 11px;
  }
}
.c_wysywig_products table tbody tr th,
.c_wysywig_products table tbody tr td,
.editor-styles-wrapper .wp-block-post-content table tbody tr th,
.editor-styles-wrapper .wp-block-post-content table tbody tr td,
#tinymce table tbody tr th,
#tinymce table tbody tr td {
  padding: 15px 20px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c_wysywig_products table tbody tr th,
  .c_wysywig_products table tbody tr td,
  .editor-styles-wrapper .wp-block-post-content table tbody tr th,
  .editor-styles-wrapper .wp-block-post-content table tbody tr td,
  #tinymce table tbody tr th,
  #tinymce table tbody tr td {
    padding: 10px 15px;
    font-size: 11px;
  }
}
.c_wysywig_products table tbody tr th,
.editor-styles-wrapper .wp-block-post-content table tbody tr th,
#tinymce table tbody tr th {
  background: #fafafa;
  font-weight: 500;
}
.c_wysywig_products table tbody tr td,
.editor-styles-wrapper .wp-block-post-content table tbody tr td,
#tinymce table tbody tr td {
  font-weight: 300;
}
.c_wysywig_products iframe,
.editor-styles-wrapper .wp-block-post-content iframe,
#tinymce iframe {
  margin-inline: auto;
  display: block;
  max-width: 100%;
}
.c_wysywig_products .alignright,
.editor-styles-wrapper .wp-block-post-content .alignright,
#tinymce .alignright {
  display: block;
  margin-left: auto;
}
.c_wysywig_products .alignleft,
.editor-styles-wrapper .wp-block-post-content .alignleft,
#tinymce .alignleft {
  display: block;
}
.c_wysywig_products .aligncenter,
.editor-styles-wrapper .wp-block-post-content .aligncenter,
#tinymce .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------
 TOPページ
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  #index .p_tabBtns {
    position: relative;
    margin-top: -100px;
    border-bottom: 40px solid #000;
    z-index: 2;
  }
  #index .p_tabBtns:has(.btns button:nth-child(1).is-active) {
    border-bottom: 40px solid #e60012;
  }
  #index .p_tabBtns:has(.btns button:nth-child(2).is-active) {
    border-bottom: 40px solid #53a629;
  }
  #index .p_tabBtns:has(.btns button:nth-child(3).is-active) {
    border-bottom: 40px solid #24b3b3;
  }
  #index .p_tabBtns:has(.btns button:nth-child(4).is-active) {
    border-bottom: 40px solid #fa8219;
  }
  #index .p_tabBtns .btns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 53px;
  }
  #index .p_tabBtns .btns button {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    height: 77px;
    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-color: #fff;
    text-align: center;
    width: 100%;
  }
  #index .p_tabBtns .btns button.is-active {
    color: white !important;
  }
  #index .p_tabBtns .btns button:nth-child(1) {
    color: #e60012;
  }
  #index .p_tabBtns .btns button:nth-child(1).is-active {
    background: #e60012;
  }
  #index .p_tabBtns .btns button:nth-child(2) {
    color: #53a629;
  }
  #index .p_tabBtns .btns button:nth-child(2).is-active {
    background: #53a629;
  }
  #index .p_tabBtns .btns button:nth-child(3) {
    color: #24b3b3;
  }
  #index .p_tabBtns .btns button:nth-child(3).is-active {
    background: #24b3b3;
  }
  #index .p_tabBtns .btns button:nth-child(4) {
    color: #fa8219;
  }
  #index .p_tabBtns .btns button:nth-child(4).is-active {
    background: #fa8219;
  }
  #index .p_tab {
    background: #f7f7f7;
    padding: 70px 0;
  }
  #index .p_tab_cats .btns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 40px;
  }
  #index .p_tab_cats .btns a {
    background-color: #fff;
    height: 60px;
    border: 1px solid #000;
    border-radius: 10px;
    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: 21px;
    letter-spacing: 0.1em;
  }
  #index .p_tab_index 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: 80px;
  }
  #index .p_tab_index .text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  #index .p_tab_index .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 20px;
  }
  #index .p_tab_index .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  #index .p_tab_index .card__image {
    width: 140px;
    aspect-ratio: 7/5;
    border: 1px solid #707070;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #index .p_tab_index .card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #index .p_tab_index .card__name {
    font-size: 18px;
    font-weight: 300;
  }
  #index .p_tab_index .card__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 10px;
  }
  #index .p_tab_catalog__title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  #index .p_tab_catalog__label {
    width: 680px;
    border: 1px solid #f22f00;
    margin-inline: auto;
    color: #f22f00;
    background-color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding: 14px;
    text-align: center;
    margin-bottom: 70px;
  }
  #index .p_tab_catalog__list {
    gap: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  #index .p_tab_catalog__list li {
    text-align: center;
  }
  #index .p_tab_catalog__list li a {
    display: block;
  }
  #index .p_tab_catalog__list li .image img {
    border: 1px solid #707070;
  }
  #index .p_tab_catalog__list li .name {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 30px;
  }
  #index .p_tab_catalog__cap {
    text-align: center;
    margin-top: 70px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
  }
  #index .p_tab_catalog__cap span {
    color: #f22f00;
  }
  #index .p_tab_catalog__btn {
    text-align: center;
    margin-top: 35px;
  }
  #index .p_pickup {
    padding: 120px 0;
  }
  #index .p_pickup__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #f22f00;
    padding-bottom: 10px;
    margin-bottom: 50px;
  }
  #index .p_pickup__title .text1 {
    color: #f22f00;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  #index .p_pickup__title .text2 {
    font-size: 24px;
    color: #3d3d3d;
    font-weight: 500;
  }
  #index .p_pickup__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 220px;
  }
  #index .p_pickup__list .card {
    display: block;
  }
  #index .p_pickup__list .card__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  #index .p_pickup__list .card__image {
    aspect-ratio: 580/408;
    margin-bottom: 10px;
  }
  #index .p_pickup__list .card__image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  #index .p_pickup__list .card__desc {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    margin: 10px 0;
  }
  #index .p_pickup__list .card__desc2 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 15px;
  }
  #index .p_pickup__list .card__cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #index .p_pickup__list .card__cat + dl {
    margin-top: 15px;
  }
  #index .p_pickup__list .card__cat dt {
    color: #19a6a6;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
    font-weight: 400;
  }
  #index .p_pickup__list .card__cat dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 40px;
  }
  #index .p_pickup__list .card__cat dd a {
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #19a6a6;
    min-width: 180px;
    padding: 4px 10px 5px;
    text-align: center;
  }
  #index .p_pickup__list .card__cat._orange dt {
    color: #e67717;
  }
  #index .p_pickup__list .card__cat._orange dd a {
    background: #e67717;
  }
  #index .p_pickup__list .card__btn {
    text-align: center;
    margin-top: 30px;
  }
  #index .p_news {
    background: #f0f0f0;
    padding: 80px 0 100px;
  }
  #index .p_news .c_inner {
    max-width: 1025px;
  }
  #index .p_news__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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
  }
  #index .p_news__title .ja {
    font-size: 30px;
    font-weight: 600;
    color: #f22f00;
  }
  #index .p_news__title .en {
    font-size: 24px;
    font-weight: 500;
  }
  #index .p_news__btn {
    text-align: center;
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  #index .p_tabBtns {
    position: relative;
    margin-top: -35px;
    border-bottom: 10px solid #000;
    z-index: 2;
  }
  #index .p_tabBtns:has(.btns button:nth-child(1).is-active) {
    border-bottom: 10px solid #e60012;
  }
  #index .p_tabBtns:has(.btns button:nth-child(2).is-active) {
    border-bottom: 10px solid #53a629;
  }
  #index .p_tabBtns:has(.btns button:nth-child(3).is-active) {
    border-bottom: 10px solid #24b3b3;
  }
  #index .p_tabBtns:has(.btns button:nth-child(4).is-active) {
    border-bottom: 10px solid #fa8219;
  }
  #index .p_tabBtns .btns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  #index .p_tabBtns .btns button {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.05em;
    height: 35px;
    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-color: #fff;
    text-align: center;
    width: 100%;
  }
  #index .p_tabBtns .btns button.is-active {
    color: white !important;
  }
  #index .p_tabBtns .btns button:nth-child(1) {
    color: #e60012;
  }
  #index .p_tabBtns .btns button:nth-child(1).is-active {
    background: #e60012;
  }
  #index .p_tabBtns .btns button:nth-child(2) {
    color: #53a629;
  }
  #index .p_tabBtns .btns button:nth-child(2).is-active {
    background: #53a629;
  }
  #index .p_tabBtns .btns button:nth-child(3) {
    color: #24b3b3;
  }
  #index .p_tabBtns .btns button:nth-child(3).is-active {
    background: #24b3b3;
  }
  #index .p_tabBtns .btns button:nth-child(4) {
    color: #fa8219;
  }
  #index .p_tabBtns .btns button:nth-child(4).is-active {
    background: #fa8219;
  }
  #index .p_tab {
    background: #f7f7f7;
    padding: 40px 0;
  }
  #index .p_tab_cats .btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  #index .p_tab_cats .btns a {
    background-color: #fff;
    height: 30px;
    border: 1px solid #000;
    border-radius: 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;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  #index .p_tab_index 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: 40px;
  }
  #index .p_tab_index .text {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #index .p_tab_index .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  #index .p_tab_index .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  #index .p_tab_index .card__image {
    width: 60px;
    aspect-ratio: 7/5;
    border: 1px solid #707070;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #index .p_tab_index .card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #index .p_tab_index .card__name {
    font-size: 10px;
    line-height: 1.2;
    font-weight: 300;
  }
  #index .p_tab_index .card__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 5px;
  }
  #index .p_tab_catalog__title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  #index .p_tab_catalog__label {
    width: 295px;
    border: 1px solid #f22f00;
    margin-inline: auto;
    color: #f22f00;
    background-color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    margin-bottom: 40px;
  }
  #index .p_tab_catalog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
  #index .p_tab_catalog__list li {
    text-align: center;
  }
  #index .p_tab_catalog__list li a {
    display: block;
  }
  #index .p_tab_catalog__list li .image img {
    border: 1px solid #707070;
  }
  #index .p_tab_catalog__list li .name {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 10px;
  }
  #index .p_tab_catalog__cap {
    text-align: center;
    margin-top: 20px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
  }
  #index .p_tab_catalog__cap span {
    color: #f22f00;
  }
  #index .p_tab_catalog__btn {
    text-align: center;
    margin-top: 20px;
  }
  #index .p_pickup {
    padding: 60px 0;
  }
  #index .p_pickup__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #f22f00;
    padding: 0 20px 5px;
    margin-bottom: 30px;
    margin-left: -20px;
    margin-right: -20px;
  }
  #index .p_pickup__title .text1 {
    color: #f22f00;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  #index .p_pickup__title .text2 {
    font-size: 12px;
    color: #3d3d3d;
    font-weight: 500;
  }
  #index .p_pickup__list {
    display: grid;
    gap: 40px;
    padding: 0 30px;
  }
  #index .p_pickup__list .card {
    display: block;
  }
  #index .p_pickup__list .card__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  #index .p_pickup__list .card__image {
    aspect-ratio: 580/408;
    margin-bottom: 5px;
  }
  #index .p_pickup__list .card__image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  #index .p_pickup__list .card__desc {
    font-size: 17px;
    font-weight: bold;
    line-height: 1.6;
    margin: 5px 0;
  }
  #index .p_pickup__list .card__desc2 {
    font-size: 11px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 15px;
  }
  #index .p_pickup__list .card__cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #index .p_pickup__list .card__cat + dl {
    margin-top: 10px;
  }
  #index .p_pickup__list .card__cat dt {
    color: #19a6a6;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
    font-weight: 400;
    font-size: 11px;
  }
  #index .p_pickup__list .card__cat dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 20px;
  }
  #index .p_pickup__list .card__cat dd a {
    font-size: 11px;
    font-weight: 600;
    color: white;
    background: #19a6a6;
    min-width: 90px;
    padding: 4px 10px 5px;
    text-align: center;
  }
  #index .p_pickup__list .card__cat._orange dt {
    color: #e67717;
  }
  #index .p_pickup__list .card__cat._orange dd a {
    background: #e67717;
  }
  #index .p_pickup__list .card__btn {
    text-align: center;
    margin-top: 15px;
  }
  #index .p_news {
    background: #f0f0f0;
    padding: 40px 0 60px;
  }
  #index .p_news__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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
  #index .p_news__title .ja {
    font-size: 20px;
    font-weight: 600;
    color: #f22f00;
  }
  #index .p_news__title .en {
    font-size: 12px;
    font-weight: 500;
  }
  #index .p_news__btn {
    text-align: center;
    margin-top: 30px;
  }
}
/* -------------------------------------------------------------------
 TOPページ
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  #news .p_news {
    background: #f0f0f0;
    padding: 0 0 100px;
  }
  #news .p_news .c_inner {
    max-width: 1025px;
  }
  #news .p_news__title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #news .p_news__title small {
    font-size: 30px;
    font-weight: 400;
  }
  #news .p_news__text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: #d90b0b;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  #news .p_news {
    background: #f0f0f0;
    padding: 0 0 60px;
  }
  #news .p_news__title {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #news .p_news__title small {
    font-size: 80%;
    font-weight: 400;
  }
  #news .p_news__text {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: #d90b0b;
    margin-bottom: 40px;
  }
}
/* -------------------------------------------------------------------
 TOPページ
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  #single-news .p_single {
    margin-bottom: 130px;
  }
  #single-news .p_single .c_inner {
    max-width: 950px;
  }
  #single-news .p_single__title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #single-news .p_single__title small {
    font-size: 30px;
    font-weight: 400;
  }
  #single-news .p_single__text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: #d90b0b;
    margin-bottom: 70px;
  }
  #single-news .p_single__article .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  #single-news .p_single__article .meta .date {
    font-size: 18px;
    font-weight: 400;
    color: #373737;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #single-news .p_single__article .meta .cat {
    width: 146px;
    color: white;
    font-size: 18px;
    padding: 5px;
    text-align: center;
    background: #000;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 100vh;
  }
  #single-news .p_single__article .meta .cat._blue {
    background-color: #1781eb;
  }
  #single-news .p_single__article .meta .cat._orange {
    background-color: #fa7719;
  }
  #single-news .p_single__article .meta .cat._green {
    background-color: #80bf26;
  }
  #single-news .p_single__article .title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    border-bottom: 2px solid #f92401;
    padding-bottom: 5px;
    margin-bottom: 50px;
  }
  #single-news .p_single__article .btn {
    text-align: center;
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  #single-news .p_single {
    margin-bottom: 60px;
  }
  #single-news .p_single__title {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  #single-news .p_single__title small {
    font-size: 80%;
    font-weight: 400;
  }
  #single-news .p_single__text {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    color: #d90b0b;
    margin-bottom: 40px;
  }
  #single-news .p_single__article .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  #single-news .p_single__article .meta .date {
    font-size: 10px;
    font-weight: 400;
    color: #373737;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #single-news .p_single__article .meta .cat {
    width: 80px;
    color: white;
    font-size: 10px;
    padding: 5px;
    text-align: center;
    background: #000;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 100vh;
  }
  #single-news .p_single__article .meta .cat._blue {
    background-color: #1781eb;
  }
  #single-news .p_single__article .meta .cat._orange {
    background-color: #fa7719;
  }
  #single-news .p_single__article .meta .cat._green {
    background-color: #80bf26;
  }
  #single-news .p_single__article .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    border-bottom: 2px solid #f92401;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  #single-news .p_single__article .btn {
    text-align: center;
    margin-top: 40px;
  }
}
/* -------------------------------------------------------------------
 TOPページ
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  #products .p_products {
    padding-bottom: 60px;
  }
  #products .p_products__flex {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
  }
  #products .p_products__main .title {
    color: #f92401;
    border-bottom: 1px solid #f92401;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 50px;
  }
  #products .p_products__main .title .sub {
    font-size: 80%;
  }
  #products .p_products__main .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 50px;
  }
  #products .p_products__main .no-results {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  #products .p_products {
    padding-bottom: 60px;
  }
  #products .p_products__flex {
    display: grid;
    gap: 30px;
  }
  #products .p_products__main .title {
    color: #f92401;
    border-bottom: 1px solid #f92401;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 30px;
  }
  #products .p_products__main .title .sub {
    font-size: 80%;
  }
  #products .p_products__main .cards {
    display: grid;
    gap: 30px;
    padding: 0 30px;
  }
  #products .p_products__main .no-results {
    font-size: 16px;
    line-height: 1.8;
  }
}
/* -------------------------------------------------------------------
 TOPページ
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  #single-products .p_products {
    padding-bottom: 60px;
  }
  #single-products .p_products__flex {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
  }
  #single-products .p_products__title {
    border-bottom: 1px solid #f92401;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 50px;
  }
  #single-products .p_products__title .sub {
    font-size: 20px;
    font-weight: 400;
  }
  #single-products .p_products__main .mainarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
  #single-products .p_products__main .mainarea .image {
    width: 530px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #single-products .p_products__main .mainarea .image img {
    width: 100%;
  }
  #single-products .p_products__main .mainarea .textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #single-products .p_products__main .mainarea .textarea .cat {
    margin-bottom: 20px;
  }
  #single-products .p_products__main .mainarea .textarea .cat dt {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #707070;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  #single-products .p_products__main .mainarea .textarea .cat dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  #single-products .p_products__main .mainarea .textarea .cat dd a {
    min-width: 170px;
    font-size: 18px;
    padding: 7px;
    background: #24b3b3;
    color: white;
    text-align: center;
  }
  #single-products .p_products__main .mainarea .textarea .cat._orange dd a {
    background: #fa8219;
  }
  #single-products .p_products__main .mainarea .textarea .caption {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: auto;
    letter-spacing: 0;
  }
  #single-products .p_products__main .mainarea .textarea .btns {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  #single-products .p_products__main .mainarea .textarea .btns .c_btnB {
    width: 100%;
  }
  #single-products .p_products__main .acf {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
  #single-products .p_products__main .acf__row .repeat1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  #single-products .p_products__main .acf__row .repeat1 h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  #single-products .p_products__main .acf__row .repeat1 h3:before {
    color: #000000;
    content: "▶";
    margin-right: 10px;
  }
  #single-products .p_products__main .acf__row .repeat1 p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    padding-left: 40px;
  }
  #single-products .p_products__main .acf__row .table table tr th,
  #single-products .p_products__main .acf__row .table table tr td {
    font-size: 21px;
    line-height: 1.5;
    border: 1px solid #707070;
  }
  #single-products .p_products__main .acf__row .table table thead tr th,
  #single-products .p_products__main .acf__row .table table thead tr td {
    padding: 20px 25px;
    text-align: center;
    background: #f0f0f0;
    font-weight: 600;
  }
  #single-products .p_products__main .acf__row .table table tbody tr th,
  #single-products .p_products__main .acf__row .table table tbody tr td {
    padding: 15px 20px;
  }
  #single-products .p_products__main .acf__row .table table tbody tr th {
    background: #fafafa;
    font-weight: 500;
  }
  #single-products .p_products__main .acf__row .table table tbody tr td {
    font-weight: 300;
  }
  #single-products .p_products__main .acf__row .repeat2 {
    counter-reset: section;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #single-products .p_products__main .acf__row .repeat2 li {
    counter-increment: section;
    font-size: 24px;
    line-height: 2;
    font-weight: 500;
  }
  #single-products .p_products__main .acf__row .repeat2 li:before {
    content: counter(section) ".";
    margin-right: 10px;
  }
  #single-products .p_products__main .acf__row .youtube {
    margin-top: 70px;
  }
  #single-products .p_products__main .acf__row .youtube iframe {
    aspect-ratio: 16/9;
    margin-inline: auto;
    display: block;
    max-width: 700px;
    width: 100%;
  }
  #single-products .p_products__main .acf__title {
    background: #eeeeee;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 15px 25px;
    margin-bottom: 40px;
  }
  #single-products .p_products__main .c_wysywig_products {
    margin-top: 80px;
  }
  #single-products .p_products__main .howtocontact {
    margin-top: 80px;
  }
  #single-products .p_products__main .howtocontact .title {
    background: #eeeeee;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 15px 25px;
    margin-bottom: 40px;
  }
  #single-products .p_products__main .howtocontact .text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0;
  }
  #single-products .p_products__main .howtocontact .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px;
    margin-top: 40px;
  }
  #single-products .p_products__main .howtocontact .btns .c_btnB {
    width: 370px;
  }
  #single-products .p_products__main .relateproducts {
    margin-top: 120px;
  }
  #single-products .p_products__main .relateproducts .title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #f92401;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
  #single-products .p_products__main .relateproducts .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  #single-products .p_products__main .relateproducts .cards .c_cardA__more {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  #single-products .p_products {
    padding-bottom: 60px;
  }
  #single-products .p_products__flex {
    display: grid;
    gap: 40px;
  }
  #single-products .p_products__title {
    border-bottom: 1px solid #f92401;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  #single-products .p_products__title .sub {
    font-size: 12px;
    font-weight: 400;
  }
  #single-products .p_products__main {
    padding: 0 20px;
  }
  #single-products .p_products__main .mainarea {
    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;
  }
  #single-products .p_products__main .mainarea .textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #single-products .p_products__main .mainarea .textarea .cat {
    margin-bottom: 10px;
  }
  #single-products .p_products__main .mainarea .textarea .cat dt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #707070;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  #single-products .p_products__main .mainarea .textarea .cat dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  #single-products .p_products__main .mainarea .textarea .cat dd a {
    min-width: 80px;
    font-size: 10px;
    padding: 5px;
    background: #24b3b3;
    color: white;
    text-align: center;
  }
  #single-products .p_products__main .mainarea .textarea .cat._orange dd a {
    background: #fa8219;
  }
  #single-products .p_products__main .mainarea .textarea .caption {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: auto;
    letter-spacing: 0;
  }
  #single-products .p_products__main .mainarea .textarea .btns {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: 15px;
  }
  #single-products .p_products__main .mainarea .textarea .btns .c_btnB {
    width: 220px;
  }
  #single-products .p_products__main .acf {
    margin-top: 30px;
    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;
  }
  #single-products .p_products__main .acf__row .repeat1 {
    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;
  }
  #single-products .p_products__main .acf__row .repeat1 h3 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  #single-products .p_products__main .acf__row .repeat1 h3:before {
    color: #000000;
    content: "▶";
    margin-right: 10px;
  }
  #single-products .p_products__main .acf__row .repeat1 p {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 300;
    padding-left: 25px;
  }
  #single-products .p_products__main .acf__row .table table tr th,
  #single-products .p_products__main .acf__row .table table tr td {
    font-size: 11px;
    line-height: 1.5;
    border: 1px solid #707070;
  }
  #single-products .p_products__main .acf__row .table table thead tr th,
  #single-products .p_products__main .acf__row .table table thead tr td {
    padding: 10px 15px;
    text-align: center;
    background: #f0f0f0;
    font-weight: 600;
  }
  #single-products .p_products__main .acf__row .table table tbody tr th,
  #single-products .p_products__main .acf__row .table table tbody tr td {
    padding: 10px 15px;
  }
  #single-products .p_products__main .acf__row .table table tbody tr th {
    background: #fafafa;
    font-weight: 500;
  }
  #single-products .p_products__main .acf__row .table table tbody tr td {
    font-weight: 300;
  }
  #single-products .p_products__main .acf__row .repeat2 {
    counter-reset: section;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #single-products .p_products__main .acf__row .repeat2 li {
    counter-increment: section;
    font-size: 12px;
    line-height: 2;
    font-weight: 500;
  }
  #single-products .p_products__main .acf__row .repeat2 li:before {
    content: counter(section) ".";
    margin-right: 5px;
  }
  #single-products .p_products__main .acf__row .youtube {
    margin-top: 30px;
  }
  #single-products .p_products__main .acf__row .youtube iframe {
    aspect-ratio: 16/9;
    margin-inline: auto;
    display: block;
    width: 100%;
  }
  #single-products .p_products__main .acf__title {
    background: #eeeeee;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  #single-products .p_products__main .c_wysywig_products {
    margin-top: 30px;
  }
  #single-products .p_products__main .howtocontact {
    margin-top: 30px;
  }
  #single-products .p_products__main .howtocontact .title {
    background: #eeeeee;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  #single-products .p_products__main .howtocontact .text {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0;
  }
  #single-products .p_products__main .howtocontact .btns {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  #single-products .p_products__main .relateproducts {
    margin-top: 40px;
  }
  #single-products .p_products__main .relateproducts .title {
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    border-bottom: 2px solid #f92401;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  #single-products .p_products__main .relateproducts .cards {
    display: grid;
    gap: 25px;
    padding: 0 20px;
  }
  #single-products .p_products__main .relateproducts .cards .c_cardA__more {
    text-align: center;
  }
}
/* -------------------------------------------------------------------
 TOPページ
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  #contact .p_sec01 {
    padding: 60px 0;
  }
  #contact .p_sec01 .title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #contact .p_sec01 .text {
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    color: #d90b0b;
    font-weight: 600;
  }
  #contact .p_sec02 {
    background: #f2f2f2;
    padding-bottom: 170px;
    padding-top: 60px;
    border-top: 12px solid #60bf30;
  }
  #contact .p_sec02 .c_inner {
    max-width: 950px;
  }
  #contact .p_sec02__text {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    color: #333333;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }
  #contact .p_sec02__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
  #contact .p_sec02__step li {
    color: white;
    font-weight: bold;
    font-size: 28px;
    background: #b4b4b4;
    padding: 20px;
    width: 290px;
    text-align: center;
  }
  #contact .p_sec02__step li.is-current {
    background: #53a629;
  }
  #contact .p_sec02__step li:nth-child(1) {
    clip-path: polygon(0 0, calc(100% - 45px) 0, 100% 50%, calc(100% - 45px) 100%, 0 100%);
    padding-right: 45px;
    margin-right: -42px;
  }
  #contact .p_sec02__step li:nth-child(2) {
    clip-path: polygon(0 0, calc(100% - 45px) 0, 100% 50%, calc(100% - 45px) 100%, 0 100%, 45px 50%);
  }
  #contact .p_sec02__step li:nth-child(3) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 45px 50%);
    padding-left: 45px;
    margin-left: -42px;
  }
  #contact .p_sec02__text2 {
    text-align: center;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 500;
    color: #333333;
    margin-bottom: 80px;
  }
  #contact .p_sec02__text3 {
    font-size: 18px;
    line-height: 1.6;
  }
  #contact .p_sec02 .form-error-box {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: red;
    font-weight: bold;
    text-align: center;
  }
  #contact .p_sec02__form dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 45px 30px;
  }
  #contact .p_sec02__form dl dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.4;
  }
  #contact .p_sec02__form dl dt span {
    border-radius: 100vh;
    color: white;
    background: #f77707;
    font-size: 19px;
    font-weight: 500;
    padding: 5px 10px;
  }
  #contact .p_sec02__form dl dt span.free {
    background: #60bf30;
  }
  #contact .p_sec02__form dl dt.parts1 {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 29px;
  }
  #contact .p_sec02__form dl dt.parts2 {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 42px;
  }
  #contact .p_sec02__form dl dt.parts3 {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 12px;
  }
  #contact .p_sec02__form dl dd {
    position: relative;
  }
  #contact .p_sec02__form dl dd .caption {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 10px;
  }
  #contact .p_sec02__form dl dd .caption:before {
    color: #f92401;
    content: "※";
  }
  #contact .p_sec02__form dl dd input[type=text],
  #contact .p_sec02__form dl dd input[type=email],
  #contact .p_sec02__form dl dd input[type=tel],
  #contact .p_sec02__form dl dd textarea {
    background-color: #fff;
    border: 1px solid #1b3a59;
    padding: 12px 15px;
    font-size: 21px;
    line-height: 1.6;
    width: 100%;
    font-weight: 400;
  }
  #contact .p_sec02__form dl dd input[type=text]::-webkit-input-placeholder, #contact .p_sec02__form dl dd input[type=email]::-webkit-input-placeholder, #contact .p_sec02__form dl dd input[type=tel]::-webkit-input-placeholder, #contact .p_sec02__form dl dd textarea::-webkit-input-placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd input[type=text]::-moz-placeholder, #contact .p_sec02__form dl dd input[type=email]::-moz-placeholder, #contact .p_sec02__form dl dd input[type=tel]::-moz-placeholder, #contact .p_sec02__form dl dd textarea::-moz-placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd input[type=text]:-ms-input-placeholder, #contact .p_sec02__form dl dd input[type=email]:-ms-input-placeholder, #contact .p_sec02__form dl dd input[type=tel]:-ms-input-placeholder, #contact .p_sec02__form dl dd textarea:-ms-input-placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd input[type=text]::-ms-input-placeholder, #contact .p_sec02__form dl dd input[type=email]::-ms-input-placeholder, #contact .p_sec02__form dl dd input[type=tel]::-ms-input-placeholder, #contact .p_sec02__form dl dd textarea::-ms-input-placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd input[type=text]::placeholder,
  #contact .p_sec02__form dl dd input[type=email]::placeholder,
  #contact .p_sec02__form dl dd input[type=tel]::placeholder,
  #contact .p_sec02__form dl dd textarea::placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd textarea {
    height: 180px;
  }
  #contact .p_sec02__form dl dd .radio {
    display: inline-grid;
    grid-template-columns: repeat(2, auto);
    gap: 22px 25px;
  }
  #contact .p_sec02__form dl dd .radio label {
    font-size: 21px;
    font-weight: 500;
    color: #19a6a6;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  #contact .p_sec02__form dl dd .radio label input {
    opacity: 0;
    position: absolute;
  }
  #contact .p_sec02__form dl dd .radio label .check {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 2px solid #c92a30;
    background-color: #fff;
  }
  #contact .p_sec02__form dl dd .radio label:has(input:checked) .check {
    background-color: #c92a30;
  }
  #contact .p_sec02__form dl dd .error {
    font-size: 18px;
    font-weight: bold;
    color: red;
    margin-top: 10px;
  }
  #contact .p_sec02__form._confirm dl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #contact .p_sec02__form._confirm dl dt {
    font-size: 21px;
    line-height: 1.4;
  }
  #contact .p_sec02__form._confirm dl dd {
    font-size: 21px;
    line-height: 1.4;
  }
  #contact .p_sec02__btn {
    text-align: center;
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  #contact .p_sec02__btn .error {
    font-size: 18px;
    font-weight: bold;
    color: red;
  }
  #contact .p_sec02__btn button {
    background: #53a629;
    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;
    width: 517px;
    height: 64px;
    border-radius: 100vh;
    font-size: 32px;
    font-weight: 500;
    color: white;
  }
  #contact .p_sec02__btn button.back {
    color: black;
    border: 1px solid #53a629;
    background: white;
  }
  #contact .p_sec02__pp .text {
    text-align: center;
    color: #53a629;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 30px;
  }
  #contact .p_sec02__pp .pparea {
    padding: 20px 40px;
    border: 1px solid #1b3a59;
    background-color: #fff;
    margin-top: 30px;
  }
  #contact .p_sec02__pp .pparea__title {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
  }
  #contact .p_sec02__pp .pparea__text {
    font-size: 18px;
    line-height: 1.5;
  }
  #contact .p_sec02__pp .pparea__text2 {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    color: #53a629;
  }
  #contact .p_sec02__pp .pparea__btn {
    text-align: center;
    margin-top: 20px;
  }
  #contact .p_sec02__pp .pparea__btn a {
    background: #53a629;
    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;
    width: 160px;
    height: 38px;
    border-radius: 100vh;
    font-size: 20px;
    color: white;
  }
}
@media screen and (max-width: 599px) {
  #contact .p_sec01 {
    padding: 30px 0;
  }
  #contact .p_sec01 .title {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  #contact .p_sec01 .text {
    text-align: center;
    font-size: 10px;
    line-height: 1.6;
    color: #d90b0b;
    font-weight: 600;
  }
  #contact .p_sec02 {
    background: #f2f2f2;
    padding-bottom: 60px;
    padding-top: 30px;
    border-top: 6px solid #60bf30;
  }
  #contact .p_sec02__text {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6;
    color: #333333;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
  }
  #contact .p_sec02__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  #contact .p_sec02__step li {
    color: white;
    font-weight: bold;
    font-size: 14px;
    background: #b4b4b4;
    padding: 10px 15px;
    width: 130px;
    text-align: center;
  }
  #contact .p_sec02__step li.is-current {
    background: #53a629;
  }
  #contact .p_sec02__step li:nth-child(1) {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    padding-right: 20px;
    margin-right: -18px;
  }
  #contact .p_sec02__step li:nth-child(2) {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  }
  #contact .p_sec02__step li:nth-child(3) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
    padding-left: 20px;
    margin-left: -18px;
  }
  #contact .p_sec02__text2 {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px;
  }
  #contact .p_sec02__text3 {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  #contact .p_sec02 .form-error-box {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: red;
    font-weight: bold;
    text-align: center;
  }
  #contact .p_sec02__form dl {
    display: grid;
    gap: 10px;
  }
  #contact .p_sec02__form dl dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    font-weight: 500;
  }
  #contact .p_sec02__form dl dt span {
    border-radius: 100vh;
    color: white;
    background: #f77707;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
  }
  #contact .p_sec02__form dl dt span.free {
    background: #60bf30;
  }
  #contact .p_sec02__form dl dd {
    position: relative;
  }
  #contact .p_sec02__form dl dd .caption {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 5px;
  }
  #contact .p_sec02__form dl dd .caption:before {
    color: #f92401;
    content: "※";
  }
  #contact .p_sec02__form dl dd input[type=text],
  #contact .p_sec02__form dl dd input[type=email],
  #contact .p_sec02__form dl dd input[type=tel],
  #contact .p_sec02__form dl dd textarea {
    background-color: #fff;
    border: 1px solid #1b3a59;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    font-weight: 400;
  }
  #contact .p_sec02__form dl dd input[type=text]::-webkit-input-placeholder, #contact .p_sec02__form dl dd input[type=email]::-webkit-input-placeholder, #contact .p_sec02__form dl dd input[type=tel]::-webkit-input-placeholder, #contact .p_sec02__form dl dd textarea::-webkit-input-placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd input[type=text]::-moz-placeholder, #contact .p_sec02__form dl dd input[type=email]::-moz-placeholder, #contact .p_sec02__form dl dd input[type=tel]::-moz-placeholder, #contact .p_sec02__form dl dd textarea::-moz-placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd input[type=text]:-ms-input-placeholder, #contact .p_sec02__form dl dd input[type=email]:-ms-input-placeholder, #contact .p_sec02__form dl dd input[type=tel]:-ms-input-placeholder, #contact .p_sec02__form dl dd textarea:-ms-input-placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd input[type=text]::-ms-input-placeholder, #contact .p_sec02__form dl dd input[type=email]::-ms-input-placeholder, #contact .p_sec02__form dl dd input[type=tel]::-ms-input-placeholder, #contact .p_sec02__form dl dd textarea::-ms-input-placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd input[type=text]::placeholder,
  #contact .p_sec02__form dl dd input[type=email]::placeholder,
  #contact .p_sec02__form dl dd input[type=tel]::placeholder,
  #contact .p_sec02__form dl dd textarea::placeholder {
    color: #aeb0b2;
  }
  #contact .p_sec02__form dl dd textarea {
    height: 100px;
  }
  #contact .p_sec02__form dl dd .radio {
    display: inline-grid;
    grid-template-columns: repeat(2, auto);
    gap: 15px;
  }
  #contact .p_sec02__form dl dd .radio label {
    font-size: 12px;
    font-weight: 500;
    color: #19a6a6;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  #contact .p_sec02__form dl dd .radio label input {
    opacity: 0;
    position: absolute;
  }
  #contact .p_sec02__form dl dd .radio label .check {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 2px solid #c92a30;
    background-color: #fff;
  }
  #contact .p_sec02__form dl dd .radio label:has(input:checked) .check {
    background-color: #c92a30;
  }
  #contact .p_sec02__form dl dd .error {
    font-size: 12px;
    font-weight: bold;
    color: red;
    margin-top: 10px;
  }
  #contact .p_sec02__form._confirm dl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #contact .p_sec02__form._confirm dl dt {
    font-size: 12px;
    line-height: 1.4;
  }
  #contact .p_sec02__form._confirm dl dd {
    font-size: 12px;
    line-height: 1.4;
  }
  #contact .p_sec02__form._confirm dl dd + dt {
    margin-top: 10px;
  }
  #contact .p_sec02__btn {
    text-align: center;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  #contact .p_sec02__btn .error {
    font-size: 12px;
    font-weight: bold;
    color: red;
    line-height: 1.4;
  }
  #contact .p_sec02__btn button {
    background: #53a629;
    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;
    width: 260px;
    height: 32px;
    border-radius: 100vh;
    font-size: 16px;
    font-weight: 500;
    color: white;
  }
  #contact .p_sec02__btn button.back {
    color: black;
    border: 1px solid #53a629;
    background: white;
  }
  #contact .p_sec02__pp .text {
    text-align: center;
    color: #53a629;
    font-size: 10px;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 20px;
  }
  #contact .p_sec02__pp .pparea {
    padding: 20px;
    border: 1px solid #1b3a59;
    background-color: #fff;
    margin-top: 20px;
  }
  #contact .p_sec02__pp .pparea__title {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 10px;
  }
  #contact .p_sec02__pp .pparea__text {
    font-size: 10px;
    line-height: 1.5;
  }
  #contact .p_sec02__pp .pparea__text2 {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    color: #53a629;
    line-height: 1.4;
  }
  #contact .p_sec02__pp .pparea__btn {
    text-align: center;
    margin-top: 20px;
  }
  #contact .p_sec02__pp .pparea__btn a {
    background: #53a629;
    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;
    width: 100px;
    height: 30px;
    border-radius: 100vh;
    font-size: 16px;
    color: white;
  }
}
/* -------------------------------------------------------------------
 TOPページ
------------------------------------------------------------------- */
@media print, screen and (min-width: 600px) {
  #pvp .p_sec01 {
    background: #fafafa;
    padding: 60px 0 120px;
  }
  #pvp .p_sec01__title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  #pvp .p_sec01__text {
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 120px;
  }
  #pvp .p_sec01__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 120px;
  }
  #pvp .p_sec01__blocks .block .title {
    background: #53a629;
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    padding: 15px;
    margin-bottom: 70px;
  }
  #pvp .p_sec01__blocks .block .textarea {
    padding: 0 160px;
    font-size: 20px;
    line-height: 1.6;
  }
  #pvp .p_sec01__blocks .block .textarea .text strong {
    font-weight: bold;
  }
  #pvp .p_sec01__blocks .block .textarea .text strong:before {
    content: "■";
    color: #193b6a;
  }
  #pvp .p_sec01__blocks .block .textarea .text2 {
    text-align: right;
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  #pvp .p_sec01 {
    background: #fafafa;
    padding: 40px 0 60px;
  }
  #pvp .p_sec01__title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  #pvp .p_sec01__text {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  #pvp .p_sec01__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  #pvp .p_sec01__blocks .block .title {
    background: #53a629;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 15px;
    margin-bottom: 30px;
  }
  #pvp .p_sec01__blocks .block .textarea {
    padding: 0 20px;
    font-size: 12px;
    line-height: 1.6;
  }
  #pvp .p_sec01__blocks .block .textarea .text strong {
    font-weight: bold;
  }
  #pvp .p_sec01__blocks .block .textarea .text strong:before {
    content: "■";
    color: #193b6a;
  }
  #pvp .p_sec01__blocks .block .textarea .text2 {
    text-align: right;
    margin-top: 10px;
  }
}
/* ---------- venobox --------- */
.vbox-overlay *, .vbox-overlay :after, .vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vbox-overlay * {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.vbox-overlay {
  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;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  -webkit-transform: translateZ(1000px);
  transform: translateZ(1000px);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.vbox-title {
  width: 100%;
  float: left;
  line-height: 28px;
  font-size: 9pt;
  padding: 6px 40px;
  display: none;
  left: 0;
}

.vbox-close, .vbox-title {
  height: 40px;
  text-align: center;
  overflow: hidden;
  position: fixed;
  z-index: 3;
}

.vbox-close {
  cursor: pointer;
  top: -1px;
  right: 0;
  width: 50px;
  padding: 6px;
  display: block;
  background-position: 10px center;
  font-size: 24px;
  line-height: 1;
}

.vbox-num {
  left: 0;
  height: 40px;
  display: block;
  line-height: 28px;
  font-size: 9pt;
  padding: 6px 10px;
  display: none;
}

.vbox-next, .vbox-num, .vbox-prev {
  cursor: pointer;
  position: fixed;
  overflow: hidden;
  z-index: 3;
}

.vbox-next, .vbox-prev {
  top: 50%;
  margin-top: -15px;
  display: block;
  width: 45px;
  height: 45px;
}

.vbox-next span, .vbox-prev span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: #b6b6b6;
  border-right-color: #b6b6b6;
  text-indent: -75pt;
  position: absolute;
  top: 8px;
  display: block;
}

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

.vbox-prev span {
  left: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.vbox-next span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 10px;
}

.vbox-inline {
  width: 420px;
  height: 315px;
  height: 70vh;
  padding: 10px;
  background: #fff;
  margin: 0 auto;
  overflow: auto;
  text-align: left;
}

.venoframe {
  max-width: 100%;
  width: 100%;
  border: 0;
  height: 260px;
  height: 70vh;
}

.venoframe.vbvid {
  height: 260px;
}

@media (min-width: 768px) {
  .vbox-inline, .venoframe {
    width: 90%;
    height: 360px;
    height: 70vh;
  }
  .venoframe.vbvid {
    width: 40pc;
    height: 360px;
  }
}
@media (min-width: 992px) {
  .vbox-inline, .venoframe {
    max-width: 75pc;
    width: 80%;
    height: 540px;
    height: 70vh;
  }
  .venoframe.vbvid {
    width: 60pc;
    height: 540px;
  }
}
.vbox-open {
  overflow: hidden;
}

.vbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  max-height: 100%;
}

.vbox-content {
  text-align: center;
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 10px;
}

.vbox-container img {
  max-width: 100%;
  height: auto;
}

.vbox-figlio {
  -webkit-box-shadow: 0 0 9pt rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 0 9pt rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: 100%;
  text-align: initial;
}

img.vbox-figlio {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.vbox-content.swipe-left {
  margin-left: -200px !important;
}

.vbox-content.swipe-right {
  margin-left: 200px !important;
}

.vbox-animated {
  webkit-transition: margin 0.3s ease-out;
  -webkit-transition: margin 0.3s ease-out;
  transition: margin 0.3s ease-out;
}/*# sourceMappingURL=style.css.map */