@charset "UTF-8";
/*! TAK's Custom Base.css v1.3.4 | MIT License | github.com/tak-dcxi/taks-custom-base-css */
/* ======================================================
//
// MARK: # TAK's Custom Base.css
// Made by TAK - https: //www.tak-dcxi.com/
// This CSS is built based on Normalize.css. (https: //necolas.github.io/normalize.css/)
// It aims to normalize styles for better cross-browser compatibility, remove default browser styling, and enhance usability and accessibility for all users."
//
// ====================================================== */
/* ======================================================
// MARK: ## Universal
// ------------------------------------------------------ */
*,
::before,
::after {
  /* Ensure padding and borders are included within the dimensions of the element. */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* Prevent inline elements from extending beyond their container's bounds. */
  min-inline-size: 0;
  /* Remove any default borders. */
  border-width: 0;
  /* Set a default border style of solid for easy border additions. */
  border-style: solid;
}

/* ======================================================
// MARK: ## Document and Body Elements
// ------------------------------------------------------ */
:where(:root, body) {
  /* Prevent scrolling along the inline axis (usually horizontal) for root and body. */
  overflow-inline: clip;
}
@supports not (overflow-inline: clip) {
  :where(:root, body) {
    /* Prevent horizontal scrolling for root and body in browsers that don't support `overflow-inline`. */
    overflow-x: clip;
  }
}

:where(:root) {
  /* Specify a safe font-family for the default Gothic typeface. */
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", meiryo, sans-serif;
  /* Normalize font-style. */
  font-style: unset;
  /* Normalize font-style. */
  font-weight: 400;
  /* From an accessibility perspective, the line spacing within a paragraph should be at least 1.5 times the text size. (https://waic.jp/translations/WCAG21/#visual-presentation) */
  line-height: 1.5;
  /* Align text to the start of the element, accommodating left-to-right and right-to-left languages. */
  text-align: start;
  /* Remove leading white space for a cleaner text alignment. */
  text-spacing-trim: trim-start;
  /* Use the browser's default method to determine word breaking. */
  word-break: initial;
  /* Apply strict line breaking rules to enhance readability in languages that require it. */
  line-break: strict;
  /* Allow long words to be broken and wrapped at any point to prevent overflow. */
  overflow-wrap: anywhere;
  /* Automatically insert hyphens where appropriate for better text flow and alignment. */
  -ms-hyphens: auto;
      hyphens: auto;
  /* Prevent mobile browsers from scaling text sizes automatically. */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Preventing the layout shift caused by scrollbars. */
  scrollbar-gutter: stable;
  /* Allow animations and transitions of intrinsic sizing keywords. */
  interpolate-size: allow-keywords;
  /* Eliminate the tap highlight color on mobile devices for a cleaner interface. */
  -webkit-tap-highlight-color: transparent;
}
:where(:root):has(:where(:modal)) {
  /* Prevent scrolling of the document when a modal is open. */
  overflow: hidden;
}

:where(body) {
  /* Ensures the body element occupies at least 100% of the viewport's block size. */
  min-block-size: 100svb;
  /* Reset default margin. */
  margin: unset;
}

/* ======================================================
// MARK: ## Custom Properties
// ------------------------------------------------------ */
/* ------------------------------------------------------
// MARK: ### colors
*/
/*
  Define a custom property to use as a background color that remains visible in forced colors mode.
  This is useful when using `background-color: currentColor` as a foreground color,
  such as in pseudo-elements.

  Example usage:
  ```
  .button::after {
    content: '';
    justify-self: end;
    mask-image: url(...);
    inline-size: 1em;
    aspect-ratio: 1;
    background-color: var(--background-current);
    color: red;
  }
*/
@property --background-current {
  syntax: "currentColor | CanvasText";
  inherits: true;
  initial-value: currentColor;
}
@media (forced-colors: active) {
  :where(:root) {
    /* Set the default background color to the forced color mode background. */
    --background-current: CanvasText;
  }
}

/* ------------------------------------------------------
// MARK: ### easing function
*/
@property --ease-in-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.47, 0, 0.745, 0.715);
}
@property --ease-out-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.39, 0.575, 0.565, 1);
}
@property --ease-in-out-sine {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@property --ease-in-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@property --ease-out-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@property --ease-in-out-quad {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@property --ease-in-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
@property --ease-out-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@property --ease-in-out-cubic {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@property --ease-in-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
@property --ease-out-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@property --ease-in-out-quart {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.77, 0, 0.175, 1);
}
@property --ease-in-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@property --ease-out-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.23, 1, 0.32, 1);
}
@property --ease-in-out-quint {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.86, 0, 0.07, 1);
}
@property --ease-in-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}
@property --ease-out-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.19, 1, 0.22, 1);
}
@property --ease-in-out-expo {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(1, 0, 0, 1);
}
@property --ease-in-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
@property --ease-out-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.075, 0.82, 0.165, 1);
}
@property --ease-in-out-circ {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@property --ease-in-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
@property --ease-out-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@property --ease-in-out-back {
  syntax: "*";
  inherits: false;
  initial-value: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* ------------------------------------------------------
// MARK: ### triangle shapes
*/
/*
Example usage:
```
.tooltip::after {
  --_size: 16px;

  content: '';
  position: absolute;
  inset-inline: 0;
  inset-block-start: 100%;
  clip-path: var(--shape-triangle-bottom);
  inline-size: var(--_size);
  block-size: calc(var(--_size) / 2 * tan(60deg));
  margin-inline: auto;
  background-color: inherit;
}
```
*/
@property --shape-triangle-top {
  syntax: "*";
  inherits: false;
  initial-value: polygon(50% 0, 100% 100%, 0 100%);
}
@property --shape-triangle-bottom {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 50% 100%);
}
@property --shape-triangle-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 50%, 0 100%);
}
@property --shape-triangle-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 50%, 100% 0, 100% 100%);
}
@property --shape-triangle-lower-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 100%, 0 100%);
}
@property --shape-triangle-upper-left {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 0 100%);
}
@property --shape-triangle-lower-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(100% 0, 100% 100%, 0 100%);
}
@property --shape-triangle-upper-right {
  syntax: "*";
  inherits: false;
  initial-value: polygon(0 0, 100% 0, 100% 100%);
}
/* ------------------------------------------------------
// MARK: ### chevron icons
*/
/*
The chevron icon is borrowed from Basicons (https://basicons.xyz/).

Example usage:
```
.button::after {
  content: '';
  justify-self: end;
  mask-image: var(--icon-chevron-right);
  inline-size: 1em;
  aspect-ratio: 1;
  background-color: var(--background-current);
}
```
*/
/* single chevron icons */
@property --icon-chevron-up {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m4 16 8-8 8 8" /></svg>');
}
@property --icon-chevron-right {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M8 4L16 12L8 20" /></svg>');
}
@property --icon-chevron-down {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M4 8L12 16L20 8" /></svg>');
}
@property --icon-chevron-left {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M16 4L8 12L16 20" /></svg>');
}
/* double chevron icons */
@property --icon-chevrons-up {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 18L12 13L7 18M17 11L12 6L7 11" /></svg>');
}
@property --icon-chevrons-right {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 7L11 12L6 17M13 7L18 12L13 17" /></svg>');
}
@property --icon-chevrons-down {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 6L12 11L7 6M17 13L12 18L7 13" /></svg>');
}
@property --icon-chevrons-left {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M18 7L13 12L18 17M11 7L6 12L11 17" /></svg>');
}
/* ------------------------------------------------------
// MARK: ### launch link icon
*/
/*
The chevron icon is borrowed from Basicons (https://basicons.xyz/).

Example usage:
```
.button[target="_blank"]::after {
  content: '' / '別ウインドウで開きます';
  justify-self: end;
  mask-image: var(--icon-launch-link);
  inline-size: 1em;
  aspect-ratio: 1;
  background-color: var(--background-current);
}
```
*/
@property --icon-launch-link {
  syntax: "<url>";
  inherits: false;
  initial-value: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M17 2H22V7" /><path d="M21 13V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V5C3 3.89543 3.89543 3 5 3H11" /><path d="M13 11L21.5 2.5" /></svg>');
}
/* ------------------------------------------------------
// MARK: ### leading trim
*/
/*
You can use the `--leading-trim` custom property to adjust the vertical spacing of text elements.
This helps in achieving more consistent and visually pleasing typography across different languages and font styles.

@see https://www.tak-dcxi.com/article/use-line-height-trim-as-css-variable

Example usage:
```
p {
  margin-block: var(--leading-trim);
}

.button {
  padding-block: calc(1.5em + var(--leading-trim));
}
```
*/
@property --leading-trim {
  syntax: "*";
  inherits: false;
  initial-value: calc((1em - 1lh) / 2);
}
:where(:lang(en)) {
  /* This ensures that the vertical space is evenly distributed, improving the visual balance of text. */
  --leading-trim: calc((1cap - 1lh) / 2);
}

/* ------------------------------------------------------
// MARK: ### hover state
*/
/*
You can use these custom properties to easily switch between hover and non-hover styles.
The var() function will use the first non-empty value, allowing you to define both states in one line.

Example usage:
```
.button {
  --_background-lighten: var(--is-hover-false, 0%) var(--is-hover-true, 20%);

  background-color: color-mix(in sRGB, var(--background-button), #fff var(--_background-lighten));
}
```
*/
:where(:-moz-any-link, :enabled, summary) {
  /* Define custom properties for hover state on interactive elements. Default state: `--is-hover-true` is empty, `--is-hover-false` has a value. */
  --is-hover-true: ;
  --is-hover-false: initial;
}
:where(:any-link, :enabled, summary) {
  /* Define custom properties for hover state on interactive elements. Default state: `--is-hover-true` is empty, `--is-hover-false` has a value. */
  --is-hover-true: ;
  --is-hover-false: initial;
}
@media (any-hover: hover) {
  :where(:-moz-any-link, :enabled, summary):where(:hover) {
    /* Set hover state for actual hover, but only on devices that support hover. Hover state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
    --is-hover-true: initial;
    --is-hover-false: ;
  }
  :where(:any-link, :enabled, summary):where(:hover) {
    /* Set hover state for actual hover, but only on devices that support hover. Hover state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
    --is-hover-true: initial;
    --is-hover-false: ;
  }
}
:where(:-moz-any-link, :enabled, summary):where(:focus-visible) {
  /* Set hover state for focus-visible state. Focus-visible state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
  --is-hover-true: initial;
  --is-hover-false: ;
}
:where(:any-link, :enabled, summary):where(:focus-visible) {
  /* Set hover state for focus-visible state. Focus-visible state: `--is-hover-true` has a value, `--is-hover-false` is empty. */
  --is-hover-true: initial;
  --is-hover-false: ;
}

/* ======================================================
// MARK: ## Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Reset default margin. */
  margin-block: unset;
  /* Reset default font-size. */
  font-size: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
  font-size: 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.3513513514vw;
  }
}
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;
  letter-spacing: 0.13em;
  color: #000;
  width: 375px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
}
body:has(._confirm), body:has(.p_thanks) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a,
button {
  text-decoration: none;
  outline: none;
  color: #000;
  -webkit-transition: 0.3s ease;
  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;
}

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

.l_hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #000;
  padding: 1.8rem 1.5rem;
}
.l_hdr .logo img {
  width: 18.8rem;
}
.l_hdr .btn {
  border: 0.4rem solid #FFD000;
  color: #FFD000;
  font-size: 2.8rem;
  font-weight: bold;
  width: 28rem;
  height: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l_ftr {
  background: #000;
  padding: 3rem 0 21rem;
}
.l_ftr p {
  text-align: center;
  color: white;
  font-size: 2.6rem;
  font-weight: 900;
}

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

@media screen and (min-width: 1025px) {
  .c_tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .c_tab_none {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .c_sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .c_pc {
    display: none !important;
  }
}
.c_titA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #e71724;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.3636363636;
  text-align: center;
  gap: 2rem;
  margin-bottom: 5rem;
}
.c_titA small {
  font-size: 4.6rem;
  font-weight: 900;
}
.c_titA .black {
  color: black;
}
.c_titA .yellow {
  color: #FFD000;
}
.c_titA:after {
  content: "";
  background: url(../images/tita_kazari.svg) center no-repeat;
  background-size: contain;
  width: 11.3rem;
  height: 5.2rem;
}
.c_titA._yellow {
  color: white;
}
.c_titA._yellow:after {
  content: "";
  background: url(../images/tita_kazari_w.svg) center no-repeat;
  background-size: contain;
}

.c_titB {
  text-align: center;
  color: #e71724;
  font-size: 5rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 2rem;
}
.c_titB small {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.c_titB .black {
  color: black;
}

.c_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.c_lists__list {
  background-color: #fff;
  border-top: 2.2rem solid #e71724;
  border-radius: 2rem;
  padding: 2rem 4.7rem 6rem;
}

.c_cta {
  background: #120085;
  padding: 3.2rem 0;
}
.c_cta .c_inner {
  width: calc(100% - 10rem);
}
.c_cta__text1 {
  text-align: center;
  color: white;
  font-size: 2.6rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 1px solid white;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 0;
}
.c_cta__text2 {
  text-align: center;
  color: white;
  font-size: 5.3rem;
  font-weight: bold;
  letter-spacing: 0.065em;
}
.c_cta__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}
.c_cta__parts li {
  position: relative;
}
.c_cta__parts li:after {
  content: "必須";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  width: 8.5rem;
  height: 6rem;
  background: #ffacac;
  color: white;
  font-size: 2.8rem;
  font-weight: 500;
  border-radius: 0.6rem;
  margin: auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c_cta__parts input,
.c_cta__parts select {
  background: #eaf1fc;
  border-radius: 1rem;
  width: 100%;
  font-size: 3.2rem;
  padding: 1.6rem 2.5rem;
}
.c_cta__parts input::-webkit-input-placeholder, .c_cta__parts select::-webkit-input-placeholder {
  color: #444444;
}
.c_cta__parts input::-moz-placeholder, .c_cta__parts select::-moz-placeholder {
  color: #444444;
}
.c_cta__parts input:-ms-input-placeholder, .c_cta__parts select:-ms-input-placeholder {
  color: #444444;
}
.c_cta__parts input::-ms-input-placeholder, .c_cta__parts select::-ms-input-placeholder {
  color: #444444;
}
.c_cta__parts input::placeholder, .c_cta__parts input:invalid,
.c_cta__parts select::placeholder,
.c_cta__parts select:invalid {
  color: #444444;
}
.c_cta__parts select {
  background-image: url(../images/select_arrow.svg);
  background-position: center right 11.8rem;
  background-repeat: no-repeat;
  background-size: 2.2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
}
.c_cta__text3 {
  text-align: center;
  color: white;
  font-size: 2.7rem;
  margin: 3rem 0;
}
.c_cta__text3 a {
  text-decoration: underline;
  color: white;
}
.c_cta__text4 {
  text-align: center;
  color: white;
  font-size: 2.7rem;
  margin: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.c_cta__text4 img {
  width: 3.4rem;
}
.c_cta__text4 a {
  text-decoration: underline;
  color: white;
}
.c_cta__text5 {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0;
  color: #FFD000;
  margin-top: 3rem;
}
.c_cta__submit {
  margin-bottom: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.c_cta__submit button {
  width: 100%;
  background: #ffd000;
  border-radius: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 10.6rem;
  font-size: 3.6rem;
  font-weight: 500;
  color: #120085;
}
.c_cta__submit button.back {
  background: #A9A9A9;
  color: white;
}
.c_cta._confirm .c_cta__parts li:after {
  display: none;
}

.p_sec01 img {
  width: 100%;
}

.p_sec02 {
  margin-top: 9rem;
}
.p_sec02__contents {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(21.2rem, #fff), color-stop(21.2rem, #444444));
  background-image: linear-gradient(to bottom, #fff 21.2rem, #444444 21.2rem);
  padding-bottom: 10rem;
}
.p_sec02__contents .mainimage {
  position: relative;
  margin-bottom: 7.7rem;
}
.p_sec02__contents .mainimage .img {
  border-radius: 1rem;
}
.p_sec02__contents .mainimage .icon {
  width: 16.4rem;
  position: absolute;
  bottom: -6rem;
  right: 1rem;
}
.p_sec02__contents .text {
  font-size: 3rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
}
.p_sec02__contents .point {
  text-align: center;
  background: #ffeaeb;
  border-radius: 2rem;
  padding: 3rem 1rem;
  margin-top: 4rem;
}
.p_sec02__contents .text2 {
  font-size: 3rem;
  line-height: 1.5666666667;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}
.p_sec02__contents .text3 {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.2222222222;
  color: #e71724;
}
.p_sec02__contents .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.p_sec02__contents .rows .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p_sec02__contents .rows .row .image {
  padding-right: 1rem;
  border-right: 0.2rem solid #e71724;
  margin-right: 1.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_sec02__contents .rows .row .image img {
  width: 20.6rem;
  border-radius: 1rem 0 0 1rem;
}
.p_sec02__contents .rows .row .textarea {
  white-space: nowrap;
}

.p_sec03 {
  margin-top: 9rem;
}
.p_sec03__contents {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(21.2rem, #fff), color-stop(21.2rem, #444444));
  background-image: linear-gradient(to bottom, #fff 21.2rem, #444444 21.2rem);
  padding-bottom: 10rem;
}
.p_sec03__contents .mainimage {
  position: relative;
  margin-bottom: 7.7rem;
}
.p_sec03__contents .mainimage .img {
  border-radius: 1rem;
}
.p_sec03__contents .mainimage .icon {
  width: 16.4rem;
  position: absolute;
  bottom: -6rem;
  right: 1rem;
}
.p_sec03__contents .text {
  font-size: 3rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
}
.p_sec03__contents .points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
  margin-top: 5rem;
}
.p_sec03__contents .points .point {
  background: #ffeaeb;
  border-radius: 2rem;
  text-align: center;
  padding: 2rem 0;
}
.p_sec03__contents .text2 {
  font-size: 4.5rem;
  line-height: 1.2222222222;
  color: #e71724;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100%;
}
.p_sec03__contents .text2 .num {
  font-size: 8.5rem;
}
.p_sec03__contents .text2 .black {
  font-size: 3rem;
  color: black;
  font-weight: bold;
}
.p_sec03__contents .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.5rem;
}
.p_sec03__contents .rows .row + .row {
  border-top: 0.5rem solid #444444;
  padding-top: 5rem;
}
.p_sec03__contents .title {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0;
  margin: 2.5rem 0 2rem;
}

.p_sec04 {
  margin-top: 9rem;
}
.p_sec04__contents {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(21.2rem, #fff), color-stop(21.2rem, #444444));
  background-image: linear-gradient(to bottom, #fff 21.2rem, #444444 21.2rem);
  padding-bottom: 10rem;
}
.p_sec04__contents .mainimage {
  position: relative;
  margin-bottom: 7.7rem;
}
.p_sec04__contents .mainimage .img {
  border-radius: 1rem;
}
.p_sec04__contents .mainimage .icon {
  width: 16.4rem;
  position: absolute;
  bottom: -6rem;
  right: 1rem;
}
.p_sec04__contents .text {
  font-size: 3rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
}
.p_sec04__contents .fig {
  text-align: center;
}
.p_sec04__contents .fig img {
  width: 58.7rem;
}
.p_sec04__contents .point {
  text-align: center;
  background: #ffeaeb;
  border-radius: 2rem;
  padding: 3rem 1rem;
  margin-top: 4rem;
}
.p_sec04__contents .text2 {
  font-size: 3rem;
  line-height: 1.5666666667;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}
.p_sec04__contents .text3 {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.3333333333;
  color: #e71724;
}
.p_sec04__contents .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.5rem;
  margin-top: 9rem;
}
.p_sec04__contents .title {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0;
  margin: 2.5rem 0 2rem;
}
.p_sec04 .bnr {
  text-align: center;
  margin-top: 3rem;
}
.p_sec04 .bnr img {
  width: 68rem;
}

.p_sec05 {
  margin-top: 9rem;
  margin-bottom: 10rem;
}
.p_sec05 .image img {
  width: 100%;
}
.p_sec05 .point {
  text-align: center;
  margin-top: -11rem;
}
.p_sec05 .point img {
  width: 69.5rem;
}
.p_sec05 .text1 {
  text-align: center;
  font-size: 6.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-top: 2.4rem;
  margin-bottom: 3rem;
}
.p_sec05 .text4 {
  text-align: center;
  font-size: 2.2rem;
  border-bottom: 1.4rem solid #d9d9d9;
  padding-bottom: 6rem;
  margin-bottom: 6rem;
}
.p_sec05 .title {
  background: #000;
  color: white;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  font-weight: bold;
  font-size: 3.6rem;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
}
.p_sec05 .table {
  margin-top: 6rem;
}
.p_sec05 .table table th,
.p_sec05 .table table td {
  border: 0.5rem solid #d9d9d9;
}
.p_sec05 .table table thead th,
.p_sec05 .table table thead td {
  font-size: 2.5rem;
  text-align: center;
  color: white;
  padding: 1.4rem;
  font-weight: bold;
}
.p_sec05 .table table thead th {
  background: #e71724;
}
.p_sec05 .table table thead td {
  background: #5c5c5c;
}
.p_sec05 .table table tbody th,
.p_sec05 .table table tbody td {
  vertical-align: middle;
}
.p_sec05 .table table tbody th {
  font-size: 2.6rem;
  font-weight: 500;
  background: #ffe9e8;
  padding: 2.5rem;
}
.p_sec05 .table table tbody td {
  padding: 3rem 2rem;
}
.p_sec05 .table table tbody td:nth-child(2) {
  font-size: 3.5rem;
  font-weight: 500;
  text-align: right;
}
.p_sec05 .table table tbody td:nth-child(2) small {
  font-size: 2.7rem;
  font-weight: 500;
}
.p_sec05 .table table tbody td:nth-child(3) {
  font-size: 4.4rem;
  font-weight: 500;
  text-align: right;
  color: #e71724;
}
.p_sec05 .table table tbody td:nth-child(3) small {
  font-size: 3.4rem;
  font-weight: 500;
}
.p_sec05 .text2 {
  margin-top: 10rem;
  border-radius: 100vh;
  font-size: 5rem;
  line-height: 1.1538461538;
  color: #e71724;
  font-weight: bold;
  border: 1.6rem solid #e71724;
  padding: 2.5rem 0 4rem;
  text-align: center;
}
.p_sec05 .text2 small {
  font-weight: bold;
  font-size: 3.5rem;
}
.p_sec05 .text2 .black {
  color: black;
}
.p_sec05 .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}
.p_sec05 .rows .row {
  border-bottom: 0.8rem solid #000;
  padding-bottom: 6rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.p_sec05 .image2 {
  position: relative;
  margin-bottom: 3rem;
}
.p_sec05 .image2 .img {
  width: 100%;
}
.p_sec05 .image2 .icon {
  width: 14.5rem;
  position: absolute;
  bottom: -6rem;
  right: 12rem;
}
.p_sec05 .image2 .icon2 {
  width: 14.5rem;
  position: absolute;
  bottom: -6rem;
  right: -3.4rem;
}
.p_sec05 .text3 {
  font-size: 2.8rem;
  line-height: 1.7857142857;
  letter-spacing: 0;
}
.p_sec05 .stitle {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.p_sec05 .table2 {
  margin-top: 6rem;
}
.p_sec05 .table2 table th,
.p_sec05 .table2 table td {
  border: 0.5rem solid #d9d9d9;
  text-align: center;
}
.p_sec05 .table2 table thead td {
  font-size: 2.5rem;
  color: white;
  padding: 1rem 0;
  font-weight: bold;
  background: #626262;
}
.p_sec05 .table2 table thead td:nth-child(1) {
  background: #120085;
}
.p_sec05 .table2 table thead td:nth-child(2) {
  background: #e71724;
}
.p_sec05 .table2 table tbody th,
.p_sec05 .table2 table tbody td {
  vertical-align: middle;
}
.p_sec05 .table2 table tbody th {
  font-size: 2.4rem;
  font-weight: bold;
  background: #d3e6ff;
}
.p_sec05 .table2 table tbody td {
  padding: 3rem 0;
  font-size: 3rem;
  font-weight: bold;
}
.p_sec05 .table2 table tbody td small {
  font-size: 2.4rem;
  font-weight: bold;
}
.p_sec05 .table2 table tbody td:nth-child(2) {
  font-size: 3.5rem;
  font-weight: 900;
  color: #e71724;
}
.p_sec05 .table2 table tbody td:nth-child(2) small {
  font-weight: 900;
}
.p_sec06 {
  margin-top: 9rem;
  margin-bottom: 10rem;
}
.p_sec06 .image {
  position: relative;
}
.p_sec06 .image img {
  width: 100%;
}
.p_sec06 .image .obi {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  background: #120085;
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem;
}
.p_sec06 .image .obi .text1 {
  font-size: 3.5rem;
  font-weight: bold;
}
.p_sec06 .image .obi .text2 {
  font-size: 2.2rem;
  line-height: 1.3636363636;
}
.p_sec06 .textarea {
  padding: 0 3rem 5rem;
  border-bottom: 0.5rem solid #120085;
}
.p_sec06 .textarea .title {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 2.5rem 0 2rem;
}
.p_sec06 .textarea .text3 {
  font-size: 2.8rem;
  line-height: 1.6071428571;
  letter-spacing: 0;
}

.p_sec07 {
  background: #e71724;
  padding: 10rem 0;
}
.p_sec07 .text1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-radius: 100vh;
  background: #ffd000;
  font-size: 3.5rem;
  font-weight: 900;
  padding: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}
.p_sec07 .c_titA {
  font-size: 5rem;
}
.p_sec07 .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7rem;
}
.p_sec07 .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  gap: 1.2rem;
  font-size: 4.7rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 3rem;
  letter-spacing: 0;
}
.p_sec07 .title small {
  font-size: 3.8rem;
  font-weight: bold;
}
.p_sec07 .title:before {
  content: "";
  width: 1.1rem;
  background-color: #fff;
  border-radius: 100vh;
  display: block;
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
}
.p_sec07 .text2 {
  font-size: 3rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
  color: white;
  margin-bottom: 4rem;
}
.p_sec07 .text2 .yellow {
  color: #ffd000;
  font-weight: bold;
}
.p_sec07 .image img {
  width: 100%;
}
.p_sec07 .model {
  margin-top: 8rem;
  background-color: #fff;
  border-top: 2.2rem solid #ffd000;
  border-radius: 2rem;
  padding: 4rem;
}
.p_sec07 .text3 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: #e71724;
  margin-bottom: 2rem;
}
.p_sec07 .stitle {
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 3rem;
}
.p_sec07 .text6 {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0;
}
.p_sec07 .text5 {
  font-size: 3rem;
  line-height: 1.1666666667;
  font-weight: 600;
  letter-spacing: 0;
}
.p_sec07 .text5 .red {
  color: #e71724;
}
.p_sec07 .point {
  background: #ffeaeb;
  border-radius: 2rem;
  padding: 3rem 4rem;
  margin-top: 5rem;
}
.p_sec07 .point li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
}
.p_sec07 .point li + li {
  border-top: 0.2rem dotted #cccccc;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.p_sec07 .point li img {
  width: 4rem;
}

.p_sec08 {
  margin-top: 9rem;
}
.p_sec08 .c_inner {
  width: calc(100% - 10rem);
}
.p_sec08 .flow {
  border-top: 0.4rem solid #d9d9d9;
}
.p_sec08 .flow li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.5rem solid #d9d9d9;
  padding: 4rem 0;
}
.p_sec08 .flow li .num {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  border: 1.1rem solid #e71724;
  color: #e71724;
  font-size: 3.7rem;
  font-weight: 900;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p_sec08 .flow li .textarea .title {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
.p_sec08 .flow li .textarea .text {
  font-size: 3rem;
  line-height: 1.6666666667;
  font-weight: 500;
  letter-spacing: 0;
}

.p_sec09 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.p_sec09 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.p_sec09 .list li {
  border-radius: 1rem;
  border: 0.3rem solid #d9d9d9;
  padding: 2rem;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6666666667;
  font-weight: 500;
}
.p_sec09 .list li summary,
.p_sec09 .list li .ans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8rem;
}
.p_sec09 .list li summary .icon,
.p_sec09 .list li .ans .icon {
  font-size: 5rem;
  font-weight: 900;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}
.p_sec09 .list li summary .icon {
  color: #e71724;
}
.p_sec09 .list li .ans {
  margin-top: 3rem;
}
.p_sec09 .list li .ans .icon {
  color: #1d00db;
}

.p_sec10 {
  margin-top: 10rem;
  margin-bottom: 9rem;
}
.p_sec10 .title {
  text-align: center;
  font-weight: 900;
  font-size: 4.6rem;
  margin-bottom: 4rem;
}
.p_sec10 .image img {
  width: 100%;
}
.p_sec10 .table {
  margin: 4rem 3rem 0;
}
.p_sec10 table tr th,
.p_sec10 table tr td {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.3333333333;
  padding: 1rem 0;
}
.p_sec10 table tr th {
  padding-right: 3rem;
  border-right: 1px solid #000;
}
.p_sec10 table tr td {
  padding-left: 3rem;
}

.p_ftrbnr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.p_ftrbnr button img {
  width: 74rem;
}

.p_thanks {
  background: #120085;
  padding: 10rem 0;
}
.p_thanks .c_inner {
  width: calc(100% - 9rem);
}
.p_thanks .title {
  text-align: center;
  color: white;
  font-size: 4.5rem;
  line-height: 1.875;
  font-weight: bold;
  margin-bottom: 3rem;
}
.p_thanks .text {
  color: white;
  font-size: 3rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
  margin-bottom: 8rem;
}
.p_thanks .btn a {
  width: 100%;
  background: #a9a9a9;
  border-radius: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 10.6rem;
  font-size: 3.6rem;
  font-weight: 500;
  color: white;
}

.errors {
  font-size: 2.8rem;
  line-height: 4.3rem;
  color: red;
  margin-bottom: 3rem;
}
.errors:empty {
  display: none;
}

.p_modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(18, 0, 133, 0.8);
}
.p_modal__inner {
  max-width: 375px;
}
@media screen and (max-width: 768px) {
  .p_modal__inner {
    max-width: 100%;
  }
}
.p_modal__inner .c_inner {
  width: calc(100% - 10rem);
}
.p_modal .c_cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background: none;
}

.p_privacy {
  padding: 6rem 0 9rem;
}
.p_privacy__title {
  text-align: center;
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 5rem;
}
.p_privacy__textarea {
  font-size: 3rem;
  line-height: 1.6666666667;
}
.p_privacy__textarea h2 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-top: 1em;
}
.p_privacy__textarea ul {
  list-style-type: disc;
  list-style-position: inside;
}
.p_privacy__textarea ul li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.p_privacy__btn {
  text-align: center;
  margin-top: 7rem;
}
.p_privacy__btn a {
  width: 100%;
  background: #a9a9a9;
  border-radius: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 10.6rem;
  font-size: 3.6rem;
  font-weight: 500;
  color: white;
}

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