@charset "UTF-8";
/**
* 参考：https://www.tak-dcxi.com/article/introduce-kiso-css/
*/
/*! kiso.css v1.2.2 | 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(h1, h2, h3, h4, h5, h6) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}
:where(h1) {
  /*
  * Adjusts user agent (UA) styles for `h1` elements within sectioning content.
  * This addresses DevTools warnings that appear when `h1` elements nested within sectioning content lack `font-size` and `margin` properties.
  * @see https://html.spec.whatwg.org/#sections-and-headings
  */
  margin-block: 0.67em;
  font-size: 2em;
}
:where(h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}
/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}
:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}
:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}
:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}
:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  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(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;
  cursor: help;
}
:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}
/* ======================================================
//  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;
}
: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;
}
/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;

  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;

  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}
:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}
/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}
:where(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-width: 1px;
  border-style: solid;

  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}
:where(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 / 30%);
}
:where([popover]) {
  /*
  * While the UA stylesheet's `margin` for `<dialog>` elements is useful for centering with `inset: 0`,
  * but `margin` for `popover` elements is often obstructive as they frequently use Anchor Positioning.
  */
  margin: unset;
}
/* ======================================================
//  MARK: Focus Styles
// ====================================================== */
:where(:focus-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;
}
/* mailformpro.cssの打ち消し */
form#mailformpro label.mfp_not_checked {
  border: none;
}
.mfp_element_submit, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
  background: unset;
  font-size: unset;
  text-shadow: unset;
  border-radius: unset;
  border: unset;
  padding: unset;
}
.mfp_element_text, .mfp_element_number, .mfp_element_select-one, .mfp_element_email, .mfp_element_tel, .mfp_element_textarea, .mfp_element_date, .mfp_element_password {
  margin: unset;
  box-shadow: unset;
}
.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
  background: unset;
  box-shadow: unset;
}
form#mailformpro label.mfp_checked {
  padding: unset;
  border: unset;
  background-color: unset;
  box-shadow: unset;
}
form#mailformpro label.mfp_not_checked {
  padding: unset;
  border: unset;
}
:root {
  --desigh-width: 375;
  --base-font-family: "Arial", "Hiragino Kaku Gothic Pro", "Hiragino Sans", sans-serif;
  --font-en: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  --color-black: #403e3d;
  --color-white: #fff;
  --box-shadow: 0 0 0.875rem rgba(0, 0, 0, 0.1);
}
/* リキッドレイアウト */
html {
  font-size: 16px;
}
/* スムーススクロール */
html {
  scroll-behavior: smooth;
}
/* pcの電話番号発信対応 */
:is(a, button) {
  transition: opacity 0.3s ease-in-out;
}
:is(a, button):focus-visible {
  opacity: 0.7;
}
body {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--color-black);
  font-family: var(--base-font-family);
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  text-autospace: no-autospace;
}
main {
  flex: 1;
}
img {
  /* 低解像度ディスプレイでのジャギー防止 */
  overflow-clip-margin: unset;
  display: block;
  width: 100%;
}
button {
  border-width: 0;
  padding: 0;
}
h1 {
  margin-block: unset;
}
picture {
  block-size: unset;
  max-inline-size: unset;
  vertical-align: unset;
}
.l-access {
  margin-top: 3.125rem;
}
.l-apply {
  margin-top: 3.125rem;
}
.l-voice + .l-cta {
  margin-top: 3.125rem;
}
.l-class + .l-cta {
  margin-top: 3.125rem;
}
.l-footer {
  margin-top: 1.875rem;
}
.l-inner {
  margin-inline: auto;
  max-width: 35.625rem;
  width: 100%;
  padding-inline: 0.9375rem;
}
.l-point {
  margin-top: 1.625rem;
}
.l-voice {
  margin-top: 2.875rem;
}
.c-button {
  --button-color: rgb(239 130 3);
  --icon-width: 1.8125rem;
  --icon-color: var(--color-white);
  --triangle-width: 0.4375rem;
  display: inline-flex;
  align-items: center;
  gap: var(--gap, 0.9375rem);
  padding-block: 0.6875rem;
  padding-inline: var(--button-padding-inline, 3.375rem 0.6875rem);
  background-color: var(--button-color);
  border-radius: 100vh;
  color: var(--color-white);
  font-size: var(--button-font-size, min(4.8vw, 18px * 1.44));
  font-size: var(--button-font-size, min(4.8cqi, 18px * 1.44));
  font-weight: 700;
  white-space: nowrap;
}
.c-button--flow {
  --button-padding-inline: 1.25rem 0.6875rem;
}
.c-button--submit {
  --button-padding-inline: 1rem 0.5rem;
}
.c-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-width);
  aspect-ratio: 1;
  background-color: var(--icon-color);
  border-radius: 50%;
}
.c-button__icon::after {
  width: var(--triangle-width);
  aspect-ratio: 8/16;
  background-color: var(--button-color);
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.c-button:hover {
  background-color: var(--button-color);
}
.p-access__hgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.p-access__heading-ja {
  font-size: min(5.3333333333vw, 20px * 1.44);
  font-size: min(5.3333333333cqi, 20px * 1.44);
  font-weight: 700;
  line-height: 1;
}
.p-access__heading-en {
  color: rgb(61, 163, 179);
  font-size: min(3.2vw, 12px * 1.44);
  font-size: min(3.2cqi, 12px * 1.44);
  font-weight: 400;
  line-height: 1;
}
.p-access__list {
  margin-top: 1.75rem;
  border-top: 1px solid rgb(220, 220, 220);
}
.p-access__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.875rem;
  padding-block: 1.625rem;
  padding-inline: 0.5rem 0.125rem;
  border-bottom: 1px solid rgb(220, 220, 220);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.75;
}
.p-access__item::before {
  width: 1.625rem;
  aspect-ratio: 52/58;
  background: no-repeat center;
  content: "";
}
.p-access__item:nth-child(1)::before {
  background-image: url(../images/icon_map-DCLdggTW.png);
  background-size: 1.25rem;
}
.p-access__item:nth-child(2)::before {
  background-image: url(../images/icon_car-I2BLkI1a.png);
  background-size: 1.625rem;
}
.p-access__map {
  margin-top: 1.875rem;
}
.p-access__map iframe {
  aspect-ratio: 690/600;
}
.p-apply {
  overflow-x: clip;
}
.p-apply__heading {
  padding-block: 2.125rem;
  background-color: rgb(34, 185, 201);
  color: var(--color-white);
  font-size: min(5.8666666667vw, 22px * 1.44);
  font-size: min(5.8666666667cqi, 22px * 1.44);
  font-weight: 700;
  text-align: center;
}
.p-apply__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-apply__tel {
  margin-top: 1.375rem;
}
.p-apply__tel-copy1 {
  margin-inline: auto;
  width: 20.0625rem;
}
.p-apply__tel-copy2 {
  margin-top: 1.375rem;
  margin-inline: -0.375rem -0.1875rem;
  max-width: 22.125rem;
  width: calc(100% + 0.5625rem);
}
.p-apply__tel-copy3 {
  margin-top: 0.8125rem;
  width: min(223.4666666667vw, 838px * 1.44);
  width: min(223.4666666667cqi, 838px * 1.44);
  transform: translateX(max(-4vw, -15px * 1.44));
}
.p-apply__tel-link {
  margin-top: 1.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: rgb(230, 137, 61);
  font-family: var(--font-en);
  font-size: max(2.625rem, 10px);
  font-weight: 700;
}
.p-apply__tel-link::before {
  width: 1.6875rem;
  aspect-ratio: 1;
  background: url(../images/icon_tel-Ch8zt-gH.png) no-repeat center/contain;
  content: "";
}
.p-apply__tel-desc {
  font-size: max(0.6875rem, 10px);
  font-weight: 400;
  line-height: 1.75;
}
.p-apply__web {
  margin-top: 2.9375rem;
  background: url(../images/apply_web_bg_sp-CesvEDxs.png) no-repeat top/cover;
  padding-block: 3.125rem 3.75rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}
.p-apply__form-container {
  padding-block: 2.875rem;
  padding-inline: 1.375rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}
.p-class {
  padding-block-start: 2.25rem;
  background: url(../images/class_bg_sp-i-75EWA6.jpg) no-repeat top/100%;
}
.p-class__heading {
  margin-inline: auto;
  width: 16.6875rem;
}
.p-class__content {
  margin-top: 0.875rem;
}
.p-class__summaries {
  display: grid;
  gap: 1.875rem;
}
.p-class__summary {
  background-color: rgb(220, 238, 242);
}
.p-class__summary-head {
  background-color: rgb(34, 185, 201);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 0.8125rem;
  padding-inline: 0.5rem;
}
.p-class__summary-heading {
  font-size: max(1.25rem, 10px);
  font-weight: 700;
}
.p-class__summary-desc {
  font-size: max(1.25rem, 10px);
  font-weight: 700;
}
.p-class__summary-content {
  padding: 1.875rem 0.75rem 2.8125rem;
}
.p-class__list-container .p-class__summary-list {
  gap: 1.25rem;
}
.p-class__summary-list {
  display: grid;
}
.p-class__summary-list-item + .p-class__summary-list-item--1::before {
  margin-inline: auto;
  margin-block: 0.6875rem;
  display: block;
  width: 1.875rem;
  aspect-ratio: 60/31;
  background-color: rgb(248, 199, 124);
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.p-class__container {
  padding: 1.25rem 1.875rem;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 0.625rem;
}
.p-class__list-container {
  padding: 1.25rem 1.875rem 2rem;
  background-color: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 0.625rem;
}
.p-class__summary-list-item-heading {
  color: rgb(61, 163, 179);
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  text-align: center;
}
.p-class__summary-list-item-heading small {
  font-size: max(1rem, 10px);
}
.p-class__summary-list-item-image {
  margin-top: 0.875rem;
}
.p-class__summary-list-item-image:has(img[src*=class_summary_list1-02]) {
  display: none;
}
.p-class__summary-list-item-desc {
  margin-top: 1rem;
  font-size: max(1rem, 10px);
  line-height: 1.75;
  font-weight: 400;
}
.p-class__summary-copy {
  margin-top: 1.25rem;
  text-align: center;
  color: rgb(239, 130, 3);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
}
.p-class__summary-note {
  margin-top: 1rem;
  font-size: max(1rem, 10px);
  line-height: 2;
  font-weight: 400;
}
.p-class__summary-column {
  margin-top: 2rem;
  display: grid;
  grid-template-areas: "heading" "image" "desc";
  padding-block-end: 2rem;
  border-bottom: 0.1875rem solid rgb(111, 192, 211);
}
.p-class__summary-column-heading {
  grid-area: heading;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  align-items: center;
  white-space: nowrap;
  gap: 1.0625rem;
}
.p-class__summary-column-heading::before,
.p-class__summary-column-heading::after {
  background-color: rgb(111, 192, 211);
  content: "";
  height: 0.1875rem;
}
.p-class__summary-column-heading::after {
  margin-left: -0.25rem;
}
.p-class__summary-column-desc {
  margin-top: 1.375rem;
  grid-area: desc;
  font-size: max(0.875rem, 10px);
  line-height: 2;
  font-weight: 400;
}
.p-class__summary-column-image {
  margin-top: 1.5625rem;
  grid-area: image;
  margin-inline: auto;
  width: 13.4375rem;
}
.p-class__prices {
  margin-top: 2.25rem;
  display: grid;
  gap: 2.875rem;
}
.p-class__price {
  border: 2px solid rgb(34, 185, 201);
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-class__price-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "image heading" "image desc";
  gap: 0.5rem 1.125rem;
  background-color: rgb(34, 185, 201);
  color: var(--color-white);
}
.p-class__price-image {
  grid-area: image;
  width: 8.4375rem;
}
.p-class__price-heading {
  grid-area: heading;
  align-self: flex-end;
  font-size: max(1.125rem, 10px);
}
.p-class__price-desc {
  grid-area: desc;
  align-self: flex-start;
  font-size: max(0.875rem, 10px);
}
.p-class__price-content {
  padding: 1.5rem 0.8125rem 2.5rem;
}
.p-class__price-sub-heading {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
}
.p-class__price-sub-list {
  margin-top: 0.9375rem;
  font-size: max(0.9375rem, 10px);
  font-weight: 400;
}
.p-class__price-item-content {
  padding-inline: 0.75rem;
}
.p-class__price-table-wrap {
  margin-top: 1.375rem;
}
.p-class__price-items {
  display: grid;
  gap: 1.8125rem;
}
.p-class__price-item {
  border-bottom: 1px solid rgb(220, 220, 220);
  padding-bottom: 1.8125rem;
}
.p-class__price-time {
  color: rgb(222, 99, 0);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
}
.p-class__price-note {
  margin-top: 0.9375rem;
  font-size: max(0.9375rem, 10px);
  font-weight: 400;
}
.p-class__price-note2 {
  margin-top: 0.9375rem;
  font-size: max(0.9375rem, 10px);
  font-weight: 400;
}
.p-cta {
  position: relative;
  padding-block: 1.4375rem 2.1875rem;
  background-color: #88d1dd;
}
.p-cta__copy {
  margin-inline: auto;
  width: 17.5625rem;
  width: 81.4492753623%;
}
.p-cta__banner {
  margin-top: 0.875rem;
  margin-inline: auto;
  padding-bottom: 1.875rem;
  background-color: var(--color-white);
  grid-template-areas: "heading" "tel" "web";
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}
.p-cta__heading {
  --base-height: 1.5rem;
  grid-area: heading;
  padding-block: 1.25rem 1.625rem;
  background-color: #f2b05a;
  color: var(--color-white);
  text-align: center;
  clip-path: polygon(100% 0, 100% calc(100% - var(--base-height)), 51% 100%, 0 calc(100% - var(--base-height)), 0 0);
}
.p-cta__heading img {
  margin-inline: auto;
  width: 10.875rem;
  width: 50.4347826087%;
}
.p-cta__tel {
  grid-area: tel;
}
.p-cta__tel-copy {
  margin-top: 0.75rem;
  margin-inline: auto;
  width: 9.625rem;
  width: 44.6376811594%;
}
.p-cta__tel-link {
  margin-top: 0.25rem;
  margin-inline: auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(222, 99, 0);
  font-family: var(--font-en);
  font-size: max(3rem, 10px);
  font-weight: 300;
  line-height: 1;
}
.p-cta__tel-desc {
  margin-top: 0.375rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(2.9333333333vw, 11px * 1.44);
  font-size: min(2.9333333333cqi, 11px * 1.44);
}
.p-cta__web {
  grid-area: web;
  margin-top: 0.9375rem;
  text-align: center;
}
.p-flow {
  padding-block: 3.125rem;
  background: url(../images/flow_bg_sp-BzBf3JxE.png) repeat-y top/100% rgb(220, 238, 242);
}
.p-flow__heading {
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  text-align: center;
}
.p-flow__content {
  margin-top: 2.75rem;
}
.p-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-flow__item:nth-child(2) {
  --image-object-position: 50% 37%;
}
.p-flow__item:nth-child(4) {
  --image-object-position: 50% 9%;
}
.p-flow__item:nth-child(5) {
  --image-object-position: 50% 84%;
}
.p-flow__item:nth-child(6) {
  --image-object-position: 50% 8%;
}
.p-flow__item + .p-flow__item::before {
  margin-block: 1.25rem;
  width: 2.25rem;
  aspect-ratio: 72/40;
  background-color: rgb(61, 163, 179);
  content: "";
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.p-flow__item-container {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 0.625rem;
}
.p-flow__item-container--1 {
  padding-block: 3.125rem 2.5rem;
  padding-inline: 1.4375rem;
}
.p-flow__item-number {
  position: absolute;
  top: -1.4375rem;
  left: -0.25rem;
  display: grid;
  place-content: center;
  background-color: rgb(61, 163, 179);
  color: var(--color-white);
  width: 4.0625rem;
  aspect-ratio: 1;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: max(1.5rem, 10px);
}
.p-flow__item-image img {
  border-radius: 0.625rem 0.625rem 0 0;
  aspect-ratio: 690/360;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--image-object-position);
     object-position: var(--image-object-position);
}
.p-flow__item-content {
  padding-block: 1.5625rem 2.625rem;
  padding-inline: 1.4375rem;
}
.p-flow__item-heading {
  margin-inline: -0.5rem;
  color: rgb(61, 163, 179);
  font-size: min(4.8vw, 18px * 1.44);
  font-size: min(4.8cqi, 18px * 1.44);
  font-weight: 700;
  text-align: center;
}
.p-flow__item-image + .p-flow__item-heading {
  margin-top: 1.5rem;
}
.p-flow__item-desc {
  margin-top: 1rem;
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.75;
}
.p-flow__item-contact {
  margin-top: 1.25rem;
  padding-block: 0.625rem 0.9375rem;
  padding-inline: 0.625rem;
  border: 1px solid rgb(220, 220, 220);
}
.p-flow__item-contact-tel {
  margin-inline: auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(222, 99, 0);
  font-family: var(--font-en);
  font-size: max(2.5625rem, 10px);
  font-weight: 300;
  line-height: 1;
}
.p-flow__item-contact-web {
  margin-top: 0.25rem;
  text-align: center;
}
.p-flow__item-contact-desc {
  margin-top: 0.5625rem;
  grid-area: desc;
  padding-inline: 0.5rem;
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}
.p-flow__note {
  margin-top: 1rem;
  font-size: max(0.875rem, 10px);
  font-weight: 400;
}
.p-footer {
  padding-block-end: 1.25rem;
}
.p-footer__logo {
  margin-inline: auto;
  display: block;
  width: 6.5625rem;
}
.p-footer__copyright {
  margin-top: 0.5rem;
  text-align: center;
}
.p-footer__copyright small {
  font-size: max(0.75rem, 10px);
}
.p-form#mailformpro {
  --dt-width: 17.75rem;
  --border-color: rgb(176 176 176);
  --border-width: 2px;
  --border-rdius: 0.1875rem;
  --text-padding-block: 0.5625rem;
  --text-padding-inline: 0.25rem;
  --input-bg: var(--color-white);
  --select-icon-right: 0.5rem;
  --select-icon-width: 1rem;
  --select-icon-color: rgb(176 176 176);
  --select-padding-inline: 0.25rem calc(0.25rem + var(--select-icon-right) + var(--select-icon-width));
  --radio-size: 1.0625rem;
  --radio-bg: var(--color-whitewhite);
  --radio-check-color: currentColor;
  --checkbox-size: 1.0625rem;
  --checkbox-bg: transparent;
  --checkbox-check-color: currentColor;
  --placeholder-color: rgb(181 181 181);
  /* mailformpro.cssの打ち消し */
  padding: 0;
}
.p-form#mailformpro .p-form__dl {
  display: grid;
  font-size: max(1rem, 10px);
}
.p-form#mailformpro .p-form__dt {
  /* mailformpro.cssの打ち消し */
  padding: unset;
  border-top: unset;
  font-size: unset;
  background-color: var(--color-white);
}
.p-form#mailformpro .p-form__dd {
  /* mailformpro.cssの打ち消し */
  padding: unset;
  border-top: unset;
  font-size: unset;
  background-color: var(--color-white);
  padding-block: var(--dd-padding-block);
}
.p-form#mailformpro .p-form__dt + .p-form__dd {
  margin-top: 0.4375rem;
}
.p-form#mailformpro .p-form__dt + .p-form__dd:has([type=radio i]) {
  margin-top: 0.9375rem;
}
.p-form#mailformpro .p-form__dd:has([type=radio i]) + .p-form__dt {
  margin-top: 2rem;
}
.p-form#mailformpro .p-form__dd + .p-form__dt {
  margin-top: 1.375rem;
}
.p-form#mailformpro .p-form__label {
  /* mailformpro.cssの打ち消し */
  margin: unset;
  display: grid;
  grid-template-columns: auto auto;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
}
.p-form__required,
.p-form__optional {
  padding-inline: 0.5rem;
  font-size: max(0.625rem, 10px);
}
.p-form__required {
  background-color: rgb(204, 75, 45);
  color: var(--color-white);
}
.p-form__optional {
  background-color: rgb(220, 220, 220);
  color: rgb(64, 62, 61);
}
.p-form__dd-inner {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  gap: 0.5rem 0.75rem;
}
.p-form__inner-label {
  padding-block: var(--text-padding-block);
}
.p-form ::-moz-placeholder {
  color: var(--placeholder-color);
}
.p-form ::placeholder {
  color: var(--placeholder-color);
}
/* セレクトボックス・flatpickrのスタイル */
.p-form__select-wrap {
  position: relative;
}
.p-form__select-wrap::after {
  position: absolute;
  top: 50%;
  right: var(--select-icon-right);
  transform: translateY(-50%);
  width: var(--select-icon-width);
  aspect-ratio: 16/9;
  -webkit-mask: url(../images/arrow_down-D6hbyPdT.png) no-repeat center/contain;
          mask: url(../images/arrow_down-D6hbyPdT.png) no-repeat center/contain;
  content: "";
  background-color: var(--select-icon-color);
  pointer-events: none;
}
.p-form#mailformpro select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-block: var(--text-padding-block);
  padding-inline: var(--select-padding-inline);
  background-color: var(--input-bg);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-rdius);
  width: 100%;
}
/* input(radio, checkbox以外のスタイル */
.p-form#mailformpro input:not([type=radio i]):not([type=checkbox i]),
.p-form#mailformpro textarea {
  width: 100% !important;
  padding-block: var(--text-padding-block);
  padding-inline: var(--text-padding-inline);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-rdius);
}
/* ラジオボタンのスタイル */
.p-form__dd:has(input[type=radio i]) {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.p-form#mailformpro label:has(input[type=radio i]) {
  /* mailformpro.cssの打ち消し */
  margin: unset;
  display: inline grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  align-items: flex-start;
  cursor: pointer;
}
.p-form#mailformpro input[type=radio i] {
  margin-block: calc((1lh - var(--radio-size)) / 2);
  position: relative;
  inline-size: var(--radio-size);
  block-size: var(--radio-size); /* aspect-rationだとSafariでつぶれる */
  background-color: var(--radio-size);
  border: var(--border-width) solid var(--border-color);
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 標準の見た目とCSSの制限を除去 */
  box-shadow: 0 0 0 0 transparent;
}
.p-form#mailformpro input[type=radio i]::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  border-radius: 50%;
  background-color: var(--radio-check-color);
  transform: scale(0.5);
}
.p-form#mailformpro input[type=radio i]:checked:before {
  opacity: 1;
}
/* チェックボックスのスタイル */
.p-form#mailformpro label:has(input[type=checkbox i]) {
  /* mailformpro.cssの打ち消し */
  margin: unset;
}
.p-form#mailformpro input[type=checkbox i] {
  margin: 0 0.625rem 0 0;
  position: relative;
  inline-size: var(--checkbox-size);
  block-size: var(--checkbox-size); /* aspect-rationだとSafariでつぶれる */
  background-color: var(--checkbox-bg);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-rdius);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 標準の見た目とCSSの制限を除去 */
  box-shadow: 0 0 0 0 transparent;
  transform: translateY(-0.125rem);
}
.p-form#mailformpro input[type=checkbox i]::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  -webkit-mask-image: url(../images/icon_check-B8_mLcLm.svg);
          mask-image: url(../images/icon_check-B8_mLcLm.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--checkbox-check-color);
}
.p-form#mailformpro input[type=checkbox i]:checked:before {
  opacity: 1;
}
/* type="date" */
.p-form#mailformpro input[type=date i]:not([type=radio i]):not([type=checkbox i]) {
  position: relative;
  padding-block: calc(var(--text-padding-block) - 0.0625rem);
  background-color: var(--input-bg);
  min-height: 2.875rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: left !important;
}
.p-form#mailformpro input[type=date i]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  right: 0;
  block-size: 100%;
  inline-size: var(--select-icon-width);
  opacity: 0;
}
@-moz-document url-prefix() {
  .p-form__select-wrap:has(input[type=date i])::after {
    content: none;
  }
}
.p-form#mailformpro input::-webkit-date-and-time-value {
  text-align: left;
}
.p-form#mailformpro textarea {
  field-sizing: content;
  width: 100%;
  min-height: 5lh;
  resize: none;
}
.p-form__note {
  margin-top: 0.25rem;
  color: rgb(64, 62, 61);
  font-size: max(0.6875rem, 10px);
}
.p-form__privacy-policy {
  margin-top: 2rem;
}
.p-form__agree {
  margin-top: 1rem;
  text-align: center;
}
.p-form__privacy-policy-read {
  margin-top: 0.9375rem;
  font-size: max(0.875rem, 10px);
  text-align: center;
}
.p-form__privacy-policy-read-button {
  padding-inline: 0.375rem;
  border-bottom: 1px solid;
}
.p-form__privacy-policy-content {
  margin-top: 0rem;
  margin-top: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.p-form__privacy-policy-content.is-open {
  max-height: 100vh;
}
.p-form__buttons {
  margin-top: 1.3125rem;
  text-align: center;
}
.p-form__submit:disabled {
  background-color: #e5e7eb;
  cursor: not-allowed;
}
/* エラー */
[aria-invalid=true]:is(.p-form__input, .p-form__textarea) {
  background-color: #fee2e2;
}
.p-loop-slider__slider-item {
  width: 11.875rem;
}
.p-loop-slider__slider-item img {
  aspect-ratio: 966/1140;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-main {
  padding-top: var(--header-height);
}
.p-mv {
  position: relative;
  z-index: 0;
  padding-block: 0.5rem 2.125rem;
}
.p-mv__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.p-mv__title {
  padding-inline-start: 0.625rem;
  width: 100%;
}
.p-mv__title img {
  width: min(29.8666666667vw, 112px * 1.44);
}
.p-mv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-mv__copy {
  margin-top: 66.1333333333vw;
  width: 95.652173913%;
}
.p-mv__desc {
  margin-top: 0.5rem;
  width: 96.231884058%;
}
.p-mv__list {
  margin-top: 0.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}
.p-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1875rem;
  --inner-padding: 1.3125rem;
}
.p-point::before {
  width: 1.75rem;
  aspect-ratio: 94/190;
  background: url(../images/point_deco-Ci464t30.png) no-repeat center/cover;
  content: "";
}
.p-point__inner {
  padding-inline: 1.3125rem;
}
.p-point__hgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.p-point__copy {
  width: 99.4202898551%;
}
.p-point__heading {
  width: 80.5797101449%;
}
.p-point__content {
  margin-top: 1.0625rem;
}
.p-point__list {
  position: relative;
  z-index: 0;
  display: grid;
}
/* 背景色 */
.p-point__list::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(var(--inner-padding) * -1);
  background-color: rgb(248, 246, 235);
  content: "";
}
.p-point__list-item {
  --heading-1lh: 1.125rem;
  --heading-2lh: 2.75rem;
  position: relative;
  display: grid;
  padding-block-end: 3.1875rem;
}
.p-point__list-item:nth-child(1) {
  --heading-height: var(--heading-2lh);
}
.p-point__list-item:nth-child(2) {
  --heading-height: var(--heading-1lh);
}
.p-point__list-item:nth-child(3) {
  --heading-height: var(--heading-1lh);
}
.p-point__list-item:nth-child(4) {
  --heading-height: var(--heading-2lh);
}
.p-point__list-item::before {
  position: absolute;
  inset-block-start: 8.9375rem;
  inset-inline-start: calc(var(--inner-padding) * -1);
  display: block;
  width: 13.1875rem;
  aspect-ratio: 422/215;
  background: url(../images/point_item_deco_sp-i7E-GZXn.png) no-repeat center/cover;
  content: "";
}
/* 背景色 */
.p-point__image {
  margin-inline: calc(var(--inner-padding) * -1);
}
.p-point__list-heading {
  position: relative;
  margin-top: -1.0625rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.p-point__list-heading img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.p-point__list-heading img[src*=no] {
  height: 2.3125rem;
}
.p-point__list-heading img[src*=heading] {
  height: var(--heading-height);
}
.p-point__list-desc {
  margin-top: 1.375rem;
  line-height: 1.9166666667;
}
.p-price-table {
  --th-padding-inline: 0.5rem;
  --td-padding-inline: 1rem;
  width: 100%;
  border-collapse: separate;
}
.p-price-table__thead-th:not(:empty) {
  height: 1.75rem;
  padding-inline: var(--th-padding-inline);
  background-color: rgb(242, 176, 90);
  border-radius: 0.3125rem 0.3125rem 0 0;
  color: var(--color-white);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  text-align: center;
}
.p-price-table__tbody-th {
  height: 2.9375rem;
  background-color: rgb(230, 137, 61);
  border-radius: 0.3125rem 0 0 0.3125rem;
  color: var(--color-white);
  padding-inline: var(--th-padding-inline);
  font-size: max(0.8125rem, 10px);
  font-weight: 700;
  text-align: left;
}
.p-price-table__tbody-td {
  height: 2.3125rem;
  padding-inline: var(--td-padding-inline);
  background-color: rgba(248, 199, 124, 0.35);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  text-align: center;
}
.p-privacy-policy {
  display: grid;
  gap: 1lh;
  padding: 1.375rem 1.125rem;
  background-color: rgb(243, 243, 243);
  font-size: max(0.8125rem, 10px);
  line-height: 1.5384615385;
}
.p-problem {
  position: relative;
  padding-block: 3.125rem 85.3333333333vw;
  background: url(../images/problem_bg_sp-DA38B7KB.png) no-repeat bottom/cover;
}
.p-problem::before {
  position: absolute;
  inset: 0 0 auto;
  height: min(24vw, 90px * 1.44);
  height: min(24cqi, 90px * 1.44);
  background-color: rgb(220, 238, 242);
  content: "";
}
.p-problem__inner {
  position: relative;
}
.p-problem__heading img {
  margin-inline: auto;
  width: 82.6086956522%;
}
.p-problem__list {
  margin-top: 3.4375rem;
  margin-top: min(14.6666666667vw, 55px * 1.44);
  display: grid;
  row-gap: 1.5rem;
  padding-left: 0.4375rem;
}
.p-problem__list-item {
  --icon-size: min(4.2666666667vw, 16px * 1.44);
  --1lh: min(3.7333333333vw, 14px * 1.44);
  --2lh: min(9.6vw, 36px * 1.44);
  --icon-size: min(4.2666666667cqi, 16px * 1.44);
  --1lh: min(3.7333333333cqi, 14px * 1.44);
  --2lh: min(9.6cqi, 36px * 1.44);
  display: block grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
  align-items: flex-start;
}
.p-problem__list-item::before {
  block-size: var(--icon-size);
  aspect-ratio: 19/16;
  background: url(../images/icon_check-BQlN9D4Z.png) no-repeat center/cover;
  content: "";
}
.p-problem__list-item img {
  width: auto;
}
.p-problem__list-item:nth-child(1) img {
  height: var(--2lh);
}
.p-problem__list-item:nth-child(2) img {
  height: var(--2lh);
}
.p-problem__list-item:nth-child(3) img {
  height: var(--2lh);
}
.p-problem__list-item:nth-child(4) img {
  height: var(--1lh);
}
.p-voice__heading {
  font-size: max(1.25rem, 10px);
  font-size: min(5.3333333333vw, 20px * 1.44);
  font-size: min(5.3333333333cqi, 20px * 1.44);
  font-weight: 700;
  text-align: center;
}
.p-voice__content {
  margin-top: 1.5rem;
}
.p-voice__splide.splide {
  --slide-width: 28.75rem;
  --slide-gap: 1.9375rem;
  --slide-padding: 10.3125rem;
  --slide-padding: 11.875rem;
  --slide-arrow-width: 2.8125rem;
}
.p-voice__splide-item.splide__slide {
  width: 100%;
  padding: 1.1875rem 0.9375rem;
  background-color: rgb(220, 238, 242);
}
[data-icon=man].p-voice__splide-item.splide__slide {
  --icon-image: url(../images/icon_man-BrkuV6TO.png);
}
[data-icon=woman].p-voice__splide-item.splide__slide {
  --icon-image: url(../images/icon_woman-LL6CocpK.png);
}
.p-voice__container {
  height: 100%;
  padding: 1.375rem 1.5rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  box-shadow: var(--box-shadow);
}
.p-voice__item-heading {
  font-size: max(1rem, 10px);
  font-weight: 700;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9375rem;
}
.p-voice__item-heading::before {
  width: 5.125rem;
  aspect-ratio: 1;
  background: var(--icon-image) no-repeat center/contain;
  content: "";
}
.p-voice__item-desc {
  margin-top: 1.5rem;
  font-size: max(0.9375rem, 10px);
  font-weight: 400;
  line-height: 1.7;
}
.p-voice__arrows.splide__arrows {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.p-voice__arrow.splide__arrow {
  font-size: 0;
  width: var(--slide-arrow-width);
  aspect-ratio: 1;
  pointer-events: all;
}
.p-voice__arrow.splide__arrow--prev {
  background: url(../images/splide_prev-BtnKhhzb.png) no-repeat center/1.8125rem;
}
.p-voice__arrow.splide__arrow--next {
  background: url(../images/splide_next-CcLkYVG9.png) no-repeat center/1.8125rem;
}
.p-voide__pagination.splide__pagination {
  margin-top: 2.125rem;
  gap: 1.25rem;
  font-size: 0;
}
.splide:not(.is-overflow) .p-voide__pagination.splide__pagination {
  display: flex;
}
.p-voide__page.splide__pagination__page {
  background-color: rgb(210, 210, 210);
  width: 0.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
}
.p-voide__page.splide__pagination__page.is-active {
  background-color: rgb(111, 192, 211);
}
/* 動きを抑えたい人への配慮 */
/* 初期（見えない＆少し下） */
[data-fadein] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 1.4s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
/* 表示状態 */
[data-fadein].is-show {
  opacity: 1;
  transform: translateY(0);
}
/* 遅延設定（pcで1行・複数列を想定／最大4列） */
.u-pc {
  display: none;
}
/* 検証用スタイル */
@media screen and (min-width: 768px){
  :root {
    --desigh-width: 1440;
  }
  html {
    font-size: 1.2307692308vw;
    font-size: 1.2307692308cqi;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .l-access {
    margin-top: 5.625rem;
  }
  .l-apply {
    margin-top: 7.625rem;
  }
  .l-voice + .l-cta {
    margin-top: 9.6875rem;
  }
  .l-class + .l-cta {
    margin-top: 7.5rem;
  }
  .l-footer {
    margin-top: 2.5rem;
  }
  .l-inner {
    max-width: 81.25rem;
    padding-inline: 3.125rem;
  }
  .l-point {
    margin-top: 2.75rem;
  }
  .l-problem {
    margin-top: 3rem;
  }
  .l-voice {
    margin-top: 12rem;
  }
  .c-button {
    font-size: var(--button-font-size, 1.5rem);
  }
  .p-access__inner {
    display: grid;
    grid-template-areas: "heading map" "list map";
    max-width: 73.625rem;
    -moz-column-gap: 4.75rem;
         column-gap: 4.75rem;
    row-gap: 1.25rem;
  }
  .p-access__heading {
    padding-block-start: 1.875rem;
    padding-inline-start: 0.625rem;
    grid-area: heading;
  }
  .p-access__hgroup {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .p-access__heading-ja {
    font-size: max(1.875rem, 10px);
  }
  .p-access__heading-en {
    padding-block-end: 0.4375rem;
    font-size: max(1rem, 10px);
  }
  .p-access__list {
    margin-top: 0;
    grid-area: list;
    width: 32.5rem;
  }
  .p-access__item {
    gap: 1.4375rem;
  }
  .p-access__map {
    margin-top: 0rem;
    grid-area: map;
    width: 31.25rem;
  }
  .p-access__map iframe {
    aspect-ratio: 100/75;
  }
  .p-apply__heading {
    padding-block: 3rem;
    font-size: max(3rem, 10px);
  }
  .p-apply__tel {
    margin-top: 3.25rem;
  }
  .p-apply__tel-copy1 {
    width: 53.1875rem;
  }
  .p-apply__tel-copy2 {
    margin-top: 2.125rem;
    max-width: unset;
    width: 60.125rem;
  }
  .p-apply__tel-copy3 {
    margin-top: 1.125rem;
    transform: translateX(-0.9375rem);
  }
  .p-apply__tel-link {
    margin-top: 0.3125rem;
    font-size: max(4.625rem, 10px);
  }
  .p-apply__tel-link::before {
    width: 2.5rem;
  }
  .p-apply__tel-desc {
    margin-top: -0.625rem;
    font-size: max(1rem, 10px);
  }
  .p-apply__web {
    padding-block: 3.75rem 6.25rem;
    margin-top: 2.125rem;
    background-image: url(../images/apply_web_bg-C9kodSj6.jpg);
  }
  .p-apply__form-container {
    padding-block: 4.75rem 3.9375rem;
    padding-inline: 9.4375rem;
  }
  .p-class {
    padding-block-start: 7rem;
    background-image: url(../images/class_bg-CdRdVui6.jpg);
  }
  .p-class__inner {
    max-width: 95.625rem;
  }
  .p-class__heading {
    width: 41.875rem;
  }
  .p-class__content {
    margin-top: 2rem;
  }
  .p-class__summaries {
    gap: 3rem;
  }
  .p-class__summary-head {
    padding-inline: 1.125rem;
  }
  .p-class__summary-heading {
    font-size: max(2.25rem, 10px);
  }
  .p-class__summary-desc {
    font-size: max(1.125rem, 10px);
  }
  .p-class__summary-content {
    padding: 3.125rem 7.1875rem 3.75rem;
  }
  .p-class__summary-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem;
  }
  .p-class__summary-list-item + .p-class__summary-list-item--1::before {
    margin: 0;
    content: none;
  }
  .p-class__container {
    height: 100%;
    padding: 1.25rem 1.375rem 1.625rem;
  }
  .p-class__list-container {
    display: contents;
  }
  .p-class__item-container {
    padding: 1.25rem 1.375rem 3.625rem;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    border-radius: 0.625rem;
  }
  .p-class__summary-list-item-heading {
    font-size: max(1.75rem, 10px);
  }
  .p-class__summary-list-item-heading small {
    display: none;
  }
  .p-class__summary-list-item-image {
    margin-top: 0.4375rem;
    aspect-ratio: 692/514;
  }
  .p-class__summary-list-item-image:has(img[src*=class_summary_list1-02]) {
    position: relative;
    display: block;
  }
  .p-class__summary-list-item-image:has(img[src*=class_summary_list1-02]) img {
    transform-origin: top;
    transform: scale(1.3410404624);
  }
  .p-class__summary-list-item-desc {
    margin-top: 0.4375rem;
    line-height: 1.625;
  }
  .p-class__summary-copy {
    margin-top: 2.8125rem;
    font-size: max(1.875rem, 10px);
  }
  .p-class__summary-note {
    margin-top: 2.25rem;
    margin-inline: 1.5625rem;
    font-size: max(1.5rem, 10px);
  }
  .p-class__summary-column {
    margin-top: 6.875rem;
    grid-template-areas: "heading heading" "desc image";
    grid-template-columns: 1fr auto;
    -moz-column-gap: 3.5625rem;
         column-gap: 3.5625rem;
    row-gap: 0.875rem;
    padding-block-end: 1.6875rem;
  }
  .p-class__summary-column-heading {
    font-size: max(1.5rem, 10px);
  }
  .p-class__summary-column-desc {
    margin-top: 0;
    font-size: max(1.125rem, 10px);
    padding-inline-start: 1.5625rem;
  }
  .p-class__summary-column-image {
    margin-top: 0;
    width: 18.75rem;
  }
  .p-class__prices {
    margin-top: 5.5rem;
    margin-inline: auto;
    max-width: 75rem;
  }
  .p-class__price-head {
    gap: 0rem 1.625rem;
  }
  .p-class__price-image {
    width: 16.75rem;
  }
  .p-class__price-heading {
    font-size: max(1.875rem, 10px);
  }
  .p-class__price-desc {
    font-size: max(1.25rem, 10px);
  }
  .p-class__price-content {
    padding: 2.75rem 2.875rem 3.625rem;
  }
  .p-class__price-content-wrap {
    display: grid;
    grid-template-columns: 1fr 36.75rem;
    gap: 3.125rem;
    align-items: center;
  }
  .p-class__price-sub-heading {
    font-size: max(1.375rem, 10px);
  }
  .p-class__price-sub-list {
    font-size: max(1rem, 10px);
  }
  .p-class__price-item-content {
    padding-inline: 0rem;
  }
  .p-class__price-table-wrap {
    margin-top: 0;
  }
  .p-class__price-items {
    gap: 2.1875rem;
  }
  .p-class__price-item {
    display: grid;
    grid-template-columns: 1fr 36.75rem;
    gap: 3.125rem;
    padding-bottom: 2.1875rem;
  }
  .p-class__price-time {
    font-size: max(1.125rem, 10px);
  }
  .p-class__price-note {
    margin-top: 0.25rem;
    font-size: max(1rem, 10px);
  }
  .p-class__price-note2 {
    margin-top: 1.875rem;
    font-size: max(1.125rem, 10px);
  }
  .p-cta {
    padding-block: 2rem 2.5rem;
  }
  .p-cta__copy {
    width: 53.1875rem;
    max-width: 100%;
  }
  .p-cta__banner {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 10.875rem 1fr auto;
    grid-template-areas: "heading tel" "heading web";
    align-items: center;
    max-width: initial;
    padding-bottom: 0rem;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    row-gap: 1.25rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-cta__heading {
    --base-width: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-block: 0;
    padding-inline: 1.375rem;
    text-align: left;
    clip-path: polygon(calc(100% - var(--base-width)) 0, 100% 50%, calc(100% - var(--base-width)) 100%, 0 100%, 0 0);
  }
  .p-cta__heading img {
    margin-inline: 0;
    width: 7.625rem;
  }
  .p-cta__tel {
    padding-block-start: 1.25rem;
  }
  .p-cta__tel-copy {
    margin-top: 0rem;
    margin-inline: 0;
    width: 10.875rem;
  }
  .p-cta__tel-link {
    margin-inline: 0;
    font-size: max(4rem, 10px);
  }
  .p-cta__tel-desc {
    margin-top: 0.4375rem;
    margin-inline: 0;
    font-size: max(0.875rem, 10px);
  }
  .p-cta__web {
    margin-top: 0;
    padding-block-end: 1.25rem;
    text-align: left;
  }
  .p-flow {
    padding-block: 7.125rem 8.5rem;
    background: url(../images/flow_bg-BDtxYcVg.png) repeat-y center/cover;
  }
  .p-flow__heading {
    font-size: max(2.25rem, 10px);
  }
  .p-flow__content {
    margin-top: 4.1875rem;
  }
  .p-flow__container {
    background-color: rgb(220, 238, 242);
    padding-block: 4.4375rem 4.1875rem;
    padding-inline: 4.1875rem;
  }
  .p-flow__item + .p-flow__item::before {
    margin-block: 1rem;
  }
  .p-flow__item-container--1 {
    padding-block: 2.375rem 3.75rem;
    padding-inline: 4.75rem;
  }
  .p-flow__item-container--2 {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "content image";
    gap: 3.125rem;
  }
  .p-flow__item-number {
    left: -1.875rem;
    width: 5.8125rem;
    font-size: max(2.25rem, 10px);
  }
  .p-flow__item-image {
    margin-inline: 0;
    grid-area: image;
    width: 15.625rem;
  }
  .p-flow__item-image img {
    border-radius: 0 0.625rem 0.625rem 0;
    aspect-ratio: unset;
    height: 100%;
  }
  .p-flow__item-content {
    grid-area: content;
    padding-block: 2.375rem;
    padding-inline: 4.75rem 0;
  }
  .p-flow__item-heading {
    margin-inline: 0;
    font-size: max(1.75rem, 10px);
    text-align: left;
  }
  .p-flow__item-desc {
    margin-top: 0.8125rem;
    font-size: max(1.125rem, 10px);
  }
  .p-flow__item-contact {
    margin-top: 1.625rem;
    display: grid;
    grid-template-areas: "tel web" "desc desc";
    align-items: center;
    justify-content: center;
    -moz-column-gap: 2.625rem;
         column-gap: 2.625rem;
    padding-block: 1.25rem;
  }
  .p-flow__item-contact-tel {
    grid-area: tel;
    margin-inline: 0;
    font-size: max(3.4375rem, 10px);
  }
  .p-flow__item-contact-web {
    margin-top: 0rem;
    grid-area: web;
  }
  .p-flow__item-contact-desc {
    margin-top: 0.625rem;
  }
  .p-flow__note {
    margin-top: 1.625rem;
    font-size: max(1.125rem, 10px);
  }
  .p-footer {
    padding-block-end: 2.5rem;
  }
  .p-footer__logo {
    width: 10.125rem;
  }
  .p-form#mailformpro {
    --select-padding-inline: 0.5rem calc(0.5rem + var(--select-icon-right) + var(--select-icon-width));
    --text-padding-inline: 1rem;
  }
  .p-form#mailformpro .p-form__dl {
    --dd-padding-block: 1.5rem;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    row-gap: 3.125rem;
    font-size: max(1.125rem, 10px);
    background-color: var(--border-color);
    -moz-column-gap: 0rem;
         column-gap: 0rem;
    row-gap: 1px;
  }
  .p-form#mailformpro .p-form__dt {
    width: var(--dt-width);
    padding-block: calc(var(--text-padding-block) + var(--dd-padding-block));
  }
  .p-form#mailformpro .p-form__dt:first-of-type {
    padding-block-start: var(--text-padding-block);
  }
  .p-form#mailformpro .p-form__dt:last-of-type {
    padding-block-end: var(--text-padding-block);
  }
  .p-form#mailformpro .p-form__dd:first-of-type {
    padding-block-start: 0;
  }
  .p-form#mailformpro .p-form__dd:last-of-type {
    padding-block-end: 0;
  }
  .p-form#mailformpro .p-form__dt + .p-form__dd {
    margin-top: 0;
  }
  .p-form#mailformpro .p-form__dt + .p-form__dd:has([type=radio i]) {
    margin-top: 0;
    padding-block: calc(var(--text-padding-block) + var(--dd-padding-block));
  }
  .p-form#mailformpro .p-form__dd:has([type=radio i]) + .p-form__dt {
    margin-top: 0;
  }
  .p-form#mailformpro .p-form__dd + .p-form__dt {
    margin-top: 0;
  }
  .p-form#mailformpro .p-form__label {
    -moz-column-gap: 1.125rem;
         column-gap: 1.125rem;
  }
  .p-form__required,
  .p-form__optional {
    padding-inline: 0.4375rem;
    font-size: max(0.875rem, 10px);
  }
  .p-form__dd-inner {
    grid-template-columns: repeat(4, auto);
  }
  .p-form__select-wrap {
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-form#mailformpro input:is(#tel, #lesson-date, #tennis-experience) {
    width: 21.375rem;
  }
  .p-form#mailformpro input:is(#tel-date),
  .p-form__select-wrap:has(#tel-time) {
    width: 12.0625rem;
  }
  .p-form__dd:has(input[type=radio i]) {
    gap: 1.125rem;
  }
  .p-form#mailformpro input[type=date i]:not([type=radio i]):not([type=checkbox i]) {
    min-height: 3.0625rem;
  }
  .p-form__note {
    margin-top: 0.5rem;
    font-size: max(0.875rem, 10px);
  }
  .p-form__privacy-policy-read {
    margin-top: 2.25rem;
    font-size: max(1rem, 10px);
  }
  .p-form__buttons {
    margin-top: 2.5rem;
  }
  .p-loop-slider__slider-item {
    width: 31.125rem;
  }
  .p-mv {
    padding-block: min(3.75vw, 72px) min(7.1875vw, 138px);
    padding-block: min(3.75cqi, 72px) min(7.1875cqi, 138px);
  }
  .p-mv__title {
    padding-inline-start: 0rem;
  }
  .p-mv__title img {
    width: min(15.6770833333vw, 301px);
    width: min(15.6770833333cqi, 301px);
  }
  .p-mv__inner {
    display: block;
    max-width: min(67.7083333333vw, 1300px);
    padding-inline: min(2.6041666667vw, 50px);
  }
  .p-mv__copy {
    margin-top: 3.375rem;
    width: min(35.2083333333vw, 676px);
    width: min(35.2083333333cqi, 676px);
  }
  .p-mv__desc {
    margin-top: 1.6875rem;
    width: min(33.1770833333vw, 637px);
    width: min(33.1770833333cqi, 637px);
  }
  .p-mv__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(3, min(10.5208333333vw, 202px));
    gap: min(1.0416666667vw, 20px);
  }
  .p-point {
    gap: 3.75rem;
    /* はみ出たp-point__imageをカット */
    overflow-x: clip;
  }
  .p-point::before {
    width: 3rem;
  }
  .p-point__inner {
    padding-inline: 3.125rem;
    max-width: 97.25rem;
  }
  .p-point__hgroup {
    gap: 1.5rem;
  }
  .p-point__copy {
    width: 65.75rem;
  }
  .p-point__heading {
    width: 71rem;
  }
  .p-point__content {
    margin-top: 6.75rem;
  }
  .p-point__list {
    gap: 3.125rem;
  }
  .p-point__list::before {
    content: none;
  }
  .p-point__list-item {
    --heading-1lh: 2.3125rem;
    --heading-2lh: 5.625rem;
    --cut-width: min(8.125vw, 156px);
    --cut-width: min(8.125cqi, 156px);
    z-index: 0;
    grid-template-columns: auto auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: "image heading" "image desc";
    -moz-column-gap: 1.125rem;
         column-gap: 1.125rem;
    row-gap: min(1.5625vw, 30px);
    row-gap: min(1.5625cqi, 30px);
    align-items: flex-start;
    justify-content: flex-start;
    padding-block-end: 0rem;
  }
  .p-point__list-item:nth-child(odd) {
    --image-position-transform: translateY(-2.5rem);
    --desc-padding-inline-end: 12.25rem;
    --deco-image: url(../images/point_item_deco-AnhcJNLM.png);
    --deco-width: 39.625rem;
    --deco-aspect-ratio: 1268/619;
  }
  .p-point__list-item:nth-child(odd):not(:first-child) {
    margin-top: 3.5rem;
  }
  .p-point__list-item:nth-child(even) {
    --image-position-transform: translateY(3.625rem);
    --heading-inline-end: calc(var(--cut-width, 0) * -1);
    --deco-image: url(../images/point_item_deco2-BQl4ozn6.png);
    --deco-width: 35.125rem;
    --deco-aspect-ratio: 1125/550;
    direction: rtl;
    padding-inline-end: min(11.8229166667vw, 227px);
  }
  .p-point__list-item:nth-child(1) {
    --heading-height: var(--heading-1lh);
    --deco-margin-inline-start: -26.4375rem;
    --deco-inset-block-start: 13.75rem;
  }
  .p-point__list-item:nth-child(2) {
    --deco-margin-inline-start: -22.875rem;
    --deco-inset-block-start: 20.25rem;
  }
  .p-point__list-item:nth-child(3) {
    --deco-margin-inline-start: -28.3125rem;
    --deco-inset-block-start: 17.375rem;
  }
  .p-point__list-item:nth-child(4) {
    --deco-margin-inline-start: -22.125rem;
    --deco-inset-block-start: 17.1875rem;
  }
  .p-point__list-item::before {
    margin-inline-start: var(--deco-margin-inline-start);
    inset-block-start: var(--deco-inset-block-start);
    inset-inline-start: 0;
    z-index: 1;
    width: var(--deco-width);
    aspect-ratio: var(--deco-aspect-ratio);
    background-image: var(--deco-image);
  }
  .p-point__list-item::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: rgb(248, 246, 235);
    content: "";
    clip-path: polygon(var(--cut-width) 0%, 100% 0%, calc(100% - var(--cut-width)) 100%, 0% 100%);
  }
  .p-point__image {
    grid-area: image;
    margin-inline: -14.375rem 0;
    transform: var(--image-position-transform);
    width: 48.875rem;
  }
  .p-point__list-heading {
    grid-area: heading;
    margin-top: -0.625rem;
    margin-inline-end: var(--heading-inline-end);
    gap: min(1.5625vw, 30px);
    align-items: flex-start;
    direction: ltr;
  }
  .p-point__list-heading img[src*=no] {
    height: 5.625rem;
  }
  .p-point__list-desc {
    margin-top: 0rem;
    grid-area: desc;
    direction: ltr;
    padding-bottom: 3.5625rem;
    padding-inline-end: var(--desc-padding-inline-end, 0);
    font-size: max(1.5rem, 10px);
  }
  .p-price-table {
    --th-padding-inline: 0.5rem;
    --td-padding-inline: 1.25rem;
  }
  .p-price-table__thead-th:not(:empty) {
    height: 2.6875rem;
    font-size: max(1.125rem, 10px);
  }
  .p-price-table__tbody-th {
    font-size: max(1.125rem, 10px);
  }
  .p-price-table__tbody-td {
    height: 2.9375rem;
    font-size: max(1.125rem, 10px);
  }
  .p-class__price-item .p-price-table__tbody-td {
    width: 50%;
  }
  .p-privacy-policy {
    padding: 3rem 3.1875rem;
    font-size: max(1rem, 10px);
    line-height: 1.4375;
  }
  .p-problem {
    padding-block: 5rem 13.9375rem;
    background-image: url(../images/problem_bg-BIn_a44b.jpg);
  }
  .p-problem::before {
    content: none;
  }
  .p-problem__inner {
    max-width: 67.75rem;
  }
  .p-problem__heading {
    padding-right: 15.125rem;
  }
  .p-problem__heading img {
    margin-inline: auto;
    width: 33.75rem;
  }
  .p-problem__list {
    margin-top: 3.4375rem;
    row-gap: 3.3125rem;
  }
  .p-problem__list-item {
    --icon-size: 2rem;
    --1lh: 1.625rem;
    --2lh: 4rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .p-voice__heading {
    font-size: max(3rem, 10px);
  }
  .p-voice__content {
    margin-top: 3.25rem;
  }
  .p-voice__splide-item.splide__slide {
    padding: 1.25rem;
    width: var(--slide-width);
  }
  .p-voice__container {
    padding: 1.3125rem 2.0625rem;
  }
  .p-voice__item-heading {
    gap: 1.5625rem;
    font-size: max(1.25rem, 10px);
  }
  .p-voice__item-heading::before {
    width: 5.6875rem;
  }
  .p-voice__item-desc {
    font-size: max(1.125rem, 10px);
  }
  .p-voice__arrows.splide__arrows {
    width: calc(var(--slide-width) * 1 + var(--slide-arrow-width));
  }
  .p-voide__pagination.splide__pagination {
    margin-top: 3.125rem;
  }
  [data-fadein="200"] {
    transition-delay: 200ms;
  }
  [data-fadein="400"] {
    transition-delay: 400ms;
  }
  [data-fadein="600"] {
    transition-delay: 600ms;
  }
  .u-pc {
    display: block; /* 古いブラウザ用フォールバック */
    display: revert; /* モダンブラウザではUAスタイルに戻す */
  }
  .u-sp {
    display: none;
  }
}
@media screen and (min-width: 1280px){
  .c-button {
    --icon-width: 2.6875rem;
    padding-block: var(--button-padding-block, 0.875rem);
    font-size: var(--button-font-size, 1.875rem);
  }
  .c-button--flow {
    --button-padding-block: 0.8125rem;
    --button-padding-inline: 2.875rem 0.6875rem;
    --button-font-size: 1.375rem;
    --icon-width: 2.125rem;
    --gap: 1.5rem;
  }
  .c-button--submit {
    --button-padding-block: 0.8125rem;
    --button-padding-inline: 2.875rem 0.6875rem;
    --button-font-size: 1.875rem;
    --icon-width: 2.6875rem;
    --gap: 1.5rem;
  }
  .p-cta__banner {
    grid-template-areas: "heading tel web";
    gap: 0;
    width: 100%;
  }
  .p-cta__tel {
    padding-inline: 2.8125rem 2.6875rem;
    padding-block: 2.375rem;
  }
  .p-cta__web {
    padding-block-end: 0rem;
    padding-right: 3.25rem;
  }
}
@media (min-width: 1300px){
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1500px){
  .p-voice__arrows.splide__arrows {
    width: calc(var(--slide-width) * 3 + var(--slide-gap) * 2 + var(--slide-arrow-width));
  }
}
@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
    font-size: 4.2666666667cqi;
  }
}
@media (any-hover: hover){
  :is(a, button):hover {
    opacity: 0.7;
  }
}
@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 (prefers-reduced-motion: reduce){
  [data-fadein] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@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;
  }
}