@charset "UTF-8";
/* リキッドレイアウト対応 */
:root {
  --inner-value: 1080;
  --inner: 1080px;
  --inner-value-sm: 1000;
  --inner-sm: 1000px;
  --padding-pc: 25px;
  --padding-sp: 20px;
  --rem: 1rem / 16;
  --em: 1em / 16;
  --cqi: 1440 * 100cqi;
}
@media screen and (max-width: 767px) {
  :root {
    --cqi: 375 * 100cqi;
  }
}
:root {
  --base-font: "Zen Kaku Gothic New", sans-serif;
  --second-font: "Noto Sans JP", sans-serif;
  --en-font: "Balthazar", serif;
  --baskervville-font: "Baskervville", serif;
  --fw-extralight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --black: #000;
  --white: #fff;
  --text-color: #4a2c0f;
  --main-color: #e67d18;
  --accent-green: #6b8f71;
  --accent-green2: #7f9a73;
  --bg-base: #fffaf6;
  --footer-bg: #6f4b3c;
  --header-left-bg: #333;
  --accent: #e08774;
  --z-index-loader: 1000;
  --z-index-hamburger: 102;
  --z-index-drawer: 101;
  --z-index-header: 100;
  --z-index-cta: 90;
  --header-height: calc(90 * var(--rem));
  --scrollbar-width: 0;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: calc(80 * var(--rem));
  }
}

@property --scrollbar {
  syntax: "<length>";
  initial-value: 0;
  inherits: true;
}
:root:has(:modal[open], .is-scroll-lock, .loader) {
  overflow: hidden;
  scrollbar-gutter: stable;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  background-color: var(--white);
  font-family: var(--base-font);
  color: var(--text-color);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  container-type: inline-size;
}

body.home {
  background-color: var(--bg-base);
}

:where(h1) {
  margin: initial;
}

picture {
  width: 100%;
  height: 100%;
}

img {
  display: block;
}

button {
  border: none;
  padding: unset;
}

html {
  font-size: 16px;
}
@media (max-width: 1080px) {
  html {
    font-size: calc(16 / var(--inner-value) * 100cqi);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667cqi;
  }
}

/*! kiso.css v1.2.3 | 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%;`.
  */
  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%;
       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(:is(h1, h2, h3, h4, h5, h6):lang(en)) {
  /* 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: unset;
  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;
}

/* ======================================================
//  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. */
  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.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  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. */
  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;
}

/* ======================================================
//  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(:is(u, s, del, ins)) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

: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. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  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.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  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 `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}
: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 `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  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;
  display: block;
}

: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(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

:where(caption) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

/* ======================================================
//  MARK: Forms
// ====================================================== */
: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: unset;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
  padding: unset;
}

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

:where(input[type=file i]) {
  /* The `border` is often unnecessary, so it is reset here. */
  border: unset;
}

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

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-moz-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(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):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 i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i])),
::file-selector-button {
  /* The `background-color` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  background-color: unset;
}

:where(button,
input:is([type=button i], [type=submit i], [type=reset i]),
[role=tab i],
[role=button i],
[role=option i]),
::file-selector-button {
  /*
  * On iOS, double-tapping a button can cause zooming, which harms usability.
  * `touch-action: manipulation` is specified to disable zooming on double-tap.
  * Third-party plugins such as Swiper sometimes use div elements with these roles as buttons, since double-tapping a div can still trigger zooming, it's advisable to specify this property.
  */
  touch-action: manipulation;
}

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::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.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  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;
}

::-moz-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)::backdrop {
  /* Normalize the background color of the `::backdrop` element. */
  background-color: oklch(0% 0 0deg / 0.3);
}

: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-visible) {
  /* Add space between the content and the focus outline. */
  outline-offset: 3px;
}

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

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

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

.bg-common {
  --_bg-height: clamp(200px, 340 / var(--cqi), 450px);
  position: relative;
  padding-top: calc(108 / var(--cqi));
  background-image: linear-gradient(to bottom, transparent var(--_bg-height), var(--bg-base) var(--_bg-height));
}
@media screen and (max-width: 767px) {
  .bg-common {
    --_bg-height: calc(180 * var(--rem));
    padding-top: 6.875rem;
  }
}

.bg-common::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: var(--_bg-height);
  background-image: -webkit-image-set(url(../images/common/bg_common.avif) type("image/avif"), url(../images/common/bg_common.png) type("image/png"));
  background-image: image-set(url(../images/common/bg_common.avif) type("image/avif"), url(../images/common/bg_common.png) type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .bg-common::before {
    background-image: -webkit-image-set(url(../images/common/bg_common-sp.avif) type("image/avif"), url(../images/common/bg_common-sp.png) type("image/png"));
    background-image: image-set(url(../images/common/bg_common-sp.avif) type("image/avif"), url(../images/common/bg_common-sp.png) type("image/png"));
    background-size: max(565px, 100%) 100%;
  }
}

.bg-common.bg-common--base {
  padding-top: 8.375rem;
  background-image: -webkit-image-set(url(../images/common/bg_sub-fv_02.avif) type("image/avif"), url(../images/common/bg_sub-fv_02.png) type("image/png"));
  background-image: image-set(url(../images/common/bg_sub-fv_02.avif) type("image/avif"), url(../images/common/bg_sub-fv_02.png) type("image/png"));
  background-repeat: no-repeat;
  background-position: calc(50vw - var(--inner-sm) / 2) -14.25rem;
  background-size: 93.75rem auto;
  background-color: var(--bg-base);
}
@media screen and (max-width: 767px) {
  .bg-common.bg-common--base {
    padding-top: 6.25rem;
    background-position: right -7.5rem top 1.5625rem;
    background-size: 34.125rem auto;
  }
}

.bg-common.bg-common--base::before {
  content: none;
}

:where(.bg-common > *) {
  position: relative;
}

.inner {
  max-width: calc(var(--inner) + var(--padding-pc) * 2);
  margin-inline: auto;
  padding-inline: var(--padding-pc);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 600px;
    padding-inline: var(--padding-sp);
  }
}

.inner[data-size=sm] {
  max-width: calc(var(--inner-sm) + var(--padding-pc) * 2);
}
@media screen and (max-width: 767px) {
  .inner[data-size=sm] {
    max-width: 600px;
  }
}

.layout-404 {
  margin-block: calc(120 / var(--cqi)) calc(15 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-404 {
    margin-block: calc(50 / var(--cqi)) calc(44 / var(--cqi));
  }
}

.layout-archive-news {
  margin-block: calc(142 / var(--cqi)) calc(20 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-archive-news {
    margin-block: 6.75rem calc(23 / var(--cqi));
  }
}

.layout-archive-seminar {
  margin-block: calc(115 / var(--cqi)) calc(30 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-archive-seminar {
    margin-block: calc(57 / var(--cqi)) calc(34 / var(--cqi));
  }
}

.layout-blog-movie {
  display: grid;
  gap: 6.5625rem;
  padding-block: 7.0625rem 11.25rem;
  background-image: -webkit-image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-image: image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-repeat: repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .layout-blog-movie {
    gap: 4.375rem;
    padding-block: 3.875rem 5.75rem;
  }
}

.layout-class {
  margin-block: calc(156 / var(--cqi)) calc(135 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-class {
    margin-block: calc(58 / var(--cqi)) calc(97 / var(--cqi));
  }
}

.layout-company {
  margin-block: calc(125 / var(--cqi)) calc(65 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-company {
    margin-block: calc(58 / var(--cqi)) calc(50 / var(--cqi));
  }
}

.layout-confirm {
  margin-block: calc(120 / var(--cqi)) calc(15 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-confirm {
    margin-block: calc(50 / var(--cqi)) calc(44 / var(--cqi));
  }
}

.layout-contact {
  margin-block: calc(120 / var(--cqi)) calc(15 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-contact {
    margin-block: calc(50 / var(--cqi)) calc(44 / var(--cqi));
  }
}

.layout-course {
  margin-top: 7.75rem;
}
@media screen and (max-width: 767px) {
  .layout-course {
    padding-top: 1.5rem;
  }
}

.layout-hazimete-cta {
  margin-top: calc(-200 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-hazimete-cta {
    margin-top: calc(-96 / var(--cqi));
  }
}

.layout-course-cta {
  margin-top: calc(-200 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-course-cta {
    margin-top: calc(-94 / var(--cqi));
  }
}

.layout-lesson {
  margin-top: calc(-344 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-lesson {
    margin-top: calc(-135 / var(--cqi));
  }
}

.layout-page-course {
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .layout-page-course {
    padding-top: 1.5rem;
  }
}

.layout-privacy-policy {
  margin-block: calc(119 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-privacy-policy {
    margin-block: calc(43 / var(--cqi)) calc(88 / var(--cqi));
  }
}

.layout-single-news {
  margin-block: 5.625rem calc(20 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-single-news {
    margin-block: 3.625rem calc(20 / var(--cqi));
  }
}

.layout-single-seminar {
  margin-block: 5.125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .layout-single-seminar {
    margin-top: 2.3125rem;
  }
}

.layout-sub {
  margin-top: calc(-128 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-sub {
    margin-top: -6.875rem;
  }
}

.layout-thanks {
  margin-block: calc(120 / var(--cqi)) calc(15 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-thanks {
    margin-block: calc(50 / var(--cqi)) calc(44 / var(--cqi));
  }
}

.layout-top-contact {
  margin-top: calc(-200 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-top-contact {
    margin-top: calc(-96 / var(--cqi));
  }
}

.layout-top-course {
  margin-top: calc(-360 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-top-course {
    margin-top: calc(-124 / var(--cqi));
  }
}

.layout-top-cta {
  padding-block: 3.75rem 5.3125rem;
}

.layout-top-intro {
  margin-top: calc(-300 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-top-intro {
    margin-top: calc(-136 / var(--cqi));
  }
}

.layout-top-news {
  margin-top: calc(-158 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-top-news {
    margin-top: calc(-96 / var(--cqi));
  }
}

.layout-top-profile {
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .layout-top-profile {
    padding-bottom: initial;
  }
}

.layout-top-section {
  padding-block: 60px;
}

@media screen and (max-width: 767px) {
  .layout-top {
    display: grid;
    grid-template-columns: 100%;
    gap: 7.5rem;
  }
}

.outer {
  --scrollbar: calc(100vw - 100cqw);
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
}

body:has(.loader) .outer {
  opacity: 0;
}

.archive-news__text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.archive-news__list {
  margin: 4.375rem auto 0;
  max-width: 50rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .archive-news__list {
    margin-top: 1.5rem;
  }
}

.archive-news__list.news-list {
  row-gap: 1.28125rem;
}

.archive-news__list.news-list .news-item__link {
  padding-bottom: 1.28125rem;
}

@media screen and (max-width: 767px) {
  .archive-news__list.news-list .news-item__body {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .archive-news__list.news-list .news-item__date {
    font-size: max(12px, 0.9375rem);
  }
}

@media screen and (max-width: 767px) {
  .archive-news__list.news-list .news-item__tag {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .archive-news__list.news-list .news-item__title {
    font-size: max(14px, 1rem);
  }
}

.archive-news__pagination {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .archive-news__pagination {
    margin-top: 2.5rem;
  }
}

.archive-seminar__intro {
  text-align: center;
}

.archive-seminar__banner {
  display: inline-block;
  padding-block: 0.1875rem;
  padding-inline: 0.9375rem 0.375rem;
  background-color: var(--accent);
  font-size: max(20px, 1.5rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .archive-seminar__banner {
    padding: 0.375rem;
    font-size: 1.25rem;
  }
}

.archive-seminar__intro-title {
  margin-top: 1.1875rem;
  font-size: 2.625rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .archive-seminar__intro-title {
    margin-top: 1rem;
    font-size: 1.75rem;
    word-break: keep-all;
  }
}

.archive-seminar__intro-text {
  margin-top: 0.875rem;
  font-size: max(16px, 1rem);
  font-weight: var(--fw-medium);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .archive-seminar__intro-text {
    margin-top: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: left;
  }
}

.archive-seminar__container {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .archive-seminar__container {
    margin-top: 4rem;
  }
}

.archive-seminar__heading {
  font-size: max(24px, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .archive-seminar__heading {
    font-size: 1.5rem;
  }
}

.archive-seminar__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21.25rem, 1fr));
  justify-content: center;
  gap: 1.25rem 2.0625rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .archive-seminar__cards {
    margin-top: 1.5rem;
    gap: 1.25rem;
  }
}

.archive-seminar__card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.archive-seminar__empty {
  font-size: max(16px, 1rem);
  text-align: center;
}

.archive-seminar__pagination {
  margin-top: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .archive-seminar__pagination {
    margin-top: 1.875rem;
  }
}

.blog-card {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}

.blog-card__link {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .blog-card__link {
    gap: 0.625rem;
  }
}

.blog-card__img {
  --_radius: calc(24 * var(--em));
  clip-path: inset(0 round var(--_radius));
}
@media screen and (max-width: 767px) {
  .blog-card__img {
    --_radius: calc(15 * var(--em));
  }
}

.blog-card__img img {
  aspect-ratio: 156/109;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.blog-card__body {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .blog-card__body {
    gap: 0.1875rem;
  }
}

.blog-card__date {
  font-size: max(12px, 0.9375rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .blog-card__date {
    font-size: 12px;
  }
}

.blog-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: max(14px, 1rem);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .blog-card__title {
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .blog-card__link:hover .blog-card__img img {
    scale: 1.05;
  }
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(246px, 1fr));
  gap: 1.25rem 2rem;
}
@media screen and (max-width: 767px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.375rem;
  }
}

.blog-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}

.breadcrumbs {
  --_current-color: var(--text-color);
  --_color: var(--accent);
  position: relative;
  z-index: 1;
}

.breadcrumbs__inner.inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__inner.inner {
    gap: 8px;
  }
}

.breadcrumbs :is(span, a) {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: max(10px, 0.875rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--_color);
}
@media screen and (max-width: 767px) {
  .breadcrumbs :is(span, a) {
    font-size: 9px;
  }
}

.breadcrumbs a {
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--_color) 30%, transparent);
  text-underline-offset: 2px;
  transition: opacity 0.3s ease;
}

.breadcrumbs .current-item {
  display: block;
  flex-shrink: 1;
  min-width: 0;
  color: var(--_current-color);
}

.breadcrumbs-chevron {
  position: relative;
  width: 6px;
  aspect-ratio: 6/8;
  background-color: var(--_current-color);
  -webkit-mask-image: url("../images/common/icon_chevron.svg");
          mask-image: url("../images/common/icon_chevron.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 767px) {
  .breadcrumbs-chevron {
    width: 5px;
  }
}

@media (any-hover: hover) {
  .breadcrumbs a:hover {
    opacity: 0.7;
  }
}
.button {
  --_base-color: var(--accent);
  --_bg-color: var(--white);
  --_arrow-size: calc(25 * 1em / 22);
  --_duration: 0.3s;
  display: inline-grid;
  grid-template-columns: minmax(0, var(--_arrow-size)) 1fr minmax(0, var(--_arrow-size));
  grid-template-areas: ". text arrow";
  place-items: center;
  gap: calc(8 * var(--em));
  padding: 1.3125rem 1.5625rem;
  min-width: min(100%, 22.5rem);
  border-radius: calc(infinity * 1px);
  border: 3px solid var(--_base-color);
  background-color: var(--_bg-color);
  font-size: max(16px, 1.375rem);
  color: var(--_base-color);
  transition: background-color var(--_duration) ease-out, color var(--_duration) ease-out;
}
@media screen and (max-width: 767px) {
  .button {
    --_arrow-size: calc(16 * var(--em));
    padding-block: 0.9375rem 1rem;
    padding-inline: 0.9375rem;
    min-width: min(100%, 16.25rem);
    font-size: max(16px, 1rem);
  }
}

.button[data-size=small] {
  --_arrow-size: calc(16 * var(--em));
  gap: calc(5 * var(--em));
  padding: 0.9375rem 1.25rem;
  font-size: max(16px, 1.125rem);
}
@media screen and (max-width: 767px) {
  .button[data-size=small] {
    padding: 0.6875rem;
    min-width: min(100%, 13.75rem);
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .button[data-size=sp-small] {
    padding: 0.6875rem;
    min-width: min(100%, 13.75rem);
  }
}

.button[data-direction=left] {
  grid-template-areas: "arrow text .";
}

.button[data-direction=left]::after {
  rotate: 180deg;
}

.button[data-color=green] {
  --_base-color: var(--accent-green2);
  gap: calc(8 * var(--em));
  padding-inline: 1rem;
}

.button::after {
  content: "";
  grid-area: arrow;
  width: var(--_arrow-size);
  aspect-ratio: 25/22;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon_arrow-lg.svg");
          mask-image: url("../images/common/icon_arrow-lg.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: translate var(--_duration) ease-out;
}
@media screen and (max-width: 767px) {
  .button::after {
    -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
            mask-image: url("../images/common/icon_arrow-fit.svg");
    aspect-ratio: 15/10;
  }
}

.button__text {
  grid-area: text;
  font-size: inherit;
  font-weight: var(--fw-bold);
  line-height: 1.4375;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .button__text {
    line-height: 1.4545454545;
  }
}

@media (any-hover: hover) {
  .button:hover {
    background-color: color-mix(in srgb, var(--_base-color) 70%, var(--_bg-color));
    color: var(--_bg-color);
  }
  .button:hover::after {
    translate: 0.3125rem;
  }
}
.card {
  --_color: var(--text-white);
  --_category-color: var(--accent-blue);
  --_duration: 0.3s;
  position: relative;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .card {
    padding-bottom: 0.75rem;
  }
}

.card[data-type=no-category] {
  --_color: var(--surface-gray);
  padding-bottom: initial;
}

.card__link {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.card__img {
  transition: opacity ease-out var(--_duration);
}

.card__img img {
  aspect-ratio: 350/196;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__category {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 0.625rem;
  color: var(--_category-color);
  transition: filter ease-out var(--_duration);
}
@media screen and (max-width: 767px) {
  .card__category {
    margin-top: 0.75rem;
  }
}

@media (any-hover: hover) {
  .card__category:hover {
    filter: brightness(1.3);
  }
}
.card__title {
  margin-top: 0.5rem;
  font-size: max(12px, 0.9375rem);
  font-weight: var(--fw-medium);
  line-height: 1.4666666667;
  letter-spacing: 0.01em;
  color: var(--_color);
  font-feature-settings: "pwid";
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
  text-decoration-color: transparent;
  transition: text-decoration-color ease-out var(--_duration);
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: max(15px, 1.25rem);
    line-height: 1.5;
  }
}

.card[data-type=no-category] .card__title {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .card[data-type=no-category] .card__title {
    margin-top: 0.875rem;
  }
}

@media (any-hover: hover) {
  .card:hover:not(:has(.card__category:hover)) .card__img {
    opacity: 0.7;
  }
  .card:hover:not(:has(.card__category:hover)) .card__title {
    text-decoration-color: currentColor;
  }
}
.class__wrap {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .class__wrap {
    flex-direction: column;
  }
}

.class__content {
  max-width: 37.5625rem;
  width: 100%;
}

.class__title {
  font-size: 2.625rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .class__title {
    font-size: 1.75rem;
  }
}

.class__text {
  margin-top: 1.75rem;
  font-size: 1rem;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .class__text {
    margin-top: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

.class__text strong {
  margin: 0.25rem;
  padding: 0 0.3125rem 0.0625rem;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--white);
  background-color: var(--accent);
}
@media screen and (max-width: 767px) {
  .class__text strong {
    font-size: 1.125rem;
  }
}

.class__text span {
  margin-top: 0.4375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .class__text span {
    margin-top: 1.4375rem;
  }
}

.class__img {
  margin-left: -14.375rem;
  padding-top: 1.25rem;
  max-width: 39.1875rem;
  width: 100%;
  aspect-ratio: 627/483;
}
@media screen and (max-width: 767px) {
  .class__img {
    margin-top: 0.25rem;
    margin-left: 0;
    padding-top: 0;
    max-width: 100%;
  }
}

.class__img img {
  width: 100%;
  object-fit: contain;
}

.class__access {
  margin-top: 5.75rem;
}
@media screen and (max-width: 767px) {
  .class__access {
    margin-top: 4.5rem;
  }
}

.class__access-title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .class__access-title {
    font-size: 1.5rem;
  }
}

.class__access-nav-list {
  margin-top: 1.6875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .class__access-nav-list {
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
  }
}

.class__access-nav-link {
  padding: 1.0625rem 0.625rem 1.0625rem 2.8125rem;
  display: block;
  position: relative;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
  border: 0.1875rem solid var(--accent);
  border-radius: 3.125rem;
  color: var(--text);
  background-color: var(--white);
  transition: background-color var(--_duration) ease-out, color var(--_duration) ease-out;
  --_arrow-size: calc(25 * 1em / 22);
  --_duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .class__access-nav-link {
    padding: 0.75rem 1rem 0.875rem 0;
    font-size: 1rem;
    text-align: center;
  }
}

.class__access-nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
  width: 1.125rem;
  height: 1rem;
  background-color: var(--accent);
  -webkit-mask-image: url("../images/common/icon_arrow-lg.svg");
          mask-image: url("../images/common/icon_arrow-lg.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  rotate: 90deg;
  transition: background-color var(--_duration) ease-out, translate var(--_duration) ease-out;
}
@media screen and (max-width: 767px) {
  .class__access-nav-link::after {
    right: 0.875rem;
  }
}

@media (any-hover: hover) {
  .class__access-nav-link:hover {
    background-color: color-mix(in srgb, var(--accent) 70%, var(--white));
    color: var(--white);
  }
  .class__access-nav-link:hover::after {
    background-color: var(--white);
    translate: 0 calc(-50% + 0.3125rem);
  }
}
.class__access-nav-link span {
  color: var(--accent);
  transition: color var(--_duration) ease-out;
}

@media (any-hover: hover) {
  .class__access-nav-link:hover span {
    color: var(--white);
  }
}
.class__access-classroom-list {
  margin-top: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-list {
    margin-top: 4.25rem;
  }
}

.class__access-classroom-item + .class__access-classroom-item {
  margin-top: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-item + .class__access-classroom-item {
    margin-top: 3.3125rem;
  }
}

.class__access-classroom-title {
  padding-bottom: 0.875rem;
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
  background-image: radial-gradient(circle closest-side, var(--accent) 100%, transparent 100%);
  background-repeat: space no-repeat;
  background-position: left bottom;
  background-size: 1rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-title {
    font-size: 1.5rem;
  }
}

.class__access-classroom-title span {
  color: var(--accent);
}

.class__access-classroom-wrap {
  margin-top: 2.1875rem;
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-wrap {
    margin-top: 1rem;
    gap: 0.875rem;
    flex-direction: column-reverse;
  }
}

.class__access-classroom-content {
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-content {
    max-width: 100%;
  }
}

.class__access-classroom-address,
.class__access-classroom-tel {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-address,
  .class__access-classroom-tel {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.class__access-classroom-tel {
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-tel {
    margin-top: 0.25rem;
  }
}

.class__access-classroom-address::before,
.class__access-classroom-tel::before {
  content: "";
  position: relative;
  top: -0.25rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-address::before,
  .class__access-classroom-tel::before {
    top: 0.125rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

.class__access-classroom-address::before {
  background-image: url("../images/class/pin.svg");
}

.class__access-classroom-tel::before {
  background-image: url("../images/class/tel.svg");
}

.class__access-classroom-map {
  margin-top: 1.0625rem;
  aspect-ratio: 500/250;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-map {
    aspect-ratio: 335/168;
    border-radius: 1rem;
  }
}

.class__access-classroom-map iframe {
  width: 100%;
  height: 100%;
}

.class__access-classroom-img {
  max-width: 29rem;
  width: 100%;
  aspect-ratio: 464/352;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .class__access-classroom-img {
    max-width: 100%;
    aspect-ratio: 335/254;
    border-radius: 1rem;
  }
}

.class__access-classroom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company__title {
  font-size: 2.625rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__title {
    font-size: 1.75rem;
  }
}

.company__text {
  margin-top: 1.875rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__text {
    margin-top: 1.25rem;
    line-height: 1.6;
    text-align: left;
  }
}

.company__gallery {
  margin: 5.5rem calc(50% - 50cqi) 0;
}
@media screen and (max-width: 767px) {
  .company__gallery {
    margin-top: 3.625rem;
  }
}

.company__info-title {
  margin-top: 5.5rem;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__info-title {
    margin-top: 3.5rem;
    font-size: 1.5rem;
  }
}

.company__info {
  margin: 2.6875rem auto 0;
  max-width: 50rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company__info {
    margin-top: 0.625rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 28.125rem;
  }
}

.company__list {
  padding-block: 1.3125rem;
  display: flex;
  align-items: center;
  border-bottom: 0.25rem solid;
  border-image: linear-gradient(to right, var(--accent) 15.3125rem, rgba(74, 44, 15, 0.16) 15.3125rem) 1;
}
@media screen and (max-width: 767px) {
  .company__list {
    padding-block: 0;
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
    border-image: none;
  }
}

.company-profile__term {
  padding-left: 2.0625rem;
  flex-shrink: 0;
  width: 17.0625rem;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company-profile__term {
    padding: 1rem 1rem 0.75rem;
    width: 100%;
    font-size: 1rem;
    border-bottom: 0.25rem solid var(--accent);
  }
}

.company-profile__description {
  width: 100%;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company-profile__description {
    padding: 1rem 1rem 0.75rem;
    border-bottom: 0.25rem solid rgba(74, 44, 15, 0.16);
  }
}
@media screen and (max-width: 767px) {
  .company-profile__description:has(.company-profile__description-list) {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .company__list:last-of-type .company-profile__description {
    border-width: 0.1875rem;
  }
}

.company-profile__description-item {
  padding-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .company-profile__description-item {
    padding-block: 1.96875rem;
  }
}

@media screen and (max-width: 767px) {
  .company-profile__description-item:first-of-type {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .company-profile__description-item:last-of-type {
    padding-bottom: 0.1875rem;
  }
}

.company-profile__description-item + .company-profile__description-item {
  margin-top: 1.875rem;
  padding-top: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company-profile__description-item + .company-profile__description-item {
    margin-top: 0;
    padding-top: 0;
  }
}

.company-profile__description-item + .company-profile__description-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2.0625rem;
  width: 106%;
  height: 0.1875rem;
  background-color: rgba(74, 44, 15, 0.16);
}
@media screen and (max-width: 767px) {
  .company-profile__description-item + .company-profile__description-item::before {
    top: -1.125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 111%;
  }
}

.confirm-form {
  --_base-color: var(--accent-blue);
  --_text-color: var(--text-white);
  --_sub-color: var(--text-sub);
  --_padding: 10px;
  --_fields-gap: calc(32*var(--rem));
  --_label-font-size: max(14px, 1rem);
  --_label-line-height: calc(26/16);
  --_input-font-size: max(1rem, 16px);
  --_input-block-size: calc(56*var(--rem));
  --_textarea-block-size: calc(200*var(--rem));
  --_consent-font-size: 14px;
  --_consent-line-height: calc(24/14);
  --_consent-gap: 12px;
  display: none;
}
@media screen and (max-width: 767px) {
  .confirm-form {
    --_padding: 12px 20px;
    --_fields-gap: calc(40*var(--rem));
    --_label-font-size: max(16px, 18*var(--rem));
    --_label-line-height: calc(32/18);
    --_input-font-size: max(16px, calc(18*var(--rem)));
  }
}

.confirm-form__inner {
  display: grid;
  gap: var(--_fields-gap);
}

.confirm-form__field {
  display: grid;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .confirm-form__field {
    gap: 8px;
  }
}

.confirm-form__label {
  font-size: var(--_label-font-size);
  font-weight: var(--fw-bold);
  line-height: var(--_label-line-height);
  color: var(--_sub-color);
}

.confirm-form__value {
  display: grid;
  align-items: center;
  padding: 12px 10px;
  width: 100%;
  min-height: var(--_input-block-size);
  font-size: var(--_input-font-size);
  font-weight: var(--fw-bold);
  color: var(--_text-color);
}

.confirm-form__consent {
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.7142857143;
  color: var(--_text-color);
  text-align: center;
}

.confirm-form__consent-label {
  color: var(--_sub-color);
}

.confirm-form__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: var(--_fields-gap);
}
@media screen and (max-width: 767px) {
  .confirm-form__buttons {
    margin-top: 3.75rem;
  }
}

.confirm-form__button {
  --_arrow-size: 8px;
  --_gap: 10px;
  --_padding-left: 32px;
  --_padding-right: calc(var(--_arrow-size) + var(--_gap) + var(--_padding-left));
  --_back-padding-inline: 16px;
  position: relative;
  display: block;
  border-radius: 0.5rem;
  border: 1px solid var(--accent-blue);
  background-color: var(--accent-blue);
  color: var(--text-white);
  transition: border-width ease-out 0.3s, filter ease-out 0.3s, outline-color ease-out 0.3s;
}
.confirm-form__button::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: calc(var(--_padding-left) - var(--_gap));
  translate: 0 -50%;
  width: var(--_arrow-size);
  aspect-ratio: 8/14;
  background-image: url(../images/icon_chevron.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: translate ease-out 0.3s;
}
.confirm-form__button[data-type=back] {
  border: 1px solid var(--accent-blue);
  outline: 1px solid transparent;
  outline-offset: -1px;
  overflow: clip;
}
.confirm-form__button[data-type=back]::after {
  display: none;
}
.confirm-form__button[data-type=back]::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: var(--_back-padding-inline);
  translate: 0 -50%;
  width: var(--_arrow-size);
  aspect-ratio: 8/14;
  background-image: url(../images/icon_chevron.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  scale: -1 1;
  transition: translate ease-out 0.3s;
}

.confirm-form__button input {
  padding-block: calc(12 * var(--em));
  padding-inline: var(--_padding-left) var(--_padding-right);
  font-size: max(14px, 1rem);
  font-weight: var(--fw-bold);
  line-height: 1.75;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.confirm-form__button[data-type=back] input {
  padding-inline: calc(var(--_arrow-size) + var(--_gap) + var(--_back-padding-inline)) var(--_back-padding-inline);
  background-color: var(--bg-gray);
}

@media (any-hover: hover) {
  .confirm-form__button:hover {
    filter: contrast(1.3);
    outline-color: var(--accent-blue);
  }
  .confirm-form__button:hover::after {
    translate: 5px -50%;
  }
  .confirm-form__button[data-type=back]:hover::before {
    translate: -5px -50%;
  }
}
.contact-button {
  --_base-color: var(--accent);
  --_bg-color: var(--white);
  --_icon-size: calc(60 / 400 * 100cqi);
  --_arrow-size: calc(25 / 400 * 100cqi);
  --_duration: 0.3s;
  display: flex;
  place-items: center;
  gap: calc(10 * var(--rem));
  container-type: inline-size;
  padding-block: 0.75rem;
  padding-inline: 0.9375rem 1.5rem;
  border-radius: calc(infinity * 1px);
  border: 3px solid var(--_base-color);
  background-color: var(--_bg-color);
  font-size: max(20px, 1.5rem);
  color: var(--_base-color);
  transition: background-color var(--_duration) ease-out, color var(--_duration) ease-out;
}
@media screen and (max-width: 767px) {
  .contact-button {
    --_icon-size: calc(60 / 295 * 100cqi);
    --_arrow-size: calc(16 * 1em / 20);
    gap: calc(10 * var(--em));
    padding-block: 0.75rem;
    padding-inline: 0.75rem 1.25rem;
    font-size: 1.25rem;
  }
}

.contact-button::after {
  content: "";
  flex-shrink: 0;
  width: var(--_arrow-size);
  aspect-ratio: 25/22;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon_arrow-lg.svg");
          mask-image: url("../images/common/icon_arrow-lg.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: translate var(--_duration) ease-out;
}
@media screen and (max-width: 767px) {
  .contact-button::after {
    -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
            mask-image: url("../images/common/icon_arrow-fit.svg");
    aspect-ratio: 15/10;
  }
}

.contact-button__icon {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: var(--_icon-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--_base-color) 15%, transparent);
  transition: background-color var(--_duration) ease-out;
}

.contact-button__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  aspect-ratio: 32/26;
  width: 53.3333333333%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .contact-button__icon img {
    aspect-ratio: 39/29;
    width: 65%;
  }
}

.contact-button__text {
  flex: 1;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-button__text {
    padding-right: 1.875rem;
    word-break: keep-all;
  }
}

@media (any-hover: hover) {
  .contact-button:hover {
    background-color: color-mix(in srgb, var(--_base-color) 70%, var(--_bg-color));
    color: var(--_bg-color);
  }
  .contact-button:hover::after {
    translate: 0.3125rem;
  }
  .contact-button:hover .contact-button__icon {
    background-color: var(--_bg-color);
  }
}
.thanks__text {
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    margin-top: 2.3125rem;
  }
}

.thanks__button {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__button {
    margin-top: 2.3125rem;
  }
}

.contact__title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 1.5rem;
  }
}

.contact__form {
  margin: 3.125rem auto 0;
  max-width: 55rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 2.3125rem;
  }
}

.contact__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.contact__row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__label-text {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--text-color);
}
@media screen and (max-width: 767px) {
  .contact__label-text {
    font-size: 1rem;
  }
}

.contact__required {
  padding: 0.125rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 0.875rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
  font-size: 0.625rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--white);
}

.contact__field {
  width: 100%;
}

.contact__field input[type=text],
.contact__field input[type=email],
.contact__field input[type=tel],
.contact__field select {
  padding: 0.5rem 1rem;
  width: 100%;
  background-color: var(--white);
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
}

.contact__field select {
  width: 10rem;
  background-image: url("../images/common/arrow.svg");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  background-size: 0.625rem 0.375rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact__field textarea {
  padding: 0.5rem 1rem;
  width: 100%;
  min-height: 10rem;
  background-color: var(--white);
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  resize: none;
}

.contact__field input::-moz-placeholder, .contact__field textarea::-moz-placeholder {
  font-weight: var(--fw-regular);
  color: #888;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  font-weight: var(--fw-regular);
  color: #888;
}

.contact__field .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__field .wpcf7-list-item {
  margin: 0;
}

.contact__field .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.contact__field .wpcf7-checkbox input[type=checkbox],
.contact__anti-spam .wpcf7-acceptance input[type=checkbox] {
  flex-shrink: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  border: 0.125rem solid rgba(74, 44, 15, 0.16);
  border-radius: 0.25rem;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.875rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.contact__field .wpcf7-checkbox input[type=checkbox]:checked,
.contact__anti-spam .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3E%3Cpath d='M1 5.5L5 9.5L13 1.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact__field .wpcf7-list-item-label {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--text-color);
}

.contact__anti-spam {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__anti-spam {
    margin-top: -0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__anti-spam .wpcf7-acceptance input[type=checkbox] {
    position: relative;
    top: 0.125rem;
  }
}

.contact__anti-spam .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__anti-spam .wpcf7-list-item label {
    align-items: flex-start;
  }
}

.contact__anti-spam .wpcf7-list-item {
  margin: 0;
}

.contact__anti-spam .wpcf7-list-item-label {
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
}
@media screen and (max-width: 767px) {
  .contact__anti-spam .wpcf7-list-item-label {
    font-size: 1rem;
    text-align: left;
  }
}

.contact__submit {
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__submit {
    margin-top: 1.5rem;
  }
}

.contact__submit-wrap {
  position: relative;
  display: inline-block;
}

.contact__submit-wrap .wpcf7-submit {
  padding: 1.3125rem 1.5625rem;
  min-width: 22.5rem;
  border: 3px solid var(--accent);
  border-radius: calc(infinity * 1px);
  background-color: var(--white);
  font-size: max(16px, 1.375rem);
  font-weight: var(--fw-bold);
  line-height: 1.4375;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-align: center;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__submit-wrap .wpcf7-submit {
    padding-block: 0.9375rem 1rem;
    padding-inline: 0.9375rem;
    min-width: 16.25rem;
    font-size: max(16px, 1rem);
  }
}

.contact__submit-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  width: 1.5625rem;
  aspect-ratio: 25/22;
  background-color: var(--accent);
  -webkit-mask-image: url("../images/common/icon_arrow-lg.svg");
          mask-image: url("../images/common/icon_arrow-lg.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  translate: 0 -50%;
  transition: translate 0.3s ease-out;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .contact__submit-wrap::after {
    right: 0.9375rem;
    width: 1rem;
    -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
            mask-image: url("../images/common/icon_arrow-fit.svg");
    aspect-ratio: 15/10;
  }
}

@media (any-hover: hover) {
  .contact__submit-wrap:hover .wpcf7-submit {
    background-color: color-mix(in srgb, var(--accent) 70%, var(--white));
    color: var(--white);
  }
  .contact__submit-wrap:hover::after {
    background-color: var(--white);
    translate: 0.3125rem -50%;
  }
}
.confirm-form {
  margin-top: 3.125rem;
}

.confirm-form__text {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.confirm-form__list {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .confirm-form__list {
    padding: 0.625rem 0;
    flex-direction: column;
  }
}

.confirm-form__list:first-of-type {
  margin-top: 3.125rem;
}

.confirm-form__term {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  width: 12.5rem;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .confirm-form__term {
    width: 100%;
  }
}

.confirm-form__required {
  padding: 0.125rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 0.875rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
  font-size: 0.625rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--white);
}

.confirm-form__value {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.confirm-form__buttons {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .confirm-form__buttons {
    margin-top: 1.5rem;
    gap: 0.625rem;
  }
}

.confirm-form__back,
.confirm-form__submit {
  --_arrow-size: calc(16 * 1em / 18);
  padding: 1rem 2.5rem;
  display: inline-grid;
  place-items: center;
  gap: 0.4444444444em;
  min-width: 12.5rem;
  border: 3px solid var(--accent);
  border-radius: calc(infinity * 1px);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .confirm-form__back,
  .confirm-form__submit {
    --_arrow-size: calc(14 * 1em / 16);
    padding: 0.75rem 0;
    display: block;
    position: relative;
    min-width: initial;
    max-width: 15.625rem;
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }
}

.confirm-form__back {
  grid-template-columns: var(--_arrow-size) 1fr minmax(0, var(--_arrow-size));
  grid-template-areas: "arrow text .";
  background-color: var(--white);
  color: var(--accent);
}

.confirm-form__back::before,
.confirm-form__submit::after {
  content: "";
  grid-area: arrow;
  width: var(--_arrow-size);
  aspect-ratio: 1;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon_arrow.svg");
          mask-image: url("../images/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: translate 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .confirm-form__back::before,
  .confirm-form__submit::after {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
  }
}

.confirm-form__back::before {
  rotate: 180deg;
}
@media screen and (max-width: 767px) {
  .confirm-form__back::before {
    left: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .confirm-form__submit::after {
    right: 1.25rem;
  }
}

.confirm-form__submit {
  grid-template-columns: minmax(0, var(--_arrow-size)) 1fr var(--_arrow-size);
  grid-template-areas: ". text arrow";
  background-color: var(--accent);
  color: var(--white);
}

@media (any-hover: hover) {
  .confirm-form__back:hover {
    background-color: color-mix(in srgb, var(--accent) 70%, var(--white));
    color: var(--white);
  }
  .confirm-form__back:hover::before {
    translate: -0.3125rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .confirm-form__back:hover::before {
    translate: -0.3125rem -50%;
  }
}
@media (any-hover: hover) {
  .confirm-form__submit:hover {
    background-color: color-mix(in srgb, var(--accent) 70%, var(--white));
  }
  .confirm-form__submit:hover::after {
    translate: 0.3125rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .confirm-form__submit:hover::after {
    translate: 0.3125rem -50%;
  }
}
.confirm-form__button-text {
  grid-area: text;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.confirm .confirm-form {
  margin: 4.375rem auto 0;
  display: block;
  max-width: 43.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .confirm .confirm-form {
    margin-top: 2.3125rem;
  }
}

.course-block {
  --_padding-inline: minmax(0, 1fr);
  --_images: minmax(0, 406px);
  --_body: minmax(0, 366px);
  position: relative;
  display: grid;
  grid-template-columns: var(--_padding-inline) var(--_images) var(--_body) var(--_padding-inline);
  grid-template-areas: ". images body .";
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  align-items: end;
  margin-top: 1.25rem;
  padding-block: 3.5rem;
  border-radius: 1.25rem;
  background-color: var(--white);
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .course-block {
    --_padding-inline: 20px;
    --_body: minmax(0, 560px);
    grid-template-columns: var(--_padding-inline) var(--_body) var(--_padding-inline);
    grid-template-areas: ". images ." ". body .";
    gap: 1.5625rem 0;
    align-items: start;
    padding-block: 2.5rem;
  }
}

.course-block[data-column=reverse] {
  grid-template-columns: var(--_padding-inline) var(--_body) var(--_images) var(--_padding-inline);
  grid-template-areas: ". body images .";
}
@media screen and (max-width: 767px) {
  .course-block[data-column=reverse] {
    grid-template-columns: var(--_padding-inline) var(--_body) var(--_padding-inline);
    grid-template-areas: ". images ." ". body .";
  }
}

@media screen and (max-width: 767px) {
  .course-block[data-type=sweets] {
    gap: 0;
  }
}

.course-block__bubble {
  position: absolute;
  z-index: 1;
  top: 0.8125rem;
  left: calc(50% - clamp(350px, 46.5cqi, 465px));
  padding-block: 2em 2.4375em;
  padding-inline: 1.75rem 1.375rem;
  background-image: url("../images/course/img_bubble-accent.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-size: max(12px, 1.125rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .course-block__bubble {
    top: -1.5625rem;
    left: -0.875rem;
    padding-block: 1.875em 2.3125em;
    padding-inline: 1.25rem 1rem;
    font-size: 1rem;
  }
}

.course-block__images {
  grid-area: images;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  clip-path: inset(0 round 1.25rem);
}

.course-block__img img {
  aspect-ratio: 137/127;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-block__body {
  grid-area: body;
  display: grid;
  align-content: start;
}

.course-block__level {
  position: relative;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(20px, 1.5rem);
}
@media screen and (max-width: 767px) {
  .course-block__level {
    gap: 0.5rem;
    font-size: 1.25rem;
  }
}

.course-block__title {
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--accent);
}

.course-block[data-column=reverse] .course-block__title {
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .course-block[data-column=reverse] .course-block__title {
    letter-spacing: 0;
  }
}

.course-block__flag {
  position: absolute;
  right: -0.125rem;
  translate: 100%;
  width: 2.5416666667em;
}
@media screen and (max-width: 767px) {
  .course-block__flag {
    right: -0.5rem;
    width: 2.35em;
  }
}

@media screen and (max-width: 767px) {
  .course-block[data-column=reverse] .course-block__flag {
    right: -0.125rem;
  }
}

.course-block__flag img {
  aspect-ratio: 61/64;
  width: 100%;
  object-fit: contain;
}

.course-block__meta {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .course-block__meta {
    gap: 0.625rem;
    margin-top: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .course-block[data-type=sweets] .course-block__meta {
    margin-top: 1rem;
  }
}

.course-block__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: max(13px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .course-block__price {
    gap: 0;
    font-size: 1rem;
  }
}

.course-block__price-large {
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .course-block__price-large {
    font-size: 1.75rem;
  }
}

.course-block__sessions {
  position: relative;
  top: 3px;
  display: inline-block;
  padding: 0.3125rem 0.5rem 0.375rem;
  min-width: 4.625rem;
  border-radius: 4px;
  background-color: var(--accent);
  font-size: max(12px, 0.875rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .course-block__sessions {
    min-width: 4.875rem;
    font-size: 0.75rem;
  }
}

.course-block__text {
  margin-top: 0.6875rem;
  font-size: max(13px, 0.8125rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .course-block__text {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }
}

.course-block__menu {
  display: grid;
  place-items: center;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .course-block__menu {
    margin-top: 0.75rem;
  }
}

.course-block__menu-head {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.625rem;
  font-size: max(20px, 1.75rem);
  font-family: var(--en-font);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .course-block__menu-head {
    gap: 0.5rem;
    font-size: 1.25rem;
  }
}

.course-block__menu-head::before,
.course-block__menu-head::after {
  content: "";
  flex: 1;
  min-width: 0;
  height: 4px;
  background-image: radial-gradient(circle, currentColor 2px, transparent 2px);
  background-size: 10px 4px;
  background-repeat: space;
}

.course-block__menu-list {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  margin-top: 0.25rem;
  font-size: max(16px, 1.125rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .course-block__menu-list {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    font-size: 1rem;
  }
}

.course-block[data-type=sweets] .course-block__menu-list {
  gap: 0;
}

.course-block__menu-term {
  letter-spacing: 0.04em;
}

.course-block__menu-desc {
  letter-spacing: 0.04em;
}

.course-block__menu-type {
  display: grid;
  place-items: center;
  margin-top: 0.875rem;
  padding-block: 0.625rem;
  padding-inline: 2rem 1.25rem;
  min-height: 3.9375rem;
  width: min(100%, 362px);
  border-radius: 0.625rem;
  background-color: #fdeee0;
  font-size: max(12px, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .course-block__menu-type {
    margin-top: 1rem;
    padding-inline: 1.375rem;
    min-height: 4.5rem;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .course-block:nth-of-type(2) .course-block__menu-type {
    padding-inline: 1rem;
  }
}

.course-faq {
  padding-block: 10rem min(260 / var(--cqi), 360px);
}
@media screen and (max-width: 767px) {
  .course-faq {
    padding-block: 3.4375rem min(142 / var(--cqi), 260px);
  }
}

.course-faq__title {
  font-size: max(24px, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .course-faq__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.course-faq__list {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .course-faq__list {
    margin-top: 1.5rem;
  }
}

.course-step {
  overflow-x: clip;
  padding-block: 6.875rem 7.5rem;
  background-image: -webkit-image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-image: image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-repeat: repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .course-step {
    padding-block: 5rem 4.125rem;
  }
}

.course-step__container {
  --_content: minmax(0, 350px);
  display: grid;
  grid-template-columns: var(--_content) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-template-areas: "content slider" "controls slider";
  -moz-column-gap: 2.875rem;
       column-gap: 2.875rem;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .course-step__container {
    --_content: minmax(0, 560px);
    grid-template-columns: 100%;
    grid-template-rows: unset;
    grid-template-areas: "content" "slider" "controls";
    align-items: start;
  }
}

.course-step__content {
  grid-area: content;
}

.course-step__sub-title {
  font-size: max(16px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .course-step__sub-title {
    font-size: 1rem;
  }
}

.course-step__title {
  margin-top: 0.75rem;
  font-size: max(24px, 2rem);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .course-step__title {
    margin-top: 0.625rem;
    font-size: 1.5rem;
  }
}

.course-step__text {
  margin-top: 1.4375rem;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .course-step__text {
    margin-top: 1rem;
    font-size: 0.75rem;
    word-break: keep-all;
  }
}

.course-step__slider {
  grid-area: slider;
  position: relative;
  margin-top: 2rem;
  margin-left: initial;
  width: min(100%, 19.8125rem);
  overflow: visible;
  clip-path: inset(-9% calc(50% - 50cqi) 0 -1.625rem);
}
@media screen and (max-width: 767px) {
  .course-step__slider {
    margin-top: 2.5rem;
    margin-left: 0.5625rem;
    clip-path: initial;
  }
}

.course-step__slide {
  --_num-top: -9%;
  --_num-left: -10%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.4375rem 1.75rem 1.125rem;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  background-color: var(--white);
}
@media screen and (max-width: 767px) {
  .course-step__slide {
    --_num-top: -5%;
    --_num-left: -8%;
    padding-block: 1.5rem;
    width: min(100%, 23.75rem);
  }
}

.course-step__num {
  position: absolute;
  z-index: 1;
  top: var(--_num-top);
  left: var(--_num-left);
  display: grid;
  place-items: center;
  width: 7.25rem;
  aspect-ratio: 116/100;
}
@media screen and (max-width: 767px) {
  .course-step__num {
    width: 5.875rem;
  }
}

.course-step__num img {
  aspect-ratio: 116/100;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .course-step__num img {
    aspect-ratio: 94/88;
  }
}

.course-step__img {
  clip-path: inset(0 round 1.25rem);
}

.course-step__img img {
  aspect-ratio: 260/177;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-step__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding-block: 1.5rem;
  font-size: max(16px, 1.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .course-step__heading {
    padding-bottom: 0.75rem;
    font-size: 1.25rem;
  }
}

.course-step__heading:has(.course-step__heading-sub) {
  padding-block: 0.625rem;
}
@media screen and (max-width: 767px) {
  .course-step__heading:has(.course-step__heading-sub) {
    padding-block: 0.75rem;
  }
}

.course-step__heading-sub {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: max(14px, 1rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .course-step__heading-sub {
    font-size: 1rem;
  }
}

.course-step__heading-sub::before,
.course-step__heading-sub::after {
  content: "";
  display: block;
  width: 0.625em;
  aspect-ratio: 10/24;
  background-color: var(--accent);
  -webkit-mask-image: url("../images/common/icon_brackets.svg");
          mask-image: url("../images/common/icon_brackets.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.course-step__heading-sub::after {
  scale: -1;
}

.course-step__desc {
  font-size: max(14px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .course-step__desc {
    font-size: 1rem;
  }
}

.course-step__controls {
  grid-area: controls;
  display: flex;
  align-items: center;
  gap: 1.625rem;
  margin-top: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .course-step__controls {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
  }
}

.course-step__prev,
.course-step__next {
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 3.125rem;
  aspect-ratio: 1;
  border: 3px solid var(--accent);
  border-radius: 50%;
  background-color: var(--white);
  color: var(--accent);
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .course-step__prev,
  .course-step__next {
    width: 3rem;
  }
}

.course-step__prev::before,
.course-step__next::before {
  content: "";
  width: 1.25rem;
  aspect-ratio: 20/13;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
          mask-image: url("../images/common/icon_arrow-fit.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: background-color 0.3s ease-out;
}

.course-step__prev::before {
  scale: -1;
}

.course-step__prev[aria-disabled=true],
.course-step__next[aria-disabled=true] {
  opacity: 0.7;
  cursor: default;
}

@media (any-hover: hover) {
  .course-step__prev:not([aria-disabled=true]):hover,
  .course-step__next:not([aria-disabled=true]):hover {
    background-color: color-mix(in srgb, var(--accent) 80%, var(--white));
  }
  .course-step__prev:not([aria-disabled=true]):hover::before,
  .course-step__next:not([aria-disabled=true]):hover::before {
    background-color: var(--white);
  }
}
.course-step__controls .course-step__pagination.swiper-pagination-progressbar {
  position: relative;
  left: auto;
  top: auto;
  flex: 0 1 165px;
  overflow: clip;
  height: 0.25rem;
  border-radius: calc(infinity * 1px);
  background-color: color-mix(in srgb, var(--accent) 30%, transparent);
}
@media screen and (max-width: 767px) {
  .course-step__controls .course-step__pagination.swiper-pagination-progressbar {
    flex: 0 1 min(125 / var(--cqi), 260px);
  }
}

.course-step__controls .course-step__pagination .swiper-pagination-progressbar-fill {
  background-color: var(--accent);
  border-radius: 999em;
}

.course {
  padding-block: 7.75rem 6.0625rem;
}
@media screen and (max-width: 767px) {
  .course {
    padding-block: 3rem 4.75rem;
  }
}

.course__intro {
  display: grid;
  grid-template-columns: minmax(0, 590px);
  place-content: center;
  place-items: center;
  gap: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .course__intro {
    gap: 1.25rem;
    text-align: left;
  }
}

.course__intro-lead {
  font-size: 2.625rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .course__intro-lead {
    width: min(100%, 335px);
    font-size: 1.75rem;
    word-break: keep-all;
  }
}

.course__intro-text {
  max-width: 506px;
  font-size: max(14px, 1rem);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .course__intro-text {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
}

.course__sections {
  display: grid;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .course__sections {
    grid-template-columns: minmax(0, 480px);
    justify-content: center;
    margin-top: 3.5rem;
  }
}

.course__section + .course__section {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .course__section + .course__section {
    margin-top: 4.75rem;
  }
}

.course__heading {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.75rem;
  font-size: max(24px, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .course__heading {
    gap: 0.5rem;
    font-size: 1.5rem;
  }
}

.course__heading::before,
.course__heading::after {
  content: "";
  width: 2.25rem;
  aspect-ratio: 36/46;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/accent_line.svg");
          mask-image: url("../images/common/accent_line.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 767px) {
  .course__heading::before,
  .course__heading::after {
    position: relative;
    bottom: 0.3125rem;
    width: 1.5rem;
  }
}

.course__heading::after {
  scale: -1 1;
}

.course__block {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .course__block {
    margin-top: 1.875rem;
  }
}

.course__block:nth-of-type(2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .course__block:nth-of-type(2) {
    margin-top: 2.125rem;
  }
}

.course__block:nth-of-type(3) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .course__block:nth-of-type(3) {
    margin-top: 1.625rem;
  }
}

@media screen and (max-width: 767px) {
  .course__block[data-type=sweets] {
    margin-top: 1rem;
  }
}

.course__lead {
  position: relative;
  margin-top: 1.25rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(16px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .course__lead {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.course__lead-text {
  --_marker-color: #eabbb1;
  display: inline;
  padding-left: 0.25em;
  background-image: linear-gradient(to bottom, transparent 0, transparent calc(100% - 0.5rem), var(--_marker-color) calc(100% - 0.5rem), var(--_marker-color) calc(100% - 0.125rem), transparent calc(100% - 0.125rem));
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  clip-path: inset(0 0.5em 0 0);
}
@media screen and (max-width: 767px) {
  .course__lead-text {
    padding-inline: 0.3125rem;
    background-image: linear-gradient(to bottom, transparent 0, transparent calc(100% - 0.75rem), var(--_marker-color) calc(100% - 0.75rem), var(--_marker-color) calc(100% - 0.125rem), transparent calc(100% - 0.125rem));
  }
}

.cta-banner {
  --_text-color: var(--white);
  --_bg-color: var(--accent-green2);
  --_radius: calc(20 * var(--rem));
  --_brightness: brightness(1);
  --_drop-shadow: drop-shadow(0 0 calc(34 * var(--rem)) rgb(0 0 0 / 0.11));
  position: relative;
  overflow: clip;
  display: grid;
  grid-template-columns: 27.8876170656% 1fr auto;
  align-items: center;
  -moz-column-gap: min(3.6805555556vw, 53px);
       column-gap: min(3.6805555556vw, 53px);
  padding-block: 0.8125rem;
  padding-inline: 0.8125rem 1.75rem;
  border-radius: var(--_radius);
  outline: 5px solid var(--white);
  background-color: var(--_bg-color);
  color: var(--_text-color);
  container-type: inline-size;
  filter: var(--_brightness) var(--_drop-shadow);
  transition: filter 1.3s ease;
}
@media screen and (max-width: 767px) {
  .cta-banner {
    --_radius: calc(10 * var(--rem));
    grid-template-columns: 29.0322580645% 1fr auto;
    -moz-column-gap: 2.6666666667vw;
         column-gap: 2.6666666667vw;
    padding-block: 0.3125rem;
    padding-inline: 0.3125rem 1.25rem;
  }
}

.cta-banner::before {
  content: "";
  position: absolute;
  bottom: -60%;
  right: 5%;
  rotate: -5deg;
  width: 70.8%;
  aspect-ratio: 37/21;
  background-color: var(--_bg-color);
  -webkit-mask-image: url("../images/common/icon_croissant.svg");
          mask-image: url("../images/common/icon_croissant.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  opacity: 0.12;
  mix-blend-mode: multiply;
  transition: opacity 0.3s ease, scale 0.3s ease;
}
@media screen and (max-width: 767px) {
  .cta-banner::before {
    bottom: -4%;
    right: 5%;
    rotate: -6deg;
    width: 71.0447761194%;
  }
}

.cta-banner::after {
  content: "";
  width: 1.5625rem;
  aspect-ratio: 25/22;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon_arrow-lg.svg");
          mask-image: url("../images/common/icon_arrow-lg.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: translate 0.3s ease;
}
@media screen and (max-width: 767px) {
  .cta-banner::after {
    width: 1rem;
    -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
            mask-image: url("../images/common/icon_arrow-fit.svg");
    aspect-ratio: 15/10;
  }
}

.cta-banner__img {
  --_radius: calc(17 * var(--rem));
  position: relative;
  height: 100%;
  clip-path: inset(0 round var(--_radius) 0 0 var(--_radius));
}
@media screen and (max-width: 767px) {
  .cta-banner__img {
    --_radius: calc(7 * var(--rem));
  }
}

.cta-banner__img img {
  aspect-ratio: 268/144;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .cta-banner__img img {
    aspect-ratio: 90/80;
  }
}

.cta-banner__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.0855057351cqi;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-banner__title {
    gap: 0.5rem;
    padding-top: 0.5rem;
  }
}

.cta-banner__title-icon {
  flex-shrink: 0;
  width: 6.6736183525cqi;
}
@media screen and (max-width: 767px) {
  .cta-banner__title-icon {
    width: 10cqi;
  }
}

.cta-banner__title-icon img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: contain;
}

.cta-banner__title-text {
  font-size: clamp(24px, 4.0667361835cqi, 39px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .cta-banner__title-text {
    font-size: min(5.8064516129cqi, 24px);
    line-height: 1.4;
  }
}

@media (any-hover: hover) {
  .cta-banner:hover {
    filter: brightness(1.1) var(--_drop-shadow);
  }
  .cta-banner:hover::before {
    opacity: 0.16;
    scale: 1.1;
  }
  .cta-banner:hover::after {
    translate: 0.3125rem;
  }
}
.cta {
  position: relative;
}

.cta__contact {
  padding-block: max(180px, 200 / var(--cqi)) max(78px, 78 / var(--cqi));
  background-image: -webkit-image-set(url("../images/top/bg_contact.avif") type("image/avif"), url("../images/top/bg_contact.png") type("image/png"));
  background-image: image-set(url("../images/top/bg_contact.avif") type("image/avif"), url("../images/top/bg_contact.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .cta__contact {
    padding-block: min(94 / var(--cqi), 160px) min(82 / var(--cqi), 100px);
    background-image: -webkit-image-set(url("../images/top/bg_contact-sp.avif") type("image/avif"), url("../images/top/bg_contact-sp.png") type("image/png"));
    background-image: image-set(url("../images/top/bg_contact-sp.avif") type("image/avif"), url("../images/top/bg_contact-sp.png") type("image/png"));
  }
}

.cta__contact-lead {
  margin-top: 36px;
  font-size: max(16px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .cta__contact-lead {
    margin-top: 1.6875rem;
  }
}

.cta__contact-group {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .cta__contact-group {
    margin-top: 2.6875rem;
  }
}

.cta__contact-group + .cta__contact-group {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .cta__contact-group + .cta__contact-group {
    margin-top: 4.375rem;
  }
}

.cta__contact-heading {
  display: grid;
  gap: 10px;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .cta__contact-heading {
    gap: 4px;
  }
}

.cta__contact-group:has(.cta__contact-button) .cta__contact-heading {
  gap: initial;
}

.cta__contact-heading-main {
  font-size: max(24px, 1.875rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .cta__contact-heading-main {
    font-size: 1.5rem;
  }
}

.cta__contact-group:has(.cta__contact-button) .cta__contact-heading-main {
  font-size: max(24px, 2rem);
}
@media screen and (max-width: 767px) {
  .cta__contact-group:has(.cta__contact-button) .cta__contact-heading-main {
    font-size: 1.5rem;
  }
}

.cta__contact-heading-sub {
  margin-inline: -0.3em;
  font-size: 1rem;
  font-family: var(--second-font);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.cta__contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20.9375rem, 1fr));
  gap: 0.4375rem;
  margin-top: 20px;
  clip-path: inset(0 round 1.25rem);
}
@media screen and (max-width: 767px) {
  .cta__contact-list {
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    margin-top: 1.0625rem;
  }
}

.cta__contact-item {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 1rem 1.25rem 1.125rem;
  background-color: var(--bg-base);
}
@media screen and (max-width: 767px) {
  .cta__contact-item {
    gap: 5px;
    padding: 0.8125rem 1.25rem 1rem;
  }
}

.cta__contact-item-head {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--accent);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .cta__contact-item-head {
    font-size: 0.875rem;
  }
}

.cta__contact-item-tel {
  font-size: max(32px, 2.125rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-box: trim-both cap alphabetic;
}
@media screen and (max-width: 767px) {
  .cta__contact-item-tel {
    font-size: 2rem;
  }
}

.cta__contact-button {
  margin-top: 16px;
  margin-inline: auto;
  width: min(100%, 440px);
}
@media screen and (max-width: 767px) {
  .cta__contact-button {
    margin-top: 18px;
  }
}

.cta__banner {
  padding-block: 6.125rem 116px;
}
@media screen and (max-width: 767px) {
  .cta__banner {
    padding-block: 3.75rem 5.3125rem;
  }
}

.cta__banner-inner.inner {
  --_padding-pc: 50px;
  max-width: initial;
  width: min(max(650px, 72.9166666667vw), 1050px);
}
@media screen and (max-width: 767px) {
  .cta__banner-inner.inner {
    max-width: 600px;
    width: 100%;
  }
}

.cta__totop {
  position: absolute;
  bottom: 3.625rem;
  right: 2.75rem;
}
@media screen and (max-width: 767px) {
  .cta__totop {
    bottom: 0.25rem;
    right: 0.9375rem;
  }
}

.drawer {
  position: relative;
  margin-left: auto;
  padding-block: 10rem 6.25rem;
  width: clamp(460px, 35.2777777778cqi, 508px);
  height: min(90vh, 729px);
  overflow-y: auto;
  background-image: -webkit-image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-image: image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-repeat: repeat;
  background-position: center;
  border-bottom-left-radius: 3rem;
  translate: 100%;
  transition: translate 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .drawer {
    padding-block: 8.125rem 6.125rem;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 0;
  }
}

.header__drawer.is-open .drawer {
  translate: 0;
}

.drawer__inner.inner {
  --padding-pc: 40px;
}
@media screen and (max-width: 767px) {
  .drawer__inner.inner {
    --padding-sp: 30px;
  }
}

.drawer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 195px));
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .drawer__nav-list {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.drawer__nav-item {
  --_border-size: 2px;
  border-block: var(--_border-size) solid var(--accent);
}
@media screen and (max-width: 767px) {
  .drawer__nav-item {
    --_border-size: 1px;
  }
}

.drawer__nav-item:not(:nth-child(-n+2)) {
  margin-top: calc(var(--_border-size) * -1);
}

.drawer__nav-link {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.125rem 1.5rem 1.1875rem;
  text-align: center;
  transition: color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .drawer__nav-link {
    padding: 0.8125rem 1rem;
  }
}

.drawer__nav-link::before {
  content: "";
  position: absolute;
  left: 3px;
  width: 14.9659863946cqi;
  aspect-ratio: 51/29;
  background-color: currentColor;
  -webkit-mask-image: url(../images/common/icon_croissant.svg);
          mask-image: url(../images/common/icon_croissant.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  opacity: 0;
  rotate: -60deg;
  transition: opacity 0.3s ease, rotate 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer__nav-link::before {
    content: none;
  }
}

@media (any-hover: hover) {
  .drawer__nav-link:hover::before {
    rotate: 0deg;
    opacity: 1;
  }
}
.drawer__nav-en {
  font-size: clamp(1.5rem, 20.4081632653cqi, 30px);
  font-family: var(--en-font);
  line-height: 1;
  letter-spacing: 0.04em;
}

.drawer__nav-ja {
  font-size: clamp(0.75rem, 9.5238095238cqi, 14px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.drawer__buttons {
  display: grid;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .drawer__buttons {
    margin-top: 46px;
  }
}

.faq {
  display: grid;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .faq {
    gap: 1rem;
  }
}

.faq__item {
  border: 3px solid var(--accent);
  border-radius: 5.625rem;
  background-color: var(--white);
  transition: border-radius 0.3s ease-out;
}
.faq__item[open] {
  border-radius: 1.875rem;
}
.faq__item::details-content {
  content-visibility: unset;
  display: grid;
  transition: grid-template-rows 0.3s ease-out;
}
.faq__item:not([open])::details-content {
  grid-template-rows: 0fr;
}
.faq__item[open]::details-content {
  grid-template-rows: 1fr;
}

.faq__question {
  display: grid;
  grid-template-columns: 3.375rem 1fr 2.5rem;
  align-items: center;
  gap: 2.0625rem;
  padding-block: 0.9375rem;
  padding-inline: 1.3125rem 1.875rem;
  cursor: pointer;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .faq__question {
    grid-template-columns: 2rem 1fr 1.25rem;
    gap: 0.75rem;
    padding-block: 0.9375rem;
    padding-inline: 0.8125rem 1.125rem;
  }
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  display: grid;
  place-items: center;
  width: 3.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  font-family: var(--en-font);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .faq__icon {
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
  }
}

.faq__question .faq__icon {
  background-color: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
}

.faq__answer .faq__icon {
  background-color: var(--accent);
  color: var(--white);
}

.faq__q-text {
  font-size: max(16px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .faq__q-text {
    width: 95.154185022%;
    font-size: 0.9375rem;
  }
}

.faq__toggle {
  margin-inline-start: auto;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 1;
  width: 1.625rem;
  height: 1.625rem;
}
@media screen and (max-width: 767px) {
  .faq__toggle {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.faq__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 3px;
  height: 100%;
  border-radius: calc(infinity * 1px);
  background-color: var(--accent);
  transition: rotate 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .faq__toggle span {
    width: 2px;
  }
}
.faq__toggle span:first-child {
  width: 100%;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .faq__toggle span:first-child {
    height: 2px;
  }
}

.faq__item[open] .faq__toggle span:first-child {
  rotate: 180deg;
}
.faq__item[open] .faq__toggle span:last-child {
  rotate: 90deg;
}

.faq__answer {
  overflow: hidden;
  min-height: 0;
  transition: opacity 0.3s ease-out;
}
.faq__item:not([open]) .faq__answer {
  opacity: 0;
}
.faq__item[open] .faq__answer {
  opacity: 1;
}

.faq__answer-inner {
  display: grid;
  grid-template-columns: 3.375rem 1fr;
  gap: 2.0625rem;
  padding-block: 0.625rem 1.3125rem;
  padding-inline: 1.3125rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .faq__answer-inner {
    grid-template-columns: 2rem 1fr 1.25rem;
    gap: 0.75rem;
    padding: 0 0.8125rem 0.9375rem;
  }
}

.faq__a-text {
  align-self: center;
  font-size: max(14px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .faq__a-text {
    width: 95.154185022%;
    font-size: 0.9375rem;
  }
}

.first-button {
  --_text-color: var(--accent);
  --_bg-color: var(--white);
  --_border-color: var(--accent);
  --_icon-width: 17px;
  --_icon-height: 24px;
  --_transition: 0.3s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(15 * var(--em));
  place-items: center;
  padding-block: calc(12 * var(--em));
  padding-inline: calc(37 * var(--em)) calc(43 * var(--em));
  background-color: var(--_bg-color);
  border: 3px solid var(--_border-color);
  border-radius: calc(infinity * 1px);
  font-size: max(14px, 1rem);
  color: var(--_text-color);
  transition: background-color var(--_transition) ease, color var(--_transition) ease;
}

.first-button__icon {
  width: calc(17 * var(--em));
}

.first-button__icon svg {
  aspect-ratio: 17/24;
  object-fit: contain;
}

.first-button__text {
  font-size: inherit;
  font-weight: var(--fw-bold);
  line-height: 1.4375;
}

@media (any-hover: hover) {
  .first-button:hover {
    background-color: color-mix(in srgb, var(--_text-color) 80%, var(--_bg-color));
    color: var(--_bg-color);
  }
}
.fixed-cta {
  position: fixed;
  z-index: var(--z-index-cta);
  bottom: 25px;
  right: 0;
  display: grid;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .fixed-cta {
    bottom: 20px;
  }
}

.fixed-cta.is-opening {
  opacity: 0;
}

.fixed-cta__banner {
  --_base-color: var(--accent-green2);
  --_bg-color: var(--white);
  --_text-color: var(--_base-color);
  --_border-radius: calc(infinity * 1px);
  --_translateX: calc(34 * var(--rem));
  --_duration: 0.2s;
  position: relative;
  display: grid;
  place-items: center;
  padding: 0.5rem 2.25rem;
  min-width: 15.625rem;
  min-height: 5.375rem;
  background-color: var(--_bg-color);
  border: 3px solid var(--_base-color);
  border-right: none;
  border-top-left-radius: var(--_border-radius);
  border-bottom-left-radius: var(--_border-radius);
  color: var(--_text-color);
  text-align: center;
  filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.25));
  translate: var(--_translateX);
  transition: translate var(--_duration) ease-out;
  will-change: filter;
}
@media screen and (max-width: 767px) {
  .fixed-cta__banner {
    --_translateX: calc(18 * var(--rem));
    padding-block: 0.25rem;
    padding-inline: 1.5rem;
    border-width: 2px;
    min-width: 10.125rem;
    min-height: 3.375rem;
  }
}

.fixed-cta__banner:has(.fixed-cta__icon) {
  grid-template-columns: 3.875rem minmax(0, 1fr);
  justify-items: start;
  gap: 0.875rem;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 767px) {
  .fixed-cta__banner:has(.fixed-cta__icon) {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.3125rem;
    padding-inline: 0.25rem;
  }
}

.fixed-cta__banner[data-type=trial] {
  --_bg-color: var(--_base-color);
  --_text-color: var(--white);
  padding-block: 0.5rem 0.375rem;
  border-color: currentColor;
}
@media screen and (max-width: 767px) {
  .fixed-cta__banner[data-type=trial] {
    padding-bottom: 5px;
  }
}

.fixed-cta__bubble {
  --_translateY: -56%;
  --_left: -2px;
  position: absolute;
  top: 0;
  left: var(--_left);
  translate: 0 var(--_translateY);
  padding-block: 2.4166666667em;
  padding-inline: 2.1666666667em 1.5em;
  background-image: url("../images/common/img_bubble-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-size: max(10px, 0.75rem);
}
@media screen and (max-width: 767px) {
  .fixed-cta__bubble {
    --_translateY: -61%;
    font-size: 0.625rem;
    padding-block: 2.6em;
    padding-inline: 1.1em;
  }
}

.fixed-cta__banner[data-type=trial] .fixed-cta__bubble {
  --_left: -12px;
  padding-block: 2.5em;
  padding-inline: 1.1666666667em 1em;
  background-image: url("../images/common/img_bubble-brown.svg");
}
@media screen and (max-width: 767px) {
  .fixed-cta__banner[data-type=trial] .fixed-cta__bubble {
    --_translateY: -63%;
    --_left: -20px;
    font-size: 0.625rem;
    padding-block: 2.5em;
    padding-inline: 0.9166666667em 1em;
  }
}

.fixed-cta__bubble-text {
  display: inline-block;
  rotate: -3deg;
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.3;
}

.fixed-cta__icon {
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.fixed-cta__icon img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fixed-cta__wrap {
  display: grid;
  gap: 0.3125rem;
  line-height: 1.2;
}

.fixed-cta__year {
  font-size: 1.875rem;
  font-family: var(--en-font);
  letter-spacing: 0.04em;
  text-box: trim-both cap alphabetic;
}
@media screen and (max-width: 767px) {
  .fixed-cta__year {
    font-size: 1.3125rem;
  }
}

.fixed-cta__text {
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .fixed-cta__text {
    font-size: 0.8125rem;
  }
}

.fixed-cta__banner[data-type=trial] .fixed-cta__text {
  font-size: max(14px, 1.25rem);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .fixed-cta__banner[data-type=trial] .fixed-cta__text {
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .fixed-cta__banner:hover {
    translate: 0;
  }
}
.footer {
  padding-block: 4.0625rem 2.375rem;
  background-color: var(--text-color);
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 1.5625rem;
  }
}

.footer__inner.inner {
  max-width: calc(clamp(1080px, 75vw, 1400px) + var(--padding-pc) * 2);
}

.footer__container {
  display: grid;
  grid-template-columns: minmax(0, 343px) max-content;
  grid-template-areas: "info nav" "sns nav" "song nav" "after-support nav";
  justify-content: space-between;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid color-mix(in srgb, var(--white) 50%, transparent);
}
@media screen and (max-width: 767px) {
  .footer__container {
    grid-template-columns: 1fr;
    grid-template-areas: "nav" "sns" "song" "after-support" "info";
    justify-items: center;
    padding-bottom: 2.8125rem;
  }
}

.footer__info {
  grid-area: info;
}
@media screen and (max-width: 767px) {
  .footer__info {
    display: grid;
    place-items: center;
    margin-top: 1.875rem;
  }
}

.footer__logo {
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: min(100%, 323px);
  }
}

.footer__logo img {
  aspect-ratio: 343/39;
  width: 100%;
  object-fit: contain;
}

@media (any-hover: hover) {
  .footer__logo:hover {
    opacity: 0.7;
  }
}
.footer__lead {
  margin-top: 15px;
  padding-left: 4px;
  font-size: max(14px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .footer__lead {
    margin-top: 1.125rem;
  }
}

.footer__lead-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .footer__lead-link:hover {
    color: var(--accent);
  }
}
.footer__sns {
  grid-area: sns;
  display: flex;
  align-items: center;
  gap: 1.0625rem;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    margin-top: 3rem;
  }
}

.footer__sns-title {
  font-size: 1.6875rem;
  font-family: var(--en-font);
  line-height: 1;
  letter-spacing: -0.0114814815em;
}

.footer__sns-list {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
  line-height: 1;
  height: -moz-fit-content;
  height: fit-content;
}

.footer__sns-item {
  flex-shrink: 0;
}

.footer__sns-link {
  display: grid;
  place-items: center;
  width: 3.125rem;
  border-radius: 50%;
  outline: 3px solid transparent;
  transition: outline 0.3s ease;
}

.footer__sns-link picture {
  display: inherit;
}

.footer__sns-link img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: contain;
}

@media (any-hover: hover) {
  .footer__sns-link:hover {
    outline-color: var(--accent);
  }
}
.footer__song {
  grid-area: song;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3125rem;
  margin-top: 1.5rem;
  padding-block: 1.125rem;
  padding-inline: 2.4375rem 1.4375rem;
  width: -moz-fit-content;
  width: fit-content;
  border: 3px solid var(--white);
  border-radius: calc(infinity * 1px);
  font-size: max(16px, 1.125rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__song {
    padding-block: 0.6875rem 0.75rem;
    padding-inline: 2.9375rem 1.125rem;
    font-size: 1rem;
  }
}

.footer__song::after {
  content: "";
  width: 1.875rem;
  aspect-ratio: 1;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon_play.svg");
          mask-image: url("../images/common/icon_play.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

@media (any-hover: hover) {
  .footer__song:hover {
    background-color: var(--white);
    color: var(--text-color);
  }
}
.footer__after-support {
  grid-area: after-support;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 345px);
  margin-top: 3.5rem;
  box-shadow: 0 0 10px 0 rgba(40, 30, 19, 0.24);
  outline: 3px solid transparent;
  border-radius: 10px;
  transition: outline 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__after-support {
    margin-top: 2.75rem;
  }
}

.footer__after-support img {
  aspect-ratio: 345/103;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .footer__after-support img {
    aspect-ratio: 335/102;
  }
}

@media (any-hover: hover) {
  .footer__after-support:hover {
    outline-color: var(--accent);
  }
}
.footer__nav {
  grid-area: nav;
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  align-content: start;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    grid-auto-columns: minmax(0, 220px);
    place-items: center;
    justify-content: center;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    width: 100%;
    margin-top: initial;
  }
}

.footer__nav-item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    border-bottom: 2px solid color-mix(in srgb, var(--white) 30%, transparent);
  }
}

.footer__nav-link {
  display: grid;
  align-items: center;
  padding-block: 0.75rem;
  font-size: max(14px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__nav-link {
    place-items: center;
    padding-block: 1rem;
    font-size: 0.875rem;
    text-decoration: none;
  }
}

@media (any-hover: hover) {
  .footer__nav-link:hover {
    text-decoration-color: currentColor;
  }
}
.footer__banners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 200px));
  gap: 1rem;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__banners {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    -moz-column-gap: 0.8125rem;
         column-gap: 0.8125rem;
  }
}

.footer__banners-link {
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease;
}

.footer__banners-link picture {
  display: inherit;
}

.footer__banners-link img {
  aspect-ratio: 161/42;
  width: 100%;
  object-fit: contain;
}

@media (any-hover: hover) {
  .footer__banners-link:hover {
    opacity: 0.7;
  }
}
.footer__copyright {
  display: block;
  margin-top: 1.5rem;
  font-size: 10px;
  font-weight: var(--fw-regular);
  font-family: var(--second-font);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 1.9375rem;
  }
}

.form {
  --_base-color: var(--accent-blue);
  --_text-color: var(--base-black);
  --_sub-color: var(--text-sub);
  --_padding: 10px;
  --_fields-gap: calc(32*var(--rem));
  --_label-font-size: max(14px, 1rem);
  --_label-line-height: calc(26/16);
  --_required-font-size: 12px;
  --_required-padding-block: 7px;
  --_required-padding-inline: 6px;
  --_required-bg-color: #E97334;
  --_input-font-size: max(1rem, 16px);
  --_input-block-size: calc(56*var(--rem));
  --_textarea-block-size: calc(200*var(--rem));
  --_consent-font-size: 14px;
  --_consent-line-height: calc(24/14);
  --_consent-gap: 12px;
  --_checkbox-size: 20px;
}
@media screen and (max-width: 767px) {
  .form {
    --_padding: 12px 20px;
    --_fields-gap: calc(40*var(--rem));
    --_label-font-size: max(16px, 18*var(--rem));
    --_label-line-height: calc(32/18);
    --_required-font-size: 14px;
    --_input-font-size: max(16px, calc(18*var(--rem)));
  }
}

.form__inner {
  display: grid;
  gap: var(--_fields-gap);
}

.form__field {
  display: grid;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .form__field {
    gap: 8px;
  }
}

.form__term {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .form__term {
    gap: 12px;
  }
}

.form__label {
  font-size: var(--_label-font-size);
  font-weight: var(--fw-bold);
  line-height: var(--_label-line-height);
}

.form__required {
  display: inline-block;
  padding: var(--_required-padding-block) var(--_required-padding-inline);
  background-color: var(--_required-bg-color);
  border-radius: 4px;
  font-size: var(--_required-font-size);
  font-weight: 700;
  text-box: trim-both cap alphabetic;
}

.form__input,
.form__textarea,
.form__select {
  display: grid;
  padding: 12px 16px;
  width: 100%;
  min-height: var(--_input-block-size);
  font-size: var(--_input-font-size);
  color: var(--_text-color);
}
@media screen and (max-width: 767px) {
  .form__input,
  .form__textarea,
  .form__select {
    padding-inline: 20px;
  }
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder, .form__select::-moz-placeholder {
  font-weight: var(--fw-bold);
  color: var(--_sub-color);
}
.form__input::placeholder,
.form__textarea::placeholder,
.form__select::placeholder {
  font-weight: var(--fw-bold);
  color: var(--_sub-color);
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: 2px solid var(--_base-color);
  outline-offset: -2px;
  box-shadow: 0 0 10px color-mix(in srgb, var(--_base-color) 80%, transparent);
}

.form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: var(--_text-color);
}
.form__select:has(option:checked[value=""]) {
  color: var(--_sub-color);
}
.form__select::picker(select) {
  color: var(--_text-color);
}

.form__textarea {
  min-height: var(--_textarea-block-size);
  resize: unset;
  field-sizing: content;
}

.form__consent {
  display: flex;
  gap: var(--_consent-gap);
  align-items: center;
  justify-content: center;
}

.form__checkbox {
  container-type: inline-size;
  display: inline-grid;
  place-items: center;
  grid-template: "checkbox";
  width: var(--_checkbox-size);
  height: var(--_checkbox-size);
  border: 2px solid var(--_sub-color);
  border-radius: 2px;
  background-color: var(--white);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form__checkbox:checked::before {
  content: "";
  position: relative;
  top: -10cqi;
  grid-area: checkbox;
  rotate: 45deg;
  width: 45cqi;
  height: 80cqi;
  border-right: 3px solid var(--_base-color);
  border-bottom: 3px solid var(--_base-color);
}

.wpcf7-acceptance {
  display: flex;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-list-item {
  margin: 0;
}

.form__consent label {
  display: flex;
  align-items: center;
  gap: var(--_consent-gap);
  font-size: var(--_consent-font-size);
  font-weight: var(--fw-regular);
  line-height: var(--_consent-line-height);
  letter-spacing: 0.05em;
  color: var(--_sub-color);
}

.form__consent-link {
  color: var(--_base-color);
  text-decoration: underline;
  transition: filter ease-out 0.3s;
}

@media (any-hover: hover) {
  .form__consent-link:hover {
    filter: brightness(1.2);
  }
}
.form__button {
  --_arrow-size: 8px;
  --_gap: 10px;
  --_padding-left: 32px;
  --_padding-right: calc(var(--_arrow-size) + var(--_gap) + var(--_padding-left));
  position: relative;
  display: block;
  margin-top: var(--_fields-gap);
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
  border: 1px solid var(--accent-blue);
  background-color: var(--bg-gray);
  color: var(--text-white);
  transition: border-width ease-out 0.3s, filter ease-out 0.3s;
}
@media screen and (max-width: 767px) {
  .form__button {
    margin-top: 3.75rem;
  }
}
.form__button[data-type=blue] {
  background-color: var(--accent-blue);
}
.form__button::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: calc(var(--_padding-left) - var(--_gap));
  translate: 0 -50%;
  width: var(--_arrow-size);
  aspect-ratio: 8/14;
  background-image: url(../images/icon_chevron.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: translate ease-out 0.3s;
}

.form__button input {
  padding-block: calc(12 * var(--em));
  padding-inline: var(--_padding-left) var(--_padding-right);
  font-size: max(14px, 1rem);
  font-weight: var(--fw-bold);
  line-height: 1.75;
}

@media (any-hover: hover) {
  .form__button:hover {
    filter: contrast(1.3);
  }
  .form__button:hover::after {
    translate: 5px -50%;
  }
}
.wpcf7-not-valid-tip {
  display: block;
  margin-block-start: 0.5rem;
  font-size: max(12px, 0.875rem);
  color: red;
}
.form__consent .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  left: calc(var(--_checkbox-size) + var(--_consent-gap));
  translate: 0 100%;
  margin: 0;
}

.wpcf7-response-output,
.wpcf7-spinner {
  display: none;
}

.frame-heading {
  --_base-color: var(--white);
  display: inline-grid;
  place-items: center;
  border-block: 0.375rem solid;
  padding: 6px 0.625rem 8px;
  min-width: min(100%, 17.5rem);
  font-size: max(28px, 2.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--_base-color);
}
@media screen and (max-width: 767px) {
  .frame-heading {
    border-block: 0.25rem solid;
    padding: 2px 0.625rem;
    min-width: min(100%, 13.4375rem);
    font-size: 1.75rem;
  }
}

.frame-heading[data-size=small] {
  padding: 2px 0.625rem 3px;
  min-width: min(100%, 13.375rem);
}

.frame-heading[data-color=accent] {
  --_base-color: var(--accent);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .frame-heading[data-color=accent] {
    border-width: 0.375rem;
    padding-block: 0.8125rem;
  }
}

.frame-heading[data-color=text] {
  --_base-color: var(--text-color);
}

.gallery {
  --_img-size: calc(428 * var(--rem));
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .gallery {
    --_img-size: min(154 / var(--cqi), 220px);
  }
}

@media screen and (max-width: 767px) {
  .gallery[data-page=top] {
    --_img-size: min(200 / var(--cqi), 340px);
  }
}

.gallery__inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: loop 60s linear infinite;
}
@media screen and (max-width: 767px) {
  .gallery__inner {
    animation-duration: 40s;
  }
}

.gallery__list {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  flex-shrink: 0;
}

.gallery__item {
  display: block;
  flex-shrink: 0;
}

.gallery__img {
  width: var(--_img-size);
}

.gallery__img img {
  aspect-ratio: 200/140;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
}

@keyframes loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.hazimete-class {
  padding-block: 6.875rem 8.125rem;
  background-color: var(--bg-base);
}
@media screen and (max-width: 767px) {
  .hazimete-class {
    padding-block: 5.5rem 5.375rem;
  }
}

.hazimete-class__content {
  --_outer: minmax(var(--padding-pc), 1fr);
  --_img: minmax(0, 500px);
  --_gap: minmax(0, min(73 / 1440 * 100vw, 73px));
  --_body: minmax(0, 480px);
  display: grid;
  grid-template-columns: var(--_outer) var(--_img) var(--_gap) var(--_body) var(--_outer);
  grid-template-areas: "img img . body .";
  align-items: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .hazimete-class__content {
    --_outer: minmax(var(--padding-sp), 1fr);
    --_body: minmax(0, 560px);
    grid-template-columns: var(--_outer) var(--_body) var(--_outer);
    grid-template-areas: "img img ." ". body .";
    margin-top: 2.125rem;
  }
}

.hazimete-class__img {
  --_radius: calc(50 * var(--rem));
  grid-area: img;
  clip-path: inset(0 round 0 var(--_radius) var(--_radius) 0);
}
@media screen and (max-width: 767px) {
  .hazimete-class__img {
    --_radius: calc(30 * var(--rem));
  }
}

.hazimete-class__img img {
  aspect-ratio: 694/418;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hazimete-class__img img {
    aspect-ratio: 355/231;
  }
}

.hazimete-class__body {
  grid-area: body;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .hazimete-class__body {
    margin-top: 2.0625rem;
  }
}

.hazimete-class__heading {
  font-size: max(24px, 2.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .hazimete-class__heading {
    font-size: 1.75rem;
  }
}

.hazimete-class__text {
  margin-top: 1.875rem;
  font-size: max(14px, 1rem);
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .hazimete-class__text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.9;
  }
}

.hazimete-class__button {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .hazimete-class__button {
    margin-top: 3rem;
    text-align: center;
  }
}

.hazimete-course {
  position: relative;
  overflow-x: clip;
  padding-block: 5.9375rem 6.875rem;
  background-image: -webkit-image-set(url("../images/common/bg_course.avif") type("image/avif"), url("../images/common/bg_course.jpg") type("image/jpg"));
  background-image: image-set(url("../images/common/bg_course.avif") type("image/avif"), url("../images/common/bg_course.jpg") type("image/jpg"));
  background-repeat: repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .hazimete-course {
    padding-block: 5.75rem 5.5rem;
  }
}

.hazimete-course__contents {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .hazimete-course__contents {
    margin-top: 3.375rem;
  }
}

.hazimete-course__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hazimete-course__content + .hazimete-course__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .hazimete-course__content + .hazimete-course__content {
    margin-top: 3.75rem;
  }
}

.hazimete-course__heading {
  width: 100%;
}

.hazimete-course__lead {
  margin-top: 1.125rem;
  font-size: max(14px, 16 / var(--cqi));
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .hazimete-course__lead {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.hazimete-course__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 1.25rem;
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .hazimete-course__cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 6.25rem;
    margin-top: 6.25rem;
    max-width: min(95.8208955224%, 26.25rem);
  }
}

.hazimete-course__card {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  border-radius: 1.25rem;
  background-color: var(--white);
  padding: 1.125rem 1.25rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .hazimete-course__card {
    grid-template-rows: initial;
    grid-row: initial;
    padding: 1.1875rem 1.375rem 1.4375rem;
  }
}

.hazimete-course__card[data-type=sweets] {
  grid-template-columns: minmax(0, 277px) minmax(0, 264px);
  grid-template-rows: unset;
  grid-row: unset;
  align-items: center;
  gap: 1.375rem;
  margin-top: 1.5625rem;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hazimete-course__card[data-type=sweets] {
    grid-template-columns: 1fr;
    gap: initial;
    justify-content: center;
    margin-top: 1.5625rem;
    padding: 1.25rem 1.375rem 1.5625rem;
    width: calc(100% - 0.9375rem);
  }
}

.hazimete-course__images {
  --_radius: calc(17 * var(--rem));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  clip-path: inset(0 round var(--_radius));
}

.hazimete-course__img img {
  aspect-ratio: 137/127;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hazimete-course__card-bubble {
  position: absolute;
  z-index: 1;
  top: -4.25rem;
  left: calc(50% - min(20.9259259259cqi, 226px));
  padding: 2.125em 1.5625rem 2.625em;
  background-image: url("../images/hazimete/img_border-bubble.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-size: max(12px, 1rem);
  font-weight: var(--fw-bold);
  color: var(--accent);
  line-height: 1.3;
  text-align: center;
}
@media (width < 1130px) {
  .hazimete-course__card-bubble {
    left: -1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .hazimete-course__card-bubble {
    top: -4.0625rem;
    left: -6%;
    padding: 2.125rem 1.5625rem 2.625rem;
    min-width: 12.125rem;
    font-size: 1rem;
  }
}

.hazimete-course__level {
  position: absolute;
  top: -5.5rem;
  right: -1.75rem;
  width: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .hazimete-course__level {
    right: -0.6875rem;
  }
}

.hazimete-course__level img {
  aspect-ratio: 103/108;
  width: 100%;
  object-fit: contain;
}

.hazimete-course__card-title {
  display: grid;
  place-items: center;
  padding-block: 0.75rem 0.625rem;
  background-image: radial-gradient(circle, currentColor 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: space no-repeat;
  background-size: 13px 3px;
  font-size: max(18px, 1.25rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--accent);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hazimete-course__card-title {
    background-size: 11px 3px;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

.hazimete-course__card-body {
  padding-top: 0.5rem;
}

.hazimete-course__card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .hazimete-course__card-meta {
    margin-top: 0.625rem;
  }
}

.hazimete-course__card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: max(13px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .hazimete-course__card-price {
    font-size: 1rem;
  }
}

.hazimete-course__card-price-large {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}

.hazimete-course__card-sessions {
  position: relative;
  top: 2px;
  display: inline-block;
  padding: 0.25rem 0.375rem 0.3125rem;
  min-width: 4.625rem;
  border-radius: 3px;
  background-color: var(--accent);
  font-size: max(13px, 1rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
}

.hazimete-course__card-desc {
  display: grid;
  place-items: center;
  place-content: center;
  margin-top: 0.625rem;
  padding: 0.6875rem 0.5rem;
  border-radius: 0.625rem;
  background-color: #fdeee0;
  font-size: max(13px, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .hazimete-course__card-desc {
    margin-top: 0.375rem;
    min-height: 5.3125rem;
    font-size: 0.875rem;
  }
}

.hazimete-course__card[data-type=sweets] .hazimete-course__card-desc {
  margin-top: 0.8125rem;
  padding-inline: 1.375rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .hazimete-course__card[data-type=sweets] .hazimete-course__card-desc {
    min-height: initial;
    padding-inline: 0.5rem;
    text-align: center;
  }
}

.hazimete-course__note {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .hazimete-course__note {
    margin-top: 2rem;
  }
}

.hazimete-course__note-inner {
  display: inline;
  font-size: max(14px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--white);
  background-image: linear-gradient(to bottom, transparent 0, transparent calc(100% - 0.625rem), rgba(255, 255, 255, 0.4) calc(100% - 0.625rem), rgba(255, 255, 255, 0.4) calc(100% - 0.125rem), transparent calc(100% - 0.125rem));
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .hazimete-course__note-inner {
    font-size: 1.25rem;
    word-break: keep-all;
    background-image: linear-gradient(to bottom, transparent 0, transparent calc(100% - 0.5rem), rgba(255, 255, 255, 0.4) calc(100% - 0.5rem), rgba(255, 255, 255, 0.4) calc(100% - 0.125rem), transparent calc(100% - 0.125rem));
  }
}

.hazimete-course__button {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hazimete-course__button {
    margin-top: 3.25rem;
  }
}

.hazimete-faq {
  padding-block: 7.9375rem max(180px, 313 / var(--cqi));
  background-color: var(--bg-base);
}
@media screen and (max-width: 767px) {
  .hazimete-faq {
    padding-block: 3.25rem min(150 / var(--cqi), 240px);
  }
}

.hazimete-faq__list {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .hazimete-faq__list {
    margin-top: 1.75rem;
  }
}

.hazimete-feature {
  padding-block: 6.25rem 8.25rem;
  background-image: -webkit-image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-image: image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-repeat: repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .hazimete-feature {
    padding-block: 6.0625rem 6.25rem;
  }
}

.hazimete-feature__contents {
  display: grid;
  gap: 4.375rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .hazimete-feature__contents {
    gap: 3.125rem;
    margin-top: 1.75rem;
  }
}

.hazimete-feature__content {
  --_outer: minmax(var(--padding-pc), 1fr);
  --_img: minmax(0, 474px);
  --_gap: minmax(0, min(64 / 1440 * 100vw, 64px));
  --_body: minmax(0, 462px);
  display: grid;
  grid-template-columns: var(--_outer) var(--_img) var(--_gap) var(--_body) var(--_outer);
  grid-template-areas: "img img . body .";
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hazimete-feature__content {
    --_outer: minmax(var(--padding-sp), 1fr);
    --_body: minmax(0, 560px);
    grid-template-columns: var(--_outer) var(--_body) var(--_outer);
    grid-template-areas: "img img ." ". body .";
  }
}

.hazimete-feature__content:nth-child(even) {
  grid-template-columns: var(--_outer) var(--_body) var(--_gap) var(--_img) var(--_outer);
  grid-template-areas: ". body . img img";
}
@media screen and (max-width: 767px) {
  .hazimete-feature__content:nth-child(even) {
    grid-template-columns: var(--_outer) var(--_body) var(--_outer);
    grid-template-areas: ". img img" ". body .";
  }
}

.hazimete-feature__img {
  --_radius: calc(50 * var(--rem));
  --_clip-path: inset(0 round 0 var(--_radius) var(--_radius) 0);
  grid-area: img;
  clip-path: var(--_clip-path);
}
@media screen and (max-width: 767px) {
  .hazimete-feature__img {
    --_radius: calc(30 * var(--rem));
  }
}

.hazimete-feature__content:nth-child(even) .hazimete-feature__img {
  --_clip-path: inset(0 round var(--_radius) 0 0 var(--_radius));
}

.hazimete-feature__img img {
  aspect-ratio: 694/418;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hazimete-feature__img img {
    aspect-ratio: 355/231;
  }
}

.hazimete-feature__body {
  grid-area: body;
}
@media screen and (max-width: 767px) {
  .hazimete-feature__body {
    margin-top: 1.25rem;
  }
}

.hazimete-feature__num {
  position: relative;
  display: grid;
  grid-template: "num";
  align-items: center;
}

.hazimete-feature__num::before {
  content: "";
  grid-area: num;
  margin-left: 1.875rem;
  width: 7.5rem;
  aspect-ratio: 120/68;
  background-color: #fcebdb;
  -webkit-mask-image: url("../images/common/icon_croissant.svg");
          mask-image: url("../images/common/icon_croissant.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  opacity: 0.9;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .hazimete-feature__num::before {
    width: 4.75rem;
  }
}

.hazimete-feature__num-label {
  grid-area: num;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--en-font);
  font-size: max(16px, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .hazimete-feature__num-label {
    gap: 2px;
    font-size: 1rem;
  }
}

.hazimete-feature__num-value {
  font-size: max(28px, 2rem);
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .hazimete-feature__num-value {
    font-size: 1.75rem;
  }
}

.hazimete-feature__content:first-child .hazimete-feature__num-value {
  font-family: var(--baskervville-font);
  font-size: max(28px, 2.25rem);
}
@media screen and (max-width: 767px) {
  .hazimete-feature__content:first-child .hazimete-feature__num-value {
    font-size: 1.75rem;
  }
}

.hazimete-feature__heading {
  margin-top: 1.25rem;
  font-size: max(21px, 1.75rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .hazimete-feature__heading {
    font-size: 1.75rem;
  }
}

.hazimete-feature__text {
  margin-top: 1rem;
  font-size: max(14px, 1rem);
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .hazimete-feature__text {
    font-size: 1rem;
  }
}

.hazimete-flow {
  overflow-x: clip;
  padding-block: 6.75rem 9rem;
  background-image: -webkit-image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.jpg) type("image/jpg"));
  background-image: image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.jpg) type("image/jpg"));
  background-repeat: repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .hazimete-flow {
    padding-block: 5.3125rem;
  }
}

.hazimete-flow__lead {
  display: grid;
  gap: 0.9375rem;
  margin-top: 2.9375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__lead {
    margin-top: 2.3125rem;
  }
}

.hazimete-flow__lead-title {
  font-size: max(24px, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.4375;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__lead-title {
    font-size: 1.75rem;
    line-height: 1.4642857143;
  }
}

.hazimete-flow__lead-text {
  font-size: max(14px, 1rem);
  line-height: 1.4375;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__lead-text {
    margin-inline: -0.1em;
    font-size: 1rem;
    text-align: center;
    word-break: keep-all;
  }
}

.hazimete-flow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 312px));
  gap: 1.25rem;
  justify-content: space-between;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__steps {
    grid-template-columns: 1fr;
    gap: initial;
    margin-top: 4rem;
  }
}

.hazimete-flow__steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(50% - 19.0277777778vw);
  left: 50%;
  translate: -50%;
  width: 102.5694444444vw;
  aspect-ratio: 1477/254;
  background-image: url("../images/hazimete/flow_line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__steps::before {
    top: 6.5%;
    left: 44%;
    width: 121.0666666667vw;
    height: min(289.6vw, 1500px);
    background-image: url("../images/hazimete/flow_line-sp.svg");
    background-size: 100% 100%;
  }
}

.hazimete-flow__step {
  --_container: 312;
  --_num-top: -6%;
  --_num-left: 2%;
  --_content-width: 335;
  position: relative;
  z-index: 1;
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__step {
    --_container: 335;
    --_num-top: -7%;
    --_num-left: 7%;
    display: grid;
    justify-items: center;
  }
}

.hazimete-flow__step:nth-child(1) {
  --_content-width: 288;
}

.hazimete-flow__step:nth-child(2) {
  --_num-top: -4%;
  --_num-left: 6%;
  margin-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__step:nth-child(2) {
    --_num-left: 10%;
    margin-top: 2.75rem;
  }
}

.hazimete-flow__step:nth-child(3) {
  --_num-top: -2%;
  --_content-width: 304;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__step:nth-child(3) {
    --_num-top: -4%;
    --_num-left: 5%;
    margin-top: 3.25rem;
  }
}

.hazimete-flow__num {
  position: absolute;
  z-index: 1;
  top: var(--_num-top);
  left: var(--_num-left);
  width: calc(116 / var(--_container) * 100cqi);
}
@media screen and (max-width: 767px) {
  .hazimete-flow__num {
    max-width: 9.375rem;
  }
}

.hazimete-flow__num img {
  aspect-ratio: 116/110;
  width: 100%;
  object-fit: contain;
}

.hazimete-flow__img {
  width: calc(300 / var(--_container) * 100cqi);
}
@media screen and (max-width: 767px) {
  .hazimete-flow__img {
    max-width: 30rem;
  }
}

.hazimete-flow__img img {
  aspect-ratio: 300/256;
  width: 100%;
  object-fit: cover;
}

.hazimete-flow__body {
  margin-top: 1.25rem;
  width: min(var(--_content-width) * 1px, 100%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__body {
    width: min(var(--_content-width) / 335 * 100%, 480px);
  }
}

.hazimete-flow__step:nth-child(3) .hazimete-flow__body {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__step:nth-child(3) .hazimete-flow__body {
    margin-left: initial;
  }
}

.hazimete-flow__level {
  display: grid;
  place-items: center;
  gap: 0.3125rem;
}

.hazimete-flow__level-label {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__level-label {
    font-size: 1.125rem;
  }
}

.hazimete-flow__level-label::before,
.hazimete-flow__level-label::after {
  content: "";
  display: block;
  width: 0.5555555556em;
  aspect-ratio: 10/24;
  background-color: var(--accent);
  -webkit-mask-image: url("../images/common/icon_brackets.svg");
          mask-image: url("../images/common/icon_brackets.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.hazimete-flow__level-label::after {
  scale: -1;
}

.hazimete-flow__level-heading {
  font-size: max(16px, 1.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__level-heading {
    font-size: 1.5rem;
  }
}

.hazimete-flow__text {
  margin-top: 0.5625rem;
  font-size: max(13px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__text {
    font-size: 1rem;
  }
}

.hazimete-flow__career {
  --_padding-inline: minmax(20px, 1fr);
  --_inner: minmax(0, 800px);
  display: grid;
  grid-template-columns: var(--_padding-inline) var(--_inner) var(--_padding-inline);
  place-items: center;
  margin-top: 3rem;
  padding-block: 3.75rem 5.25rem;
  background-color: var(--white);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career {
    grid-template-columns: 1fr;
    margin-top: 3.125rem;
    padding: 2.6875rem 1rem 3.25rem;
  }
}

.hazimete-flow__career > * {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career > * {
    grid-column: initial;
  }
}

.hazimete-flow__career-lead {
  display: grid;
  font-size: max(16px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-lead {
    gap: 2px;
    font-size: 1rem;
  }
}

.hazimete-flow__career-large {
  display: inline-block;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-large {
    font-size: 1.5rem;
  }
}

.hazimete-flow__career-large > span {
  --_border-height-top: calc(100% - (16 * var(--rem)));
  --_border-height-bottom: calc(100% - (6 * var(--rem)));
  --_border-color: #e6b1a6;
  display: inline-block;
  background-image: linear-gradient(to bottom, transparent var(--_border-height-top), var(--_border-color) var(--_border-height-top) var(--_border-height-bottom), transparent var(--_border-height-bottom));
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-large > span {
    --_border-height-top: calc(100% - (11 * var(--rem)));
    --_border-height-bottom: calc(100% - (1 * var(--rem)));
  }
}

.hazimete-flow__career-large > span:nth-child(1) {
  clip-path: inset(0 0 0 0.5em);
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-large > span:nth-child(1) {
    margin-left: -0.5em;
    clip-path: inset(0 0 0 0.5em);
  }
}

.hazimete-flow__career-large > span:nth-child(2) {
  clip-path: inset(0 0.4em 0 0);
  padding-left: 0.1em;
  margin-left: -0.1em;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-large > span:nth-child(2) {
    clip-path: inset(0 0.4em 0 0);
  }
}

.hazimete-flow__career-roots {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.875rem;
  margin-top: 2.125rem;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-roots {
    grid-template-columns: minmax(0, 11.25rem) auto minmax(0, 11.25rem);
    gap: 1.7910447761vw;
    margin-top: 1.75rem;
  }
}

.hazimete-flow__career-root {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 5.9375rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  font-size: max(16px, 1.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-root {
    min-height: 7.3125rem;
    padding: 0.75rem;
    font-size: 1.125rem;
    text-align: center;
    word-break: keep-all;
  }
}

.hazimete-flow__career-root::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hazimete/bg_border-dotted.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-root::before {
    background-image: url("../images/hazimete/bg_border-dotted-sp.svg");
  }
}

.hazimete-flow__career-root span {
  position: relative;
}

.hazimete-flow__career-amp {
  font-size: 2.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__career-amp {
    font-size: 1.75rem;
  }
}

.hazimete-flow__extras {
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extras {
    margin-top: 2rem;
  }
}

.hazimete-flow__extras-title {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extras-title {
    gap: 0.375rem;
    font-size: 1.25rem;
  }
}

.hazimete-flow__extras-title::before,
.hazimete-flow__extras-title::after {
  content: "";
  width: 2.25rem;
  aspect-ratio: 36/46;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/accent_line.svg");
          mask-image: url("../images/common/accent_line.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extras-title::before,
  .hazimete-flow__extras-title::after {
    position: relative;
    bottom: 0.3125rem;
    width: 1.75rem;
    aspect-ratio: 28/37;
    -webkit-mask-image: url("../images/common/accent_line-sp.svg");
            mask-image: url("../images/common/accent_line-sp.svg");
  }
}

.hazimete-flow__extras-title::after {
  scale: -1 1;
}

.hazimete-flow__extras-list {
  display: grid;
  gap: 0.875rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extras-list {
    gap: 1.25rem;
    margin-top: 0.625rem;
    width: calc(100% - 3px);
  }
}

.hazimete-flow__extra {
  display: grid;
  grid-template-columns: 30.2702702703% 1fr;
  gap: 2.125rem;
  align-items: center;
  padding-block: 1.625rem;
  padding-inline: 1.875rem 2.375rem;
  background-color: var(--bg-base);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extra {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    padding: 1.375rem 1.3125rem 1.625rem;
  }
}

.hazimete-flow__extra-img {
  clip-path: inset(0 round 1.25rem);
}

.hazimete-flow__extra-img img {
  aspect-ratio: 224/148;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extra-img img {
    aspect-ratio: 256/170;
  }
}

.hazimete-flow__extra-body {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-template-areas: "num heading" "text text";
  align-items: center;
  gap: 0.875rem;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extra-body {
    grid-template-columns: 1fr;
    grid-template-areas: "num" "heading" "text";
    place-items: start;
    gap: initial;
    padding-bottom: initial;
  }
}

.hazimete-flow__extra-num {
  grid-area: num;
  display: flex;
  align-items: center;
  padding-inline: 0.3125rem;
  min-height: 2rem;
  border-radius: 0.3125rem;
  background-color: var(--accent);
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extra-num {
    padding-inline: 0.375rem;
    min-height: 1.6875rem;
  }
}

.hazimete-flow__extra-num-label {
  font-size: max(14px, 1rem);
  font-weight: var(--fw-bold);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extra-num-label {
    font-size: 0.875rem;
  }
}

.hazimete-flow__extra-num-value {
  align-self: end;
  font-family: var(--en-font);
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extra-num-value {
    font-size: 1.875rem;
  }
}

.hazimete-flow__extra:first-of-type .hazimete-flow__extra-num-value {
  align-self: baseline;
  font-family: var(--baskervville-font);
  text-box: trim-both cap alphabetic;
}

.hazimete-flow__extra-heading {
  grid-area: heading;
  font-size: max(16px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extra-heading {
    margin-top: 0.4375rem;
    font-size: 1.25rem;
  }
}

.hazimete-flow__extra-text {
  grid-area: text;
  font-size: max(13px, 1rem);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .hazimete-flow__extra-text {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767px) {
  .hazimete-flow__extra:nth-of-type(2) .hazimete-flow__extra-text {
    margin-right: -0.6em;
  }
}

.hazimete-fv {
  display: grid;
  grid-template: "fv";
  place-items: center;
}

.hazimete-fv__bg {
  grid-area: fv;
  width: 100%;
}

.hazimete-fv__bg img {
  aspect-ratio: 1440/638;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hazimete-fv__bg img {
    aspect-ratio: 375/424;
  }
}

.hazimete-fv__title {
  grid-area: fv;
  width: 50.5555555556%;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .hazimete-fv__title {
    width: min(324 / var(--cqi), 480px);
    padding-bottom: 4.125rem;
  }
}

.hazimete-fv__title img {
  aspect-ratio: 728/352;
  width: 100%;
  object-fit: contain;
}

.hazimete-message {
  position: relative;
  overflow-x: clip;
  padding-block: max(105px, 225 / var(--cqi)) 6.5625rem;
  background-image: -webkit-image-set(url("../images/hazimete/bg_message.avif") type("image/avif"), url("../images/hazimete/bg_message.png") type("image/png"));
  background-image: image-set(url("../images/hazimete/bg_message.avif") type("image/avif"), url("../images/hazimete/bg_message.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .hazimete-message {
    padding-block: 9.5625rem 3.5rem;
    background-image: -webkit-image-set(url("../images/hazimete/bg_message-sp.avif") type("image/avif"), url("../images/hazimete/bg_message-sp.png") type("image/png"));
    background-image: image-set(url("../images/hazimete/bg_message-sp.avif") type("image/avif"), url("../images/hazimete/bg_message-sp.png") type("image/png"));
    background-size: max(565px, 100%);
  }
}

.layout-hazimete-message {
  margin-top: calc(-140 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .layout-hazimete-message {
    margin-top: min(-92 / var(--cqi), 10px);
  }
}

.hazimete-message__title {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, max-content) minmax(0, 1fr);
  align-items: start;
  margin-inline: calc(50% - 50cqi);
}

.hazimete-message__title::before,
.hazimete-message__title::after {
  content: "";
  height: 10.125rem;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .hazimete-message__title::before,
  .hazimete-message__title::after {
    height: 5.25rem;
  }
}

.hazimete-message__title::before {
  grid-column: 1/2;
  margin-right: 3rem;
  background-image: url("../images/hazimete/accent_croissants_01.svg");
  background-position: right center;
  background-size: 34.125rem;
}
@media screen and (max-width: 767px) {
  .hazimete-message__title::before {
    position: relative;
    top: 0.75rem;
    margin-right: -1.125rem;
    background-image: url("../images/hazimete/accent_croissants_01-sp.svg");
    background-size: 6.5rem;
  }
}

.hazimete-message__title::after {
  grid-column: 3/4;
  margin-left: 2rem;
  background-image: url("../images/hazimete/accent_croissants_02.svg");
  background-position: left center;
  background-size: 35.1875rem;
}
@media screen and (max-width: 767px) {
  .hazimete-message__title::after {
    position: relative;
    top: 1.125rem;
    margin-left: -1.25rem;
    background-image: url("../images/hazimete/accent_croissants_02-sp.svg");
    background-size: 6.0625rem;
  }
}

.hazimete-message__texts {
  position: relative;
  display: grid;
  gap: 1.6875rem;
  margin-top: 1.875rem;
  font-size: max(14px, 16 / var(--cqi));
  line-height: 2.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hazimete-message__texts {
    gap: 1.125rem;
    margin-top: 1.5625rem;
    font-size: 1rem;
    line-height: 2;
    word-break: keep-all;
  }
}

.hazimete-nav {
  padding-block: 4.375rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .hazimete-nav {
    padding-block: 2.875rem 3.5625rem;
  }
}

.hazimete-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.625rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .hazimete-nav__list {
    gap: 1rem 0.6875rem;
  }
}

.hazimete-nav__item {
  flex: 0 0 auto;
}

.hazimete-nav__link {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 14.6875rem;
  padding: 1rem 2.25rem;
  border: 3px solid var(--accent);
  border-radius: calc(infinity * 1px);
  text-align: center;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .hazimete-nav__link {
    gap: 0.125rem;
    min-width: 10.125rem;
    padding: 0.625rem 1.25rem;
  }
}

.hazimete-nav__link-en {
  font-family: var(--en-font);
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .hazimete-nav__link-en {
    font-size: 1.6875rem;
  }
}

.hazimete-nav__link-ja {
  font-size: max(12px, 1rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .hazimete-nav__link-ja {
    font-size: 0.75rem;
  }
}

.hazimete-nav__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  translate: 0 -50%;
  width: 1.0625rem;
  aspect-ratio: 17/11;
  rotate: 90deg;
  background-color: var(--accent);
  -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
          mask-image: url("../images/common/icon_arrow-fit.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: background-color 0.3s ease-out, translate 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .hazimete-nav__link::after {
    right: 0.5rem;
  }
}

@media (any-hover: hover) {
  .hazimete-nav__link:hover {
    background-color: color-mix(in srgb, var(--accent) 80%, transparent);
    color: var(--white);
  }
  .hazimete-nav__link:hover .hazimete-nav__link-en {
    color: var(--white);
  }
  .hazimete-nav__link:hover::after {
    background-color: var(--white);
    translate: 0 calc(-50% + 0.3125rem);
  }
}
.hazimete-voice {
  overflow-x: clip;
  padding-block: 6.4375rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .hazimete-voice {
    padding-block: 4.375rem;
  }
}

main:not(:has(.hazimete-faq)) .hazimete-voice {
  padding-bottom: min(250 / var(--cqi), 400px);
}
@media screen and (max-width: 767px) {
  main:not(:has(.hazimete-faq)) .hazimete-voice {
    padding-bottom: min(120 / var(--cqi), 200px);
  }
}

.hazimete-voice__slider {
  --swiper-theme-color: var(--accent);
  position: relative;
  margin-top: 3.5625rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .hazimete-voice__slider {
    margin-top: 1.875rem;
  }
}

.hazimete-voice__card {
  display: grid;
  grid-template-columns: 23.1818181818% 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "avatar wrap" "text text";
  align-items: start;
  gap: 0.75rem 1rem;
  padding-block: 1.75rem 1.5625rem;
  padding-inline: 1.75rem 1.5625rem;
  width: min(100%, 31.25rem);
  height: auto;
  border-radius: 1.25rem;
  background-color: var(--bg-base);
}
@media screen and (max-width: 767px) {
  .hazimete-voice__card {
    grid-template-columns: 6.25rem 1fr;
    row-gap: 0.625rem;
    padding: 1.25rem;
    width: min(100%, 18.75rem);
  }
}

.hazimete-voice__card-avatar {
  grid-area: avatar;
}

.hazimete-voice__card-avatar img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hazimete-voice__card-wrap {
  grid-area: wrap;
  display: grid;
  gap: 0.5rem;
  place-items: start start;
  padding-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .hazimete-voice__card-wrap {
    gap: 0.3125rem;
    padding-top: initial;
  }
}

.hazimete-voice__card-title {
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-bold);
  line-height: 1.4444444444;
}
@media screen and (max-width: 767px) {
  .hazimete-voice__card-title {
    font-size: 1rem;
    line-height: 1.4375;
    word-break: keep-all;
  }
}

.hazimete-voice__card-name {
  font-size: max(12px, 1rem);
  font-weight: var(--fw-bold);
  line-height: 1.4375;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .hazimete-voice__card-name {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.hazimete-voice__card-text {
  grid-area: text;
  padding-left: 0.25rem;
  font-size: max(12px, 1rem);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .hazimete-voice__card-text {
    padding-left: initial;
    font-size: 0.875rem;
  }
}

.hazimete-voice__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .hazimete-voice__controls {
    gap: 1.5rem;
    margin-top: 4.25rem;
  }
}

.hazimete-voice__prev,
.hazimete-voice__next {
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 3.125rem;
  aspect-ratio: 1;
  border: 3px solid;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--accent);
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .hazimete-voice__prev,
  .hazimete-voice__next {
    width: 3rem;
  }
}

.hazimete-voice__prev::before,
.hazimete-voice__next::before {
  content: "";
  width: 1.25rem;
  aspect-ratio: 20/13;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
          mask-image: url("../images/common/icon_arrow-fit.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: background-color 0.3s ease-out;
}

.hazimete-voice__prev::before {
  scale: -1;
}

@media (any-hover: hover) {
  .hazimete-voice__prev:hover,
  .hazimete-voice__next:hover {
    background-color: color-mix(in srgb, var(--accent) 80%, var(--white));
  }
  .hazimete-voice__prev:hover::before,
  .hazimete-voice__next:hover::before {
    background-color: var(--white);
  }
}
.hazimete-voice__slider .hazimete-voice__pagination {
  position: relative;
  overflow: clip;
  width: min(100%, 27.875rem);
  border-radius: calc(infinity * 1px);
  background-color: color-mix(in srgb, var(--accent) 30%, transparent);
}
@media screen and (max-width: 767px) {
  .hazimete-voice__slider .hazimete-voice__pagination {
    width: min(100%, 7.8125rem);
  }
}

.hazimete-voice__slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  border-radius: 999em;
}

.header {
  position: fixed;
  z-index: var(--z-index-header);
  top: 0;
  inset-inline: 0;
  height: var(--header-height);
}

.header.is-opening {
  opacity: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-left: 32px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__inner {
    align-items: start;
    gap: initial;
    padding-left: 1.125rem;
  }
}

.header__logo-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.75rem;
  padding-top: 0.375rem;
}
@container (width <= 1120px) {
  .header__logo-area {
    align-self: end;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0 0.1875rem;
  }
}

.header__logo-area::after {
  content: "";
  position: relative;
  top: 2px;
  order: 2;
  width: 1px;
  height: 1.75rem;
  background-color: var(--black);
}
@container (width <= 1120px) {
  .header__logo-area::after {
    content: none;
  }
}

.header__logo-link {
  order: 1;
  flex-shrink: 0;
  display: grid;
  align-items: center;
  width: clamp(220px, 23.8194444444cqi, 343px);
  font-family: var(--en-font);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.3;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__logo-link {
    max-width: min(71.4666666667vw, 343px);
    width: 100%;
  }
}

.header__logo-link img {
  aspect-ratio: 268/31;
  width: 100%;
  object-fit: contain;
}

@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.8;
  }
}
.header__logo-sub {
  position: relative;
  top: 3px;
  left: 2px;
  order: 3;
  font-size: max(14px, 1rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .header__logo-sub {
    font-size: 0.875rem;
  }
}

.header__buttons {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1rem;
  margin-left: auto;
  padding-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .header__buttons {
    display: none;
  }
}

.header__buttons > a {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.header__hamburger {
  --_base-color: var(--white);
  --_line-width: calc(41 / 85 * 100cqi);
  --_line-gap: calc(14 * var(--rem));
  --_line-height: 3px;
  --_line-radius: calc(infinity * 1px);
  --_rotate: 30deg;
  --_transition: 0.3s;
  position: relative;
  z-index: var(--z-index-hamburger);
  display: grid;
  grid-template: "stack";
  place-items: center;
  flex-shrink: 0;
  padding-bottom: 0.375rem;
  padding-left: 0.625rem;
  height: 100%;
  aspect-ratio: 95/90;
  background-color: var(--accent);
  border-bottom-left-radius: 3.75rem;
  filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    --_line-width: calc(29 / 65 * 100cqi);
    --_line-gap: calc(11 * var(--rem));
    margin-left: auto;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    width: min(19.4666666667vw, 73px);
    height: auto;
    border-bottom-left-radius: 2.875rem;
  }
}

.header__hamburger-line {
  grid-area: stack;
  position: relative;
  display: block;
  width: var(--_line-width);
  height: var(--_line-height);
  border-radius: var(--_line-radius);
  background-color: var(--_base-color);
  transition: background-color var(--_transition) ease-out;
}

.header__hamburger-line::before,
.header__hamburger-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background-color: var(--_base-color);
  transform-origin: center;
  transition: top var(--_transition) ease-out, rotate var(--_transition) ease-out;
}

.header__hamburger-line::before {
  top: calc(var(--_line-gap) * -1);
}

.header__hamburger-line::after {
  top: var(--_line-gap);
}

.header__hamburger.is-open .header__hamburger-line {
  background-color: transparent;
}

.header__hamburger.is-open .header__hamburger-line::before {
  top: 0;
  rotate: var(--_rotate);
}

.header__hamburger.is-open .header__hamburger-line::after {
  top: 0;
  rotate: calc(var(--_rotate) * -1);
}

@media (any-hover: hover) {
  .header__hamburger:hover .header__hamburger-line::before,
  .header__hamburger:hover .header__hamburger-line::after {
    top: 0;
  }
}
.header__drawer {
  position: fixed;
  z-index: var(--z-index-drawer);
  inset: 0;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  background-color: color-mix(in srgb, var(--accent) 60%, transparent);
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.header__drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.large-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background-color: rgba(230, 125, 24, 0.85);
  border: 1px solid rgba(255, 250, 246, 0.5);
  border-radius: 9999px;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s, filter 0.2s;
}

.large-button:hover {
  opacity: 0.95;
}

.large-button__img-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
}

.large-button__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large-button__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.large-button__text {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

.large-button__arrow {
  flex-shrink: 0;
  width: 10px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.lesson {
  position: relative;
  padding-block: 8.125rem 6.75rem;
  background-image: -webkit-image-set(url("../images/common/bg_lesson.avif") type("image/avif"), url("../images/common/bg_lesson.png") type("image/png"));
  background-image: image-set(url("../images/common/bg_lesson.avif") type("image/avif"), url("../images/common/bg_lesson.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .lesson {
    padding-block: 5rem;
  }
}

.page-course:not(:has(.course-faq)) .lesson {
  padding-bottom: min(240 / var(--cqi), 320px);
}
@media screen and (max-width: 767px) {
  .page-course:not(:has(.course-faq)) .lesson {
    padding-bottom: min(140 / var(--cqi), 220px);
  }
}

.lesson[data-page=top] {
  padding-block: max(180px, 286 / var(--cqi)) calc(112 / var(--cqi));
  background-image: -webkit-image-set(url("../images/top/bg_lesson.avif") type("image/avif"), url("../images/top/bg_lesson.png") type("image/png"));
  background-image: image-set(url("../images/top/bg_lesson.avif") type("image/avif"), url("../images/top/bg_lesson.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .lesson[data-page=top] {
    padding-block: min(135 / var(--cqi), 200px) min(78 / var(--cqi), 90px);
    background-image: -webkit-image-set(url("../images/top/bg_lesson-sp.avif") type("image/avif"), url("../images/top/bg_lesson-sp.png") type("image/png"));
    background-image: image-set(url("../images/top/bg_lesson-sp.avif") type("image/avif"), url("../images/top/bg_lesson-sp.png") type("image/png"));
  }
}

.lesson__inner.inner {
  max-width: calc(1140px + var(--padding-pc) * 2);
}
@media screen and (max-width: 767px) {
  .lesson__inner.inner {
    max-width: 600px;
  }
}

.lesson__title {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lesson__title {
    flex-direction: column;
    gap: initial;
  }
}

.lesson__title::before {
  content: "";
  flex-shrink: 0;
  width: 4rem;
  aspect-ratio: 1;
  background-image: url("../images/common/icon_beginner_circle-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .lesson__title::before {
    width: 3.5rem;
  }
}

.lesson__title-main {
  font-size: max(36px, 3.125rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--white);
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .lesson__title-main {
    font-size: 2.25rem;
    line-height: 1.3;
  }
}

.lesson__title-thu {
  letter-spacing: -0.12em;
}

.lesson__container {
  display: grid;
  grid-template-columns: minmax(0, 525px) minmax(0, 534px);
  align-items: center;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .lesson__container {
    grid-template-columns: 1fr;
    margin-top: min(20 / var(--cqi), 30px);
  }
}

.lesson__img {
  --_border-width: calc(10 * var(--rem));
  --_border-radius: calc(20 * var(--rem));
  --_border-inner-radius: calc(17 * var(--rem));
  border-radius: var(--_border-radius);
  background-color: var(--white);
  padding: var(--_border-width);
}
@media screen and (max-width: 767px) {
  .lesson__img {
    --_border-width: 6px;
  }
}

.lesson__img img {
  border-radius: var(--_border-inner-radius);
  aspect-ratio: 505/319;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .lesson__img img {
    aspect-ratio: 323/196;
  }
}

.lesson__content {
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .lesson__content {
    margin-top: 1.25rem;
  }
}

.lesson__text {
  font-size: max(14px, 1rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .lesson__text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.lesson__text {
  color: var(--white);
}

.lesson__list {
  display: grid;
  grid-template-columns: minmax(0, 34.456928839%) minmax(0, 1fr);
  row-gap: 0.5625rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .lesson__list {
    grid-template-columns: min(36.4179104478%, 160px) minmax(0, 213fr);
    margin-top: 1.125rem;
  }
}

.lesson__list-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  clip-path: inset(0 round 0.625rem);
}

.lesson__list-item {
  color: var(--white);
}

.lesson__list-term {
  --_icon-size: calc(23 * 1em / 18);
  display: grid;
  grid-template-columns: var(--_icon-size) minmax(0, 1fr);
  place-items: center;
  gap: 0.1875rem;
  padding-block: 0.6875rem 0.875rem;
  padding-inline: 1rem 1.8888888889em;
  font-size: max(14px, 1.125rem);
}
@media screen and (max-width: 767px) {
  .lesson__list-term {
    --_icon-size: calc(23 * 1em / 16);
    gap: 0.625rem;
    padding-inline: 1rem 0.375rem;
    font-size: 1rem;
  }
}

.lesson__list-term {
  background-color: #48663b;
}

.lesson__list-term-icon img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: contain;
}

.lesson__list-term-text {
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.lesson__list-desc {
  display: grid;
  place-items: center;
  padding: 0.25rem 0.5rem;
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .lesson__list-desc {
    font-size: 1rem;
  }
}

.lesson__list-desc {
  background-color: #9bb688;
}

.lesson__button {
  margin-top: 3.125rem;
  text-align: center;
}

.lesson[data-page=top] .lesson__button {
  margin-top: 2.5rem;
}

.lesson__button .button__text {
  letter-spacing: 0.01em;
}

.loader {
  position: fixed;
  z-index: var(--z-index-loader);
  inset: 0;
  display: none;
  place-items: center;
  padding-top: 3.125rem;
  background-image: -webkit-image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-image: image-set(url(../images/common/bg_base.avif) type("image/avif"), url(../images/common/bg_base.png) type("image/png"));
  background-repeat: repeat;
  background-position: center;
}

.loader__wrap {
  display: grid;
  place-items: center;
  gap: 1.25rem;
}

.loader__icon {
  width: max(80px, 122 / var(--cqi));
  animation: pikokaku 0.8s steps(3) infinite alternate;
}
@media screen and (max-width: 767px) {
  .loader__icon {
    width: min(80 / var(--cqi), 112px);
  }
}

.loader__icon img {
  aspect-ratio: 122/70;
  width: 100%;
  object-fit: contain;
}

.loader__text {
  overflow: visible;
  font-size: max(24px, 28 / var(--cqi));
  font-family: var(--en-font);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .loader__text {
    font-size: min(24 / var(--cqi), 32px);
  }
}

.loader__char {
  display: inline-block;
  vertical-align: baseline;
}

.loop {
  display: grid;
  gap: 24px;
}

.loop__item {
  min-width: 0;
}

.members-button {
  --_text-color: var(--white);
  --_bg-color: var(--accent);
  --_border-color: var(--accent);
  --_icon-width: 24px;
  --_icon-height: var(--_icon-width);
  --_transition: 0.3s;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: calc(8 * var(--em));
  place-content: center;
  place-items: center;
  padding-block: calc(3 * var(--em)) calc(4 * var(--em));
  padding-inline: calc(17 * var(--em));
  background-color: var(--_bg-color);
  border: 3px solid var(--_border-color);
  border-radius: calc(infinity * 1px);
  font-size: max(14px, 1rem);
  color: var(--_text-color);
  transition: background-color var(--_transition) ease, color var(--_transition) ease;
}
@media screen and (max-width: 767px) {
  .members-button {
    padding-inline: calc(17 * var(--em)) calc(30 * var(--em));
  }
}

.members-button__icon {
  display: grid;
  place-items: center;
  width: calc(24 * var(--em));
}

.members-button__icon-face {
  width: calc(12 * var(--em));
}

.members-button__icon-face svg {
  aspect-ratio: 1;
  object-fit: contain;
}

.members-button__icon-body {
  width: calc(21 * var(--em));
}

.members-button__icon-body svg {
  aspect-ratio: 21/13;
  object-fit: contain;
}

.members-button__text {
  font-size: inherit;
  font-weight: var(--fw-bold);
  line-height: 1.4375;
  text-align: center;
}

.members-button__text-small {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

@media (any-hover: hover) {
  .members-button:hover {
    background-color: var(--_text-color);
    color: var(--_bg-color);
  }
}
.movie-card {
  display: grid;
}

.movie-card__content {
  --_radius: calc(20 * var(--rem));
  clip-path: inset(0 round var(--_radius));
}
@media screen and (max-width: 767px) {
  .movie-card__content {
    --_radius: calc(15 * var(--rem));
  }
}

.movie-card__content iframe {
  aspect-ratio: 335/186;
  width: 100%;
  object-fit: contain;
}

.movie-card__title {
  margin-top: 2rem;
  font-size: max(16px, 1.125rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .movie-card__title {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.mv {
  --_block-diff: 60px;
  --_outer: minmax(80px, 1fr);
  --_inner: minmax(0, calc(1280 / var(--cqi)));
  position: relative;
  display: grid;
  grid-template-columns: var(--_outer) var(--_inner) var(--_outer);
  grid-template-rows: var(--header-height) 1fr calc(var(--header-height) + var(--_block-diff));
  overflow: clip;
  height: 100svh;
}
@media screen and (max-width: 767px) {
  .mv {
    --_block-diff: 4px;
    --_outer: minmax(max(20px, 20 / var(--cqi)), 1fr);
    --_inner: minmax(0, calc(600 / var(--cqi)));
    max-height: 1000px;
  }
}

.mv__bg {
  position: relative;
  grid-column: 1/-1;
  grid-row: 1/-1;
  opacity: 0;
}

.mv__inner {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: center;
}

.mv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__heading {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .mv__heading {
    gap: 1.875rem;
    padding-left: 0.25rem;
  }
}

.mv__catch {
  width: max(460px, 610 / var(--cqi));
  filter: drop-shadow(0 0 9px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 767px) {
  .mv__catch {
    width: min(232 / var(--cqi), 340px);
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.25));
  }
}

.mv__catch svg {
  overflow: visible;
  aspect-ratio: 610/119;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .mv__catch svg {
    aspect-ratio: 232/140;
  }
}

.mv__catch .js-mv-catch > g {
  opacity: 0;
}

.mv__lead {
  --_shadow-blur: 20px;
  position: relative;
  padding-inline: 0.9375rem;
  font-size: max(18px, 24 / var(--cqi));
  font-weight: var(--fw-bold);
  line-height: 1.7;
  color: var(--white);
  letter-spacing: 0.08em;
  text-shadow: 0 0 var(--_shadow-blur) #513011;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    --_shadow-blur: 15px;
    padding-inline: initial;
    font-size: min(18 / var(--cqi), 20px);
  }
}

.news-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 3;
}
@media screen and (max-width: 767px) {
  .news-item {
    grid-template-columns: unset;
    grid-column: unset;
  }
}

.news-item__link {
  display: inherit;
  grid-template-columns: inherit;
  grid-column: inherit;
  grid-template-areas: "date title arrow";
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding-bottom: 0.9375rem;
  padding-inline: 2.6875rem 2.625rem;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .news-item__link {
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas: "date arrow" "title arrow";
    gap: 0.125rem 0.625rem;
    padding-bottom: 0.6875rem;
    padding-inline: initial;
  }
}

@media screen and (max-width: 767px) {
  .news-item__link:has(.news-item__tag) {
    row-gap: 0.4375rem;
  }
}

.news-item__link::after {
  content: "";
  grid-area: arrow;
  position: relative;
  top: 0.125rem;
  width: 1rem;
  aspect-ratio: 16/11;
  background-color: var(--accent);
  -webkit-mask-image: url("../images/common/icon_arrow-lg.svg");
          mask-image: url("../images/common/icon_arrow-lg.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: translate 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .news-item__link::after {
    width: 1rem;
    -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
            mask-image: url("../images/common/icon_arrow-fit.svg");
    aspect-ratio: 15/10;
  }
}

.news-item__date {
  grid-area: date;
  font-size: max(12px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .news-item__date {
    font-size: 12px;
  }
}

.news-item__body {
  grid-area: title;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}
.news-item__tag {
  flex-shrink: 0;
  display: inline-block;
  background-color: var(--text-color);
  padding-inline: 0.6875rem;
  font-size: 14px;
  font-family: var(--second-font);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news-item__tag {
    padding-inline: 0.6875rem;
  }
}

.news-item__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: max(14px, 1rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .news-item__title {
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .news-item__link:hover {
    color: var(--accent);
  }
  .news-item__link:hover::after {
    translate: 0.3125rem;
  }
}
.news-list {
  display: grid;
  grid-template-columns: minmax(max-content, 19.0476190476%) 1fr max-content;
  row-gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news-list {
    grid-template-columns: unset;
    row-gap: 0.5rem;
  }
}

.news-list__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 3;
  border-bottom: 2px solid color-mix(in srgb, var(--text-color) 7%, transparent);
}
@media screen and (max-width: 767px) {
  .news-list__item {
    grid-template-columns: unset;
    grid-column: unset;
  }
}

.page-404 {
  --_margin-default: calc(40*var(--rem));
}
@media screen and (max-width: 767px) {
  .page-404 {
    --_margin-default: calc(60*var(--rem));
  }
}

.page-404__inner.inner {
  display: grid;
  gap: var(--_margin-default);
}

.page-404__title {
  text-align: center;
}

.page-404__texts {
  display: grid;
  gap: 1lh;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.page-404__button {
  text-align: center;
}

.page-company__inner {
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .page-company__inner {
    gap: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .page-company__inner[data-size=sm] {
    max-width: calc(50rem + var(--padding-pc) * 2);
  }
}

.page-company__content {
  padding: 2rem 1.875rem;
  background-color: var(--surface-gray);
}
@media screen and (max-width: 767px) {
  .page-company__content {
    padding: 3.75rem 3.125rem;
  }
}

.page-company__info {
  --_term-size: minmax(calc(80*var(--rem)), max-content);
  display: grid;
  grid-template-columns: var(--_term-size) 1fr;
  gap: 2rem 10px;
  margin-inline: auto;
  width: min(100%, 510px);
}
@media screen and (max-width: 767px) {
  .page-company__info {
    --_term-size: minmax(calc(100*var(--rem)), max-content);
  }
}

.page-company__term {
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 767px) {
  .page-company__term {
    font-weight: var(--fw-regular);
  }
}

.page-company__button {
  margin-top: var(--_margin-default);
  text-align: center;
}

.page-privacy {
  --_margin-default: calc(32*var(--rem));
}
@media screen and (max-width: 767px) {
  .page-privacy {
    --_margin-default: calc(60*var(--rem));
  }
}

.page-privacy__content {
  margin-top: var(--_margin-default);
  font-feature-settings: "pwid";
}

.page-privacy__content :where(h2, h3, h4) {
  margin-top: var(--_margin-default);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .page-privacy__content :where(h2, h3, h4) {
    font-size: max(16px, 1.25rem);
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
}

.page-privacy__content :where(ol) {
  counter-reset: ol;
}

.page-privacy__content :where(ol li) {
  --_indent: calc(26 * var(--em));
  position: relative;
  counter-increment: ol;
  padding-left: var(--_indent);
}

.page-privacy__content :where(ol li)::before {
  content: counter(ol) ".";
  position: absolute;
  display: grid;
  left: 0.25rem;
  width: var(--_indent);
  height: 1lh;
}

.page-privacy__content :where(ul) {
  --_marker-size: calc(4*var(--rem));
  --_column-gap: 1em;
}

.page-privacy__content :where(ul li) {
  position: relative;
  padding-left: var(--_column-gap);
}

.page-privacy__content :where(ul li)::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  left: 0.5em;
  translate: -50% -50%;
  width: var(--_marker-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(currentColor 0 0), CanvasText;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.pagination .page-numbers {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  color: var(--text-color);
  line-height: 1;
  transition: color ease-out 0.3s;
}

.pagination .page-numbers.current {
  color: var(--accent);
}

@media (any-hover: hover) {
  .pagination a.page-numbers:not(.prev):not(.next):hover {
    color: var(--accent);
  }
}
.pagination .prev,
.pagination .next {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.3125rem;
  height: 2.3125rem;
  border: 0.125rem solid var(--accent);
  border-radius: 50%;
  background-color: var(--white);
  transition: opacity ease-out 0.3s;
}

.pagination .prev {
  left: -0.625rem;
}

.pagination .next {
  right: -0.5rem;
}

.pagination__arrow {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-mask-image: url("../images/common/icon_arrow.svg");
          mask-image: url("../images/common/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--accent);
}

.pagination__arrow--prev {
  rotate: 180deg;
}

.pagination .prev.is-disabled,
.pagination .next.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media (any-hover: hover) {
  .pagination .prev:hover,
  .pagination .next:hover {
    opacity: 0.4;
  }
}
.post-single__article {
  --_margin-default: calc(32*var(--rem));
  --_margin-content: var(--_margin-default);
  --_margin-content-sm: calc(16*var(--rem));
  --_margin-content-lg: calc(40*var(--rem));
  --_caption-color: var(--text-sub);
}
@media screen and (max-width: 767px) {
  .post-single__article {
    --_margin-default: calc(60*var(--rem));
    --_margin-content: calc(32*var(--rem));
  }
}

@media screen and (max-width: 767px) {
  .post-single__inner.inner {
    max-width: calc(800px + var(--padding-pc) * 2);
  }
}

.post-single__header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "date categories" "title title";
  align-items: center;
  gap: 1rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .post-single__header {
    gap: 1.25rem;
  }
}

.post-single__date {
  grid-area: date;
  font-weight: var(--fw-bold);
  color: var(--text-sub);
}

.post-single__categories {
  grid-area: categories;
}

.post-single__categories .filter-links {
  justify-content: start;
}

.post-single__categories .filter-links__link {
  --_category-color: var(--accent-blue);
  --_cat-opacity: 80%;
  background-color: color-mix(in srgb, var(--_category-color) var(--_cat-opacity), transparent);
}

.post-single__title {
  grid-area: title;
  font-size: 2.1875rem;
  font-weight: var(--fw-medium);
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .post-single__title {
    font-size: 2.25rem;
    font-weight: var(--fw-bold);
    line-height: 1.3333333333;
    letter-spacing: 0.03em;
  }
}

.post-single__content {
  margin-top: var(--_margin-default);
}

.post-single__content > * + * {
  margin-top: var(--_margin-content);
}

.post-single__content :where(h2, h3, figure) {
  margin-top: var(--_margin-content);
}
@media screen and (max-width: 767px) {
  .post-single__content :where(h2, h3, figure) {
    margin-top: var(--_margin-content-lg);
  }
}

.post-single__content :where(h4) + * {
  margin-top: var(--_margin-content-sm);
}
@media screen and (max-width: 767px) {
  .post-single__content :where(h4) + * {
    margin-top: var(--_margin-content);
  }
}

.post-single__content ul + h4 {
  margin-top: var(--_margin-content-sm);
}
@media screen and (max-width: 767px) {
  .post-single__content ul + h4 {
    margin-top: var(--_margin-content);
  }
}

.post-single__content h2 {
  font-size: max(18px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .post-single__content h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.post-single__content h3 {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 1.625;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .post-single__content h3 {
    font-size: 1.5rem;
    font-weight: var(--fw-semibold);
    line-height: 2;
    letter-spacing: 0.03em;
  }
}

.post-single__content h4 {
  font-size: 15px;
  font-weight: var(--fw-medium);
  line-height: 1.4666666667;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
@media screen and (max-width: 767px) {
  .post-single__content h4 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.post-single__content img {
  max-height: 600px;
  object-fit: contain;
}

.post-single__content figcaption {
  margin-top: 2px;
  font-size: max(10px, 0.75rem);
  line-height: 1.8333333333;
  color: var(--_caption-color);
}
@media screen and (max-width: 767px) {
  .post-single__content figcaption {
    margin-top: 5px;
    font-size: max(12px, 0.875rem);
    line-height: 1.7142857143;
    letter-spacing: 0.05em;
  }
}

.post-single__content ul {
  --_marker-size: calc(4*var(--rem));
  --_row-gap: calc(10*var(--rem));
  --_column-gap: 1em;
}
@media screen and (max-width: 767px) {
  .post-single__content ul {
    --_row-gap: calc(12*var(--rem));
  }
}

.post-single__content ul > * + * {
  margin-top: var(--_row-gap);
}

.post-single__content li {
  position: relative;
  text-indent: var(--_column-gap);
  font-size: max(12px, 0.9375rem);
  line-height: 1.7333333333;
  font-feature-settings: "pwid";
}
@media screen and (max-width: 767px) {
  .post-single__content li {
    font-size: max(14px, 1rem);
    line-height: 1.75;
  }
}

.post-single__content li::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  left: 0.5em;
  translate: -50% -50%;
  width: var(--_marker-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(currentColor 0 0), CanvasText;
}

.post-single__content blockquote {
  --_accent-color: var(--accent-blue);
  padding-inline: 1.5rem 0.875rem;
  border-left: 4px solid var(--_accent-color);
}
@media screen and (max-width: 767px) {
  .post-single__content blockquote {
    padding-inline: 2.25rem;
  }
}

.post-single__back {
  margin-top: var(--_margin-default);
  text-align: center;
}

.privacy-policy__lead-text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.privacy-policy__lead-text + .privacy-policy__lead-text {
  margin-top: 1.875rem;
}

.privacy-policy__list {
  margin-top: 3rem;
  counter-reset: policy;
}
@media screen and (max-width: 767px) {
  .privacy-policy__list {
    margin-top: 2rem;
  }
}

.privacy-policy__item + .privacy-policy__item {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__item + .privacy-policy__item {
    margin-top: 2rem;
  }
}

.privacy-policy__title {
  padding-bottom: 0.625rem;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--accent);
  border-bottom: 0.1875rem solid;
  border-image: linear-gradient(to right, var(--accent) 7.8125rem, rgba(74, 44, 15, 0.16) 7.8125rem) 1;
  counter-increment: policy;
}
@media screen and (max-width: 767px) {
  .privacy-policy__title {
    font-size: 1rem;
  }
}

.privacy-policy__title::before {
  content: counter(policy) "．";
}

.privacy-policy__text {
  margin-top: 1.0625rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .privacy-policy__text {
    margin-top: 0.875rem;
  }
}

.privacy-policy__note-list {
  margin-top: 1.0625rem;
}

.privacy-policy__note-item {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.privacy-policy__note-item::before {
  content: "・";
}

.privacy-policy__link {
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  transition: opacity 0.3s ease-out;
}

@media (any-hover: hover) {
  .privacy-policy__link:hover {
    opacity: 0.6;
  }
}
.section-title {
  --_color: var(--text-color);
  --_accent-color: var(--accent);
  --_stroke-color: var(--_accent-color);
  display: grid;
  place-items: center;
  color: var(--_color);
}

.section-title[data-color=white] {
  --_color: var(--white);
  --_accent-color: var(--white);
}

.section-title[data-accent=white] {
  --_stroke-color: var(--white);
}

.section-title__icon {
  width: 6.6875rem;
  color: var(--_stroke-color);
}
@media screen and (max-width: 767px) {
  .section-title__icon {
    width: 5.5rem;
  }
}

@media screen and (max-width: 767px) {
  .section-title:where([data-size=lg]) .section-title__icon {
    width: 4.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .section-title[data-page=hazimete] .section-title__icon {
    width: 5.5rem;
  }
}

.section-title__en {
  margin-top: 1.1875rem;
  font-size: 4.125rem;
  font-family: var(--en-font);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-box: trim-both cap alphabetic;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    margin-top: 1.375rem;
    font-size: 3.125rem;
  }
}

.section-title:where([data-size=lg], [data-color=white]) .section-title__en {
  margin-top: 1.375rem;
  font-size: 4.375rem;
}
@media screen and (max-width: 767px) {
  .section-title:where([data-size=lg], [data-color=white]) .section-title__en {
    margin-top: 0.875rem;
    font-size: 3rem;
  }
}

.section-title[data-page=hazimete] .section-title__en {
  margin-top: 1.375rem;
  font-size: 4.375rem;
}
@media screen and (max-width: 767px) {
  .section-title[data-page=hazimete] .section-title__en {
    font-size: 3.125rem;
  }
}

.section-title__ja {
  margin-top: 1rem;
  font-size: max(16px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .section-title__ja {
    margin-top: 0.6875rem;
    font-size: 1rem;
  }
}

.section-title:where([data-size=lg], [data-color=white]) .section-title__ja {
  margin-top: 0.6875rem;
  font-size: max(18px, 1.25rem);
}
@media screen and (max-width: 767px) {
  .section-title:where([data-size=lg], [data-color=white]) .section-title__ja {
    margin-top: 0.75rem;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .section-title[data-color=white][data-page=hazimete] .section-title__ja {
    font-size: 1rem;
  }
}

.js-section-title .section-title__icon svg {
  aspect-ratio: 88/36;
  width: 100%;
  object-fit: contain;
}

.js-section-title .section-title__icon path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}

.section-title__icon.is-animated path {
  animation: iconStroke 5s ease-out forwards;
}

.js-section-title .section-title__en span {
  opacity: 0;
  display: inline-block;
}

.js-section-title .section-title__ja {
  opacity: 0;
}

.seminar-card {
  --_container: 483;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  container-type: inline-size;
}

.seminar-card__link {
  position: relative;
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  padding: 0.875rem 1.875rem 1.875rem;
  background-color: var(--white);
  border-radius: 1.25rem;
  border: 2px solid var(--white);
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .seminar-card__link {
    padding: 0.875rem 0.875rem 2.625rem;
  }
}

.seminar-card__link::before {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 0.9375em;
  aspect-ratio: 15/10;
  background-color: var(--accent);
  -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
          mask-image: url("../images/common/icon_arrow-fit.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: translate 0.3s ease;
}

.seminar-card__year {
  padding-bottom: 0.4375rem;
  background-image: radial-gradient(circle, currentColor 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-family: var(--en-font);
  font-size: max(16px, 20 / var(--_container) * 100cqi);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .seminar-card__year {
    padding-bottom: 0.75rem;
  }
}

.seminar-card__content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .seminar-card__content {
    gap: 0.75rem;
  }
}

.seminar-card__thumb {
  flex-shrink: 0;
  width: max(6rem, 121 / var(--_container) * 100cqi);
  clip-path: inset(0 round 1.25rem);
  transition: filter 0.3s ease;
}

.seminar-card__thumb img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seminar-card__thumb:has(picture) img {
  object-fit: contain;
}

.seminar-card__lead {
  font-size: max(12px, 15 / var(--_container) * 100cqi);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.seminar-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .seminar-card__meta {
    gap: 4px;
    margin-top: 0.625rem;
  }
}

.seminar-card__flag {
  flex-shrink: 0;
  width: max(1.125rem, 22 / var(--_container) * 100cqi);
}

.seminar-card__flag img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.seminar-card__role {
  font-size: max(12px, 14 / var(--_container) * 100cqi);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}

.seminar-card__name {
  margin-top: 0.375rem;
  font-size: max(14px, 22 / var(--_container) * 100cqi);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .seminar-card__name {
    margin-top: initial;
    font-size: 1rem;
  }
}

.seminar-card__text {
  margin-top: 1rem;
  font-size: max(12px, 14 / var(--_container) * 100cqi);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .seminar-card__text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .seminar-card__link:hover {
    border-color: var(--accent);
  }
  .seminar-card__link:hover::before {
    translate: 0.3125rem;
  }
  .seminar-card__link:hover .seminar-card__thumb {
    filter: brightness(1.03);
  }
}
.service-button {
  --_text-color: var(--white);
  --_bg-color: var(--accent);
  --_duration: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  padding-block: 0.75rem;
  padding-inline: 0.8125rem 1.3125rem;
  border: 3px solid var(--_bg-color);
  border-radius: calc(infinity * 1px);
  background-color: var(--_bg-color);
  container-type: inline-size;
  font-size: max(16px, 1.5rem);
  color: var(--_text-color);
  transition: background-color var(--_duration) ease-out, color var(--_duration) ease-out;
}
@media screen and (max-width: 767px) {
  .service-button {
    padding-block: 0.625rem 0.5625rem;
    padding-inline: 0.625rem 1.0625rem;
    font-size: 1rem;
  }
}

.service-button::after {
  content: "";
  margin-left: 4.158004158cqi;
  width: 1.0416666667em;
  aspect-ratio: 25/22;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon_arrow-lg.svg");
          mask-image: url("../images/common/icon_arrow-lg.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: translate var(--_duration) ease-out;
}
@media screen and (max-width: 767px) {
  .service-button::after {
    margin-left: auto;
    width: 1em;
    -webkit-mask-image: url("../images/common/icon_arrow-fit.svg");
            mask-image: url("../images/common/icon_arrow-fit.svg");
    aspect-ratio: 15/10;
  }
}

.service-button__img {
  flex-shrink: 0;
  width: min(8.75vw, 126px);
}
@media screen and (max-width: 767px) {
  .service-button__img {
    width: 26.2987012987cqi;
  }
}

.service-button__img img {
  aspect-ratio: 126/128;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-button__wrap {
  display: flex;
  align-items: center;
  gap: 3.5343035343cqi;
  margin-left: 4.5738045738cqi;
}
@media screen and (max-width: 767px) {
  .service-button__wrap {
    gap: 0.5rem;
    margin-left: 0.4375rem;
  }
}

.service-button__icon {
  flex-shrink: 0;
  width: 1.5833333333em;
}
@media screen and (max-width: 767px) {
  .service-button__icon {
    width: calc(25 * var(--em));
  }
}

.service-button__icon svg {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  object-fit: contain;
}

.service-button__text {
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media (any-hover: hover) {
  .service-button:hover {
    background-color: var(--_text-color);
    color: var(--_bg-color);
  }
  .service-button:hover::after {
    translate: 0.3125rem;
  }
}
.single-news__title {
  font-size: 2.625rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .single-news__title {
    font-size: 1.75rem;
  }
}

.single-news__date {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.single-news__title-wrap::after {
  content: "";
  display: block;
  margin-top: 1.875rem;
  height: 0.3125rem;
  background-image: radial-gradient(circle closest-side, var(--accent) 100%, transparent 100%);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 1rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .single-news__title-wrap::after {
    margin-top: 1.25rem;
  }
}

.single-news__thumbnail {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background-color: var(--white);
}
@media screen and (max-width: 767px) {
  .single-news__thumbnail {
    margin-top: 1.5rem;
    border-radius: 0.5rem;
  }
}

.single-news__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.single-news__content {
  margin-top: 2.375rem;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.single-news__content > * + * {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-news__content > * + * {
    margin-top: 1.25rem;
  }
}

.single-news__content :where(h2, h3, h4) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .single-news__content :where(h2, h3, h4) {
    margin-top: 1.875rem;
  }
}

.single-news__content h2 {
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  border-bottom: 0.125rem solid var(--accent);
}

.single-news__content h3 {
  padding-left: 0.875rem;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  border-left: 0.25rem solid var(--accent);
}

.single-news__content h4 {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}

.single-news__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  text-decoration-thickness: 0.0625rem;
  transition: opacity ease-out 0.3s;
}

.single-news__content p {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media (any-hover: hover) {
  .single-news__content a:not(.wp-element-button):hover {
    opacity: 0.6;
  }
}
.single-news__content .wp-block-image img {
  border-radius: 1.5rem;
}

.single-news__content .is-layout-flex {
  justify-content: center;
}

.single-news__content > .wp-block-buttons:last-child {
  margin-bottom: -2.8125rem;
}
@media screen and (max-width: 767px) {
  .single-news__content > .wp-block-buttons:last-child {
    margin-block: 2.8125rem -2.1875rem;
  }
}

.single-news__content .wp-element-button {
  display: inline-block;
  position: relative;
  padding: 1.375rem 3.75rem;
  min-width: 22.5rem;
  border: 3px solid var(--accent);
  border-radius: calc(infinity * 1px);
  background-color: var(--white);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .single-news__content .wp-element-button {
    min-width: 16.25rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

.single-news__content .wp-element-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5625rem;
  translate: 0 -50%;
  width: 2.1875rem;
  height: 2.1875rem;
  background-image: url("../images/common/line.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .single-news__content .wp-element-button::before {
    left: 1.125rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}

.single-news__content .wp-element-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6875rem;
  translate: 0 -50%;
  width: 1.4375rem;
  height: 1.4375rem;
  background-color: var(--accent);
  -webkit-mask-image: url("../images/common/external-link.svg");
          mask-image: url("../images/common/external-link.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .single-news__content .wp-element-button::after {
    right: 1.125rem;
    width: 1.125rem;
    height: 1.125rem;
  }
}

@media (any-hover: hover) {
  .single-news__content .wp-element-button:hover {
    background-color: var(--accent);
    color: var(--white);
  }
  .single-news__content .wp-element-button:hover::after {
    background-color: var(--white);
  }
}
.single-news__button {
  margin-top: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single-news__button {
    margin-top: 3.4375rem;
  }
}

.single-seminar__header {
  display: grid;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__header {
    gap: 1rem;
  }
}

.single-seminar__year {
  font-size: max(24px, 2rem);
  font-family: var(--en-font);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .single-seminar__year {
    font-size: 1.5rem;
  }
}

.single-seminar__title {
  font-size: max(28px, 2.625rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .single-seminar__title {
    font-size: 1.75rem;
  }
}

.single-seminar__content {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__content {
    margin-top: 2.6875rem;
  }
}

.single-seminar__content > * + * {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__content > * + * {
    margin-top: 1.5rem;
  }
}

.single-seminar__content :where(h2, h3, h4) {
  margin-top: 4.375rem;
  color: var(--accent);
}
@media screen and (max-width: 767px) {
  .single-seminar__content :where(h2, h3, h4) {
    margin-top: 3.5rem;
  }
}

.single-seminar__content h2 {
  padding-bottom: 1.25rem;
  background-image: radial-gradient(circle, currentColor 2.5px, transparent 2.5px);
  background-size: 15px 15px;
  background-repeat: round no-repeat;
  background-position: left bottom;
  font-size: max(24px, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .single-seminar__content h2 {
    padding-bottom: 1rem;
    font-size: 1.5rem;
  }
}

.single-seminar__content h3 {
  padding-left: 1.0625rem;
  font-size: max(18px, 1.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  border-left: 0.375rem solid var(--accent);
}
@media screen and (max-width: 767px) {
  .single-seminar__content h3 {
    font-size: 1.25rem;
  }
}

.single-seminar__content h4 {
  font-size: max(16px, 1.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .single-seminar__content h4 {
    font-size: 1.125rem;
  }
}

.single-seminar__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  text-decoration-thickness: 0.0625rem;
  transition: opacity ease-out 0.3s;
}

.single-seminar__content p {
  font-size: max(16px, 1rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

@media (any-hover: hover) {
  .single-seminar__content a:hover {
    opacity: 0.6;
  }
}
.single-seminar__content .wp-block-gallery.wp-block-gallery-1 {
  gap: 1.625rem;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__content .wp-block-gallery.wp-block-gallery-1 {
    gap: 0.6875rem;
    margin-top: 2.5rem;
  }
}

.single-seminar__content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 19.75rem;
  clip-path: inset(0 round 1.25rem);
}
@media screen and (max-width: 767px) {
  .single-seminar__content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: 48.3582089552%;
    clip-path: inset(0 round 0.625rem);
  }
}

.single-seminar__content .wp-block-embed-youtube {
  margin-top: 2.875rem;
  margin-inline: auto;
  width: min(100%, 800px);
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .single-seminar__content .wp-block-embed-youtube {
    margin-top: 1.5rem;
    border-radius: 0.5rem;
  }
}

.single-seminar__content .wp-block-embed-youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-seminar__content .seminar-overview {
  display: grid;
  grid-template-columns: minmax(0, 317fr) minmax(0, 566fr);
  gap: 2.8125rem;
  align-items: center;
  padding: 2.125rem 2.25rem;
  background-color: var(--white);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__content .seminar-overview {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
}

.single-seminar__content .seminar-overview__thumb-wrap {
  clip-path: inset(0 round 1.25rem);
}
@media screen and (max-width: 767px) {
  .single-seminar__content .seminar-overview__thumb-wrap {
    margin-inline: auto;
    width: 92.4092409241%;
  }
}

.single-seminar__content .seminar-overview__thumb-wrap img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center top;
}

.single-seminar__content .seminar-overview__thumb-wrap:has(picture) img {
  object-fit: contain;
}

.single-seminar__content .seminar-overview__body {
  --_container: 566;
  container-type: inline-size;
}

.single-seminar__content .seminar-overview__meta {
  display: flex;
  align-items: center;
  gap: 4px;
}

.single-seminar__content .seminar-overview__country-wrap {
  flex-shrink: 0;
  width: max(24px, 1.5rem);
}

.single-seminar__content .seminar-overview__country {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-seminar__content .seminar-overview__role {
  font-size: max(16px, 16 / var(--_container) * 100cqi);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}

.single-seminar__content .seminar-overview__name {
  margin-top: 4px;
  font-size: 2.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .single-seminar__content .seminar-overview__name {
    font-size: 1.5rem;
  }
}

.single-seminar__content .seminar-overview__text {
  margin-top: 1rem;
  font-size: max(15px, 16 / var(--_container) * 100cqi);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.single-seminar__content .seminar-menu {
  display: grid;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__content .seminar-menu {
    gap: 1.5rem;
  }
}
.single-seminar__content .seminar-menu__item {
  --_container: 916;
  display: grid;
  grid-template-columns: minmax(0, 247fr) minmax(0, 629fr);
  align-items: center;
  gap: 0.75rem 2.5rem;
  padding: 2rem 2.625rem;
  background-color: var(--white);
  border-radius: 1.25rem;
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .single-seminar__content .seminar-menu__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
}
.single-seminar__content .seminar-menu__image-wrap {
  clip-path: inset(0 round 1.25rem);
}
@media screen and (max-width: 767px) {
  .single-seminar__content .seminar-menu__image-wrap {
    clip-path: inset(0 round 1.5625rem);
  }
}
.single-seminar__content .seminar-menu__image {
  aspect-ratio: 247/164;
  width: 100%;
  object-fit: cover;
}
.single-seminar__content .seminar-menu__body {
  display: grid;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__content .seminar-menu__body {
    gap: 0.625rem;
  }
}
.single-seminar__content .seminar-menu__name {
  font-size: max(20px, 24 / var(--_container) * 100cqi);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--accent);
}
.single-seminar__content .seminar-menu__text {
  font-size: max(14px, 14 / var(--_container) * 100cqi);
  font-weight: var(--fw-medium);
  line-height: 1.8;
}

.single-seminar__bottom {
  margin-top: 10.9375rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__bottom {
    margin-top: 5.625rem;
  }
}

.single-seminar__bottom-title {
  font-size: max(24px, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single-seminar__bottom-title {
    font-size: 1.5rem;
  }
}

.single-seminar__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.25rem 2.0625rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-seminar__list {
    margin-top: 1.5rem;
    gap: 1.25rem;
  }
}

.single-seminar__card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.single-seminar__button {
  margin-top: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single-seminar__button {
    margin-top: 3rem;
  }
}

.sub-fv {
  padding-block: calc(116 / var(--cqi));
  background-image: -webkit-image-set(url(../images/common/bg_sub-fv.avif) type("image/avif"), url(../images/common/bg_sub-fv.png) type("image/png"));
  background-image: image-set(url(../images/common/bg_sub-fv.avif) type("image/avif"), url(../images/common/bg_sub-fv.png) type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sub-fv {
    padding-block: 5.125rem 7rem;
    background-image: -webkit-image-set(url(../images/common/bg_sub-fv-sp.avif) type("image/avif"), url(../images/common/bg_sub-fv-sp.png) type("image/png"));
    background-image: image-set(url(../images/common/bg_sub-fv-sp.avif) type("image/avif"), url(../images/common/bg_sub-fv-sp.png) type("image/png"));
  }
}

.sub-fv__inner--sm {
  padding-inline: 0.75rem;
}

.sub-fv__title {
  position: relative;
  z-index: 1;
}

.title-group {
  --_color: var(--text-color);
  --_sub-color: var(--text-color);
  display: grid;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .title-group {
    gap: 0.375rem;
  }
}

.title-group__en {
  font-size: max(46px, 3.5rem);
  font-family: var(--en-font);
  font-weight: var(--fw-regular);
  color: var(--_color);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-box: trim-both cap alphabetic;
}
@media screen and (max-width: 767px) {
  .title-group__en {
    font-size: 2.875rem;
  }
}

.title-group__ja {
  padding-left: 4px;
  font-size: max(16px, 1.1875rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .title-group__ja {
    font-size: 1rem;
  }
}

.js-title-group .title-group__en .title-group__char {
  opacity: 0;
  display: inline-block;
}

.js-title-group .title-group__ja {
  opacity: 0;
}

.top-blog__list {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .top-blog__list {
    margin-top: 35px;
  }
}

.top-blog__button {
  margin-top: 46px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-blog__button {
    margin-top: 35px;
  }
}

.top-course {
  position: relative;
  overflow-x: clip;
  padding-block: max(160px, 200 / var(--cqi)) max(220px, 330 / var(--cqi));
  background-image: -webkit-image-set(url("../images/top/bg_course.avif") type("image/avif"), url("../images/top/bg_course.png") type("image/png"));
  background-image: image-set(url("../images/top/bg_course.avif") type("image/avif"), url("../images/top/bg_course.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-course {
    padding-block: min(124 / var(--cqi), 180px) min(194 / var(--cqi), 320px);
    background-image: -webkit-image-set(url("../images/top/bg_course-sp.avif") type("image/avif"), url("../images/top/bg_course-sp.png") type("image/png"));
    background-image: image-set(url("../images/top/bg_course-sp.avif") type("image/avif"), url("../images/top/bg_course-sp.png") type("image/png"));
  }
}

.top-course__inner.inner {
  --padding-pc: 40px;
}

.top-course__container {
  display: grid;
  place-items: center;
  gap: 4.5rem;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .top-course__container {
    margin-top: 3.375rem;
    gap: 5rem;
  }
}

.top-course__content {
  width: 100%;
}

.top-course__heading {
  text-align: center;
}

.top-course__lead {
  margin-top: 0.8125rem;
  color: var(--white);
  font-size: max(16px, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-course__lead {
    font-size: 1rem;
  }
}

.top-course__lead-price {
  font-size: 2.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-course__lead-price {
    font-size: 1.875rem;
  }
}

.top-course__lead-unit {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-course__lead-unit {
    font-size: 1.25rem;
  }
}

.top-course__lead-tax {
  font-size: max(12px, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.top-course__breads-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .top-course__breads-list {
    flex-direction: column;
    margin-top: 4rem;
  }
}

.top-course__breads-list::before {
  content: "";
  position: absolute;
  top: calc(50% - 19.0972222222vw);
  left: 50%;
  translate: -50%;
  width: 107.0833333333vw;
  aspect-ratio: 1542/286;
  background-image: url("../images/top/line_top.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-course__breads-list::before {
    top: 7%;
    left: 53%;
    width: 121.0666666667vw;
    height: min(289.6vw, 1500px);
    background-image: url("../images/top/line_top-sp.svg");
    background-size: 100% 100%;
  }
}

.top-course__card {
  position: relative;
}

.top-course__card[data-type=bread]:nth-child(2) {
  margin-top: min(9.6296296296cqi, 140px);
  gap: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=bread]:nth-child(2) {
    margin-top: 4.625rem;
  }
}

.top-course__card[data-type=bread]:nth-child(3) {
  margin-top: 3.5rem;
  margin-left: 0.375rem;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=bread]:nth-child(3) {
    margin-top: 4.25rem;
    margin-left: initial;
    left: 0.3125rem;
  }
}

.top-course__card[data-type=sweets] {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 360fr) minmax(300px, 400fr);
  place-items: center;
  gap: 1.8125rem;
  margin-top: 2.25rem;
  margin-inline: auto;
  padding-left: 0.5rem;
  width: min(100%, 49.75rem);
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=sweets] {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-left: initial;
  }
}

.top-course__card[data-type=sweets]::before {
  content: "";
  position: absolute;
  top: calc(50% - min(172 / var(--cqi), 200px));
  left: 55%;
  translate: -50%;
  width: calc(1574 / var(--cqi));
  aspect-ratio: 1574/277;
  background-image: url("../images/top/line_bottom.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=sweets]::before {
    top: 14%;
    left: 50%;
    translate: -50%;
    width: calc(422 / var(--cqi));
    aspect-ratio: 422/273;
    background-image: url("../images/top/line_bottom-sp.svg");
  }
}

.top-course__card-img {
  position: relative;
  width: clamp(210px, 29.6296296296cqi, 320px);
}
@media screen and (max-width: 767px) {
  .top-course__card-img {
    width: min(95.5223880597%, 480px);
    margin-inline: auto;
  }
}

.top-course__card-img img {
  position: relative;
  aspect-ratio: 320/274;
  width: 100%;
  object-fit: contain;
}

.top-course__card-bubble {
  position: absolute;
  z-index: 1;
  top: -2.625rem;
  left: calc(50% - min(20.5555555556cqi, 222px));
  padding: 2.125em 1.5625rem 2.625em;
  background-image: url("../images/top/img_bubble.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-size: clamp(12px, 1.1111111111vw, 16px);
  font-weight: var(--fw-bold);
  color: var(--accent);
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 1280px) {
  .top-course__card-bubble {
    left: -10%;
  }
}
@media screen and (max-width: 767px) {
  .top-course__card-bubble {
    top: -2.8125rem;
    left: -0.4375rem;
    padding: 2.125rem min(25 / var(--cqi), 36px) 2.625rem;
    font-size: 1rem;
  }
}

.top-course__level {
  position: absolute;
  top: -2.25rem;
  right: -2.25rem;
  width: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .top-course__level {
    top: -3rem;
    right: -1.25rem;
    width: min(30.7462686567cqi, 136px);
  }
}

.top-course__level img {
  aspect-ratio: 103/108;
  width: 100%;
  object-fit: contain;
}

.top-course__card[data-type=bread]:nth-child(2) .top-course__level {
  top: -2.5rem;
  right: -1.625rem;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=bread]:nth-child(2) .top-course__level {
    top: -3.25rem;
    right: -0.5rem;
  }
}

.top-course__card[data-type=bread]:nth-child(3) .top-course__level {
  top: -2.625rem;
  right: -2.625rem;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=bread]:nth-child(3) .top-course__level {
    right: -1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .top-course__card[data-type=bread]:nth-child(2) .top-course__card-img {
    left: 0.625rem;
  }
}

.top-course__card[data-type=sweets] .top-course__card-img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=sweets] .top-course__card-img {
    width: min(100%, 480px);
  }
}

.top-course__card[data-type=sweets] .top-course__card-img img {
  aspect-ratio: 360/304;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=sweets] .top-course__card-img img {
    aspect-ratio: 335/316;
  }
}

.top-course__card-body {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 0.375rem;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-course__card-body {
    margin-top: initial;
  }
}

.top-course__card[data-type=bread]:nth-child(2) .top-course__card-body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=bread]:nth-child(2) .top-course__card-body {
    margin-top: 1rem;
  }
}

.top-course__card[data-type=bread]:nth-child(3) .top-course__card-body {
  margin-top: 0.25rem;
  justify-self: end;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=bread]:nth-child(3) .top-course__card-body {
    justify-self: initial;
  }
}

.top-course__card[data-type=sweets] .top-course__card-body {
  place-items: start;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=sweets] .top-course__card-body {
    place-items: center;
    margin-top: initial;
  }
}

.top-course__card-title {
  font-size: min(2.2222222222cqi, 24px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top-course__card-title {
    font-size: 1.5rem;
  }
}

.top-course__card-meta {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.top-course__card[data-type=sweets] .top-course__card-meta {
  margin-top: initial;
}
.top-course__card-sessions {
  display: inline-block;
  padding: 0.1875rem 0.3125rem;
  border-radius: 3px;
  background-color: var(--white);
  font-size: max(13px, 1rem);
  font-weight: var(--fw-bold);
  color: var(--accent);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.top-course__card[data-type=sweets] .top-course__card-sessions {
  padding: 0.25rem 0.4375rem;
}

.top-course__card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: max(13px, 1.1875rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-course__card-price {
    font-size: 1.1875rem;
  }
}

.top-course__card-price-large {
  position: relative;
  top: 2px;
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  text-box: trim-both cap alphabetic;
}

.top-course__card-text {
  margin-top: 0.75rem;
  font-size: max(12px, 1rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .top-course__card-text {
    word-break: unset;
  }
}

@media screen and (max-width: 767px) {
  .top-course__card[data-type=bread]:nth-child(1) .top-course__card-text {
    font-size: 0.8125rem;
  }
}

.top-course__card[data-type=sweets] .top-course__card-text {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top-course__card[data-type=sweets] .top-course__card-text {
    margin-top: 1.25rem;
    width: min(100%, 440px);
  }
}

.top-course__button {
  margin-top: 4.6875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-course__button {
    margin-top: 2.875rem;
  }
}

.top-course__breads-list.js-bread-course .top-course__card,
.top-course__card.js-sweets-course,
.js-course-card {
  opacity: 0;
}

.top-course__breads-list.js-bread-course .top-course__card-body,
.top-course__card.js-sweets-course .top-course__card-body,
.js-course-card .top-course__card-body {
  opacity: 0;
}

.js-course-card .top-course__card-body {
  translate: 0 1.875rem;
}

.top-course__breads-list.js-bread-course {
  --_mask-reveal: 0%;
}

.top-course__breads-list.js-bread-course.mask-horizontal::before {
  -webkit-mask-image: linear-gradient(to right, white 0%, white var(--_mask-reveal), transparent var(--_mask-reveal));
          mask-image: linear-gradient(to right, white 0%, white var(--_mask-reveal), transparent var(--_mask-reveal));
}

.top-course__breads-list.js-bread-course.mask-vertical::before {
  -webkit-mask-image: linear-gradient(to bottom, white 0%, white var(--_mask-reveal), transparent var(--_mask-reveal));
          mask-image: linear-gradient(to bottom, white 0%, white var(--_mask-reveal), transparent var(--_mask-reveal));
}

.top-course__breads-list.js-bread-course .top-course__card-img {
  scale: 0.4;
}

.top-course__card.js-sweets-course {
  --_mask-reveal: 0%;
}

.top-course__card.js-sweets-course.mask-horizontal::before {
  -webkit-mask-image: linear-gradient(to right, white 0%, white var(--_mask-reveal), transparent var(--_mask-reveal));
          mask-image: linear-gradient(to right, white 0%, white var(--_mask-reveal), transparent var(--_mask-reveal));
}

.top-course__card.js-sweets-course.mask-vertical::before {
  -webkit-mask-image: linear-gradient(to bottom, white 0%, white var(--_mask-reveal), transparent var(--_mask-reveal));
          mask-image: linear-gradient(to bottom, white 0%, white var(--_mask-reveal), transparent var(--_mask-reveal));
}

.top-course__card.js-sweets-course .top-course__card-img {
  scale: 0.4;
}

.top-intro {
  position: relative;
  overflow-x: clip;
  padding-block: max(220px, 300 / var(--cqi)) max(300px, 405 / var(--cqi));
  background-image: -webkit-image-set(url("../images/top/bg_intro.avif") type("image/avif"), url("../images/top/bg_intro.png") type("image/png"));
  background-image: image-set(url("../images/top/bg_intro.avif") type("image/avif"), url("../images/top/bg_intro.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-intro {
    padding-block: min(136 / var(--cqi), 240px) min(164 / var(--cqi), 280px);
    background-image: -webkit-image-set(url("../images/top/bg_intro-sp.avif") type("image/avif"), url("../images/top/bg_intro-sp.png") type("image/png"));
    background-image: image-set(url("../images/top/bg_intro-sp.avif") type("image/avif"), url("../images/top/bg_intro-sp.png") type("image/png"));
  }
}

.top-intro__inner {
  --_padding-inline: minmax(0, 1fr);
  --_inner: minmax(0, 480px);
  --_img: minmax(0, 550px);
  display: grid;
  grid-template-columns: var(--_padding-inline) var(--_inner) var(--_img) var(--_padding-inline);
  grid-template-areas: ". content img img";
  align-items: center;
  -moz-column-gap: min(50 / var(--cqi), 50px);
       column-gap: min(50 / var(--cqi), 50px);
}
@media screen and (max-width: 767px) {
  .top-intro__inner {
    --_padding-inline: minmax(var(--padding-sp), 1fr);
    --_inner: minmax(0, 560px);
    grid-template-columns: var(--_padding-inline) var(--_inner) var(--_padding-inline);
    grid-template-areas: ". img img" ". content .";
    justify-content: center;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.top-intro__img {
  grid-area: img;
  width: calc(847 / var(--cqi));
  border-radius: 3.125rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .top-intro__img {
    width: min(415 / var(--cqi), 700px);
  }
}

.top-intro__img img {
  aspect-ratio: 415/262;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-intro__content {
  grid-area: content;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-intro__content {
    margin-top: 1.5625rem;
  }
}

.top-intro__title {
  font-size: max(28px, 2.625rem);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top-intro__title {
    font-size: 1.75rem;
  }
}

.top-intro__text {
  margin-top: 2rem;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top-intro__text {
    margin-top: 1.25rem;
    line-height: 1.6;
  }
}

.top-intro__button {
  margin-top: 5.4375rem;
}
@media screen and (max-width: 767px) {
  .top-intro__button {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.top-members {
  padding-block: 4.5625rem max(160px, 255 / var(--cqi));
}
@media screen and (max-width: 767px) {
  .top-members {
    padding-block: 4.0625rem min(150 / var(--cqi), 240px);
  }
}

.top-members__container {
  display: grid;
  grid-template-columns: minmax(0, 381fr) minmax(0, 546fr);
  grid-template-areas: "img heading" "img text" "img button";
  align-items: start;
  margin-top: 43px;
  padding-block: 3rem 2.875rem;
  padding-inline: 3.125rem 3.5rem;
  border-radius: 1.25rem;
  background-color: #fdefe0;
  -moz-column-gap: 2.875rem;
       column-gap: 2.875rem;
}
@media screen and (max-width: 767px) {
  .top-members__container {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "heading" "text" "button";
    padding-block: 1.0625rem 2.3125rem;
    padding-inline: 1.25rem;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-top: min(24 / var(--cqi), 30px);
  }
}

.top-members__img {
  position: relative;
  grid-area: img;
  background-color: var(--white);
  clip-path: inset(0 round 1.25rem);
}

.top-members__img img {
  aspect-ratio: 381/330;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}
@media screen and (max-width: 767px) {
  .top-members__img img {
    aspect-ratio: 296/220;
  }
}

.top-members__img img[data-fit=cover] {
  object-fit: cover;
}

.top-members__heading {
  grid-area: heading;
}
@media screen and (max-width: 767px) {
  .top-members__heading {
    margin-top: 1.5rem;
  }
}

.top-members__text {
  grid-area: text;
  margin-top: 1.3125rem;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top-members__text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.top-members__button {
  grid-area: button;
  margin-top: 1.3125rem;
  margin-left: 5rem;
  min-width: min(100%, 16.25rem);
}
@media screen and (max-width: 767px) {
  .top-members__button {
    margin-top: 2.25rem;
    margin-inline: auto;
    min-width: min(100%, 16.25rem);
  }
}

.top-members__actions {
  margin-top: 6.6875rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  justify-content: center;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .top-members__actions {
    grid-template-columns: minmax(0, 360px);
    gap: 1.375rem;
    margin-top: 2.3125rem;
  }
}

.top-movie__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 27.5rem));
  gap: 40px 4.375rem;
  justify-content: center;
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .top-movie__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    margin-top: min(24 / var(--cqi), 30px);
  }
}

.top-news {
  position: relative;
  padding-block: max(190px, 190 / var(--cqi)) calc(345 / var(--cqi));
  background-image: -webkit-image-set(url("../images/top/bg_news.avif") type("image/avif"), url("../images/top/bg_news.png") type("image/png"));
  background-image: image-set(url("../images/top/bg_news.avif") type("image/avif"), url("../images/top/bg_news.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-block: calc(160 / var(--cqi)) calc(170 / var(--cqi));
    background-image: -webkit-image-set(url("../images/top/bg_news-sp.avif") type("image/avif"), url("../images/top/bg_news-sp.png") type("image/png"));
    background-image: image-set(url("../images/top/bg_news-sp.avif") type("image/avif"), url("../images/top/bg_news-sp.png") type("image/png"));
  }
}

.top-news__inner.inner {
  display: grid;
  grid-template-columns: minmax(max-content, 15rem) minmax(0, 777px);
  grid-template-areas: "title list" "button list";
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-news__inner.inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "title" "list" "button";
  }
}

.top-news__title {
  grid-area: title;
}

.top-news__list {
  grid-area: list;
  align-self: end;
  display: grid;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .top-news__list {
    margin-top: 2.1875rem;
  }
}

.top-news__list:has(.top-news__empty) {
  align-self: start;
}

.top-news__button {
  grid-area: button;
  margin-top: 5.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-news__button {
    margin-top: 2.5rem;
  }
}

.totop {
  --_base-color: var(--text-color);
  display: grid;
  place-items: center;
}

.totop::before {
  content: "";
  display: block;
  rotate: -90deg;
  width: 25px;
  aspect-ratio: 25/22;
  background-color: var(--_base-color);
  -webkit-mask-image: url("../images/common/icon_arrow-lg.svg");
          mask-image: url("../images/common/icon_arrow-lg.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 767px) {
  .totop::before {
    width: 18px;
  }
}

.totop__icon {
  margin-top: 6px;
  width: 51px;
}
@media screen and (max-width: 767px) {
  .totop__icon {
    margin-top: 4px;
    width: 37px;
  }
}

.totop__icon img {
  aspect-ratio: 37/21;
  width: 100%;
  object-fit: contain;
}

.totop__label {
  margin-top: 4px;
  font-size: 26px;
  font-family: var(--en-font);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .totop__label {
    margin-top: 3px;
    font-size: 19px;
  }
}

@media (any-hover: hover) {
  .totop:hover .totop__icon {
    animation: pikopiko 0.7s ease-out forwards;
  }
}
.js-fade-in {
  opacity: 0;
  translate: 0 1.25rem;
}

.js-fade-ins > * {
  opacity: 0;
  translate: 0 1.875rem;
}

.js-appear-title-sub {
  --_before-opacity: 0;
  --_after-opacity: 0;
}

.js-appear-title-sub::before {
  opacity: var(--_before-opacity);
}

.js-appear-title-sub::after {
  opacity: var(--_after-opacity);
}

.js-appear-title-sub-text {
  opacity: 0;
  translate: 0 0.625rem;
}

.js-appear-title-main {
  opacity: 0;
  translate: 0 0.625rem;
}

.js-scale-in {
  opacity: 0;
  scale: 0.75;
}

@keyframes pikopiko {
  0% {
    rotate: -6deg;
  }
  25% {
    rotate: 6deg;
  }
  50% {
    rotate: -6deg;
  }
  75% {
    rotate: 6deg;
  }
  100% {
    rotate: -6deg;
  }
}
@keyframes pikokaku {
  0% {
    rotate: -30deg;
  }
  100% {
    rotate: 4deg;
  }
}
@keyframes iconStroke {
  to {
    stroke-dashoffset: 0;
  }
}
.color-accent {
  color: var(--accent);
}

.container {
  container-type: inline-size;
}

.inline-block {
  display: inline-block;
}

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

.safari {
  --size: 400px;
}

.safari__dummy {
  position: fixed;
  z-index: -1;
  transform: translate3d(0, 0, -1px);
}

.safari::before,
.safari::after {
  content: "";
  position: fixed;
  left: 0;
  z-index: 9999;
  transform: translate3d(0, 0, 9999px);
  width: 100%;
  height: var(--size);
  background-color: var(--gray5);
}

.safari::before {
  top: calc(var(--size) * -1);
}

.safari::after {
  bottom: calc(var(--size) * -1);
}

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

.text {
  font-size: max(16px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  inset: 0;
  white-space: nowrap;
}