@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*! kiso.css v1.1.5 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

/* ======================================================
// MARK: Sections
// ------------------------------------------------------ */
:where(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}

:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  -webkit-padding-start: unset;
          padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  -webkit-margin-start: unset;
          margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

@media print {
  :where(pre) {
    /* Wraps text when printing. */
    white-space: pre-wrap;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
}

:where(abbr[title]) {
  /* Display an underline. */
  text-decoration-line: underline;
  /* Set the underline style to dotted. */
  text-decoration-style: dotted;
  /* Display a tooltip on mouse hover. */
  cursor: help;
}

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}

@media (forced-colors: active) {
  :where(mark) {
    /* In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode. */
    background-color: Highlight;
    color: HighlightText;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `revert`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `revert`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(th) {
  /* Resetting the `text-align` from the UA stylesheet provides more styling flexibility. */
  text-align: unset;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
::-webkit-file-upload-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

:where([type=radio], [type=checkbox]) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

:where([type=search]) {
  /* Remove the rounded corners of search inputs on macOS and normalize the background color. */
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    /* Remove the rounded corners of search inputs on iOS and normalize the background color. */
    border: 1px solid -apple-system-secondary-label;
    background-color: Canvas;
  }
}
:where(:is([type=tel], [type=url], [type=email], [type=number]):not(:-moz-placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(:is([type=tel], [type=url], [type=email], [type=number]):not(:-ms-input-placeholder)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(:is([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button], [type=submit], [type=reset]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(select) {
  /* The `background-color` specified in iOS Safari's User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

::-webkit-file-upload-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  */
  touch-action: manipulation;
}

:where(button, [type=button], [type=submit], [type=reset]),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  */
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

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

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

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

::-webkit-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::-moz-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

:-ms-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::-ms-input-placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

::placeholder {
  /* Standardize the opacity of placeholder text (it may be set lower by default in Firefox). */
  opacity: unset;
}

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

:where(summary)::-webkit-details-marker {
  /* In Safari versions earlier than 18.4 (released in April 2025), a triangle icon is displayed using the -webkit-details-marker CSS pseudo-element, so it should be removed. */
  display: none;
}

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;
  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  /*
  * These elements can be easily displayed by explicitly setting their `display` property.
  * To prevent them from appearing when not in an open state, they are forcibly hidden.
  */
  display: none !important;
}

:where(dialog) {
  /*
  * The max width and height of a `<dialog>` element are typically determined by the design.
  * These UA stylesheet properties are reset as they can be obstructive, especially when trying to make the dialog full-screen.
  */
  max-inline-size: unset;
  max-block-size: unset;
}

:where(dialog)::-ms-backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where(dialog)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg/30%);
}

:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * But `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}

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

:where(:focus-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

[tabindex="-1"]:focus-visible {
  /* Prevent programmatically focused elements from displaying an outline unless they are naturally focusable. */
  outline: none !important;
}

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

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

@font-face {
  font-family: "GenSenRounded2JP";
  src: url("/assets/fonts/GenSenRounded2JP-R.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GenSenRounded2JP";
  src: url("/assets/fonts/GenSenRounded2JP-B.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSauceSans";
  src: url("/assets/fonts/OpenSauceSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSauceSans";
  src: url("/assets/fonts/OpenSauceSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-main: #033c69;
  --color-accent: #a88003;
  --color-gold: #dba90d;
  --color-gold2: #fdcd56;
  --color-cream: #fffbef;
  --color-text: #000000;
  --font-base: "OpenSauceSans", "Noto Sans JP", sans-serif;
  --font-gensenMaru: "GenSenRounded2JP", "Hiragino Maru Gothic ProN", "Kosugi Maru", "Comfortaa", "メイリオ", sans-serif;
  --font-mincho: serif;
}
@media (min-width: 769px) {
  :root {
    --header-height: 82px;
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: 54px;
  }
}

html {
  height: 100%;
  color-scheme: unset;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  height: 100%;
  font-size: 16px;
  font-optical-sizing: auto;
  font-family: var(--font-base);
  line-height: 1.8;
  background-color: var(--color-main);
  -webkit-font-feature-settings: "plat";
          font-feature-settings: "plat";
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    max-width: 375px;
  }
}

body,
dialog {
  color: var(--color-text);
}

:where(h1) {
  margin-block: unset;
  font-size: 1em;
}

a {
  display: block;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

/**
  anchor =============
**/
.anchor {
  background-color: #fff;
}
.anchor__inner {
  -webkit-padding-before: 23px;
          padding-block-start: 23px;
  -webkit-padding-after: 26px;
          padding-block-end: 26px;
  padding-inline: 30px;
}
.anchor__heading {
  color: var(--color-main);
  font-weight: bold;
  line-height: 2;
  text-align: center;
  font-size: 10.4pt;
  font-size: 10.4pt;
  -webkit-margin-after: 23px;
          margin-block-end: 23px;
  -webkit-padding-after: 17px;
          padding-block-end: 17px;
  position: relative;
}
.anchor__heading::after {
  content: "";
  display: block;
  width: 160px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1pt;
}
.anchor__list {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 12px;
  padding-inline: 65px;
}
.anchor__item {
  background-color: var(--color-main);
  border-radius: 17px;
  position: relative;
}
.anchor__item::after {
  content: "";
  width: 28px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/assets/images/shared/clicker.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -11px;
  bottom: -8px;
}
.anchor__item__inner {
  text-align: center;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-before: 8px;
          padding-block-start: 8px;
  -webkit-padding-after: 20px;
          padding-block-end: 20px;
  font-size: 10pt;
  font-size: 10pt;
  text-shadow: 0 0 0.4em black;
}
.anchor__item__number {
  color: var(--color-gold2);
}
.anchor__item__label {
  color: #fff;
  font-weight: bold;
}

/**
  sectionReason =============
**/
.sectionReason {
  background-color: var(--color-main);
}
.sectionReason.-white {
  background-color: #fff;
}
.sectionReason.-white .sectionReason__header, .sectionReason.-white .sectionReason__footer {
  color: var(--color-main);
  text-shadow: none;
}
.sectionReason.-white .sectionReason__header {
  -webkit-padding-before: 50px;
          padding-block-start: 50px;
}
.sectionReason.-white .sectionReason__footer {
  -webkit-padding-after: 60px;
          padding-block-end: 60px;
}
.sectionReason.-white .sectionReason__footer.-navy {
  background-color: var(--color-main);
  color: #fff;
  text-shadow: 0 0 0.4em black;
  -webkit-padding-after: 39px;
          padding-block-end: 39px;
}
.sectionReason.-white .sectionReason__lead {
  font-weight: bold;
}
.sectionReason__header {
  color: #fff;
  text-shadow: 0 0 0.4em black;
  -webkit-padding-before: 33px;
          padding-block-start: 33px;
  -webkit-padding-after: 29px;
          padding-block-end: 29px;
  padding-inline: 10px;
}
.sectionReason__header.-navy {
  background-color: var(--color-main) !important;
  color: #fff !important;
}
.sectionReason__header.-navy .sectionReason__heading {
  text-shadow: 0 0 0.4em black;
}
.sectionReason__header.-navy .sectionReason__lead {
  text-shadow: 0 0 0.4em black;
  font-weight: 500;
}
.sectionReason__heading {
  font-weight: bold;
  text-align: center;
  font-size: 13.3pt;
  font-size: 13.3pt;
  -webkit-padding-after: 15px;
          padding-block-end: 15px;
  position: relative;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
.sectionReason__heading::after {
  content: "";
  display: block;
  width: 276px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1pt;
}
.sectionReason__heading__medal {
  -webkit-transform: translateY(-0.3em);
          transform: translateY(-0.3em);
  margin-inline: 0.3em;
  font-size: 11.9pt;
  font-size: 11.9pt;
  -webkit-padding-before: 0.1em;
          padding-block-start: 0.1em;
  -webkit-padding-start: 0.05em;
          padding-inline-start: 0.05em;
}
.sectionReason__lead {
  font-weight: 500;
  text-align: center;
  line-height: 1.9;
  font-size: 9.6pt;
  font-size: 9.6pt;
}
.sectionReason__sub {
  background-color: #fff;
  position: relative;
}
.sectionReason__sub__box {
  background-color: var(--color-cream);
}
.sectionReason__sub.-leaders {
  -webkit-padding-before: 80px;
          padding-block-start: 80px;
  -webkit-padding-after: 52px;
          padding-block-end: 52px;
  -webkit-padding-start: 5px;
          padding-inline-start: 5px;
}
.sectionReason__sub.-leaders .sectionReason__sub__heading {
  position: absolute;
  left: 0;
  top: 50px;
}
@media (min-width: 769px) {
  .sectionReason__sub.-leaders .sectionReason__sub__box {
    padding-block: 31px;
    -webkit-padding-start: 24px;
            padding-inline-start: 24px;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}
@media (max-width: 768px) {
  .sectionReason__sub.-leaders .sectionReason__sub__box {
    padding-block: 31px;
    padding-inline: 24px;
  }
}
.sectionReason__sub.-flow {
  padding-inline: 32px;
}
.sectionReason__sub.-flow .sectionReason__sub__list {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.sectionReason__sub.-flow .sectionReason__sub__item {
  background-color: var(--color-main);
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  position: relative;
  text-shadow: 0 0 0.4em black;
  min-height: 130px;
  padding-block: 10px;
  font-size: 7.4pt;
  font-size: 7.4pt;
}
.sectionReason__sub.-flow .sectionReason__sub__item:nth-child(1) {
  position: relative;
}
.sectionReason__sub.-flow .sectionReason__sub__item:nth-child(1)::after {
  content: "";
  display: block;
  width: 17px;
  height: auto;
  aspect-ratio: 21/68;
  background-image: url(/assets/images/shared/arrowWritten-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: unset;
  bottom: -40px;
  left: unset;
  right: -7px;
  z-index: 2;
}
.sectionReason__sub.-flow .sectionReason__sub__item:nth-child(2) {
  position: relative;
}
.sectionReason__sub.-flow .sectionReason__sub__item:nth-child(2)::after {
  content: "";
  display: block;
  width: 15px;
  height: auto;
  aspect-ratio: 14/53;
  background-image: url(/assets/images/shared/arrowWritten-left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: unset;
  bottom: -39px;
  left: -6px;
  right: unset;
  z-index: 2;
}
.sectionReason__sub.-flow .sectionReason__sub__item__number {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  font-size: 8.2pt;
  font-size: 8.2pt;
  top: -10px;
}
.sectionReason__sub.-support {
  max-width: 1560px;
  margin-inline: auto;
}
.sectionReason__sub.-support .sectionReason__sub__block {
  color: var(--color-main);
  font-weight: bold;
  text-align: center;
  font-size: 9pt;
  font-size: 9pt;
}
.sectionReason__sub.-support .sectionReason__sub__block img {
  width: 100%;
}
.sectionReason__sub.-support .sectionReason__sub__block.-text {
  -webkit-padding-before: 30px;
          padding-block-start: 30px;
  -webkit-padding-after: 38px;
          padding-block-end: 38px;
  padding-inline: 10px;
}
.sectionReason__sub.-support .sectionReason__sub__block:nth-child(1) {
  position: relative;
}
.sectionReason__sub.-support .sectionReason__sub__block:nth-child(1)::after {
  content: "";
  display: block;
  width: 15px;
  height: auto;
  aspect-ratio: 14/53;
  background-image: url(/assets/images/shared/arrowWritten-left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: unset;
  bottom: -25px;
  left: 36px;
  right: unset;
  z-index: 2;
}
.sectionReason__sub.-support .sectionReason__sub__block:nth-child(2) {
  position: relative;
}
.sectionReason__sub.-support .sectionReason__sub__block:nth-child(2)::after {
  content: "";
  display: block;
  width: 17px;
  height: auto;
  aspect-ratio: 21/68;
  background-image: url(/assets/images/shared/arrowWritten-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: unset;
  bottom: -39px;
  left: unset;
  right: 20px;
  z-index: 2;
}
.sectionReason__sub.-support .sectionReason__sub__medal {
  font-size: 8pt;
  font-size: 8pt;
  margin-bottom: 6px;
}
.sectionReason__sub.-community .sectionReason__sub__lead {
  background-color: var(--color-main);
  color: #fff;
  line-height: 2.1;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-block: 36px;
  font-size: 6.9pt;
  font-size: 6.9pt;
  position: relative;
}
.sectionReason__sub.-community .sectionReason__sub__lead::after {
  content: "";
  display: block;
  width: 15px;
  height: auto;
  aspect-ratio: 14/53;
  background-image: url(/assets/images/shared/arrowWritten-left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: unset;
  bottom: -25px;
  left: 36px;
  right: unset;
  z-index: 2;
}
.sectionReason__sub.-community .sectionReason__sub__gallery {
  background-color: #fff;
  padding-block: 42px;
  padding-inline: 17px;
}
.sectionReason__sub.-community .sectionReason__sub__budge {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 23px;
  top: -15px;
}
.sectionReason__sub.-voice {
  background-color: #fff;
  -webkit-padding-before: 66px;
          padding-block-start: 66px;
  -webkit-padding-after: 47px;
          padding-block-end: 47px;
}
.sectionReason__sub.-voice .sectionReason__sub__heading {
  text-align: center;
  position: absolute;
  left: 0;
  padding-block: 17px;
  top: 25px;
}
.sectionReason__sub.-voice .sectionReason__sub__inner {
  background-color: var(--color-cream);
  -webkit-padding-before: 52px;
          padding-block-start: 52px;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  padding-inline: 23px;
}
.sectionReason__sub.-voice .sectionReason__sub__list {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}
.sectionReason__sub.-voice .sectionReason__sub__button {
  background-color: var(--color-accent);
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  margin-inline: auto;
  position: relative;
  text-shadow: 0 0 0.4em black;
  width: 152px;
  padding: 10px;
  font-size: 7.7pt;
  font-size: 7.7pt;
  top: 25px;
  position: relative;
}
.sectionReason__sub.-voice .sectionReason__sub__button::after {
  content: "";
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/assets/images/shared/clicker.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -13px;
  bottom: -13px;
}
.sectionReason__footer {
  display: -ms-grid;
  display: grid;
  color: #fff;
  text-shadow: 0 0 0.4em black;
  -webkit-padding-before: 29px;
          padding-block-start: 29px;
  -webkit-padding-after: 39px;
          padding-block-end: 39px;
  gap: 1.5em;
}
.sectionReason__text {
  font-weight: bold;
  line-height: 1.9;
  text-align: center;
  font-size: 8.9pt;
  font-size: 8.9pt;
}

.leaderSlider__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
.leaderSlider__item {
  height: auto;
}
.leaderSlider__pagination {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin-inline: auto;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
}
.leaderSlider__pagination .swiper-pagination-bullet {
  border-radius: 0;
  background-color: #b5b5b5;
  margin: 0;
  width: 4px;
  height: 4px;
}
.leaderSlider__pagination .swiper-pagination-bullet-active {
  background-color: #3e3e3e;
  width: 6px;
  height: 6px;
}

.galleryBox {
  border-radius: 3px;
  background-color: var(--color-cream);
  border: 1px solid #000;
}
.galleryBox__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.galleryBox__image, .galleryBox__content {
  width: 50%;
}
.galleryBox__image {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.galleryBox__image img {
  width: 100%;
}
.galleryBox__image__label {
  background-color: var(--color-main);
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  position: absolute;
  bottom: 0;
  min-width: 76px;
  padding-block: 7px;
  font-size: 3.9pt;
  font-size: 3.9pt;
}
.galleryBox__image__label.-left {
  left: 0;
}
.galleryBox__image__label.-right {
  right: 0;
}
.galleryBox__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.galleryBox__text {
  color: var(--color-main);
  font-weight: bold;
  line-height: 2.14;
  text-align: center;
  font-size: 6.4pt;
  font-size: 6.4pt;
}

/**
  plan =============
**/
.plan {
  background-color: #fff;
  padding-block: 40px;
}
.plan__inner {
  background-color: var(--color-main);
  -webkit-padding-before: 26px;
          padding-block-start: 26px;
  -webkit-padding-after: 33px;
          padding-block-end: 33px;
}
.plan__heading {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 13.1pt;
  font-size: 13.1pt;
  -webkit-padding-after: 19px;
          padding-block-end: 19px;
  position: relative;
  -webkit-margin-after: 19px;
          margin-block-end: 19px;
  text-shadow: 0 0 0.4em black;
}
.plan__heading::after {
  content: "";
  display: block;
  width: 113px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1pt;
}
.plan__heading__medal {
  -webkit-transform: translateY(-0.3em);
          transform: translateY(-0.3em);
  -webkit-margin-end: 0.3em;
          margin-inline-end: 0.3em;
  font-size: 13.2pt;
  font-size: 13.2pt;
  width: 32px !important;
}
.plan__list {
  display: -ms-grid;
  display: grid;
  padding-inline: 54px;
  gap: 17px;
}

/**
  flow =============
**/
.flow {
  background-color: #fff;
  padding-block: 40px;
}
.flow__inner {
  background-color: var(--color-main);
  color: #fff;
  -webkit-padding-before: 37px;
          padding-block-start: 37px;
  -webkit-padding-after: 35px;
          padding-block-end: 35px;
  padding-inline: 21px;
}
.flow__heading {
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 0.4em black;
  font-size: 13.1pt;
  font-size: 13.1pt;
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
}
.flow__list {
  display: -ms-grid;
  display: grid;
}
.flow__item {
  border-bottom: 1px solid #c4b781;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 4px;
  padding-block: 13px;
  gap: 11px;
}
.flow__item:last-child {
  border-bottom: none;
}
.flow__item__number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12.7pt;
  font-size: 12.7pt;
}
.flow__item__content {
  color: #fff;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 0 0.4em black;
}
.flow__item__heading {
  font-size: 7.9pt;
  font-size: 7.9pt;
}
.flow__item__text {
  font-size: 6.7pt;
  font-size: 6.7pt;
}

/**
faq =============
**/
.faq__upper {
  background-color: #fff;
  position: relative;
  padding-block: 20px;
}
.faq__upper::after {
  content: "";
  height: auto;
  aspect-ratio: 259/216;
  background-image: url(/assets/images/shared/faq-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 115px;
  right: 8px;
}
.faq__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-main);
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 0.4em black;
  font-size: 9.8pt;
  font-size: 9.8pt;
  padding-block: 8px;
  -webkit-padding-start: 27px;
          padding-inline-start: 27px;
  -webkit-padding-end: 42px;
          padding-inline-end: 42px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
}
.faq__content {
  background-color: var(--color-main);
  font-size: 7.6pt;
  font-size: 7.6pt;
  -webkit-padding-before: 27px;
          padding-block-start: 27px;
  -webkit-padding-after: 16px;
          padding-block-end: 16px;
  padding-inline: 21px;
}
.faq__categories {
  display: -ms-grid;
  display: grid;
  gap: 25px;
}
.faq__category {
  color: #fff;
}
.faq__category__heading {
  font-weight: 500;
  text-shadow: 0 0 0.4em black;
  font-size: 9.2pt;
  font-size: 9.2pt;
  -webkit-margin-after: 11px;
          margin-block-end: 11px;
}
.faq__item {
  border-bottom: 1px solid #71819b;
  text-shadow: 0 0 0.4em black;
  padding-inline: 6px;
}
.faq__item:first-child {
  border-top: 1px solid #71819b;
}
.faq__item__question {
  background-color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  position: relative;
  cursor: pointer;
  position: relative;
  z-index: 2;
  padding-block: 10px;
  -webkit-padding-end: 20px;
          padding-inline-end: 20px;
  gap: 12px;
}
.faq__item__question.is-open .faq__item__toggle__inner::after {
  opacity: 0;
}
.faq__item__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  max-height: 0;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.faq__item__answer.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  max-height: 1000px;
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
}
.faq__item__answer .faq__item__content {
  display: -ms-grid;
  display: grid;
  gap: 1em;
  font-weight: 400;
  font-size: 7.5pt;
  font-size: 7.5pt;
  -webkit-margin-before: 0.32em;
          margin-block-start: 0.32em;
}
.faq__item__answer .faq__item__content ul {
  list-style-type: disc;
  list-style-position: inside;
}
.faq__item__answer .faq__item__content ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.faq__item__icon {
  color: var(--color-gold);
  font-weight: bold;
  font-size: 15px;
}
.faq__item__content {
  font-weight: 500;
  font-size: 8.5pt;
  font-size: 8.5pt;
  -webkit-margin-before: 0.26em;
          margin-block-start: 0.26em;
}
.faq__item__toggle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 13px;
  right: 10px;
}
.faq__item__toggle__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.faq__item__toggle__inner::before, .faq__item__toggle__inner::after {
  content: "";
  display: block;
  background-color: var(--color-gold);
  position: absolute;
}
.faq__item__toggle__inner::before {
  width: 100%;
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  margin-block: auto;
}
.faq__item__toggle__inner::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.faq__button {
  margin-inline: auto;
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
}

/**
info =============
**/
.info {
  background-color: #efefef;
  padding-block: 40px;
  padding-inline: 32px;
}
.info__inner {
  background-color: var(--color-main);
  color: #fff;
  padding-block: 26px;
  padding-inline: 37px;
}
.info__heading {
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: relative;
  text-shadow: 0 0 0.4em black;
  font-size: 13.3pt;
  font-size: 13.3pt;
  -webkit-margin-after: 22px;
          margin-block-end: 22px;
  -webkit-padding-after: 11px;
          padding-block-end: 11px;
}
.info__heading::after {
  content: "";
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 3px;
}
.info__list {
  display: -ms-grid;
  display: grid;
  gap: 11px;
}
.info__button {
  margin-inline: auto;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
}

/**
sectionBanner =============
**/
.sectionBanner__list {
  display: -ms-grid;
  display: grid;
  gap: 42px;
}

/**
pagination =============
**/
.pagination {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}
.pagination__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
  color: var(--color-main);
  font-size: 8pt;
  font-size: 8pt;
}
.pagination__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  gap: 1em;
}
.pagination__number {
  width: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination__number--current {
  color: #fff;
  background-color: var(--color-main);
}

.l-siteHeader {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.l-siteHeader__inner {
  height: var(--header-height);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 769px) {
  .l-siteHeader__inner {
    padding-inline: 38px;
    -ms-grid-columns: 252px 1fr;
    grid-template-columns: 252px 1fr;
  }
}
@media (max-width: 768px) {
  .l-siteHeader__inner {
    padding-inline: 12px;
    -ms-grid-columns: 150px 1fr;
    grid-template-columns: 150px 1fr;
  }
}
.l-siteHeader__logo img {
  width: 100%;
}
.l-siteHeader__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .l-siteHeader__body {
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .l-siteHeader__body {
    gap: 10px;
  }
}
.l-siteHeader__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.l-siteHeader__sns__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
}
.l-siteHeader__conversion {
  /** コンポーネント上書き **/
}
@media (min-width: 769px) {
  .l-siteHeader__conversion .c-buttonConsult {
    padding-block: 20px;
    padding-inline: 20px;
  }
}
@media (min-width: 769px) {
  .l-siteHeader__conversion .c-buttonConsult__inner {
    font-size: 13pt;
    font-size: 13pt;
  }
}
.l-siteHeader__menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-siteHeader__menu.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-siteFooter {
  background-color: var(--color-main);
}
.l-siteFooter__upper {
  background-color: #fff;
  display: -ms-grid;
  display: grid;
}
@media (min-width: 769px) {
  .l-siteFooter__upper {
    -ms-grid-columns: 380px 1fr;
    grid-template-columns: 380px 1fr;
    padding-block: 23px;
    padding-inline: 136px;
  }
}
@media (max-width: 768px) {
  .l-siteFooter__upper {
    -ms-grid-columns: 180px 1fr;
    grid-template-columns: 180px 1fr;
    padding-block: 10px;
    padding-inline: 25px;
  }
}
.l-siteFooter__logo img {
  width: 100%;
}
.l-siteFooter__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .l-siteFooter__sns {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .l-siteFooter__sns {
    gap: 5px;
  }
}
.l-siteFooter__sns__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .l-siteFooter__sns__link {
    width: 85px;
  }
}
@media (max-width: 768px) {
  .l-siteFooter__sns__link {
    width: 25px;
  }
}
.l-siteFooter__body {
  background-color: var(--color-main);
}
@media (min-width: 769px) {
  .l-siteFooter__body {
    padding-block: 78px;
    padding-inline: 165px;
  }
}
@media (max-width: 768px) {
  .l-siteFooter__body {
    padding-block: 25px;
    padding-inline: 25px;
  }
}

.c-buttonHamburder {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -ms-grid;
  display: grid;
}
@media (min-width: 769px) {
  .c-buttonHamburder {
    width: 50px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .c-buttonHamburder {
    width: 22px;
    gap: 3px;
  }
}
.c-buttonHamburder__line {
  width: 100%;
  background-color: var(--color-main);
  border-radius: 100px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
@media (min-width: 769px) {
  .c-buttonHamburder__line {
    height: 8px;
  }
}
@media (max-width: 768px) {
  .c-buttonHamburder__line {
    height: 4px;
  }
}
.c-buttonHamburder.is-active .c-buttonHamburder__line:nth-child(1) {
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
@media (min-width: 769px) {
  .c-buttonHamburder.is-active .c-buttonHamburder__line:nth-child(1) {
    -webkit-transform: rotate(45deg) translateX(8px) translateY(-5px);
            transform: rotate(45deg) translateX(8px) translateY(-5px);
  }
}
@media (max-width: 768px) {
  .c-buttonHamburder.is-active .c-buttonHamburder__line:nth-child(1) {
    -webkit-transform: rotate(45deg) translateX(5px) translateY(-5px);
            transform: rotate(45deg) translateX(5px) translateY(-5px);
  }
}
.c-buttonHamburder.is-active .c-buttonHamburder__line:nth-child(2) {
  opacity: 0;
}
.c-buttonHamburder.is-active .c-buttonHamburder__line:nth-child(3) {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
@media (min-width: 769px) {
  .c-buttonHamburder.is-active .c-buttonHamburder__line:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateX(7px) translateY(5px);
            transform: rotate(-45deg) translateX(7px) translateY(5px);
  }
}
@media (max-width: 768px) {
  .c-buttonHamburder.is-active .c-buttonHamburder__line:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateX(5px) translateY(5px);
            transform: rotate(-45deg) translateX(5px) translateY(5px);
  }
}

.c-buttonConsult {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-gold);
  border-radius: 10px;
  padding-block: 12px;
  padding-inline: 20px;
  position: relative;
}
.c-buttonConsult::after {
  content: "";
  width: 28px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/assets/images/shared/clicker.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -11px;
  bottom: -8px;
}
.c-buttonConsult__inner {
  color: #fff;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0 0 0.4em black;
  font-size: 7.6pt;
  font-size: 7.6pt;
}

.c-buttonApply {
  border-radius: 20px;
  position: relative;
  background-image: url(/assets/images/shared/c-buttonApply.png);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1135/165;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.c-buttonApply::after {
  content: "";
  width: 22px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/assets/images/shared/clicker.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -6px;
  bottom: -6px;
}
.c-buttonApply__text {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 0.4em black;
  font-size: 9.3pt;
  font-size: 9.3pt;
}

.c-buttonMore {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-accent);
  padding-block: 12px;
  padding-inline: 22px;
  border-radius: 100px;
  position: relative;
}
.c-buttonMore::after {
  content: "";
  width: 23px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/assets/images/shared/clicker.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -9px;
  bottom: -9px;
}
.c-buttonMore__inner {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 0.4em black;
  font-size: 6.1pt;
  font-size: 6.1pt;
}

.c-cardTeacher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: auto;
}
.c-cardTeacher__image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: gray;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-cardTeacher__image img {
  -o-object-position: center;
     object-position: center;
}
.c-cardTeacher__image__medal {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-padding-before: 0.1em;
          padding-block-start: 0.1em;
  width: 24px;
  font-size: 9pt;
  font-size: 9pt;
}
.c-cardTeacher__content {
  background-color: #fff;
  line-height: 1.5;
  height: 100%;
  padding-block: 11px;
  padding-inline: 12px;
}
.c-cardTeacher__name {
  color: var(--color-main);
  font-weight: bold;
  font-size: 7.7pt;
  font-size: 7.7pt;
}
.c-cardTeacher__major {
  -webkit-margin-before: 0.2em;
          margin-block-start: 0.2em;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 6.3pt;
  font-size: 6.3pt;
}
.c-cardTeacher__message {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  font-size: 6.3pt;
  font-size: 6.3pt;
}

.c-cardVoice__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 1fr;
  grid-template-columns: 90px 1fr;
}
.c-cardVoice__image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  margin: 0 auto;
  max-height: 250px;
}
.c-cardVoice__content {
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 10px;
  gap: 0.5em;
}
.c-cardVoice__status {
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background-image: url(/assets/images/shared/c-cardVoice__status.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  text-shadow: 0 0 0.4em black;
  font-size: 6.6pt;
  font-size: 6.6pt;
  padding-block: 4px;
  padding-inline: 10px;
}
.c-cardVoice__about {
  font-weight: bold;
  font-size: 6.4pt;
  font-size: 6.4pt;
}
.c-cardVoice__course {
  color: var(--color-main);
}
.c-cardVoice__grade {
  color: var(--color-accent);
}
.c-cardVoice__text {
  font-weight: 600;
  display: -ms-grid;
  display: grid;
  gap: 1em;
  font-size: 5.6pt;
  font-size: 5.6pt;
}

.c-cardPlan__inner {
  display: -ms-grid;
  display: grid;
}
.c-cardPlan__image {
  position: relative;
  aspect-ratio: 230/80;
  background-color: gray;
}
.c-cardPlan__image__medal {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11pt;
  font-size: 11pt;
}
.c-cardPlan__content {
  background-color: #fff;
  padding-block: 5px;
  padding-inline: 32px;
}
.c-cardPlan__box {
  background-color: var(--color-main);
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.67;
  text-shadow: 0 0 0.4em black;
  padding: 10px;
  position: relative;
}
.c-cardPlan__box::after {
  content: "";
  width: 28px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/assets/images/shared/clicker.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -11px;
  bottom: -8px;
}
.c-cardPlan__course {
  font-size: 8pt;
  font-size: 8pt;
}
.c-cardPlan__grade {
  font-size: 6.4pt;
  font-size: 6.4pt;
}
.c-cardPlan__price {
  color: var(--color-gold2);
  font-size: 6pt;
  font-size: 6pt;
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
}
.c-cardPlan__method {
  font-size: 6pt;
  font-size: 6pt;
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
}

.c-cardInfo__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.c-cardInfo__image {
  background-color: gray;
  min-height: 100px;
}
.c-cardInfo__content {
  padding-block: 10px;
}
.c-cardInfo__title {
  color: #fff;
  font-weight: 500;
  font-size: 8pt;
  font-size: 8pt;
}

.c-heading--01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-main);
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  -webkit-padding-before: 14px;
          padding-block-start: 14px;
  -webkit-padding-after: 27px;
          padding-block-end: 27px;
  padding-inline: 32px;
}
.c-heading--01 .hgroup {
  -webkit-padding-after: 7px;
          padding-block-end: 7px;
  position: relative;
}
.c-heading--01 .hgroup::after {
  content: "";
  display: block;
  width: calc(100% + 26px);
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1pt;
}
.c-heading--01 .en {
  font-size: 9.6pt;
  font-size: 9.6pt;
}
.c-heading--01 .ja {
  font-size: 8pt;
  font-size: 8pt;
}

.c-menuAccordion {
  border-bottom: 1px solid #71819b;
}
@media (min-width: 769px) {
  .c-menuAccordion {
    padding-inline: 30px;
    padding-block: 20px;
  }
}
@media (max-width: 768px) {
  .c-menuAccordion {
    padding-inline: 21px;
    padding-block: 14px;
  }
}
.c-menuAccordion__parent {
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
@media (min-width: 769px) {
  .c-menuAccordion__parent {
    font-size: 16.8pt;
    font-size: 16.8pt;
  }
}
@media (max-width: 768px) {
  .c-menuAccordion__parent {
    font-size: 9.2pt;
    font-size: 9.2pt;
  }
}
.c-menuAccordion__parent:where(:not(a)) {
  position: relative;
}
.c-menuAccordion__parent:where(:not(a))::after {
  content: "▶︎";
  color: var(--color-main);
  font-size: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin-block: auto;
  -webkit-padding-start: 1px;
          padding-inline-start: 1px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-menuAccordion__parent:where(:not(a)).is-open::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-menuAccordion__children {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 1em;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  color: var(--color-gold2);
  font-weight: 400;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s, -webkit-margin-before 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s, -webkit-margin-before 0.3s;
  transition: transform 0.3s, opacity 0.3s, margin-block-start 0.3s;
  transition: transform 0.3s, opacity 0.3s, margin-block-start 0.3s, -webkit-transform 0.3s, -webkit-margin-before 0.3s;
  visibility: hidden;
  height: 0;
}
@media (min-width: 769px) {
  .c-menuAccordion__children {
    font-size: 13.2pt;
    font-size: 13.2pt;
  }
}
@media (max-width: 768px) {
  .c-menuAccordion__children {
    font-size: 8.7pt;
    font-size: 8.7pt;
  }
}
.c-menuAccordion__children.is-open {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  height: auto;
}

.c-formContact {
  font-family: var(--font-mincho);
}
.c-formContact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 20px;
}
.c-formContact__group {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.c-formContact__label {
  font-size: 7pt;
  font-size: 7pt;
}
.c-formContact__label .required {
  color: red;
  font-weight: bold;
}
.c-formContact__label.-confirm {
  font-size: 8pt;
  font-size: 8pt;
  font-weight: bold;
}
.c-formContact__input {
  width: 100%;
  height: 25px;
  border: none;
  font-size: 7pt;
  font-size: 7pt;
}
.c-formContact__textarea {
  width: 100%;
  border: none;
  font-size: 7pt;
  font-size: 7pt;
}
.c-formContact__input.error, .c-formContact__textarea.error {
  border-color: #d32f2f;
  background-color: #ffeaea;
}
.c-formContact__radios, .c-formContact__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 0.1em;
}
.c-formContact__radio, .c-formContact__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3em;
}
.c-formContact__radio input, .c-formContact__radio label, .c-formContact__checkbox input, .c-formContact__checkbox label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 7pt;
  font-size: 7pt;
}
.c-formContact__radio input.-other, .c-formContact__checkbox input.-other {
  width: 75%;
  -ms-flex-negative: unset;
      flex-shrink: unset;
  border-bottom: 1px gray solid;
  background-color: unset;
}
.c-formContact__radio input.-other::-webkit-input-placeholder, .c-formContact__checkbox input.-other::-webkit-input-placeholder {
  font-size: 7pt;
  font-size: 7pt;
  vertical-align: middle;
  color: gray;
}
.c-formContact__radio input.-other::-moz-placeholder, .c-formContact__checkbox input.-other::-moz-placeholder {
  font-size: 7pt;
  font-size: 7pt;
  vertical-align: middle;
  color: gray;
}
.c-formContact__radio input.-other:-ms-input-placeholder, .c-formContact__checkbox input.-other:-ms-input-placeholder {
  font-size: 7pt;
  font-size: 7pt;
  vertical-align: middle;
  color: gray;
}
.c-formContact__radio input.-other::-ms-input-placeholder, .c-formContact__checkbox input.-other::-ms-input-placeholder {
  font-size: 7pt;
  font-size: 7pt;
  vertical-align: middle;
  color: gray;
}
.c-formContact__radio input.-other::placeholder, .c-formContact__checkbox input.-other::placeholder {
  font-size: 7pt;
  font-size: 7pt;
  vertical-align: middle;
  color: gray;
}
.c-formContact__radio label, .c-formContact__checkbox label {
  font-size: 7pt;
  font-size: 7pt;
}
.c-formContact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-formContact__submit {
  background-color: var(--color-main);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 9px;
  padding-inline: 20px;
  color: #fff;
  font-size: 7.2pt;
  font-size: 7.2pt;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.c-formContact__error {
  color: #d32f2f;
  font-size: 7pt;
  font-size: 7pt;
  display: block;
  width: 100%;
}

.p-page__wrapper {
  -webkit-padding-before: var(--header-height);
          padding-block-start: var(--header-height);
}
@media (min-width: 769px) {
  .p-page__wrapper {
    background-color: #efefef;
  }
}
@media (min-width: 769px) {
  .p-page__body {
    max-width: 1366px;
    padding-inline: 100px;
    margin-inline: auto;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-page__body:has(.p-page__aside) {
    -ms-grid-columns: 700px 36px 375px;
    grid-template-columns: 700px 375px;
    gap: 36px;
  }
}
@media (min-width: 769px) {
  .p-page__content {
    width: 375px;
    zoom: 186.6666666667%;
  }
}
@media (min-width: 769px) {
  .p-page__aside {
    -webkit-padding-before: 42px;
            padding-block-start: 42px;
  }
}
.p-headerNav {
  background-color: var(--color-main);
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  overflow-y: scroll;
}
.p-headerNav__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .p-headerNav__sublist {
    margin-block: 40px;
    gap: 2em;
  }
}
@media (max-width: 768px) {
  .p-headerNav__sublist {
    margin-block: 25px;
    gap: 1em;
  }
}
.p-headerNav__subitem {
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .p-headerNav__subitem {
    font-size: 18pt;
    font-size: 18pt;
  }
}
@media (max-width: 768px) {
  .p-headerNav__subitem {
    font-size: 7.2pt;
    font-size: 7.2pt;
  }
}

.p-footerNav__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 769px) {
  .p-footerNav__list {
    gap: 60px;
    -webkit-margin-after: 50px;
            margin-block-end: 50px;
  }
}
@media (max-width: 768px) {
  .p-footerNav__list {
    gap: 16px;
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}
.p-footerNav__item {
  font-weight: 500;
  text-shadow: 0 0 0.4em black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
@media (min-width: 769px) {
  .p-footerNav__item {
    gap: 30px;
    -webkit-margin-after: 60px;
            margin-block-end: 60px;
  }
}
@media (max-width: 768px) {
  .p-footerNav__item {
    gap: 14px;
    -webkit-margin-after: 10px;
            margin-block-end: 10px;
  }
}
.p-footerNav__item__heading {
  color: #fff;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .p-footerNav__item__heading {
    font-size: 12.2pt;
    font-size: 12.2pt;
  }
}
@media (max-width: 768px) {
  .p-footerNav__item__heading {
    font-size: 5.6pt;
    font-size: 5.6pt;
  }
}
.p-footerNav__item__link {
  color: var(--color-gold2);
  line-height: 1.6;
}
@media (min-width: 769px) {
  .p-footerNav__item__link {
    font-size: 11.1pt;
    font-size: 11.1pt;
  }
}
@media (max-width: 768px) {
  .p-footerNav__item__link {
    font-size: 5.1pt;
    font-size: 5.1pt;
  }
}
.p-footerNav__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .p-footerNav__sublist {
    gap: 2em;
  }
}
@media (max-width: 768px) {
  .p-footerNav__sublist {
    gap: 1em;
  }
}
.p-footerNav__subitem {
  color: #fff;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .p-footerNav__subitem {
    font-size: 12.2pt;
    font-size: 12.2pt;
  }
}
@media (max-width: 768px) {
  .p-footerNav__subitem {
    font-size: 5.6pt;
    font-size: 5.6pt;
  }
}

.p-sectionConsult {
  background-image: url(/assets/images/shared/p-sectionConsult-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.p-sectionConsult__inner {
  position: relative;
}
.p-sectionConsult__image {
  position: absolute;
  bottom: 0;
  width: 149px;
  left: 3px;
}
.p-sectionConsult__content {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  width: 221px;
  -webkit-padding-before: 27px;
          padding-block-start: 27px;
  -webkit-padding-after: 24px;
          padding-block-end: 24px;
}
.p-sectionConsult__desc {
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 0 0.4em black;
}
.p-sectionConsult__desc__regular {
  font-size: 7.5pt;
  font-size: 7.5pt;
}
.p-sectionConsult__desc__large {
  white-space: nowrap;
  font-size: 10.9pt;
  font-size: 10.9pt;
}
.p-sectionConsult__desc__box {
  background-color: var(--color-accent);
  font-size: 5.2pt;
  font-size: 5.2pt;
  padding-block: 7px;
  -webkit-padding-start: 4px;
          padding-inline-start: 4px;
  -webkit-margin-before: 13px;
          margin-block-start: 13px;
}
.p-sectionConsult__button {
  width: 172px;
  -webkit-margin-before: 14px;
          margin-block-start: 14px;
}
.p-sectionConsult__button__text {
  font-size: 5.5pt;
  font-size: 5.5pt;
}
.p-sectionConsult--noperson {
  background-size: 100%;
  background-position: bottom center;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}
.p-sectionConsult--noperson .p-sectionConsult__content {
  width: 100%;
  padding-block: 19px;
}
.p-sectionConsult--noperson .p-sectionConsult__desc {
  text-align: center;
}
.p-sectionConsult--noperson .p-sectionConsult__button {
  margin-inline: auto;
}
.p-sectionConsult--nobg {
  background-image: none;
  background: radial-gradient(circle at 25% 80%, rgba(208, 208, 208, 0.7) 0%, transparent 40%), radial-gradient(circle at 75% 80%, rgba(208, 208, 208, 0.5) 0%, transparent 40%), var(--color-main);
  -webkit-margin-after: 45px;
          margin-block-end: 45px;
}
.p-sectionConsult--nobg .p-sectionConsult__content {
  padding-block: 30px;
}
.p-sectionConsult--nobg .p-sectionConsult__desc__regular {
  line-height: 1.8;
  font-size: 8.5pt;
  font-size: 8.5pt;
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
}
.p-sectionConsult--nobg .p-sectionConsult__desc__large {
  white-space: nowrap;
  font-size: 12pt;
  font-size: 12pt;
}
.p-sectionConsult--nobg .p-sectionConsult__button {
  width: 200px;
}
.p-sectionConsult--nobg .p-sectionConsult__button__text {
  font-size: 8.5pt;
  font-size: 8.5pt;
}

.p-sectionLimited {
  background-color: var(--color-main);
  position: relative;
  -webkit-padding-before: 27px;
          padding-block-start: 27px;
  -webkit-padding-after: 36px;
          padding-block-end: 36px;
}
.p-sectionLimited::after {
  content: "";
  display: block;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/assets/images/shared/label-limited.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
}
.p-sectionLimited__inner {
  text-align: center;
  font-weight: 500;
  text-shadow: 0 0 0.4em black;
}
.p-sectionLimited__heading {
  color: var(--color-gold2);
  font-size: 11.7pt;
  font-size: 11.7pt;
  -webkit-margin-after: 16px;
          margin-block-end: 16px;
}
.p-sectionLimited__content {
  color: #fff;
  font-size: 10pt;
  font-size: 10pt;
}

.p-sectionSemi__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
.p-sectionSemi__logo {
  background-color: #678e31;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .p-sectionSemi__logo {
    width: 240px;
    padding-inline: 40px;
  }
}
@media (max-width: 768px) {
  .p-sectionSemi__logo {
    width: 66px;
    padding-inline: 4px;
  }
}
.p-sectionSemi__logo img {
  width: 100%;
}
.p-sectionSemi__content {
  width: 100%;
  background-color: #efefef;
}
@media (min-width: 769px) {
  .p-sectionSemi__content {
    padding-block: 46px;
    padding-inline: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .p-sectionSemi__content {
    padding-block: 24px;
    padding-inline: 13px;
  }
}
.p-sectionSemi__heading {
  color: var(--color-main);
  font-weight: bold;
}
@media (min-width: 769px) {
  .p-sectionSemi__heading {
    font-size: 14.4pt;
    font-size: 14.4pt;
    -webkit-margin-after: 18px;
            margin-block-end: 18px;
  }
}
@media (max-width: 768px) {
  .p-sectionSemi__heading {
    font-size: 5.1pt;
    font-size: 5.1pt;
    -webkit-margin-after: 6px;
            margin-block-end: 6px;
  }
}
@media (min-width: 769px) {
  .p-sectionSemi__text {
    font-size: 9pt;
    font-size: 9pt;
  }
}
@media (max-width: 768px) {
  .p-sectionSemi__text {
    font-size: 3.5pt;
    font-size: 3.5pt;
  }
}

.p-sidebar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 42px;
}
.p-sidebar .info {
  padding: 0;
}

.u-medal {
  width: 2.5em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-image: url(/assets/images/shared/medal-gold.png);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1/1;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-shadow: 0 0 0.4em black;
}
.u-medal--silver {
  background-image: url(/assets/images/shared/medal-silver.png);
}
.u-medal--1 {
  -webkit-padding-end: 0.1em;
          padding-inline-end: 0.1em;
}

.u-color--main {
  color: var(--color-main) !important;
}
.u-color--accent {
  color: var(--color-accent) !important;
}
.u-color--gold {
  color: var(--color-gold) !important;
}
.u-color--gold2 {
  color: var(--color-gold2) !important;
}
.u-color--white {
  color: #fff !important;
}

@media (min-width: 769px) {
  .u-media--pc {
    display: inherit;
  }
}
@media (max-width: 768px) {
  .u-media--pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .u-media--sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .u-media--sp {
    display: inherit;
  }
}

.js-slide-up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.js-slide-up.js-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-slide-right {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.js-slide-right.js-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-slide-left {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.js-slide-left.js-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-fade-in {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
.js-fade-in.js-visible {
  opacity: 1;
  visibility: visible;
}

.js-rotate-in::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotate(180deg) scale(0.5);
          transform: rotate(180deg) scale(0.5);
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.js-rotate-in.js-visible::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(0) scale(1);
          transform: rotate(0) scale(1);
}

.js-rotate-in-rev::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotate(0) scale(0.5) !important;
          transform: rotate(0) scale(0.5) !important;
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.js-rotate-in-rev.js-visible::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(180deg) scale(1) !important;
          transform: rotate(180deg) scale(1) !important;
}