@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. */
  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. */
  -webkit-hyphens: auto;
          hyphens: auto;
  /* Prevent mobile browsers from scaling text sizes automatically. */
  -webkit-text-size-adjust: 100%;
  -moz-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. */
  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. */
  margin-inline-start: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ======================================================
// MARK: ## Forms
// ------------------------------------------------------ */
: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;
}

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

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

: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;
}

::-moz-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;
}

::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]), :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;
    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;
  }
}

/* ======================================================
// 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 {
  margin-block-end: var(--leading-trim);
}
.leading-trim::after {
  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: 5px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  scroll-padding-top: var(--hdr_height);
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
html:has(.is-gnavopen) {
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #454545;
  width: 375px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  body {
    width: 100%;
  }
}

a,
button {
  text-decoration: none;
  outline: none;
  color: #454545;
  transition: 0.3s ease;
}
a:hover,
button:hover {
  opacity: 0.7;
}

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 screen and (min-width: 769px) {
  ul,
  ol {
    display: inline-grid;
    -moz-column-gap: 2em;
         column-gap: 2em;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
  }
}

:where(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
}

.c_en {
  font-family: "Oswald", serif;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .l_hdr {
    padding: 1.5rem 2rem;
  }
  .l_hdr .logo {
    display: flex;
    align-items: center;
  }
  .l_hdr .logo img {
    width: 27rem;
  }
  .l_hdr .logo .text {
    font-size: 2.5rem;
    line-height: 1.333;
    letter-spacing: 2%;
    border-left: 1px solid #D9D9D9;
    margin-left: 2rem;
    padding: 0.5rem 0 0.5rem 2rem;
  }
}
/* ===============================================
PC
=============================================== */
@media screen and (min-width: 769px) {
  .l_hdr {
    padding: 3rem 2rem;
    max-width: 1010px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  .l_hdr .logo {
    display: flex;
    align-items: center;
  }
  .l_hdr .logo img {
    width: 37rem;
  }
  .l_hdr .logo .text {
    font-size: 2.8rem;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.333;
    letter-spacing: 2%;
    border-left: 1px solid #D9D9D9;
    margin-left: 2rem;
    padding: 0.5rem 0 0.5rem 2rem;
  }
  .l_hdr .c_cta__tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    width: 85.2rem;
  }
  .l_hdr .c_cta__tel .text {
    font-size: 2.8rem;
    line-height: 4.4rem;
    background: linear-gradient(117.59deg, #1ADE68 -0.09%, #00913A 73.07%);
    color: #fff;
    border-radius: 2rem;
    font-weight: 500;
    max-width: 30rem;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }
  .l_hdr .c_cta__tel .btn {
    text-align: center;
  }
  .l_hdr .c_cta__tel .btn a img {
    width: 67.1rem;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap {
    max-width: 53.6rem;
    width: 100%;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_img {
    width: 4rem;
    height: auto;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_img img {
    width: 100%;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_num_wrap {
    text-align: center;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_num_wrap .c_cta__tel_num_text {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    color: #454545;
    margin-bottom: 2rem;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_num_wrap .c_cta__tel_num {
    font-size: 7rem;
    font-size: clamp(28px, 3.5vw, 35px);
    font-weight: 700;
    line-height: 1;
    color: #00913A;
    margin-bottom: 0;
    margin-top: -1rem;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_time {
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 400;
    line-height: 1;
    color: #454545;
    text-align: center;
    position: relative;
    width: min(27.5vw, 265px);
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_time::before {
    content: "";
    height: 0.2rem;
    width: 3rem;
    width: clamp(1rem, 1vw, 3rem);
    background-color: #454545;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .l_hdr .c_cta__tel .c_cta__tel_wrap .c_cta__tel_time::after {
    content: "";
    height: 0.2rem;
    width: 3rem;
    width: clamp(1rem, 1vw, 3rem);
    background-color: #454545;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l_ftr {
    padding: 6.8rem 0 8rem;
    text-align: center;
  }
  .l_ftr .text {
    font-size: 2.8rem;
    line-height: 4rem;
  }
  .l_ftr .copy {
    margin-top: 6.8rem;
    font-size: 2.5rem;
  }
}
/* ===============================================
PC
=============================================== */
@media screen and (min-width: 769px) {
  .l_ftr {
    padding: 10rem 0 8rem;
    text-align: center;
  }
  .l_ftr .text {
    font-size: 3.6rem;
    line-height: 7rem;
    margin-bottom: 4rem;
  }
  .l_ftr .text-bottom {
    font-size: 3.6rem;
    line-height: 6rem;
  }
  .l_ftr .copy {
    margin-top: 10rem;
    font-size: 3.6rem;
    line-height: 8rem;
  }
}
.c_inner {
  max-width: 1010px;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .c_inner {
    max-width: 1010px;
  }
}
.c_inner._1000 {
  max-width: 1000px;
}
.c_inner._full {
  max-width: 100%;
}

@media screen and (min-width: 1025px) {
  .c_tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .c_tab_none {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .c_sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .c_pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .c_btnA {
    width: 51rem;
    height: 8.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dadad8;
    border-radius: 4rem;
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 4.3rem;
    text-align: center;
    box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.4);
  }
}
/* ===============================================
PC
=============================================== */
@media screen and (min-width: 769px) {
  .c_btnA {
    width: 96rem;
    height: 11.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dadad8;
    border-radius: 11.2rem;
    font-weight: 500;
    font-size: 4rem;
    line-height: 4.3rem;
    text-align: center;
    box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: 768px) {
  .c_titA {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  .c_titA:before, .c_titA:after {
    content: "";
    background-image: url(../images/fukidashi_left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 3rem;
    height: 4rem;
  }
  .c_titA:after {
    background-image: url(../images/fukidashi_right.svg);
  }
  .c_titB {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4.4rem;
    gap: 2rem;
  }
  .c_titB__text1 {
    font-size: 3.5rem;
    border-bottom: 2px dotted #454545;
    margin-inline: auto;
    padding: 0 2rem 1rem;
    font-weight: bold;
  }
  .c_titB__text1 .en {
    color: #ffff0f;
    font-size: 4.5rem;
  }
  .c_titB__text2 {
    font-size: 5.5rem;
    line-height: 6.5rem;
    font-weight: bold;
    text-align: center;
    color: #000000;
  }
  .c_titB__text3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .c_titB__text3 .before,
  .c_titB__text3 .after {
    background-color: #fff;
    border-radius: 100vh;
    font-size: 3.5rem;
    font-weight: 500;
    padding: 0.5rem 2rem 0.8rem;
  }
  .c_titB__text3 .before {
    color: #22B95E;
  }
  .c_titB__text3 .after {
    color: #00913A;
  }
  .c_titB__text3 .text {
    font-size: 3.5rem;
  }
  .c_titB__text4 {
    font-size: 3.5rem;
  }
  .c_titB._white {
    color: white;
  }
  .c_titB._white .c_titB__text1 {
    border-bottom-color: white;
  }
  .c_titB._white .c_titB__text2 {
    color: white;
  }
  .c_titC {
    text-align: center;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 3.5rem;
    line-height: 5rem;
    font-weight: bold;
    gap: 0.5em;
    margin-bottom: 5rem;
  }
  .c_titC .yellow {
    color: #ffff0f;
  }
  .c_titC:before, .c_titC:after {
    content: "";
    background-image: url(../images/fukidashi_left_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 3rem;
    height: 4rem;
  }
  .c_titC:after {
    background-image: url(../images/fukidashi_right_w.svg);
  }
}
/* ===============================================
PC
=============================================== */
@media screen and (min-width: 769px) {
  .c_titA {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  .c_titA:before, .c_titA:after {
    content: "";
    background-image: url(../images/pc/fukidashi_left.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 5.2rem;
    height: 7rem;
  }
  .c_titA:after {
    background-image: url(../images/pc/fukidashi_right.png);
  }
  .c_titB {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 7rem;
  }
  .c_titB__text1 {
    font-size: 4.8rem;
    border-bottom: 1rem #454545 dotted;
    margin-inline: auto;
    padding: 0 2rem 1rem;
    font-weight: 400;
    margin-bottom: 4rem;
  }
  .c_titB__text1 .en {
    color: #ffff0f;
    font-size: 6.8rem;
    font-family: "Oswald";
    font-weight: 700;
  }
  .c_titB__text2 {
    font-size: 8rem;
    line-height: 8rem;
    font-weight: bold;
    text-align: center;
    color: #000000;
  }
  .c_titB__text3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.8rem;
  }
  .c_titB__text3 .before,
  .c_titB__text3 .after {
    background-color: #fff;
    border-radius: 100vh;
    font-size: 5rem;
    font-weight: 500;
    padding: 1rem 2.5rem 1.5rem;
  }
  .c_titB__text3 .before {
    color: #22B95E;
  }
  .c_titB__text3 .after {
    color: #00913A;
  }
  .c_titB__text3 .text {
    font-size: 5rem;
  }
  .c_titB__text4 {
    font-size: 5rem;
    margin-bottom: 1rem;
  }
  .c_titB._white {
    color: white;
  }
  .c_titB._white .c_titB__text1 {
    border-bottom: 0.8rem white dotted;
    width: 68rem;
    text-align: center;
    line-height: 1.4;
  }
  .c_titB._white .c_titB__text2 {
    color: white;
  }
  .c_titB__wrap {
    margin-bottom: 3rem;
  }
  .c_titB__text1-b {
    font-size: 4.8rem;
    border-bottom: 1rem #454545 dotted;
    margin-inline: auto;
    padding: 0 2rem 1rem;
    font-weight: 700;
  }
  .c_titC {
    text-align: center;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 6.8rem;
    line-height: 10rem;
    font-weight: bold;
    gap: 0.5em;
    margin-bottom: 4rem;
  }
  .c_titC .yellow {
    color: #ffff0f;
  }
  .c_titC:before, .c_titC:after {
    content: "";
    background-image: url(../images/pc/fukidashi_left_w.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 5.2rem;
    height: 7rem;
  }
  .c_titC:after {
    background-image: url(../images/pc/fukidashi_right_w.png);
  }
}
.c_pankuzu {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  display: flex;
  align-items: center;
  overflow: auto;
}
.c_pankuzu > span {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: bold;
}
.c_pankuzu > span + span:before {
  margin: 0 5px;
  content: "/";
  color: white;
}
.c_pankuzu > span > a,
.c_pankuzu > span > span {
  color: white;
}
.wp-block-post-content {
  max-width: 750px;
  margin: 0 auto;
}

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

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

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

@media screen and (max-width: 768px) {
  .c_cta {
    background: url(../images/cta_bg@2x.png) center no-repeat, linear-gradient(180deg, #fff15b 0%, #fff155 100%);
    background-size: cover, auto;
    padding: 4.8rem 0 2rem;
  }
  .c_cta__text {
    font-weight: 700;
    font-size: 5.5rem;
    line-height: 118%;
    text-align: center;
    color: #ff3300;
    margin-bottom: 6rem;
  }
  .c_cta__resume {
    background-color: #fff;
    border-radius: 1rem;
    padding: 4.9rem 2rem 2rem;
    position: relative;
    margin-bottom: 2rem;
  }
  .c_cta__resume .title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c_cta__resume .title span {
    background: #00913a;
    border-radius: 100vh;
    color: #fff15a;
    font-size: 2.8rem;
    font-weight: bold;
    padding: 1.6rem 3rem;
  }
  .c_cta__resume .block {
    background: url(../images/cta_women@2x.png) bottom right no-repeat;
    background-size: 31.8rem;
    margin-right: -2rem;
    padding: 2.1rem 0 4.4rem;
  }
  .c_cta__resume .block .textarea {
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
  }
  .c_cta__resume .block .textarea .text1 {
    font-size: 6.4rem;
    line-height: 7rem;
    letter-spacing: -0.03em;
    background: linear-gradient(94.15deg, #1ade68 12.03%, #00913a 83.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .c_cta__resume .block .textarea .text2 {
    font-size: 3.5rem;
    line-height: 7.1rem;
  }
  .c_cta__resume .block .textarea .text3 {
    font-size: 4.9rem;
  }
  .c_cta__resume .block .textarea .text3 .green {
    font-size: 6.6rem;
    color: #22b95e;
  }
  .c_cta__resume .block .image {
    margin-right: -2rem;
  }
  .c_cta__resume .block .image img {
    width: 31.8rem;
  }
  .c_cta__resume .btn {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .c_cta__resume .btn a img {
    width: 67.1rem;
  }
  .c_cta__resume .points {
    border: 0.4rem dotted #d9d9d9;
    border-radius: 2rem;
    padding: 2rem;
  }
  .c_cta__resume .points .stitle {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 1em;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  .c_cta__resume .points .stitle:before, .c_cta__resume .points .stitle:after {
    content: "";
    background: #454545;
    height: 1px;
    width: 100%;
  }
  .c_cta__resume .points .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c_cta__resume .points .flex .list {
    display: inline-grid;
    -moz-column-gap: 2em;
         column-gap: 2em;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
  }
  .c_cta__resume .points .flex .list li {
    display: flex;
    font-size: 2.6rem;
    line-height: 3.6rem;
    gap: 1.3rem;
    align-items: center;
  }
  .c_cta__resume .points .flex .list li:before {
    content: "";
    background: url(../images/cta_check.svg) center no-repeat;
    background-size: contain;
    width: 2.9rem;
    height: 2.5rem;
  }
  .c_cta__resume .points .flex .image {
    margin-right: -1rem;
  }
  .c_cta__resume .points .flex .image img {
    width: 27.2rem;
  }
  .c_cta__text2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
  }
  .c_cta__tel {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.3rem 2rem 2rem;
  }
  .c_cta__tel .text {
    text-align: center;
    font-size: 2.5rem;
    line-height: 3.4rem;
    margin-bottom: 1.5rem;
  }
  .c_cta__tel .btn {
    text-align: center;
  }
  .c_cta__tel .btn a img {
    width: 67.1rem;
  }
}
/* ===============================================
PC
=============================================== */
@media screen and (min-width: 769px) {
  .c_cta {
    background: url(../images/pc/cta_bg-pc.png) center top no-repeat, linear-gradient(180deg, #fff15b 0%, #fff155 100%);
    background-size: cover;
    width: 100%;
    padding: 9rem 0 6.8rem;
  }
  .c_cta__text {
    font-weight: 700;
    font-size: 7rem;
    line-height: 118%;
    text-align: center;
    color: #ff3300;
    margin-bottom: 8.2rem;
  }
  .c_cta__resume {
    background-color: #fff;
    border-radius: 2rem;
    padding: 4.9rem 2rem 3.4rem;
    position: relative;
    margin-bottom: 6rem;
  }
  .c_cta__resume .title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c_cta__resume .title span {
    background: #00913a;
    border-radius: 100vh;
    color: #fff15a;
    font-size: 3.6rem;
    font-weight: bold;
    padding: 1.6rem 3rem;
    max-width: 108rem;
    width: 100%;
    text-align: center;
  }
  .c_cta__resume .block {
    background: url(../images/pc/cta_women-pc.png) bottom right no-repeat;
    background-size: 28rem;
    margin-right: -2rem;
    padding: 2rem 0 3rem;
    max-width: 600px;
    margin: auto;
  }
  .c_cta__resume .block .textarea {
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
  }
  .c_cta__resume .block .textarea .text1 {
    font-size: 8.4rem;
    line-height: 7rem;
    letter-spacing: -0.03em;
    background: linear-gradient(94.15deg, #1ade68 12.03%, #00913a 83.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .c_cta__resume .block .textarea .text2 {
    font-size: 4.4rem;
    line-height: 7.1rem;
  }
  .c_cta__resume .block .textarea .text3 {
    font-size: 4.9rem;
    line-height: 1.5;
  }
  .c_cta__resume .block .textarea .text3 .green {
    font-size: 6.4rem;
    color: #22b95e;
  }
  .c_cta__resume .block .image {
    margin-right: -2rem;
  }
  .c_cta__resume .block .image img {
    width: 31.8rem;
  }
  .c_cta__resume .btn {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -0.1rem;
  }
  .c_cta__resume .btn a img {
    max-width: 680px;
    width: 100%;
  }
  .c_cta__resume .points {
    border: 0.8rem dotted #d9d9d9;
    border-radius: 2rem;
    padding: 2.6rem 4rem 3rem;
    max-width: 136rem;
    width: 100%;
    margin: auto;
  }
  .c_cta__resume .points .stitle {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 1em;
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  .c_cta__resume .points .stitle:before, .c_cta__resume .points .stitle:after {
    content: "";
    background: #454545;
    height: 1px;
    width: 100%;
  }
  .c_cta__resume .points .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c_cta__resume .points .flex .list li {
    display: flex;
    font-size: 2.8rem;
    line-height: 4.4rem;
    gap: 1.3rem;
    align-items: center;
  }
  .c_cta__resume .points .flex .list li:before {
    content: "";
    background: url(../images/cta_check.svg) center no-repeat;
    background-size: contain;
    width: 2.9rem;
    height: 2.5rem;
  }
  .c_cta__resume .points .flex .image {
    margin-right: -1rem;
  }
  .c_cta__resume .points .flex .image img {
    width: 38.8rem;
  }
  .c_cta__text2 {
    font-size: 3.2rem;
    line-height: 3.5rem;
    padding: 0 2rem;
    max-width: 202rem;
    width: 100%;
    margin: auto;
    line-height: 5.6rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .c_cta__tel {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  .c_cta__tel .text {
    font-size: 3.6rem;
    line-height: 4.4rem;
    background: linear-gradient(117.59deg, #1ADE68 -0.09%, #00913A 73.07%);
    color: #fff;
    border-radius: 2rem;
    font-weight: 500;
    max-width: 40rem;
    width: 100%;
    text-align: center;
    padding: 3.4rem 3rem;
  }
  .c_cta__tel .btn {
    text-align: center;
  }
  .c_cta__tel .btn a img {
    width: 67.1rem;
  }
  .c_cta__tel .c_cta__tel_wrap {
    max-width: 83.2rem;
    width: 100%;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_img {
    width: 7rem;
    height: auto;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_img img {
    width: 100%;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_num_wrap {
    text-align: center;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_num_wrap .c_cta__tel_num_text {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    color: #454545;
    margin-bottom: 2rem;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_inner .c_cta__tel_num_wrap .c_cta__tel_num {
    font-size: 10.8rem;
    font-weight: 700;
    line-height: 1;
    color: #00913A;
    margin-bottom: 2rem;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_time {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
    color: #454545;
    text-align: center;
    position: relative;
    width: 82.8rem;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_time::before {
    content: "";
    height: 0.2rem;
    width: 10.8rem;
    background-color: #454545;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .c_cta__tel .c_cta__tel_wrap .c_cta__tel_time::after {
    content: "";
    height: 0.2rem;
    width: 10.8rem;
    background-color: #454545;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .c_company__title {
    text-align: center;
    font-size: 5.5rem;
    font-weight: bold;
    margin-bottom: 3.7rem;
  }
  .c_company__table {
    border-radius: 1rem;
    border: 0.4rem solid #cccccc;
  }
  .c_company__table table tr th,
  .c_company__table table tr td {
    vertical-align: middle;
    border-bottom: 1px solid #cccccc;
    font-size: 2.8rem;
    line-height: 3.8rem;
    padding: 2rem 3rem;
    font-weight: normal;
  }
  .c_company__table table tr th small,
  .c_company__table table tr td small {
    font-size: 2.2rem;
  }
  .c_company__table table tr th ol,
  .c_company__table table tr td ol {
    list-style-type: decimal;
    list-style-position: inside;
  }
  .c_company__table table tr th {
    border-right: 2px solid #cccccc;
    white-space: nowrap;
    background: #e6fff0;
  }
  .c_company__text {
    font-size: 2.8rem;
    line-height: 4rem;
    text-align: center;
    margin-top: 4rem;
  }
}
/* ===============================================
PC
=============================================== */
@media screen and (min-width: 769px) {
  .c_company__title {
    text-align: center;
    font-size: 8rem;
    font-weight: bold;
    margin-bottom: 7.2rem;
  }
  .c_company__table {
    border-radius: 2rem;
    border: 0.8rem solid #cccccc;
    max-width: 163.6rem;
    width: 100%;
    margin: auto;
  }
  .c_company__table table tr th,
  .c_company__table table tr td {
    vertical-align: middle;
    border-bottom: 2px solid #cccccc;
    font-size: 3.6rem;
    line-height: 5.6rem;
    padding: 2rem 7rem;
    font-weight: normal;
  }
  .c_company__table table tr th small,
  .c_company__table table tr td small {
    font-size: 2.8rem;
  }
  .c_company__table table tr th ol,
  .c_company__table table tr td ol {
    list-style-type: decimal;
    list-style-position: inside;
  }
  .c_company__table table tr .br1 {
    border-radius: 1rem 0 0 0;
  }
  .c_company__table table tr .bb0 {
    border-bottom: 0px;
    border-radius: 0 0 0 1rem;
  }
  .c_company__table table tr th {
    border-right: 2px solid #cccccc;
    white-space: nowrap;
    background: #e6fff0;
  }
  .c_company__text {
    font-size: 3.6rem;
    line-height: 6rem;
    text-align: center;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p_fixbnr {
    position: fixed;
    bottom: 0%;
    left: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    transition: 0.3s ease;
  }
  .p_fixbnr a {
    display: block;
  }
  .p_fixbnr a img {
    width: 75rem;
  }
  .p_fixbnr.is-hide {
    opacity: 0;
    visibility: hidden;
  }
  .p_sec01 {
    background: url(../images/mv_bg@2x.jpg) center bottom no-repeat;
    background-size: cover;
    padding-bottom: 2rem;
  }
  .p_sec01 .mv {
    margin-bottom: 3.5rem;
  }
  .p_sec01 .textarea {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 2rem 1.5rem 4rem;
    margin-top: -7rem;
  }
  .p_sec01 .textarea .text1 {
    color: white;
    font-size: 3.3rem;
    line-height: 4rem;
    font-weight: bold;
    margin-right: -10rem;
  }
  .p_sec01 .textarea .text1 span {
    color: #ffff0f;
  }
  .p_sec01 .textarea .text2 {
    color: white;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: right;
  }
  .p_sec01 .slider .swiper-wrapper {
    transition-timing-function: linear;
  }
  .p_sec01 .slider .swiper-slide {
    position: relative;
    padding: 0 0.5rem;
  }
  .p_sec01 .slider .swiper-slide img {
    width: 100%;
  }
  .p_sec01 .slider .swiper-slide .name {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    right: 1.4rem;
    background: #00913a;
    border-radius: 0.5rem;
    color: white;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.03em;
    font-weight: bold;
    padding: 0.5rem;
  }
  .p_sec02__head {
    background: url(../images/nayami_bg@2x.jpg) center no-repeat;
    background-size: cover;
    padding: 6.8rem 0 22rem;
  }
  .p_sec02__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .p_sec02__list img {
    display: block;
  }
  .p_sec02__list .img1 {
    margin-left: auto;
    width: 65rem;
  }
  .p_sec02__list .img2 {
    width: 59.4rem;
  }
  .p_sec02__list .img3 {
    margin-left: auto;
    width: 62rem;
  }
  .p_sec02__foot {
    background: #d3ec6c;
    padding: 1px 0 9rem;
  }
  .p_sec02__green {
    border-radius: 1rem;
    background: #00913a;
    padding: 5.5rem 2rem 5rem;
    margin-top: -15rem;
  }
  .p_sec02__title2 {
    color: white;
    font-weight: bold;
    font-size: 3.5rem;
    line-height: 1.4;
    color: white;
    text-align: center;
    margin-bottom: 3.2rem;
  }
  .p_sec02__title2 .yellow {
    color: #ffff0f;
    font-size: 5.5rem;
  }
  .p_sec02__image {
    text-align: center;
    margin-bottom: 1.1rem;
  }
  .p_sec02__image img {
    width: 67rem;
  }
  .p_sec02__text2 {
    color: white;
    text-align: center;
    font-size: 3rem;
    line-height: 4.3rem;
  }
  .p_sec03 {
    background: #fbf9f3;
    padding: 6.8rem 0 8rem;
  }
  .p_sec03 .c_titB {
    margin-bottom: 8rem;
  }
  .p_sec03__logo {
    text-align: center;
    margin-bottom: 6rem;
  }
  .p_sec03__logo img {
    width: 54rem;
  }
  .p_sec03__textarea {
    background-color: #fff;
    border-radius: 1rem;
    text-align: center;
    padding: 5rem 1rem;
    margin-bottom: 6rem;
  }
  .p_sec03__textarea p {
    font-size: 3.5rem;
    line-height: 5rem;
  }
  .p_sec03__textarea p .green {
    color: #00913a;
    font-weight: bold;
  }
  .p_sec03__prof {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 6rem;
    margin-left: 2rem;
  }
  .p_sec03__prof .textarea {
    width: 26.5rem;
  }
  .p_sec03__prof .textarea .text1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.7rem;
    color: black;
  }
  .p_sec03__prof .textarea .text2 {
    padding: 2rem 0 2rem;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
    gap: 0.5rem;
    color: black;
  }
  .p_sec03__prof .textarea .text2 small {
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.03em;
  }
  .p_sec03__prof .textarea .text2 strong {
    font-size: 4.5rem;
    font-weight: 400;
  }
  .p_sec03__prof .textarea .text3 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 500;
  }
  .p_sec03__prof .image img {
    width: 37rem;
    border-radius: 1rem;
  }
  .p_sec03__message {
    background: #00913a;
    border-radius: 1rem;
    padding: 5rem 2rem 6rem;
  }
  .p_sec03__message .textarea {
    background-color: #fff;
    border-radius: 1rem;
    padding: 5rem 2rem;
  }
  .p_sec03__message .textarea .stitle {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 4rem;
    line-height: 4.6rem;
    font-weight: bold;
    gap: 0.5rem;
    margin-bottom: 5rem;
  }
  .p_sec03__message .textarea .stitle:before, .p_sec03__message .textarea .stitle:after {
    content: "";
    background-image: url(../images/inyou_left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 3.1rem;
    height: 2.5rem;
    transform: translateY(1rem);
  }
  .p_sec03__message .textarea .stitle:after {
    background-image: url(../images/inyou_right.svg);
  }
  .p_sec03__message .textarea .image {
    margin-bottom: 3.6rem;
  }
  .p_sec03__message .textarea .image img {
    width: 63rem;
    border-radius: 1rem;
  }
  .p_sec03__message .textarea .text {
    font-size: 2.8rem;
    line-height: 4.1rem;
  }
  .p_sec03__message .btn {
    margin-top: 2rem;
    text-align: center;
  }
  .p_sec03_modal {
    padding: 5rem 2rem;
    overflow: auto;
    width: 375px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p_sec03_modal {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p_sec03_modal::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .p_sec03_modal .inner {
    background-color: #fff;
    border-radius: 1rem;
    padding: 5.3rem 2rem 5.8rem;
  }
  .p_sec03_modal .btn {
    margin-top: 3.8rem;
    text-align: center;
  }
  .p_sec03_modal .btn .c_btnA {
    width: 35rem;
  }
  .p_sec04 {
    background: #d3ec6c;
    padding: 6.8rem 0 8rem;
  }
  .p_sec04 .c_titB {
    gap: 2rem;
  }
  .p_sec04__text {
    font-size: 3rem;
    line-height: 4.3rem;
    padding: 0 2rem;
    margin-bottom: 3.5rem;
  }
  .p_sec04__before, .p_sec04__after {
    padding: 4rem 2rem 2rem;
    border-radius: 1rem;
  }
  .p_sec04__before {
    background: #22b95e;
  }
  .p_sec04__before .p_sec04__tag {
    color: #22b95e;
  }
  .p_sec04__after {
    background: #00913a;
    margin-top: 3rem;
  }
  .p_sec04__after .p_sec04__tag {
    color: #00913a;
  }
  .p_sec04__tag {
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    border-radius: 100vh;
    font-size: 3.5rem;
    font-weight: 500;
    padding: 0.5rem 2rem 0.8rem;
    margin-inline: auto;
    margin-bottom: 2.8rem;
  }
  .p_sec04__block + .p_sec04__block {
    margin-top: 3rem;
  }
  .p_sec04__block .c_titC {
    margin-bottom: 3rem;
  }
  .p_sec04__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .p_sec04__list li {
    padding: 2rem 2rem 3rem;
    background-color: #fff;
    border-radius: 2rem;
  }
  .p_sec04__list .num {
    text-align: center;
    color: #d3ec6c;
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  .p_sec04__list .title {
    font-size: 4rem;
    line-height: 6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .p_sec04__list .title .red {
    color: #ff3300;
  }
  .p_sec04__list .title .big {
    font-size: 6rem;
  }
  .p_sec04__list .image {
    text-align: center;
    margin-bottom: 4rem;
  }
  .p_sec04__list .image img {
    width: 63rem;
    border-radius: 1rem;
  }
  .p_sec04__list .stitle {
    text-align: center;
    font-size: 3.5rem;
    line-height: 4rem;
    margin-bottom: 2rem;
    font-weight: bold;
  }
  .p_sec04__list .text {
    font-size: 2.8rem;
    line-height: 4.3rem;
    letter-spacing: 0.03em;
  }
  .p_sec05 {
    padding: 7.4rem 0 8rem;
  }
  .p_sec05__text {
    font-size: 3rem;
    line-height: 4.3rem;
    padding: 0 2rem;
    margin-bottom: 4rem;
  }
  .p_sec05__block {
    border-radius: 1rem;
    background: #eeeeee;
    padding: 3rem 2rem 1rem;
  }
  .p_sec05__block .c_titB {
    margin-bottom: 4.8rem;
  }
  .p_sec05__block .flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 1rem 0 3rem;
  }
  .p_sec05__block .flex .textarea {
    padding-bottom: 2.3rem;
  }
  .p_sec05__block .flex .textarea ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .p_sec05__block .flex .textarea ul li .text1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 5.7rem;
    position: relative;
  }
  .p_sec05__block .flex .textarea ul li .text1 small {
    font-size: 2.3rem;
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
    line-height: 1;
    font-weight: bold;
  }
  .p_sec05__block .flex .textarea ul li .text2 {
    font-size: 3.2rem;
  }
  .p_sec05__block .flex .textarea ul li .text3 {
    text-align: right;
  }
  .p_sec05__block .flex .textarea ul li .text3 .c_en {
    font-size: 4.4rem;
    font-weight: normal;
    letter-spacing: 0.02em;
    margin-right: 0.3rem;
  }
  .p_sec05__block .flex .textarea ul li .text3 .yen {
    width: 2em;
    text-align: right;
    font-size: 2.5rem;
    font-weight: 500;
    display: inline-block;
  }
  .p_sec05__block .flex .icon img {
    width: 20rem;
  }
  .p_sec05__block .table {
    border-radius: 1rem;
    border: 0.4rem solid #cccccc;
    background-color: #fff;
  }
  .p_sec05__block .table table tr.green {
    color: #00913a;
  }
  .p_sec05__block .table table td {
    border: 1px solid #cccccc;
    padding: 2rem;
    vertical-align: middle;
  }
  .p_sec05__block .table table td:first-child {
    white-space: nowrap;
  }
  .p_sec05__block .table table td:last-child {
    width: 100%;
    text-align: right;
  }
  .p_sec05__block .table table thead td {
    background: #e6fff0;
    font-weight: bold;
  }
  .p_sec05__block .table table thead td:first-child {
    border-radius: 0.6rem 0 0 0;
  }
  .p_sec05__block .table table thead td:last-child {
    border-radius: 0 0.6rem 0 0;
  }
  .p_sec05__block .table table tfoot td {
    background: #00913a;
    color: white;
    font-weight: bold;
  }
  .p_sec05__block .table table tfoot td:first-child {
    border-radius: 0 0 0 0.6rem;
  }
  .p_sec05__block .table table tfoot td:last-child {
    border-radius: 0 0 0.6rem 0;
  }
  .p_sec05__block .table .text1 {
    font-size: 3rem;
  }
  .p_sec05__block .table .text2 {
    font-size: 2.7rem;
  }
  .p_sec05__block .table .text3 {
    font-size: 3.2rem;
  }
  .p_sec05__block .table .text4 {
    font-size: 4.5rem;
  }
  .p_sec05__block .table .text5 {
    font-size: 3.5rem;
  }
  .p_sec05__block .table .text6 {
    font-size: 5.7rem;
  }
  .p_sec05__block .table .yen {
    font-weight: normal;
    font-size: 2.5rem;
  }
  .p_sec05__block .cap {
    text-align: right;
    font-size: 2rem;
    margin-top: 0.8rem;
    color: #000000;
  }
  .p_sec06 {
    padding: 5rem 0 7.7rem;
    background: #00913a;
  }
  .p_sec06 .c_titB {
    gap: 0.5rem;
    margin-bottom: 6rem;
  }
  .p_sec06 .c_titB__text1 {
    margin-bottom: 1rem;
  }
  .p_sec06 .swiper-slide {
    padding: 0 1rem;
    height: 100%;
  }
  .p_sec06 .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4.3rem;
    gap: 4.3rem;
  }
  .p_sec06 .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
    opacity: 1;
    background-color: #fff;
    margin: 0;
  }
  .p_sec06 .swiper-pagination-bullet-active {
    background: #ffff0f;
  }
  .p_sec06 .swiper-button-prev,
  .p_sec06 .swiper-button-next {
    width: auto;
    height: auto;
    margin: 0;
    top: 43.7rem;
  }
  .p_sec06 .swiper-button-prev img,
  .p_sec06 .swiper-button-next img {
    width: 11rem;
    filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
  }
  .p_sec06 .swiper-button-prev:after,
  .p_sec06 .swiper-button-next:after {
    display: none;
  }
  .p_sec06 .swiper-button-prev {
    left: 1rem;
  }
  .p_sec06 .swiper-button-next {
    right: 1rem;
  }
  .p_sec06__voice {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem 2rem 3.5rem;
    height: 100%;
  }
  .p_sec06__voice .flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 6rem;
    margin-left: 2rem;
  }
  .p_sec06__voice .flex .textarea {
    width: 22rem;
  }
  .p_sec06__voice .flex .textarea .text1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.7rem;
    color: black;
  }
  .p_sec06__voice .flex .textarea .text2 {
    padding: 2rem 0 2rem;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 1.2rem;
    color: black;
    font-size: 2.5rem;
    line-height: 3.1rem;
    font-weight: 500;
  }
  .p_sec06__voice .flex .textarea .text3 {
    font-size: 4rem;
    line-height: 3.5rem;
  }
  .p_sec06__voice .flex .textarea .text3 small {
    font-size: 2rem;
    font-weight: 500;
  }
  .p_sec06__voice .flex .image img {
    width: 35rem;
    border-radius: 2rem;
  }
  .p_sec06__voice .faqs {
    margin-top: 4.8rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 2rem;
  }
  .p_sec06__voice .faqs li .q {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }
  .p_sec06__voice .faqs li .q .en {
    font-size: 7.5rem;
    font-weight: bold;
    color: #d3ec6c;
    letter-spacing: 0.01em;
  }
  .p_sec06__voice .faqs li .q .text {
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: bold;
  }
  .p_sec06__voice .faqs li .ans {
    font-size: 2.8rem;
    line-height: 4.3rem;
  }
  .p_sec07 {
    margin-top: 7.4rem;
  }
  .p_sec07__bg {
    background: #d3ec6c;
    padding: 1px 0 8rem;
    margin-top: 17.4rem;
  }
  .p_sec07__fukidashi {
    text-align: center;
    margin-top: -13rem;
    margin-bottom: 4rem;
  }
  .p_sec07__fukidashi img {
    width: 71rem;
  }
  .p_sec07__block1 {
    padding: 1rem 3rem 4rem 5rem;
    background: #fbf9f3;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }
  .p_sec07__block1 .image {
    text-align: center;
    margin: 0 -1rem 3rem -3rem;
  }
  .p_sec07__block1 .image img {
    width: 67rem;
  }
  .p_sec07__block1 .title {
    font-size: 3.5rem;
    font-weight: bold;
  }
  .p_sec07__block1 .title .red {
    color: #ff3300;
  }
  .p_sec07__block1 .text {
    font-size: 2.9rem;
    line-height: 4.2rem;
    margin-top: 2rem;
  }
  .p_sec07__block2 {
    border-radius: 1rem;
    background: #22b95e;
    padding: 4.8rem 2rem 2.5rem;
  }
  .p_sec07__block2 .list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .p_sec07__block2 .list li {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 2rem;
  }
  .p_sec07__block2 .list .head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  .p_sec07__block2 .list .head .icon img {
    width: 20rem;
  }
  .p_sec07__block2 .list .num {
    font-size: 6rem;
    font-weight: bold;
    color: #d3ec6c;
    margin-bottom: 1rem;
  }
  .p_sec07__block2 .list .title {
    font-size: 4rem;
    line-height: 5.8rem;
  }
  .p_sec07__block2 .list .title .red {
    font-size: 6rem;
    font-weight: bold;
    color: #ff3300;
  }
  .p_sec07__block2 .list .stitle {
    font-size: 3.5rem;
    font-weight: bold;
    color: #202020;
    margin-bottom: 2rem;
  }
  .p_sec07__block2 .list .text {
    font-size: 2.9rem;
    line-height: 4.2rem;
  }
  .p_sec08 {
    background: url(../images/hard_bg@2x.jpg) center no-repeat;
    background-size: cover;
    padding: 6.8rem 0 8rem;
  }
  .p_sec08__fukidashi {
    text-align: center;
    margin-bottom: 6rem;
  }
  .p_sec08__fukidashi img {
    width: 71rem;
  }
  .p_sec08__text {
    padding: 0 2rem;
    font-size: 3rem;
    line-height: 4.3rem;
    margin-bottom: 5rem;
  }
  .p_sec08__fig {
    border-radius: 2rem;
    background: #00913a;
    padding: 4.5rem 2rem 5.5rem;
  }
  .p_sec08__fig .c_titC {
    margin-bottom: 3rem;
  }
  .p_sec08__fig .image {
    text-align: center;
  }
  .p_sec08__fig .image img {
    width: 67rem;
  }
  .p_sec08__fig .text {
    font-size: 3rem;
    line-height: 4.3rem;
    color: white;
    text-align: center;
    margin-top: 1rem;
  }
  .p_sec09 {
    padding: 5.6rem 0 8rem;
  }
  .p_sec09__flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .p_sec09__flow li .head {
    text-align: center;
    background: #00913a;
    padding: 2.6rem 0 3rem;
    border-radius: 1rem 1rem 0 0;
  }
  .p_sec09__flow li .head .num {
    font-size: 6rem;
    font-weight: bold;
    color: #d3ec6c;
    margin-bottom: 1.5rem;
  }
  .p_sec09__flow li .head .title {
    color: white;
    font-size: 4rem;
    font-weight: bold;
  }
  .p_sec09__flow li .textarea {
    border-radius: 0 0 1rem 1rem;
    border: 0.5rem solid #cccccc;
    border-top-width: 0;
    padding: 2rem 4rem;
  }
  .p_sec09__flow li .textarea .text {
    font-size: 2.9rem;
    line-height: 4.2rem;
  }
  .p_sec09__flow li .textarea .text .red {
    font-weight: bold;
    color: #ff3300;
  }
  .p_sec09__flow li .textarea .text .bold {
    font-weight: bold;
  }
  .p_sec09__flow li .textarea .btn {
    margin: 1.5rem -2rem 0;
    text-align: center;
  }
  .p_sec09__flow li .textarea .btn a img {
    width: 67.1rem;
  }
  .p_sec09__flow .arrow {
    width: 8rem;
    height: 4rem;
    background: #ff3300;
    margin: 0 auto;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .p_sec10 {
    padding: 7.3rem 0 8rem;
    background: #eeeeee;
  }
  .p_sec10__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .p_sec10__list details[open] summary {
    box-shadow: none;
  }
  .p_sec10__list details[open] summary .arrow {
    transform: scaleY(-1);
  }
  .p_sec10__list summary {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem 3rem;
    box-shadow: 0 0.5rem 0 rgba(143, 143, 142, 0.2);
  }
  .p_sec10__list summary .icon {
    flex-shrink: 0;
    font-size: 7.5rem;
    font-weight: 500;
    color: #d3ec6c;
  }
  .p_sec10__list summary .text {
    font-size: 3.5rem;
    line-height: 4.2rem;
  }
  .p_sec10__list summary .arrow {
    flex-shrink: 0;
    margin-left: auto;
    width: 3.6rem;
  }
  .p_sec10__list .answer {
    padding: 2rem;
    box-shadow: 0 0.5rem 0 rgba(143, 143, 142, 0.3);
    border-radius: 1rem;
  }
  .p_sec10__list .answer .border {
    border: 0.6rem dotted hsla(60, 0%, 56%, 0.6);
    border-radius: 1rem;
    padding: 2rem;
  }
  .p_sec10__list .answer .titlearea {
    color: #ff3300;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
  }
  .p_sec10__list .answer .titlearea .icon {
    font-size: 7.5rem;
    font-weight: bold;
    flex-shrink: 0;
  }
  .p_sec10__list .answer .titlearea .title {
    font-size: 4rem;
    line-height: 5.6rem;
    font-weight: bold;
    padding-top: 1rem;
  }
  .p_sec10__list .answer .text {
    font-size: 2.8rem;
    line-height: 4.3rem;
  }
  .p_sec11 {
    background: linear-gradient(180deg, #fff15b 0%, #fff155 100%);
    padding: 7rem 0 9rem;
  }
  .p_sec11 .c_titB {
    margin-bottom: 6rem;
  }
  .p_sec11__form {
    background-color: #fff;
    padding: 2rem 2rem 4rem;
    border-radius: 1rem;
    margin-bottom: 8rem;
  }
  .p_sec11__form .num {
    text-align: center;
    color: #d3ec6c;
    font-weight: bold;
    font-size: 10rem;
    margin-bottom: 2rem;
  }
  .p_sec11__form .title {
    margin-bottom: 3.6rem;
    text-align: center;
    font-size: 7rem;
    font-weight: bold;
  }
  .p_sec11__form .dots {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.3rem;
    margin-bottom: 4.8rem;
  }
  .p_sec11__form .dots span {
    width: 2rem;
    height: 2rem;
    opacity: 1;
    background-color: #cccccc;
    margin: 0;
    border-radius: 50%;
  }
  .p_sec11__form .dots .is-active {
    background: #d3ec6c;
  }
  .p_sec11__form .errors {
    font-size: 2.8rem;
    line-height: 4.3rem;
    color: red;
    margin-bottom: 3rem;
  }
  .p_sec11__form .errors:empty {
    display: none;
  }
  .p_sec11__form dl {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 162.6rem;
    width: 100%;
    margin: auto;
  }
  .p_sec11__form dl dt {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    font-size: 3.6rem;
    font-weight: normal;
    margin-bottom: 3rem;
  }
  .p_sec11__form dl dt .req {
    padding: 0.5rem 1rem;
    background: #ff3300;
    color: white;
    font-size: 2.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
  }
  .p_sec11__form dl dd label:has(input[type=radio]), .p_sec11__form dl dd label:has(input[type=checkbox]) {
    display: flex;
    align-items: center;
    font-size: 3.5rem;
    gap: 2rem;
    background: #f8f8f8;
    border: 1px solid #cccccc;
    border-radius: 1rem;
    padding: 3.6rem 4rem;
  }
  .p_sec11__form dl dd label:has(input[type=radio]) input, .p_sec11__form dl dd label:has(input[type=checkbox]) input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .p_sec11__form dl dd label:has(input[type=radio]) .input, .p_sec11__form dl dd label:has(input[type=checkbox]) .input {
    background: #cccccc;
    border-radius: 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
    position: relative;
  }
  .p_sec11__form dl dd label:has(input[type=radio]) .input:after, .p_sec11__form dl dd label:has(input[type=checkbox]) .input:after {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    background: url(../images/form_check.svg) center;
    background-size: contain;
    width: 3.8rem;
    height: 2.8rem;
    opacity: 0;
  }
  .p_sec11__form dl dd label:has(input[type=radio]):has(:checked), .p_sec11__form dl dd label:has(input[type=checkbox]):has(:checked) {
    background: #d3ec6c;
  }
  .p_sec11__form dl dd label:has(input[type=radio]):has(:checked) .input, .p_sec11__form dl dd label:has(input[type=checkbox]):has(:checked) .input {
    background-color: #fff;
  }
  .p_sec11__form dl dd label:has(input[type=radio]):has(:checked) .input:after, .p_sec11__form dl dd label:has(input[type=checkbox]):has(:checked) .input:after {
    opacity: 1;
  }
  .p_sec11__form dl dd label:has(input[type=checkbox]) {
    justify-content: center;
  }
  .p_sec11__form dl dd .radio {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .p_sec11__form dl dd input[type=text],
  .p_sec11__form dl dd input[type=email],
  .p_sec11__form dl dd input[type=tel],
  .p_sec11__form dl dd select {
    font-size: 3.5rem;
    background: #f8f8f8;
    border: 1px solid #cccccc;
    border-radius: 1rem;
    padding: 2.7rem 4rem;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .p_sec11__form dl dd input[type=text]::-moz-placeholder, .p_sec11__form dl dd input[type=email]::-moz-placeholder, .p_sec11__form dl dd input[type=tel]::-moz-placeholder, .p_sec11__form dl dd select::-moz-placeholder {
    color: #ccc;
  }
  .p_sec11__form dl dd input[type=text]::placeholder,
  .p_sec11__form dl dd input[type=email]::placeholder,
  .p_sec11__form dl dd input[type=tel]::placeholder,
  .p_sec11__form dl dd select::placeholder {
    color: #ccc;
  }
  .p_sec11__form dl dd select {
    padding: 3.5rem 4rem;
  }
  .p_sec11__form dl dd .pp {
    padding: 3rem 2rem;
    height: 30rem;
    overflow: auto;
    background: #f8f8f8;
    border: 1px solid #cccccc;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }
  .p_sec11__form dl dd .pp p {
    font-size: 2.8rem;
    line-height: 4.3rem;
  }
  .p_sec11__form dl dd .pp p strong {
    font-weight: bold;
  }
  .p_sec11__form dl dd .pp p + p {
    margin-top: 1em;
  }
  .p_sec11__btns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .p_sec11__btns button {
    width: 100%;
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1rem 0 #b60900;
    border-radius: 2rem;
    background: linear-gradient(140.54deg, #f45197 12.82%, #ff8000 121.78%);
    border: 0.3rem solid #b60900;
    font-weight: 700;
    font-size: 4rem;
    color: #ffffff;
  }
  .p_sec11__btns button.back {
    background: #dadad8;
    border-color: #8f8f8e;
    box-shadow: 0 1rem 0 rgba(143, 143, 142, 0.6);
    color: #454545;
  }
  .p_sec11__thanks {
    padding: 0 2rem;
  }
  .p_sec11__thanks .image {
    text-align: center;
    margin-bottom: 2rem;
  }
  .p_sec11__thanks .image img {
    width: 20rem;
  }
  .p_sec11__thanks .stitle {
    text-align: center;
    font-size: 4rem;
    line-height: 5rem;
    font-weight: bold;
    margin-bottom: 4rem;
  }
  .p_sec11__thanks .text {
    font-size: 2.8rem;
    line-height: 4.3rem;
  }
  .p_sec11__back {
    text-align: center;
    margin-top: 5rem;
  }
  .p_sec11__back a {
    font-size: 2.8rem;
    text-decoration: underline;
  }
  .p_sec11 .formError .formErrorContent {
    font-size: 2.1rem;
    line-height: 1.8;
    padding: 0.4rem 1rem;
    border-radius: 0.6rem;
  }
  .p_sec12 {
    padding: 7.3rem 0 6rem;
  }
  .p_sec12 .c_company__title {
    margin-bottom: 5.6rem;
  }
}
/* ===============================================
PC
=============================================== */
@media screen and (min-width: 769px) {
  .p_fixbnr {
    position: fixed;
    bottom: 0%;
    left: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    transition: 0.3s ease;
    background-color: rgba(211, 236, 108, 0.8);
    text-align: center;
    height: clamp(90px, 12vw, 110px);
  }
  .p_fixbnr a {
    display: block;
    width: 100vw;
  }
  .p_fixbnr a img {
    width: clamp(600px, 78vw, 725px);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
  }
  .p_fixbnr.is-hide {
    opacity: 0;
    visibility: hidden;
  }
  .p_sec01 {
    background: url(../images/pc/mv_bg-pc.png) center bottom no-repeat;
    background-size: cover;
    padding-bottom: 2rem;
  }
  .p_sec01 .mv {
    margin-bottom: 0rem;
    text-align: center;
    padding-top: 6rem;
    max-width: 1010px;
    width: 96%;
    margin: auto;
    position: relative;
    left: 4rem;
  }
  .p_sec01 .textarea {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 1.5rem 0;
    margin: auto;
    margin-bottom: 3rem;
    margin-top: -3rem;
    max-width: 1010px;
    width: 96%;
  }
  .p_sec01 .textarea .text1 {
    color: white;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 6.6rem;
    font-weight: bold;
  }
  .p_sec01 .textarea .text1 span {
    color: #ffff0f;
  }
  .p_sec01 .textarea .text2 {
    color: white;
    font-size: clamp(10px, 1.2vw, 14px);
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: right;
  }
  .p_sec01 .slider .swiper-wrapper {
    transition-timing-function: linear;
    gap: 1rem;
  }
  .p_sec01 .slider .swiper-slide {
    position: relative;
    padding: 0 0.5rem;
  }
  .p_sec01 .slider .swiper-slide img {
    width: 100%;
  }
  .p_sec01 .slider .swiper-slide .name {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    right: 1.4rem;
    background: #00913a;
    border-radius: 1rem;
    color: white;
    text-align: center;
    font-size: clamp(10px, 1.2vw, 16px);
    letter-spacing: 0.03em;
    font-weight: bold;
    padding: 1rem;
    width: 31.6rem;
    width: min(12vw, 31.6rem);
    margin: auto;
  }
  .p_sec02__head {
    background: url(../images/nayami_bg@2x.jpg) center no-repeat;
    background-size: cover;
    padding: 11.4rem 0 26.4rem;
  }
  .p_sec02__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1010px;
    width: 100%;
  }
  .p_sec02__list img {
    display: block;
  }
  .p_sec02__list .img1 {
    margin-left: auto;
    width: 100%;
    height: auto;
  }
  .p_sec02__list .img2 {
    width: 100%;
    height: auto;
  }
  .p_sec02__list .img3 {
    margin-left: auto;
    width: 100%;
    height: auto;
  }
  .p_sec02__foot {
    background: #d3ec6c;
    padding: 1px 0 9rem;
  }
  .p_sec02__green {
    border-radius: 2rem;
    background: #00913a;
    padding: 7.4rem 14rem 6.4rem;
    margin-top: -18.4rem;
    max-width: 1010px;
  }
  .p_sec02__title2 {
    color: white;
    font-weight: bold;
    font-size: 5.4rem;
    line-height: 1.4;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
  }
  .p_sec02__title2 .yellow {
    color: #ffff0f;
    font-size: 8rem;
  }
  .p_sec02__image {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .p_sec02__image img {
    width: 100%;
  }
  .p_sec02__text2 {
    color: white;
    text-align: center;
    font-size: 4rem;
    font-size: clamp(18px, 2.2vw, 20px);
    line-height: 4.3rem;
  }
  .p_sec03 {
    background: #fbf9f3;
    padding: 10rem 0 12.2rem;
  }
  .p_sec03 .c_titB {
    margin-bottom: 8rem;
  }
  .p_sec03__logo {
    text-align: center;
    margin-bottom: 6rem;
  }
  .p_sec03__logo img {
    width: 79rem;
  }
  .p_sec03__textarea {
    background-color: #fff;
    border-radius: 4rem;
    text-align: center;
    padding: 5.2rem 1rem 6rem;
    max-width: 680px;
    margin: auto;
    margin-bottom: 6rem;
  }
  .p_sec03__textarea p {
    font-size: 5rem;
    line-height: 7rem;
  }
  .p_sec03__textarea p .green {
    color: #00913a;
    font-weight: bold;
  }
  .p_sec03__prof {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 6rem;
    margin-left: 2rem;
    max-width: 578px;
    margin: auto;
    margin-bottom: 10rem;
  }
  .p_sec03__prof .textarea {
    width: 41rem;
  }
  .p_sec03__prof .textarea .text1 {
    font-size: 3.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: black;
  }
  .p_sec03__prof .textarea .text2 {
    padding: 2rem 0 3.4rem;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
    gap: 1rem;
    color: black;
  }
  .p_sec03__prof .textarea .text2 small {
    font-weight: 500;
    font-size: 3.2rem;
    letter-spacing: 0.03em;
  }
  .p_sec03__prof .textarea .text2 strong {
    font-size: 6.2rem;
    font-weight: 400;
  }
  .p_sec03__prof .textarea .text3 {
    font-size: 3.6rem;
    line-height: 5.6rem;
    font-weight: 500;
  }
  .p_sec03__prof .image img {
    width: 62.4rem;
    border-radius: 2rem;
  }
  .p_sec03__message {
    background: #00913a;
    border-radius: 2rem;
    padding: 9.6rem 6.6rem 6.8rem;
  }
  .p_sec03__message .textarea {
    background-color: #fff;
    border-radius: 2rem;
    padding: 5rem 8rem 6rem;
  }
  .p_sec03__message .textarea .stitle {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 6rem;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 7rem;
    font-weight: bold;
    gap: 0.5rem;
    margin-bottom: 5rem;
  }
  .p_sec03__message .textarea .stitle:before, .p_sec03__message .textarea .stitle:after {
    content: "";
    background-image: url(../images/inyou_left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 3.1rem;
    height: 2.5rem;
    transform: translateY(1rem);
  }
  .p_sec03__message .textarea .stitle:after {
    background-image: url(../images/inyou_right.svg);
  }
  .p_sec03__message .textarea .textarea_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
  .p_sec03__message .textarea .image {
    margin-bottom: 0rem;
    width: 84.8rem;
  }
  .p_sec03__message .textarea .image img {
    width: 100%;
    border-radius: 1rem;
  }
  .p_sec03__message .textarea .text {
    font-size: 3.6rem;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 5.6rem;
    width: 50%;
  }
  .p_sec03__message .btn {
    margin-top: 6rem;
    text-align: center;
  }
  .p_sec03_modal {
    padding: 5rem 2rem;
    overflow: auto;
    max-width: 188.8rem;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .p_sec03_modal {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p_sec03_modal::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .p_sec03_modal .inner {
    background-color: #fff;
    border-radius: 1rem;
    padding: 10rem 2rem 5.8rem;
  }
  .p_sec03_modal .btn {
    margin-top: 7rem;
    text-align: center;
  }
  .p_sec03_modal .btn .c_btnA {
    width: 96rem;
  }
  .p_sec04 {
    background: #d3ec6c;
    padding: 11.2rem 0 12rem;
  }
  .p_sec04__text {
    font-size: 3.6rem;
    line-height: 5.6rem;
    padding: 0 2rem;
    width: 136rem;
    margin: auto;
    margin-bottom: 6.2rem;
    text-align: center;
  }
  .p_sec04__before, .p_sec04__after {
    padding: 8rem 2rem;
    border-radius: 2rem;
  }
  .p_sec04__before {
    background: #22b95e;
  }
  .p_sec04__before .p_sec04__tag {
    color: #22b95e;
  }
  .p_sec04__after {
    background: #00913a;
    margin-top: 3rem;
  }
  .p_sec04__after .p_sec04__tag {
    color: #00913a;
  }
  .p_sec04__tag {
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    border-radius: 100vh;
    font-size: 7rem;
    font-weight: 500;
    padding: 2rem 4rem 3rem;
    margin-inline: auto;
    margin-bottom: 3.4rem;
  }
  .p_sec04__block + .p_sec04__block {
    margin-top: 10rem;
  }
  .p_sec04__block .c_titC {
    margin-bottom: 6rem;
  }
  .p_sec04__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 780px;
    margin: auto;
  }
  .p_sec04__list li {
    padding: 6rem 2rem 5.6rem;
    background-color: #fff;
    border-radius: 2rem;
  }
  .p_sec04__list .num {
    text-align: center;
    color: #d3ec6c;
    font-size: 8rem;
    font-weight: bold;
    margin-bottom: 4.2rem;
  }
  .p_sec04__list .title {
    font-size: 4.8rem;
    line-height: 6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5rem;
  }
  .p_sec04__list .title .red {
    color: #ff3300;
  }
  .p_sec04__list .title .big {
    font-size: 6.8rem;
  }
  .p_sec04__list .image {
    text-align: center;
    margin-bottom: 4rem;
  }
  .p_sec04__list .image img {
    max-width: 120rem;
    border-radius: 1rem;
  }
  .p_sec04__list .stitle {
    text-align: center;
    font-size: 4rem;
    line-height: 4rem;
    margin-bottom: 2rem;
    font-weight: bold;
  }
  .p_sec04__list .text {
    font-size: 3.6rem;
    max-width: 120rem;
    line-height: 5.6rem;
    letter-spacing: 0.03em;
    margin: auto;
  }
  .p_sec05 {
    padding: 11.4rem 0 8rem;
  }
  .p_sec05__text {
    font-size: 3.6rem;
    line-height: 4.3rem;
    padding: 0 2rem;
    max-width: 120rem;
    margin: auto;
    margin-bottom: 6.2rem;
  }
  .p_sec05__block {
    border-radius: 2rem;
    background: #eeeeee;
    padding: 4.4rem 2rem 3.4rem;
  }
  .p_sec05__block .c_titB {
    margin-bottom: 4.8rem;
  }
  .p_sec05__block .flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 1rem 0 3rem;
    max-width: 110rem;
    margin: auto;
    margin-bottom: 6rem;
  }
  .p_sec05__block .flex .textarea {
    padding-bottom: 2.3rem;
  }
  .p_sec05__block .flex .textarea ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .p_sec05__block .flex .textarea ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .p_sec05__block .flex .textarea ul li .text1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 5.7rem;
    position: relative;
  }
  .p_sec05__block .flex .textarea ul li .text1 small {
    font-size: 2.8rem;
    position: absolute;
    top: 130%;
    left: 0;
    white-space: nowrap;
    line-height: 1;
    font-weight: bold;
    margin-top: 0.5rem;
  }
  .p_sec05__block .flex .textarea ul li .text2 {
    font-size: 4.8rem;
  }
  .p_sec05__block .flex .textarea ul li .text3 {
    text-align: right;
  }
  .p_sec05__block .flex .textarea ul li .text3 .c_en {
    font-size: 8.4rem;
    font-weight: normal;
    letter-spacing: 0.02em;
    margin-right: 0.3rem;
  }
  .p_sec05__block .flex .textarea ul li .text3 .yen {
    width: 2em;
    text-align: right;
    font-size: 4rem;
    font-weight: 500;
    display: inline-block;
  }
  .p_sec05__block .flex .icon img {
    width: 37.2rem;
  }
  .p_sec05__block .table {
    border-radius: 1rem;
    border: 0.4rem solid #cccccc;
    background-color: #fff;
    max-width: 120rem;
    margin: auto;
  }
  .p_sec05__block .table table tr.green {
    color: #00913a;
  }
  .p_sec05__block .table table td {
    border: 1px solid #cccccc;
    padding: 3.6rem 13.6rem 3.6rem 6rem;
    vertical-align: middle;
  }
  .p_sec05__block .table table td:first-child {
    white-space: nowrap;
  }
  .p_sec05__block .table table td:last-child {
    width: 100%;
    text-align: right;
  }
  .p_sec05__block .table table .right {
    padding-right: 6rem;
  }
  .p_sec05__block .table table thead td {
    background: #e6fff0;
    font-weight: bold;
  }
  .p_sec05__block .table table thead td:first-child {
    border-radius: 0.6rem 0 0 0;
  }
  .p_sec05__block .table table thead td:last-child {
    border-radius: 0 0.6rem 0 0;
  }
  .p_sec05__block .table table tfoot td {
    background: #00913a;
    color: white;
    font-weight: bold;
  }
  .p_sec05__block .table table tfoot td:first-child {
    border-radius: 0 0 0 0.6rem;
  }
  .p_sec05__block .table table tfoot td:last-child {
    border-radius: 0 0 0.6rem 0;
  }
  .p_sec05__block .table .text1 {
    font-size: 4rem;
  }
  .p_sec05__block .table .text2 {
    font-size: 3.6rem;
  }
  .p_sec05__block .table .text3 {
    font-size: 4.8rem;
  }
  .p_sec05__block .table .text4 {
    font-family: "Heebo";
    font-size: 6rem;
    margin-right: 4rem;
  }
  .p_sec05__block .table .text4-400 {
    font-weight: 400;
  }
  .p_sec05__block .table .text4-500 {
    font-weight: 500;
  }
  .p_sec05__block .table .text5 {
    font-family: "Heebo";
    font-size: 4.8rem;
    margin-right: 4rem;
  }
  .p_sec05__block .table .text6 {
    font-family: "Heebo";
    font-size: 8.8rem;
    margin-right: 4rem;
  }
  .p_sec05__block .table .yen {
    font-weight: normal;
    font-size: 3.6rem;
  }
  .p_sec05__block .cap {
    text-align: right;
    font-size: 2.8rem;
    max-width: 120rem;
    margin: auto;
    margin-top: 2.2rem;
    color: #000000;
  }
  .p_sec06 {
    padding: 9rem 0 7.4rem;
    background: #00913a;
  }
  .p_sec06 .c_titB {
    gap: 0.5rem;
    margin-bottom: 5.2rem;
  }
  .p_sec06 .c_titB__text1 {
    margin-bottom: 3.6rem;
  }
  .p_sec06 .swiper {
    max-width: 180rem;
    overflow: visible;
  }
  .p_sec06 .swiper-slide {
    padding: 0 2rem;
    height: 100%;
  }
  .p_sec06 .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4.3rem;
    gap: 4.3rem;
  }
  .p_sec06 .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
    opacity: 1;
    background-color: #fff;
    margin: 0;
  }
  .p_sec06 .swiper-pagination-bullet-active {
    background: #ffff0f;
  }
  .p_sec06 .swiper-button-prev,
  .p_sec06 .swiper-button-next {
    width: auto;
    height: auto;
    margin: 0;
    top: 45%;
  }
  .p_sec06 .swiper-button-prev img,
  .p_sec06 .swiper-button-next img {
    width: 19.2rem;
    filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
  }
  .p_sec06 .swiper-button-prev:after,
  .p_sec06 .swiper-button-next:after {
    display: none;
  }
  .p_sec06 .swiper-button-prev {
    left: 1rem;
  }
  .p_sec06 .swiper-button-next {
    right: 1rem;
  }
  .p_sec06__voice {
    background-color: #fff;
    border-radius: 2rem;
    padding: 6rem 11.4rem 7.8rem;
    height: 100%;
    max-width: 161.6rem;
    margin: auto;
  }
  .p_sec06__voice .flex {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 6rem;
    margin-bottom: 4rem;
    margin-left: 3rem;
  }
  .p_sec06__voice .flex .textarea {
    width: 40.8rem;
  }
  .p_sec06__voice .flex .textarea .text1 {
    font-size: 3.6rem;
    font-weight: 500;
    margin-bottom: 1.7rem;
    color: black;
  }
  .p_sec06__voice .flex .textarea .text2 {
    padding: 2rem 0 2rem;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 1.2rem;
    color: black;
    font-size: 3.6rem;
    line-height: 5.6rem;
    font-weight: 500;
  }
  .p_sec06__voice .flex .textarea .text3 {
    font-size: 6rem;
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 6rem;
  }
  .p_sec06__voice .flex .textarea .text3 small {
    font-size: 3.6rem;
    font-weight: 500;
  }
  .p_sec06__voice .flex .image img {
    width: 62.4rem;
    border-radius: 2rem;
  }
  .p_sec06__voice .faqs {
    margin-top: 4.8rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 2rem;
  }
  .p_sec06__voice .faqs li .q {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .p_sec06__voice .faqs li .q .en {
    font-size: clamp(40px, 3.2vw, 45px);
    font-weight: bold;
    color: #d3ec6c;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .p_sec06__voice .faqs li .q .text {
    font-size: 6rem;
    font-size: clamp(22px, 2vw, 25px);
    line-height: 1.3;
    font-weight: bold;
    white-space: nowrap;
  }
  .p_sec06__voice .faqs li .ans {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 5rem;
  }
  .p_sec07 {
    margin-top: 7.4rem;
  }
  .p_sec07__bg {
    background: #d3ec6c;
    padding: 1px 0 11.8rem;
    margin-top: 28.2rem;
  }
  .p_sec07__fukidashi {
    text-align: center;
    margin-top: -23.6rem;
    margin-bottom: 8rem;
  }
  .p_sec07__fukidashi img {
    width: 97.2rem;
  }
  .p_sec07__block1 {
    padding: 2.6rem 3rem 4rem 5.8rem;
    background: #fbf9f3;
    border-radius: 2rem;
    margin-bottom: 2rem;
  }
  .p_sec07__block1 .image {
    text-align: center;
    max-width: 120rem;
    margin: auto;
    margin: 0 auto 4.6rem;
  }
  .p_sec07__block1 .image img {
    width: 120rem;
  }
  .p_sec07__block1 .title {
    font-size: 7rem;
    font-weight: bold;
    max-width: 120rem;
    margin: auto;
  }
  .p_sec07__block1 .title .red {
    color: #ff3300;
  }
  .p_sec07__block1 .text {
    font-size: 3.6rem;
    line-height: 5.6rem;
    max-width: 120rem;
    margin: auto;
    margin-top: 4rem;
  }
  .p_sec07__block2 {
    border-radius: 2rem;
    background: #22b95e;
    padding: 4.8rem 2rem 4rem;
  }
  .p_sec07__block2 .list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .p_sec07__block2 .list li {
    background-color: #fff;
    padding: 4rem 8rem 5.2rem 7rem;
    border-radius: 2rem;
    max-width: 136rem;
    width: 100%;
    margin: auto;
  }
  .p_sec07__block2 .list .head {
    display: flex;
    justify-content: space-between;
    margin-bottom: -2rem;
  }
  .p_sec07__block2 .list .head .icon img {
    width: 24.6rem;
  }
  .p_sec07__block2 .list .num {
    font-size: 10rem;
    font-weight: bold;
    color: #d3ec6c;
    margin-bottom: 2rem;
  }
  .p_sec07__block2 .list .title {
    font-size: 5rem;
    line-height: 5.8rem;
  }
  .p_sec07__block2 .list .title .red {
    font-size: 7rem;
    font-weight: bold;
    color: #ff3300;
  }
  .p_sec07__block2 .list .stitle {
    font-size: 4rem;
    font-weight: bold;
    color: #202020;
    margin-bottom: 1rem;
  }
  .p_sec07__block2 .list .text {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
  .p_sec08 {
    background: url(../images/hard_bg@2x.jpg) center no-repeat;
    background-size: cover;
    padding: 10.8rem 0 12rem;
  }
  .p_sec08__fukidashi {
    text-align: center;
    margin-bottom: 4.6rem;
  }
  .p_sec08__fukidashi img {
    width: 112rem;
  }
  .p_sec08__text {
    padding: 0 2rem;
    font-size: 4rem;
    line-height: 5.6rem;
    margin-bottom: 8rem;
    text-align: center;
  }
  .p_sec08__fig {
    border-radius: 2rem;
    background: #00913a;
    padding: 5.6rem 2rem 7.4rem;
  }
  .p_sec08__fig .c_titC {
    margin-bottom: 3rem;
  }
  .p_sec08__fig .image {
    text-align: center;
  }
  .p_sec08__fig .image img {
    width: 172.8rem;
  }
  .p_sec08__fig .text {
    font-size: 3.6rem;
    line-height: 4.3rem;
    color: white;
    text-align: center;
    margin-top: 3.4rem;
  }
  .p_sec09 {
    padding: 10.4rem 0 12rem;
  }
  .p_sec09__flow {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 155.6rem;
    width: 100%;
    margin: auto;
  }
  .p_sec09__flow li .head {
    text-align: center;
    background: #00913a;
    padding: 2.6rem 0 3.8rem;
    border-radius: 2rem 2rem 0 0;
  }
  .p_sec09__flow li .head .num {
    font-size: 7rem;
    font-weight: bold;
    color: #d3ec6c;
    margin-bottom: 2rem;
  }
  .p_sec09__flow li .head .title {
    color: white;
    font-size: 6rem;
    font-weight: bold;
  }
  .p_sec09__flow li .textarea {
    border-radius: 0 0 2rem 2rem;
    border: 0.5rem solid #cccccc;
    border-top-width: 0;
    padding: 3rem 4rem 5rem;
  }
  .p_sec09__flow li .textarea .text {
    font-size: 3.6rem;
    line-height: 4.2rem;
    max-width: 136rem;
    width: 100%;
    margin: auto;
  }
  .p_sec09__flow li .textarea .text .red {
    font-weight: bold;
    color: #ff3300;
  }
  .p_sec09__flow li .textarea .text .bold {
    font-weight: bold;
  }
  .p_sec09__flow li .textarea .btn {
    margin: 3.4rem -2rem 0;
    text-align: center;
  }
  .p_sec09__flow li .textarea .btn a img {
    width: 136rem;
  }
  .p_sec09__flow .arrow {
    width: 8rem;
    height: 4rem;
    background: #ff3300;
    margin: 0 auto;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .p_sec10 {
    padding: 10.6rem 0 12rem;
    background: #eeeeee;
  }
  .p_sec10__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 155.6rem;
    width: 100%;
    margin: auto;
  }
  .p_sec10__list details[open] summary {
    box-shadow: none;
  }
  .p_sec10__list details[open] summary .arrow {
    transform: scaleY(-1);
  }
  .p_sec10__list summary {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 2rem;
    padding: 4rem 3rem;
    box-shadow: 0 1rem 0 rgba(143, 143, 142, 0.2);
  }
  .p_sec10__list summary .icon {
    flex-shrink: 0;
    font-size: 7.5rem;
    font-weight: 500;
    color: #d3ec6c;
  }
  .p_sec10__list summary .text {
    font-size: 4rem;
    line-height: 4.2rem;
  }
  .p_sec10__list summary .arrow {
    flex-shrink: 0;
    margin-left: auto;
    width: 3.6rem;
  }
  .p_sec10__list .answer {
    padding: 2rem 0;
    box-shadow: 0 1rem 0 rgba(143, 143, 142, 0.3);
    border-radius: 1rem;
  }
  .p_sec10__list .answer .border {
    border: 0.4rem dashed hsla(60, 0%, 56%, 0.6);
    border-radius: 2rem;
    padding: 2rem;
  }
  .p_sec10__list .answer .titlearea {
    color: #ff3300;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
  }
  .p_sec10__list .answer .titlearea .icon {
    font-size: 7.5rem;
    font-weight: bold;
    flex-shrink: 0;
  }
  .p_sec10__list .answer .titlearea .title {
    font-size: 4rem;
    line-height: 5.6rem;
    font-weight: bold;
    padding-top: 1rem;
  }
  .p_sec10__list .answer .text {
    font-size: 3.2rem;
    line-height: 4.3rem;
  }
  .p_sec11 {
    background: linear-gradient(180deg, #fff15b 0%, #fff155 100%);
    padding: 10rem 0 13rem;
  }
  .p_sec11 .c_titB {
    margin-bottom: 6rem;
  }
  .p_sec11__form {
    background-color: #fff;
    padding: 5.4rem 2rem 8rem;
    border-radius: 2rem;
    margin-bottom: 6rem;
  }
  .p_sec11__form .num {
    text-align: center;
    color: #d3ec6c;
    font-weight: bold;
    font-size: 10rem;
    margin-bottom: 4rem;
  }
  .p_sec11__form .title {
    margin-bottom: 5rem;
    text-align: center;
    font-size: 7rem;
    font-weight: bold;
  }
  .p_sec11__form .dots {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.3rem;
    margin-bottom: 8rem;
  }
  .p_sec11__form .dots span {
    width: 2.4rem;
    height: 2.4rem;
    opacity: 1;
    background-color: #cccccc;
    margin: 0;
    border-radius: 50%;
  }
  .p_sec11__form .dots .is-active {
    background: #d3ec6c;
  }
  .p_sec11__form .errors {
    font-size: 2.8rem;
    line-height: 4.3rem;
    color: red;
    max-width: 162.6rem;
    width: 100%;
    margin: auto;
    margin-bottom: 3rem;
  }
  .p_sec11__form .errors:empty {
    display: none;
  }
  .p_sec11__form dl {
    display: flex;
    flex-direction: column;
    gap: 4.2rem;
    max-width: 162.6rem;
    width: 100%;
    margin: auto;
  }
  .p_sec11__form dl dt {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-size: 3.6rem;
    font-weight: normal;
    margin-bottom: 3rem;
  }
  .p_sec11__form dl dt .req {
    padding: 1rem;
    background: #ff3300;
    color: white;
    font-size: 3.6rem;
    font-weight: 500;
    border-radius: 1rem;
  }
  .p_sec11__form dl dd label:has(input[type=radio]), .p_sec11__form dl dd label:has(input[type=checkbox]) {
    display: flex;
    align-items: center;
    font-size: 3.6rem;
    gap: 4rem;
    background: #f8f8f8;
    border: 1px solid #cccccc;
    border-radius: 2rem;
    padding: 3.6rem 4rem;
  }
  .p_sec11__form dl dd label:has(input[type=radio]) input, .p_sec11__form dl dd label:has(input[type=checkbox]) input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .p_sec11__form dl dd label:has(input[type=radio]) .input, .p_sec11__form dl dd label:has(input[type=checkbox]) .input {
    background: #cccccc;
    border-radius: 0.5rem;
    width: 4rem;
    height: 4rem;
    position: relative;
  }
  .p_sec11__form dl dd label:has(input[type=radio]) .input:after, .p_sec11__form dl dd label:has(input[type=checkbox]) .input:after {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    background: url(../images/form_check.svg) center;
    background-size: contain;
    width: 3.8rem;
    height: 2.8rem;
    opacity: 0;
  }
  .p_sec11__form dl dd label:has(input[type=radio]):has(:checked), .p_sec11__form dl dd label:has(input[type=checkbox]):has(:checked) {
    background: #d3ec6c;
  }
  .p_sec11__form dl dd label:has(input[type=radio]):has(:checked) .input, .p_sec11__form dl dd label:has(input[type=checkbox]):has(:checked) .input {
    background-color: #fff;
  }
  .p_sec11__form dl dd label:has(input[type=radio]):has(:checked) .input:after, .p_sec11__form dl dd label:has(input[type=checkbox]):has(:checked) .input:after {
    opacity: 1;
    width: 5.6rem;
    height: 100%;
    background-repeat: no-repeat;
  }
  .p_sec11__form dl dd label:has(input[type=checkbox]) {
    justify-content: center;
  }
  .p_sec11__form dl dd .radio {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .p_sec11__form dl dd input[type=text],
  .p_sec11__form dl dd input[type=email],
  .p_sec11__form dl dd input[type=tel],
  .p_sec11__form dl dd select {
    font-size: 4rem;
    background: #f8f8f8;
    border: 1px solid #cccccc;
    border-radius: 2rem;
    padding: 3.4rem 4.8rem;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .p_sec11__form dl dd input[type=text]::-moz-placeholder, .p_sec11__form dl dd input[type=email]::-moz-placeholder, .p_sec11__form dl dd input[type=tel]::-moz-placeholder, .p_sec11__form dl dd select::-moz-placeholder {
    color: #ccc;
  }
  .p_sec11__form dl dd input[type=text]::placeholder,
  .p_sec11__form dl dd input[type=email]::placeholder,
  .p_sec11__form dl dd input[type=tel]::placeholder,
  .p_sec11__form dl dd select::placeholder {
    color: #ccc;
  }
  .p_sec11__form dl dd select {
    padding: 3.5rem 4rem;
  }
  .p_sec11__form dl dd .pp {
    padding: 3rem 2rem;
    height: 30rem;
    overflow: auto;
    background: #f8f8f8;
    border: 1px solid #cccccc;
    border-radius: 1rem;
    margin-bottom: 4.4rem;
  }
  .p_sec11__form dl dd .pp p {
    font-size: 3.6rem;
    line-height: 5.6rem;
  }
  .p_sec11__form dl dd .pp p strong {
    font-weight: bold;
  }
  .p_sec11__form dl dd .pp p + p {
    margin-top: 1em;
  }
  .p_sec11__btns {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
  }
  .p_sec11__btns button {
    max-width: 171.2rem;
    width: 100%;
    margin: auto;
    height: 14.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1rem 0 #b60900;
    border-radius: 2.4rem;
    background: linear-gradient(140.54deg, #f45197 12.82%, #ff8000 121.78%);
    border: 0.3rem solid #b60900;
    font-weight: 700;
    font-size: 4.8rem;
    color: #ffffff;
  }
  .p_sec11__btns button.back {
    background: #dadad8;
    border-color: #8f8f8e;
    box-shadow: 0 1rem 0 rgba(143, 143, 142, 0.6);
    color: #454545;
  }
  .p_sec11__thanks {
    padding: 0 2rem 4rem;
    max-width: 164rem;
    width: 100%;
    margin: auto;
  }
  .p_sec11__thanks .image {
    text-align: center;
    margin-bottom: 7.4rem;
  }
  .p_sec11__thanks .image img {
    width: 24rem;
  }
  .p_sec11__thanks .stitle {
    text-align: center;
    font-size: 5rem;
    line-height: 5rem;
    font-weight: bold;
    margin-bottom: 6rem;
  }
  .p_sec11__thanks .text {
    font-size: 3.6rem;
    line-height: 5.6rem;
  }
  .p_sec11__back {
    text-align: center;
    margin-top: 6.4rem;
  }
  .p_sec11__back a {
    font-size: 3.6rem;
    text-decoration: underline;
  }
  .p_sec11 .formError .formErrorContent {
    font-size: 2.1rem;
    line-height: 1.8;
    padding: 0.4rem 1rem;
    border-radius: 0.6rem;
  }
  .p_sec12 {
    padding: 12rem 0 0;
  }
  .p_sec12 .c_company__title {
    margin-bottom: 5.6rem;
  }
}
:root {
  --hdr_height: 0;
}
@media screen and (max-width: 768px) {
  :root {
    --hdr_height: 0;
  }
}/*# sourceMappingURL=style.css.map */