@charset "UTF-8";
/* リキッドレイアウト対応 */
:root {
  --inner-value: 928;
  --inner: 928px;
  --inner-large: 1120px;
  --padding-pc: 25px;
  --padding-sp: 16px;
}

:root {
  --rem: 1rem / 16;
  --em: 1em / 16;
  --vw: 1280 * 100vw;
}

:root {
  --base-font: "Zen Kaku Gothic New", sans-serif;
  --second-font: "Noto Sans JP", sans-serif;
  --en-font: "Roboto", sans-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;
}

:root {
  --white: #fff;
  --black: #000;
  --text-black: #3A3A3A;
  --gray-light: #808C9D;
  --gray: #7D8C9F;
  --gray-dark: #5A6B7D;
  --sand-yellow: #E0BC6C;
  --sand-yellow-dark: #E4B853;
  --gold: #D7B872;
  --red: #D74141;
  --orange: #EF7942;
  --vivid-orange: #FF6924;
  --blue: #465ABD;
  --bg-base: #F7F5F0;
}

:root {
  --z-index-loader: 1000;
  --z-index-header: 100;
  --z-index-drawer: 99;
  --z-index-cta: 90;
}

:root {
  --header-height: min(142 / var(--vw), 142px);
  --header-height-scrolled: calc(var(--header-height) * 0.7);
  --scrollbar-width: 0;
}

@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-scrolled);
}

body {
  background-color: var(--bg-base);
  color: var(--text-black);
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  font-family: var(--base-font);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  min-height: 100svh;
}

main {
  flex: 1;
}

html {
  font-size: 16px;
}

/*! 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;
  /* 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;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /*
  * 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) {
  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
  /*
  * 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;
}

/* ======================================================
// 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) {
  font-size: 2em;
  /*
  * 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;
}

: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) {
  /*
  * 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: "";
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
}

: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;
  /* 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;
  font-variation-settings: initial;
}

:where(abbr[title]) {
  cursor: help;
  /*
  * 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;
}

: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;
  display: block;
  inline-size: 100%;
  /* 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 styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  border-style: solid;
  /*
  * 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;
  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) {
  border: unset;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  /*
  * 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;
  padding: 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) {
  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";
}

: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]) {
  border: unset;
  /*
  * 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;
}

: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) {
  max-block-size: unset;
  /*
  * 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;
}

: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. */
}

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

/* ======================================================
//  MARK: a[href^="tel:"]
// ====================================================== */
.inner {
  margin-inline: auto;
  max-width: calc(var(--inner) + var(--padding-pc) * 2);
  padding-inline: var(--padding-pc);
  width: 100%;
}

.inner-large {
  margin-inline: auto;
  max-width: calc(var(--inner-large) + var(--padding-pc) * 2);
  padding-inline: var(--padding-pc);
  width: 100%;
}

.layout-about {
  margin-top: -7.1875rem;
}

.layout-class {
  margin-top: -2.125rem;
}

.layout-contact {
  margin-top: -1.625rem;
}

.layout-studio-first {
  display: grid;
  gap: 6.5rem;
  margin-top: 8.375rem;
  position: relative;
}

.layout-studio-first::before {
  aspect-ratio: 1280/2380;
  background-image: -webkit-image-set(url(../images/bg_studio.avif) type("image/avif"), url(../images/bg_studio.png) type("image/png"));
  background-image: image-set(url(../images/bg_studio.avif) type("image/avif"), url(../images/bg_studio.png) type("image/png"));
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  inset-inline: 0;
  position: absolute;
}

.about {
  background-image: -webkit-image-set(url("../images/bg_about.avif") type("image/avif"), url("../images/bg_about.jpg") type("image/jpg"));
  background-image: image-set(url("../images/bg_about.avif") type("image/avif"), url("../images/bg_about.jpg") type("image/jpg"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: clip;
  padding-block: 16.375rem 14.125rem;
}

.about__inner.inner-large {
  container-type: inline-size;
}

.about__container {
  --img1: calc(326 / 1120 * 100cqi);
  --content: minmax(0, 560px);
  --img2: calc(506 / 1120 * 100cqi);
  display: grid;
  gap: 8rem 2.5rem;
  grid-template-areas: "img1 content" "img1 img2";
  grid-template-columns: var(--img1) var(--content);
  justify-content: space-between;
  padding-left: min(28 / var(--vw), 28px);
}

.about__content {
  grid-area: content;
}

.about__title {
  width: min(100%, 15.375rem);
}

.about__title img {
  aspect-ratio: 246/48;
  object-fit: contain;
}

.about__lead {
  color: var(--text-black);
  font-size: 1.875rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.15em;
  line-height: 2;
  margin-top: 1.25rem;
}

.about__text {
  color: var(--text-black);
  font-family: var(--second-font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.25em;
  line-height: 1.6666666667;
  margin-top: 1.75rem;
}

.about__img1 {
  grid-area: img1;
  margin-top: 3.875rem;
}

.about__img1 img {
  display: block;
}

.about__img2 {
  grid-area: img2;
  width: min(100%, var(--img2));
}

.about__img2 img {
  display: block;
}

.access {
  background-color: var(--white);
  padding-block: 3.125rem 5rem;
}

.access__title {
  text-align: center;
}

.access__content {
  display: grid;
  margin-top: 2.5rem;
}

.access__body {
  background-color: var(--light-pink);
  padding-block: 1.875rem;
  padding-inline: 1.25rem;
}

.access__head {
  padding-left: 0.125rem;
}

.access__address {
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--fw-regular);
  line-height: 1.7777777778;
  margin-top: 1.125rem;
}

.access__text {
  margin-top: 1.25rem;
}

.access__map iframe {
  aspect-ratio: 435/290;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.bg-text {
  color: var(--white);
  display: block;
  font-family: var(--en-font);
  font-size: min(172 / var(--vw), 172px);
  font-weight: var(--fw-black);
  letter-spacing: 0.12em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  text-transform: uppercase;
  white-space: nowrap;
}

.bg-text span {
  display: inline-block;
}

.box-button {
  --bg-color: var(--orange);
  background-color: var(--bg-color);
  border-radius: 0.625rem;
  color: var(--white);
  display: block grid;
  filter: drop-shadow(0 0.25rem 1rem rgba(0, 0, 0, 0.25));
  gap: 0.5em;
  grid-template-areas: ". text icon";
  grid-template-columns: 1fr auto 1fr;
  padding-block: 1.5rem;
  padding-inline: 1.375rem;
  place-items: center;
  transition: background-color 0.3s ease;
}

.box-button--blue {
  --bg-color: var(--blue);
}

.box-button::after {
  aspect-ratio: 1;
  background-color: currentColor;
  content: "";
  grid-area: icon;
  justify-self: end;
  width: 1.5rem;
  -webkit-mask-image: url("../images/icon_circle-arrow.svg");
          mask-image: url("../images/icon_circle-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;
}

.box-button__wrap {
  display: grid;
  gap: 1.125rem;
  grid-area: text;
  place-items: center;
}

.box-button__place {
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.7857142857;
  text-box: trim-both cap alphabetic;
}

.box-button__text {
  font-size: 1.4375rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.0869565217;
  text-box: trim-both cap alphabetic;
}
.button {
  --bg-color: var(--orange);
  background-color: var(--bg-color);
  border-radius: 999em;
  color: var(--white);
  display: inline grid;
  filter: drop-shadow(0 0.125rem 0.625rem rgba(0, 0, 0, 0.25));
  gap: 1rem;
  grid-template-areas: ". text icon";
  grid-template-columns: 1fr auto 1fr;
  padding-block: 1.125em;
  padding-inline: 1.125em;
  place-items: center;
  transition: background-color 0.3s ease;
}

.button::after {
  aspect-ratio: 1;
  background-color: currentColor;
  content: "";
  grid-area: icon;
  width: 1.125em;
  -webkit-mask-image: url("../images/icon_circle-arrow.svg");
          mask-image: url("../images/icon_circle-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;
}

.button__text {
  font-size: 14px;
  font-weight: var(--fw-bold);
  grid-area: text;
  letter-spacing: 0.12em;
  line-height: 1.7857142857;
  text-box: trim-both cap alphabetic;
}
.campaign {
  background-image: -webkit-image-set(url(../images/bg_campaign.avif) type("image/avif"), url(../images/bg_campaign.png) type("image/png"));
  background-image: image-set(url(../images/bg_campaign.avif) type("image/avif"), url(../images/bg_campaign.png) type("image/png"));
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 5.5rem 7.3125rem;
}

.campaign__header {
  align-items: center;
  display: grid;
  grid-template-areas: ". title period";
  grid-template-columns: 1fr auto 1fr;
  padding-inline: 0.3125rem;
}

.campaign__title {
  grid-area: title;
  padding-top: 1.5rem;
}

.campaign__period {
  align-items: end;
  aspect-ratio: 1;
  background-image: url("../images/icon_scalloped-circle.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--white);
  display: inline grid;
  font-family: var(--en-font);
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-bold);
  gap: 0.8125rem 0.1875rem;
  grid-area: period;
  grid-template-columns: repeat(2, auto);
  justify-self: end;
  line-height: 1;
  padding-bottom: 0.3125rem;
  place-content: center;
  text-align: center;
  width: min(100%, 8rem);
}

.campaign__period [data-size=small] {
  grid-column: 1/-1;
  letter-spacing: 0.01em;
  text-box: trim-both cap alphabetic;
}

.campaign__period [data-size=medium] {
  font-size: 1.7777777778em;
  letter-spacing: 0.01em;
  text-box: trim-both cap alphabetic;
}

.campaign__period [data-size=large] {
  font-size: 2.5555555556em;
  letter-spacing: -0.03em;
  text-box: trim-both cap alphabetic;
}

.campaign__cards {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.4375rem;
}

.campaign__card {
  background-color: var(--white);
  border: 1px solid var(--sand-yellow);
  border-radius: 0.625rem;
  container-type: inline-size;
  display: grid;
  filter: drop-shadow(0 0.1875rem 0.9375rem rgba(0, 0, 0, 0.05));
  grid-template-rows: auto 1fr;
  justify-items: center;
  padding-bottom: 1.25rem;
  padding-inline: min(38 / var(--vw), 38px);
}

.campaign__card:has([data-type=monthly]) {
  padding-bottom: 1.5rem;
}

.campaign__card-label {
  --border-radius: calc(20 * var(--rem));
  background-color: var(--sand-yellow-dark);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  color: var(--white);
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-bold);
  line-height: 1.4444444444;
  min-width: min(100%, 6.6875rem);
  padding-block: 0.6875rem 0.625rem;
  padding-inline: 1.4375rem;
  text-align: center;
  text-box: trim-both cap alphabetic;
}

.campaign__card:nth-child(1) .campaign__card-label {
  letter-spacing: 0.12em;
}

.campaign__card-price {
  align-items: center;
  display: flex;
  gap: 3.875rem;
  margin-top: 0.4375rem;
}

.campaign__card-price[data-type=monthly] {
  gap: 3.625rem;
  margin-top: 0.9375rem;
}

.campaign__card-price-before {
  align-items: baseline;
  color: var(--gray-dark);
  display: flex;
  font-family: var(--en-font);
  font-size: 1.5625rem;
  font-weight: var(--fw-bold);
  position: relative;
  top: 0.625rem;
}

.campaign__card-price-before [data-size=small] {
  font-family: var(--en-font);
  font-size: max(14px, 1.1875rem);
  font-weight: var(--fw-bold);
  line-height: 1.1578947368;
}

.campaign__card-price-after {
  color: var(--sand-yellow);
  font-family: var(--en-font);
  font-size: 6.1875rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.campaign__card-price-after::before {
  aspect-ratio: 29/27;
  background-color: currentColor;
  content: "";
  left: -2.25rem;
  position: absolute;
  top: 50%;
  width: 1.8125rem;
  -webkit-mask-image: url("../images/icon_block-arrow.svg");
          mask-image: url("../images/icon_block-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;
}

.campaign__card-price-after[data-type=monthly] {
  font-size: 3.75rem;
  line-height: 1.1666666667;
}

.campaign__card-price-after[data-type=monthly]::before {
  left: -2.75rem;
  top: 42%;
  width: 1.5625rem;
}

.campaign__card-price-after [data-size=small] {
  font-family: var(--base-font);
  font-size: 2.375rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-left: -0.5rem;
  text-box: trim-both cap alphabetic;
}

.campaign__card-price-after[data-type=monthly] [data-size=small] {
  font-size: 1.4375rem;
  line-height: 1.1304347826;
  margin-left: -0.1875rem;
  padding-bottom: 0.1875rem;
}

.campaign__card-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5625rem;
}

.campaign__card-option {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  padding-right: min(31 / var(--vw), 31px);
  place-items: center;
}

.campaign__card-option:nth-child(2) {
  padding-inline: min(46 / var(--vw), 46px) 0;
  position: relative;
}

.campaign__card-option:nth-child(2)::before {
  background-color: #bfbfbf;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0.4375rem;
  width: 1px;
}

.campaign__card-option-title {
  color: var(--gray);
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-bold);
  line-height: 1.4444444444;
  text-box: trim-both cap alphabetic;
}

.campaign__card-option-img {
  margin-top: 1rem;
  width: 3rem;
}

.campaign__card-option-img img {
  aspect-ratio: 1;
  object-fit: contain;
}

.campaign__card-option-price {
  align-items: baseline;
  display: flex;
  gap: 2.1875rem;
  margin-top: 0.125rem;
}

.campaign__card-option-price-before {
  color: var(--gray-dark);
  font-family: var(--en-font);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.15;
}

.campaign__card-option-price-before [data-size=small] {
  font-size: max(12px, 0.9375rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

.campaign__card-option-price-after {
  color: var(--sand-yellow);
  font-family: var(--en-font);
  font-size: 3rem;
  font-weight: var(--fw-bold);
  line-height: 1.1875;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.campaign__card-option-price-after::before {
  aspect-ratio: 29/27;
  background-color: currentColor;
  content: "";
  left: -1.75rem;
  position: absolute;
  top: 50%;
  width: 1.25rem;
  -webkit-mask-image: url("../images/icon_block-arrow.svg");
          mask-image: url("../images/icon_block-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;
}

.campaign__card-option-price-after [data-size=small] {
  font-family: var(--base-font);
  font-size: max(14px, 1.1875rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.4210526316;
  margin-left: -0.25rem;
  text-box: trim-both cap alphabetic;
}

.campaign__card-option-price-before [data-size=small] {
  font-family: var(--base-font);
  font-size: max(12px, 0.9375rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-box: trim-both cap alphabetic;
}

.campaign__card-point {
  align-items: center;
  color: var(--gray);
  display: flex;
  font-family: var(--en-font);
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-bold);
  line-height: 1.1666666667;
  margin-top: 1.5rem;
  text-box: trim-both cap alphabetic;
}

.campaign__card-point [data-font=en] {
  font-family: var(--en-font);
}

.campaign__card-point::before,
.campaign__card-point::after {
  aspect-ratio: 14/23;
  background-color: currentColor;
  content: "";
  width: 0.875rem;
  -webkit-mask-image: url("../images/img_campaign-line.svg");
          mask-image: url("../images/img_campaign-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;
}

.campaign__card-point::before {
  margin-right: 0.25rem;
}

.campaign__card-point::after {
  margin-left: 0.25rem;
  scale: -1 1;
}

.campaign__card-note {
  color: var(--dark-gray);
  font-size: max(12px, 0.9375rem);
  font-weight: var(--fw-medium);
  line-height: 1.4666666667;
  margin-top: 1.25rem;
}

.campaign__card[data-type=event] {
  background-image: -webkit-image-set(url(../images/bg_campaign_item.avif) type("image/avif"), url(../images/bg_campaign_item.png) type("image/png"));
  background-image: image-set(url(../images/bg_campaign_item.avif) type("image/avif"), url(../images/bg_campaign_item.png) type("image/png"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: var(--vivid-orange);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: initial;
  padding-bottom: initial;
  place-content: center;
}

.campaign__card-title {
  display: grid;
  gap: 1.375rem;
  place-items: center;
}

.campaign__card-title-main {
  font-size: 1.5625rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.44;
  text-box: trim-both cap alphabetic;
}

.campaign__card-title-text {
  font-size: max(12px, 0.9375rem);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1.4666666667;
  text-box: trim-both cap alphabetic;
}

.campaign__card-title-text [data-color=vivid-orange] {
  color: var(--vivid-orange);
}

.campaign__bottom {
  display: grid;
  gap: 1.875rem;
  margin-top: 5rem;
  text-align: center;
}

.campaign__lead {
  font-size: max(15px, 1.0625rem);
  font-weight: var(--fw-medium);
  line-height: 1.8823529412;
  text-box: trim-both cap alphabetic;
}

.campaign__note {
  font-size: max(12px, 0.9375rem);
  font-weight: var(--fw-regular);
  line-height: 1.4666666667;
  text-box: trim-both cap alphabetic;
}

.campaign__note-wrap {
  margin-top: 2rem;
  text-align: center;
  white-space: nowrap;
}

.class {
  background-image: -webkit-image-set(url(../images/bg_class.avif) type("image/avif"), url(../images/bg_class.png) type("image/png"));
  background-image: image-set(url(../images/bg_class.avif) type("image/avif"), url(../images/bg_class.png) type("image/png"));
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 10.625rem 3.375rem;
  position: relative;
  z-index: 1;
}

.class__inner.inner {
  container-type: inline-size;
}

.class__cards {
  display: grid;
  gap: 3.75rem;
  margin-top: 5.5rem;
}

.class__card {
  display: flex;
  gap: min(60 / var(--vw), 60px);
}

.class__card:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.class__card-img {
  width: 48.4881209503%;
}

.class__card-img img {
  aspect-ratio: 449/280;
  border-radius: 0.625rem;
  object-fit: cover;
}

.class__card-body {
  align-content: center;
  display: grid;
  flex: 1;
  gap: 1.6875rem;
}

.class__card-title {
  --base-color: #D6C6A2;
  align-items: center;
  display: flex;
  gap: 1.25rem;
  padding-block: 0.75rem;
  position: relative;
}

.class__card-title::before {
  background-color: var(--black);
  content: "";
  height: 1px;
  width: 1.9375rem;
}

.class__card-title-en {
  color: var(--base-color);
  font-size: 3.875rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  line-height: 1.4516129032;
  order: -1;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.class__card-title-ja {
  font-size: max(14px, 1rem);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1.4375;
  text-box: trim-both cap alphabetic;
}

.class__card-text {
  font-family: var(--second-font);
  font-size: max(13px, 0.9375rem);
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  line-height: 1.8666666667;
  text-box: trim-both cap alphabetic;
}

.class__card:has(.class__card-title[style*="--base-color: #D6C6A2"]) .class__card-text {
  max-width: 368px;
}

.contact {
  background-color: #7FA1C3;
  padding-block: 7.8125rem 6.25rem;
}

.contact__inner.inner {
  max-width: calc(744px + var(--padding-pc) * 2);
}

.contact__header {
  display: grid;
  justify-items: center;
}

.contact__title {
  align-items: end;
  color: var(--white);
  display: inline grid;
  font-weight: var(--fw-medium);
  grid-template-columns: repeat(3, auto);
  row-gap: 2.75rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.contact__title::before,
.contact__title::after {
  aspect-ratio: 44/68;
  background-color: currentColor;
  content: "";
  width: 2.75rem;
  -webkit-mask-image: url("../images/img_contact-line.svg");
          mask-image: url("../images/img_contact-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;
}

.contact__title::before {
  grid-area: 1/1/3/2;
  margin-right: 1.75rem;
}

.contact__title::after {
  grid-area: 1/3/3/4;
  margin-right: 2.375rem;
  scale: -1 1;
}

.contact__title-sub {
  font-size: 1.375rem;
  grid-column: 2/3;
  letter-spacing: 0.1em;
  line-height: 1.4545454545;
  text-box: trim-both cap alphabetic;
}

.contact__title-main {
  font-size: 3.125rem;
  grid-column: 2/3;
  letter-spacing: 0.05em;
  line-height: 1.44;
  padding-bottom: 0.1875rem;
  text-box: trim-both cap alphabetic;
}

.contact__lead {
  color: var(--white);
  font-family: var(--second-font);
  font-size: 15px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.12em;
  line-height: 1.8666666667;
  margin-top: 3.125rem;
  text-align: center;
  text-box: trim-both cap alphabetic;
}

.contact__schedule {
  margin-top: 4.375rem;
  text-align: center;
}

.contact__schedule-text {
  color: var(--white);
  font-family: var(--second-font);
  font-size: 15px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.8666666667;
  text-box: trim-both cap alphabetic;
}

.contact__schedule-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.contact__schedule-button {
  width: min(100%, 11.875rem);
}

.contact__form {
  margin-top: 3.75rem;
}

.cta {
  background-image: -webkit-image-set(url(../images/bg_cta.avif) type("image/avif"), url(../images/bg_cta.jpg) type("image/jpg"));
  background-image: image-set(url(../images/bg_cta.avif) type("image/avif"), url(../images/bg_cta.jpg) type("image/jpg"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 5.375rem 4.375rem;
}

.cta__lead {
  font-family: var(--second-font);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  line-height: 1.8666666667;
  margin-top: 2.3125rem;
  text-align: center;
  text-box: trim-both cap alphabetic;
}

.cta__buttons {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.3125rem;
}

.faq-item {
  --hover-color: var(--gray-light);
}

.faq-item__title {
  align-items: center;
  display: grid;
  font-size: max(14px, 1rem);
  font-weight: var(--fw-semibold);
  gap: 0.5em;
  grid-template-columns: 1fr 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  padding-block: 1.875rem;
  transition: color ease 0.3s;
}

.faq-item__title::after {
  aspect-ratio: 1;
  background-color: var(--gray-dark);
  content: "";
  width: 100%;
  -webkit-mask-image: url("../images/icon_chevron.svg");
          mask-image: url("../images/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;
  transition: transform ease 0.3s, background-color ease 0.3s;
}

.faq-item.is-opened .faq-item__title::after {
  transform: rotate(180deg);
}

.faq-item__content {
  overflow: clip;
}

.faq-item__text {
  font-family: var(--second-font);
  font-size: max(12px, 0.9375rem);
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  padding-bottom: 1.875rem;
}

.faq-item__text a {
  text-decoration: underline;
  transition: color ease 0.3s;
}
.faq {
  background-image: -webkit-image-set(url(../images/bg_faq.avif) type("image/avif"), url(../images/bg_faq.png) type("image/png"));
  background-image: image-set(url(../images/bg_faq.avif) type("image/avif"), url(../images/bg_faq.png) type("image/png"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-block: 8.75rem;
  position: relative;
}

.faq__inner.inner {
  max-width: calc(736px + var(--padding-pc) * 2);
}

.faq__list {
  margin-top: 2rem;
}

.faq__item {
  border-bottom: 1px solid #B0B0B0;
}

.feature {
  background-image: -webkit-image-set(url(../images/bg_feature.avif) type("image/avif"), url(../images/bg_feature.png) type("image/png"));
  background-image: image-set(url(../images/bg_feature.avif) type("image/avif"), url(../images/bg_feature.png) type("image/png"));
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: clip;
  padding-block: 5.5rem 7.6875rem;
  position: relative;
  z-index: 2;
}

.feature__cards {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.75rem;
}

.feature__card {
  align-items: center;
  background-color: #63768B;
  border-radius: 0.625rem;
  color: var(--white);
  display: grid;
  filter: drop-shadow(0 0.1875rem 0.9375rem rgba(0, 0, 0, 0.05));
  font-family: var(--second-font);
  gap: 1.75rem;
  grid-template-columns: 46.7326732673% 1fr;
  padding: 1.25rem;
  position: relative;
}

.feature__card-icon {
  left: 0.625rem;
  position: absolute;
  top: 0.5rem;
  width: 4.875rem;
  z-index: 1;
}

.feature__card-icon img {
  aspect-ratio: 78/57;
  object-fit: contain;
}

.feature__card-img img {
  aspect-ratio: 236/155;
  object-fit: cover;
}

.feature__card-body {
  display: grid;
  gap: 1.25rem;
}

.feature__card-title {
  align-self: center;
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-box: trim-both cap alphabetic;
}

.feature__card-text {
  font-size: max(12px, 0.875rem);
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  line-height: 1.7857142857;
  text-box: trim-both cap alphabetic;
}

.first {
  padding-bottom: 10.3125rem;
  position: relative;
}

.first__special {
  --base-color: var(--gold);
  background-color: var(--white);
  border-radius: 0.625rem;
  box-shadow: 0 0.1875rem 0.9375rem rgba(0, 0, 0, 0.05);
  display: grid;
  margin-inline: auto;
  margin-top: 5.125rem;
  padding-bottom: 2.75rem;
  padding-inline: 1.25rem;
  place-items: center;
  text-align: center;
  width: min(100%, 34.125rem);
}

.first__special-label {
  --border-radius: calc(5 * var(--rem));
  background-color: var(--base-color);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  color: var(--white);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  line-height: 1.7857142857;
  padding-block: 0.6875rem 0.625rem;
  padding-inline: 1.25rem;
  text-align: center;
  text-box: trim-both cap alphabetic;
  width: min(100%, 16rem);
}

.first__special-title {
  font-size: max(16px, 1.125rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.4444444444;
  margin-top: 2rem;
  text-box: trim-both cap alphabetic;
}

.first__special-price {
  color: var(--base-color);
  font-family: var(--second-font);
  font-size: 3rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  margin-top: 1.5rem;
  text-box: trim-both cap alphabetic;
}

.first__special-price [data-size=small] {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1;
}

.first__flow {
  background-color: var(--white);
  border-radius: 0.625rem;
  box-shadow: 0 0.1875rem 0.9375rem rgba(0, 0, 0, 0.05);
  margin-top: 2.5rem;
  padding-block: 2.5rem;
  padding-inline: 3rem;
}

.first__flow-title {
  font-size: max(16px, 1.125rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.4444444444;
  text-align: center;
  text-box: trim-both cap alphabetic;
}

.first__flow-cards {
  --icon-size: calc(80 * var(--rem));
  --gap: calc(65 * var(--rem));
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(4, minmax(0, 112px));
  justify-content: center;
  margin-top: 2.8125rem;
  padding-bottom: 3rem;
}

.first__flow-card {
  display: grid;
  gap: 1.8125rem;
  place-items: center;
  position: relative;
}

.first__flow-card:not(:first-of-type)::before {
  aspect-ratio: 1;
  background-color: var(--gray);
  content: "";
  left: -50%;
  position: absolute;
  top: 57%;
  translate: 50% -50%;
  width: 1.0625rem;
  -webkit-mask-image: url("../images/icon_arrow.svg");
          mask-image: url("../images/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;
}

.first__flow-card-icon {
  width: min(100%, var(--icon-size));
}

.first__flow-card-icon img {
  aspect-ratio: 80/89;
  object-fit: contain;
}

.first__flow-card-text {
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: var(--fw-medium);
  line-height: 1.2142857143;
}

.first__flow-belongings {
  margin-top: 2.25rem;
  padding-inline: 2.5rem;
}

.first__flow-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  margin-top: 1.875rem;
}

.first__flow-item {
  align-items: start;
  color: var(--gray-dark);
  display: flex;
  font-size: max(13px, 0.9375rem);
  font-weight: var(--fw-medium);
  gap: 0.5625rem;
  line-height: 1.4666666667;
  min-width: 8.5rem;
  text-box: trim-both cap alphabetic;
}

.first__flow-item::before {
  aspect-ratio: 1;
  background-color: var(--gray);
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  position: relative;
  top: 0.5lh;
  translate: 0 -50%;
  width: 0.4666666667em;
}

.footer {
  background-color: var(--text-black);
  color: var(--white);
  padding-block: 5rem 1rem;
}

.footer__container {
  display: flex;
  gap: 8.875rem;
}

.footer__title {
  display: grid;
  flex-shrink: 0;
  font-family: var(--second-font);
  gap: 0.625rem;
  place-content: start;
  transition: opacity 0.3s ease;
}
.footer__title-en {
  font-size: max(18px, 1.3125rem);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  line-height: 1;
}

.footer__title-ja {
  font-size: 10px;
  font-weight: var(--fw-light);
  letter-spacing: 0.11em;
  line-height: 12/10;
}

.footer__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 0.5rem;
}

.footer__store {
  display: grid;
  gap: 0.5rem;
}

.footer__store-name {
  font-size: 15px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  text-box: trim-both cap alphabetic;
}

.footer__store-address {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: var(--fw-regular);
  gap: 0.25rem;
  letter-spacing: 0.05em;
  line-height: 2.0833333333;
  text-box: trim-both cap alphabetic;
}

.footer__store-address::before {
  aspect-ratio: 1;
  background-image: url("../images/icon_pin2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 0.9375rem;
}

.footer__store-address-link {
  transition: opacity 0.3s ease;
}
.footer__bottom {
  align-items: center;
  border-top: 1px solid #858585;
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-top: 4.25rem;
  padding-top: 0.875rem;
}

.footer__link {
  display: inline-block;
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: var(--fw-light);
  letter-spacing: 0.11em;
  line-height: 1.2142857143;
  transition: opacity 0.3s ease;
}
.footer__copyright {
  margin-top: 1.375rem;
  text-align: center;
}

.footer__copyright small {
  font-size: 10px;
  font-weight: var(--fw-light);
  letter-spacing: 0.11em;
  line-height: 1.2;
}

.form {
  display: grid;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  gap: 1.25rem;
}

.form__label {
  align-items: center;
  color: var(--white);
  display: flex;
  font-family: var(--second-font);
  font-size: max(16px, 1.125rem);
  font-weight: var(--fw-bold);
  gap: 0.5625rem;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

.form__required {
  background-color: var(--red);
  border-radius: 999em;
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1;
  padding: 0.375rem 0.5rem;
  text-box: trim-both cap alphabetic;
}

.form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--white);
  border: 1px solid #B6B6B6;
  border-radius: 0.3125rem;
  color: #929292;
  font-family: var(--second-font);
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 1.1875;
  padding: 1.125rem;
}

.form ::-moz-placeholder {
  color: #929292;
}

.form ::placeholder {
  color: #929292;
}

.form__input {
  background-color: var(--white);
  border: 1px solid #B6B6B6;
  border-radius: 0.3125rem;
  font-family: var(--second-font);
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 1.1875;
  padding: 1.125rem;
}

.form__submit {
  margin-inline: auto;
  margin-top: 4.375rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.form__submit-button {
  --bg-color: var(--orange);
  background-color: var(--bg-color);
  border: none;
  border-radius: 999em;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.25);
  color: var(--white);
  display: inline-block;
  padding-block: 1.125em;
  padding-inline: 4.125em 4.375em;
  transition: background-color 0.3s ease;
}

.form__submit::after {
  aspect-ratio: 1;
  background-color: var(--white);
  content: "";
  position: absolute;
  right: 1.125em;
  top: 50%;
  translate: 0 -50%;
  width: 1.125em;
  -webkit-mask-image: url("../images/icon_circle-arrow.svg");
          mask-image: url("../images/icon_circle-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;
}

.form__submit-button__text {
  font-size: 14px;
  font-weight: var(--fw-bold);
  grid-area: text;
  letter-spacing: 0.12em;
  line-height: 1.7857142857;
  text-box: trim-both cap alphabetic;
}
.fv {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  overflow-x: clip;
  position: relative;
}

.fv__img {
  grid-area: 1/1/-1/-1;
  -webkit-mask-image: url("../images/mask_fv.png");
          mask-image: url("../images/mask_fv.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-mask-size: cover;
          mask-size: cover;
}

.fv__img img {
  aspect-ratio: 1280/660;
  object-fit: cover;
}

.fv__inner.inner {
  --padding-pc: calc(100 * var(--rem));
  grid-area: 2/1/3/-1;
  max-width: calc(1080px + var(--padding-pc) * 2);
}

.fv__container {
  container-type: inline-size;
}

.fv__catchphrase {
  color: var(--white);
  filter: drop-shadow(0 0.25rem 0.6875rem rgba(0, 0, 0, 0.25));
  font-size: min(4.6296296296cqi, 50px);
  font-weight: var(--fw-regular);
  letter-spacing: 0.12em;
  line-height: 1.56;
}

.fv__lead {
  color: var(--white);
  filter: drop-shadow(0 0.25rem 0.6875rem rgba(0, 0, 0, 0.25));
  font-family: var(--second-font);
  font-size: 15px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.12em;
  line-height: 1.6666666667;
  margin-top: 1.5625rem;
}

.fv__button {
  margin-top: 2.75rem;
}

.fv__scroll {
  align-self: end;
  display: inline grid;
  gap: 0.5625rem;
  grid-area: 3/1/4/-1;
  justify-items: center;
  padding-bottom: 2.6875rem;
  place-content: center;
  position: relative;
}

.fv__scroll-text {
  color: var(--white);
  font-size: 10px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.12em;
  line-height: 2.5;
  text-box: trim-both cap alphabetic;
}

.fv__scroll-bar {
  aspect-ratio: 2/21;
  overflow: hidden;
  position: relative;
  width: 0.125rem;
}

.fv__scroll-bar::before,
.fv__scroll-bar::after {
  animation: scroll 2s linear infinite;
  background-image: linear-gradient(180deg, rgba(180, 166, 166, 0) 0%, var(--white) 50%, rgba(180, 166, 166, 0) 100%);
  content: "";
  height: 100%;
  inset-inline: 0;
  position: absolute;
}

.fv__scroll-bar::before {
  top: -200%;
}

.fv__scroll-bar::after {
  top: 0;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}
.header {
  height: var(--header-height);
  inset: 0;
  position: fixed;
  transition: height 0.3s ease;
  z-index: var(--z-index-header);
}

.header.is-scrolled {
  height: var(--header-height-scrolled);
}

.header__inner.inner {
  align-items: center;
  container-type: inline-size;
  display: flex;
  height: inherit;
  max-width: calc(max(1166px, 1166 / var(--vw)) + var(--padding-pc) * 2);
}

.header__logo {
  filter: brightness(0) invert(1);
  height: inherit;
  width: min(27.615780446cqi, 322px);
}

.header.is-scrolled .header__logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.3));
}

.header__logo-link {
  align-items: center;
  display: grid;
  height: 100%;
  transition: opacity 0.3s ease;
}
.header__logo img {
  aspect-ratio: 322/62;
  object-fit: contain;
}

.header__hamburger {
  display: none;
}

.header__hamburger-line,
.header__hamburger-line::before,
.header__hamburger-line::after {
  background-color: var(--base-color);
  height: 1px;
  transition: background-color 0.3s ease-out, rotate 0.3s ease-out, top 0.3s ease-out;
  width: var(--line-width);
}

.header__hamburger-line {
  position: relative;
}

.header__hamburger-line::before,
.header__hamburger-line::after {
  content: "";
  left: 0;
  position: absolute;
}

.header__hamburger-line::before {
  top: -0.625rem;
  transform-origin: left top;
}

.header__hamburger-line::after {
  top: 0.625rem;
  transform-origin: left bottom;
}

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

.header__hamburger.is-open .header__hamburger-line::before {
  rotate: 34deg;
  width: var(--close-line-width);
}

.header__hamburger.is-open .header__hamburger-line::after {
  rotate: -34deg;
  width: var(--close-line-width);
}

.header__drawer {
  display: none;
}

.header__drawer.is-open {
  --top-position: var(--header-height);
  opacity: 1;
  visibility: visible;
}

.header.is-scrolled .header__drawer.is-open {
  --top-position: var(--header-height-scrolled);
}

.header__drawer-wrapper {
  background-color: #7FA1C3;
  display: grid;
  padding-block: 2.25rem 2.5rem;
  position: relative;
}

.header__drawer-nav {
  display: grid;
  gap: 0.875rem;
  width: -moz-fit-content;
  width: fit-content;
}

.header__drawer-item {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 0.6875rem;
  padding-block: 1rem;
}

.header__drawer-item:before {
  background-color: var(--white);
  content: "";
  height: 1px;
  opacity: 0.5;
  width: 2.5rem;
}

.header__drawer-item-ja {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  line-height: 1.3888888889;
  text-box: trim-both cap alphabetic;
}

.header__drawer-item-en {
  color: #D0DDED;
  font-size: 0.625rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.12em;
  line-height: 2.5;
  text-box: trim-both cap alphabetic;
}
.instructor {
  overflow-x: clip;
  padding-block: 14.125rem 10.9375rem;
  position: relative;
}

.instructor__bg-text {
  left: 51%;
  position: absolute;
  top: 8.375rem;
  transform: translateX(-50%);
}

.instructor__inner.inner-large {
  container-type: inline-size;
  max-width: min(1160px, 1160 / var(--vw));
  position: relative;
}

.instructor__title {
  color: var(--text-black);
  font-size: 2.1875rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.15em;
  line-height: 1.4571428571;
  text-align: center;
  text-box: trim-both cap alphabetic;
}

.instructor__cards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  margin-top: 4.0625rem;
}
@container (max-width: 900px) {
  .instructor__cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.instructor__card {
  background-color: #EFEBE2;
  border-radius: 0.9375rem;
  box-shadow: 0 0.1875rem 0.9375rem rgba(0, 0, 0, 0.15);
  display: grid;
  gap: 0;
  grid-row: span 3;
  grid-template-rows: subgrid;
  overflow: clip;
}

.instructor__card-img img {
  aspect-ratio: 257/205;
  object-fit: cover;
}

.instructor__card-body {
  display: grid;
  gap: 1.625rem;
  grid-row: span 2;
  grid-template-rows: subgrid;
  padding-block: 1.5625rem 2.125rem;
  padding-inline: 1rem;
}

.instructor__card-name {
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1.4545454545;
  padding-left: 0.3125rem;
  text-box: trim-both cap alphabetic;
  text-transform: capitalize;
}

.instructor__card-text {
  color: var(--text-black);
  font-family: var(--second-font);
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.5714285714;
  text-box: trim-both cap alphabetic;
}

.mv {
  --bg-boundary: calc(330/375*100%);
  background-image: linear-gradient(to right, var(--primary) var(--bg-boundary), var(--light-gray) var(--bg-boundary));
  overflow-x: clip;
  padding-block: 1.25rem 1.875rem;
}

.mv__inner {
  display: grid;
  gap: 1.25rem;
  padding-left: 10.6666666667vw;
}

.mv__slider {
  position: relative;
  width: 100%;
}

.mv__slide {
  display: grid;
  gap: 1.875rem;
  grid-template-rows: auto 1fr;
}

.mv__body {
  grid-row: 2;
  padding-bottom: 2.5rem;
  padding-right: 16vw;
}

.mv__catchcopy {
  width: 13.75rem;
}

.mv__slide--2 .mv__catchcopy {
  width: 10.625rem;
}

.mv__slide--3 .mv__catchcopy {
  width: 16.25rem;
}

.mv__slide--4 .mv__catchcopy {
  width: 16.875rem;
}

.mv__catchcopy img {
  object-fit: contain;
}

.mv__text {
  color: var(--white);
  font-size: 0.9375rem;
  line-height: 2;
  margin-top: 1.25rem;
  max-width: 30rem;
  padding-left: 0.1875rem;
}

.mv__img {
  --radius: calc(16/16*1rem);
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: clip;
}

.mv__img img {
  aspect-ratio: 656/470;
  object-fit: cover;
}

.mv__pagination {
  display: flex;
  gap: 0.5625rem;
}

.mv__pagination .swiper-pagination-bullet {
  --size: calc(6/16*1rem);
  background-color: var(--gray);
  height: var(--size);
  opacity: 1;
  transition: background-color 0.3s ease;
  width: var(--size);
}

.mv__pagination .swiper-pagination-bullet-active {
  background-color: var(--white);
}

.mv__pagination.swiper-pagination-bullets, .mv__pagination.swiper-pagination-bullets.swiper-pagination-horizontal, .mv__pagination.swiper-pagination-custom, .mv__pagination.swiper-pagination-fraction {
  bottom: 0;
  left: 50%;
  left: calc(50% - 2.8125rem);
  translate: -50%;
  width: -moz-fit-content;
  width: fit-content;
}

.mv__pagination.swiper-pagination-bullets .swiper-pagination-bullet, .mv__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: initial;
}

.pagetop {
  aspect-ratio: 1/1;
  background-color: var(--primary);
  border-radius: 50%;
  display: grid;
  opacity: 0;
  place-items: center;
  position: fixed;
  right: 1.25rem;
  transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
  visibility: hidden;
  width: 2.5rem;
  z-index: var(--z-index-pagetop);
}

.pagetop::before {
  aspect-ratio: 43/25;
  background-color: var(--white);
  content: "";
  grid-column: 1/2;
  grid-row: 1/2;
  width: 35%;
  -webkit-mask-image: url(../images/chevron.svg);
          mask-image: url(../images/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;
  rotate: 180deg;
  transition: translate 0.3s ease;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
.pdf-button {
  --text-color: var(--blue);
  --base-color: var(--text-color);
  --bg-color: var(--white);
  align-items: center;
  background-color: var(--bg-color);
  border: 2px solid var(--base-color);
  border-radius: 0.625rem;
  color: var(--text-color);
  display: block grid;
  filter: drop-shadow(0 0.125rem 0.625rem rgba(0, 0, 0, 0.25));
  grid-template-areas: "icon text";
  grid-template-columns: auto 1fr;
  padding-block: 0.625rem;
  padding-inline: min(40 / var(--vw), 40 * var(--em));
  transition: background-color 0.3s ease;
}

.pdf-button--large {
  --text-color: var(--gray-dark);
  --base-color: var(--gray);
  padding-block: 0.875rem;
  width: min(100%, 20.125rem);
}

.pdf-button::before {
  aspect-ratio: 19/23;
  background-color: currentColor;
  content: "";
  grid-area: icon;
  width: 1.1875rem;
  -webkit-mask-image: url("../images/icon_pdf.svg");
          mask-image: url("../images/icon_pdf.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.pdf-button__text {
  font-size: max(12px, 0.875rem);
  font-weight: var(--fw-bold);
  grid-area: text;
  letter-spacing: 0.12em;
  line-height: 1.7857142857;
  text-align: center;
  text-box: trim-both cap alphabetic;
}
.section-title {
  display: grid;
  gap: 1.875rem;
  place-items: center;
}

.section-title__main {
  font-size: 2.1875rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.15em;
  line-height: 1.4571428571;
  text-box: trim-both cap alphabetic;
}

.section-title--white .section-title__main {
  color: var(--white);
}

.section-title--campaign .section-title__main {
  font-weight: var(--fw-bold);
}

.section-title__sub {
  color: var(--gray);
  font-family: var(--second-font);
  font-size: 15px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-box: trim-both cap alphabetic;
}

.section-title--white .section-title__sub {
  color: var(--white);
}

.section-title--campaign .section-title__sub {
  color: var(--vivid-orange);
  font-weight: var(--fw-semibold);
}

.studio {
  container-type: inline-size;
  overflow-x: clip;
  padding-top: 7.5rem;
  position: relative;
}

.studio__bg-text {
  left: 52%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.studio__inner.inner {
  position: relative;
}

.studio__blocks {
  display: grid;
  margin-top: 4.25rem;
}

.studio__block {
  display: grid;
  gap: 2.875rem min(60 / var(--vw), 60px);
  grid-template-areas: "body img" "access access";
  grid-template-columns: 1fr 58.7284482759%;
  padding-block: 3.75rem;
  position: relative;
}

.studio__block:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.studio__block-body {
  grid-area: body;
  padding-top: 1.125rem;
}

.studio__block-head {
  font-size: 1.875rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1.4333333333;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.studio__block-lead {
  font-family: var(--second-font);
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  line-height: 1.8888888889;
  margin-top: 2.6875rem;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.studio__block-button {
  margin-top: 3.625rem;
  position: relative;
}

.studio__block-img {
  filter: drop-shadow(0 0.1875rem 0.9375rem rgba(0, 0, 0, 0.05));
  grid-area: img;
  position: relative;
}

.studio__block-img img {
  aspect-ratio: 545/258;
  border-radius: 1.25rem;
  object-fit: cover;
}

.studio__block-access {
  display: grid;
  gap: 1.25rem;
  grid-area: access;
  position: relative;
}

.studio__block-access-head {
  align-items: center;
  display: flex;
  gap: 1.125rem;
  padding-left: 0.1875rem;
}

.studio__block-access-en {
  color: var(--gray);
  font-family: var(--en-font);
  font-size: 1.875rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  text-transform: uppercase;
}

.studio__block-access-place {
  align-items: center;
  display: flex;
  font-family: var(--second-font);
  font-size: 13px;
  font-weight: var(--fw-regular);
  gap: 0.3125rem;
  letter-spacing: 0.05em;
  line-height: 1.9230769231;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.3s ease;
}

.studio__block-access-place::before {
  aspect-ratio: 1;
  background-image: url("../images/icon_pin.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 1.1538461538em;
}

.studio__block-map iframe {
  aspect-ratio: 927/264;
  height: 100%;
  object-fit: cover;
}

.thanks {
  padding-block: var(--header-height) 6.25rem;
}

.thanks__inner {
  text-align: center;
}

.thanks__title {
  display: grid;
  gap: 0.625rem;
}

.thanks__title-en {
  font-family: var(--en-font);
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.2em;
}

.thanks__title-main {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.thanks__content {
  margin-top: 2.5rem;
}

.thanks__text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}

.thanks__note {
  color: #666;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 1.25rem;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.thanks__button {
  margin-top: 2.5rem;
}

.title {
  color: var(--primary);
  font-family: var(--serif-font);
  font-size: 1.25rem;
  font-weight: var(--fw-semi-bold);
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-indent: -0.05em;
}

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

.title--black {
  color: var(--black);
}

.title--small {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
}

.js-fv-anim-catchphrase span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.25rem);
}

.js-fv-anim-lead,
.js-fv-anim-button {
  opacity: 0;
  transform: translateY(0.625rem);
}

.js-fv-anim-header,
.js-fv-anim-scroll {
  opacity: 0;
}

.js-about-anim-title {
  opacity: 0;
}

.js-about-anim-lead {
  opacity: 0;
  transform: translateY(1.25rem);
}

.js-about-anim-text {
  opacity: 0;
  transform: translateY(1.25rem);
}

.js-about-anim-img1 {
  opacity: 0;
  transform: translateX(-1.875rem);
}

.js-about-anim-img2 {
  opacity: 0;
  transform: translateX(1.875rem);
}

.js-section-title .section-title__main {
  opacity: 0;
  transform: translateY(1.875rem);
}
.js-section-title .section-title__sub span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9375rem);
}

.js-stagger-item {
  opacity: 0;
  transform: translateY(1.25rem);
}

.js-fade-in {
  opacity: 0;
  transform: translateY(1.875rem);
}

.inline-block {
  display: inline-block;
}

.pc-only {
  display: block;
}

.safari {
  --size: 200px;
}

.safari__dummy {
  position: fixed;
  transform: translate3d(0, 0, -1px);
  z-index: -1;
}

.safari::before,
.safari::after {
  background: #fff;
  content: "";
  height: var(--size);
  left: 0;
  position: fixed;
  transform: translate3d(0, 0, 9999px);
  width: 100%;
  z-index: 9999;
}

.safari::before {
  top: calc(var(--size) * -1);
}

.safari::after {
  bottom: calc(var(--size) * -1);
}

.sp-only {
  display: none;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  inset: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (min-width: 768px){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (max-width: 928px){
  html {
    font-size: calc(16 / var(--inner-value) * 100vw);
  }
}

@media screen and (max-width: 767px){
  :root {
    --vw: 375 * 100vw;
  }
  :root {
    --header-height: calc(58 * var(--rem));
    --header-height-scrolled: var(--header-height);
  }
  html {
    scroll-padding-top: var(--header-height);
  }
  html {
    font-size: 16px;
  }
  .inner {
    max-width: 600px;
    padding-inline: var(--padding-sp);
  }
  .inner-large {
    max-width: 600px;
    padding-inline: var(--padding-sp);
  }
  .layout-about {
    margin-top: calc(-40 / var(--vw));
  }
  .layout-feature {
    margin-top: -6.25rem;
  }
  .layout-studio-first {
    gap: 4.375rem;
    margin-top: 1.25rem;
  }
  .layout-studio-first::before {
    content: none;
  }
  .about {
    background-image: -webkit-image-set(url("../images/bg_about-sp.avif") type("image/avif"), url("../images/bg_about-sp.jpg") type("image/jpg"));
    background-image: image-set(url("../images/bg_about-sp.avif") type("image/avif"), url("../images/bg_about-sp.jpg") type("image/jpg"));
    background-position: top;
    padding-block: calc(84 / var(--vw)) min(138 / var(--vw), 200px);
  }
  .about__container {
    --img1: calc(135 / 343 * 100cqi);
    --img2: 1fr;
    gap: 3.125rem 1.25rem;
    grid-template-areas: "content content" "img1 img2";
    grid-template-columns: var(--img1) var(--img2);
    padding-left: initial;
  }
  .about__title {
    margin-inline: auto;
    width: min(100%, 12.5rem);
  }
  .about__lead {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    text-align: center;
  }
  .about__text {
    letter-spacing: 0.05em;
    margin-top: 1.6875rem;
    text-align: center;
  }
  .about__img1 {
    margin-top: initial;
  }
  .about__img2 {
    margin-top: 7.5rem;
    width: 100%;
  }
  .access {
    padding-block: 4.5rem 6.25rem;
  }
  .access__content {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.75rem;
  }
  .access__body {
    padding-block: 2.25rem 3.1875rem;
    padding-inline: min(2.9282576867vw, 40px);
  }
  .access__address {
    font-size: 1.125rem;
  }
  .access__text {
    margin-top: 1.875rem;
  }
  .bg-text {
    font-size: 14.9333333333cqw;
    letter-spacing: 0.05em;
  }
  .box-button__wrap {
    gap: 0.9375rem;
  }
  .box-button__text {
    font-size: 1.25rem;
  }
  .campaign {
    padding-block: 3.75rem;
  }
  .campaign__header {
    grid-template-areas: "title period";
    grid-template-columns: 1fr 4.875rem;
    margin-inline: auto;
    padding-inline: initial;
    width: min(100%, 400px);
  }
  .campaign__title {
    overflow-wrap: anywhere;
    padding-top: initial;
    text-align: center;
    word-break: keep-all;
  }
  .campaign__period {
    font-size: 0.875rem;
    gap: 0.5rem 0.125rem;
    padding-bottom: initial;
  }
  .campaign__period [data-size=large] {
    font-size: 2.2857142857em;
  }
  .campaign__cards {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
    margin-top: 2.5rem;
  }
  .campaign__card {
    min-height: 10rem;
    padding-bottom: 1.875rem;
    padding-inline: 0.625rem;
  }
  .campaign__card-price {
    gap: 2.5rem;
    margin-top: 1.25rem;
  }
  .campaign__card-price[data-type=monthly] {
    gap: 3rem;
  }
  .campaign__card-price-before {
    align-items: baseline;
    font-size: 1.25rem;
  }
  .campaign__card-price-before [data-size=small] {
    font-size: 0.875rem;
  }
  .campaign__card-price-after {
    font-size: 4rem;
  }
  .campaign__card-price-after::before {
    left: -1.6875rem;
    width: 1.25rem;
  }
  .campaign__card-price-after[data-type=monthly]::before {
    left: -2.125rem;
    width: 1.375rem;
  }
  .campaign__card-price-after [data-size=small] {
    font-size: 1.25rem;
    margin-left: initial;
  }
  .campaign__card-price-after[data-type=monthly] [data-size=small] {
    margin-left: initial;
  }
  .campaign__card-option {
    padding-right: calc(10 / var(--vw));
  }
  .campaign__card-option:nth-child(2) {
    padding-left: calc(10 / var(--vw));
  }
  .campaign__card-option-price {
    gap: 1.875rem;
  }
  .campaign__card-option-price-after {
    font-size: 2.625rem;
  }
  .campaign__card-option-price-after::before {
    left: -1.4375rem;
    width: 1.125rem;
  }
  .campaign__card-option-price-after [data-size=small] {
    font-size: 1rem;
    margin-left: initial;
  }
  .campaign__card-note {
    overflow-wrap: anywhere;
    word-break: keep-all;
  }
  .campaign__bottom {
    margin-top: 4.375rem;
  }
  .campaign__note {
    overflow-wrap: anywhere;
    word-break: keep-all;
  }
  .class {
    padding-block: 6.25rem 3.75rem;
  }
  .class__cards {
    gap: 3rem 1.5rem;
    margin-top: 3.875rem;
  }
  .class__card {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .class__card-img {
    width: 100%;
  }
  .class__card-body {
    gap: 1.25rem;
  }
  .class__card-title {
    padding-block: 0.375rem;
  }
  .class__card-title-en {
    font-size: 2.5rem;
  }
  .class__card:has(.class__card-title[style*="--base-color: #D6C6A2"]) .class__card-text {
    max-width: 100%;
  }
  .contact {
    padding-block: 6.25rem 5rem;
  }
  .contact__inner.inner {
    max-width: 600px;
  }
  .contact__title {
    row-gap: 1.875rem;
  }
  .contact__title::before,
  .contact__title::after {
    width: 1.5625rem;
  }
  .contact__title::before {
    margin-right: 0.125rem;
  }
  .contact__title::after {
    margin-right: 0.5rem;
  }
  .contact__title-sub {
    font-size: 1.0625rem;
  }
  .contact__title-main {
    font-size: 1.625rem;
  }
  .contact__lead {
    margin-top: 2.5rem;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }
  .contact__schedule {
    margin-top: 3.125rem;
  }
  .cta {
    padding-block: 4.375rem;
  }
  .cta__lead {
    overflow-wrap: anywhere;
    word-break: keep-all;
  }
  .cta__buttons {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
  }
  .faq-item__title {
    padding-block: 1.25rem;
  }
  .faq {
    padding-block: 6.25rem;
  }
  .faq__inner.inner {
    max-width: 600px;
  }
  .faq__list {
    margin-top: 2.5rem;
  }
  .feature {
    background-image: -webkit-image-set(url(../images/bg_feature-sp.avif) type("image/avif"), url(../images/bg_feature-sp.png) type("image/png"));
    background-image: image-set(url(../images/bg_feature-sp.avif) type("image/avif"), url(../images/bg_feature-sp.png) type("image/png"));
    padding-block: 5.625rem;
  }
  .feature__cards {
    grid-template-columns: repeat(auto-fit, minmax(269px, 1fr));
    margin-top: 2.5rem;
  }
  .feature__card {
    gap: 1.875rem;
    grid-row: span 3;
    grid-template-columns: 1fr;
    grid-template-rows: subgrid;
    padding-bottom: 1.875rem;
  }
  .feature__card-img img {
    aspect-ratio: 303/155;
  }
  .feature__card-body {
    gap: 1.375rem;
    grid-row: span 3;
    grid-template-rows: subgrid;
    padding-inline: 0.4375rem;
  }
  .feature__card-title {
    overflow-wrap: anywhere;
    text-align: center;
    word-break: keep-all;
  }
  .feature__card-text {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
  .first {
    padding-bottom: 3.75rem;
  }
  .first__special {
    margin-top: 2.5rem;
    padding-bottom: 1.875rem;
    width: min(100%, 400px);
  }
  .first__special-title {
    margin-top: 1.25rem;
  }
  .first__flow {
    padding-block: 2.5rem 3.125rem;
    padding-inline: 1.25rem;
  }
  .first__flow-cards {
    --gap: calc(37 * var(--rem));
    grid-template-columns: minmax(0, 343px);
    padding-left: 1rem;
  }
  .first__flow-card {
    align-items: center;
    gap: 2.125rem;
    grid-template-columns: var(--icon-size) 1fr;
    justify-items: start;
  }
  .first__flow-card:not(:first-of-type)::before {
    left: calc(var(--icon-size) / 2);
    rotate: 90deg;
    top: calc(var(--gap) / 2 * -1);
    translate: -50% -50%;
  }
  .first__flow-card-text {
    font-size: 1.0625rem;
    line-height: 1.1764705882;
  }
  .first__flow-belongings {
    margin-top: 2.5rem;
    padding-inline: initial;
  }
  .first__flow-list {
    gap: 0.5rem;
    margin-top: 1.4375rem;
  }
  .footer {
    padding-block: 1.5625rem 2.5rem;
  }
  .footer__container {
    flex-direction: column;
    gap: 2.75rem;
  }
  .footer__stores {
    gap: 2.375rem;
  }
  .footer__store {
    gap: 1.25rem;
  }
  .footer__bottom {
    margin-top: 3.125rem;
  }
  .form__submit {
    margin-top: 2.5rem;
  }
  .fv {
    align-items: end;
    grid-template-rows: 1fr auto auto;
  }
  .fv__img {
    max-height: 48.75rem;
    -webkit-mask-image: url("../images/mask_fv-sp.png");
            mask-image: url("../images/mask_fv-sp.png");
  }
  .fv__img img {
    aspect-ratio: 375/660;
  }
  .fv__inner.inner {
    grid-area: 1/1/2/-1;
    max-width: calc(600px + var(--padding-sp) * 2);
  }
  .fv__catchphrase {
    filter: drop-shadow(0 0.125rem 0.3125rem rgba(0, 0, 0, 0.4));
    font-size: 2.3125rem;
    line-height: 1.4594594595;
  }
  .fv__lead {
    font-size: 14px;
    line-height: 1.7857142857;
  }
  .fv__button {
    text-align: center;
  }
  .fv__scroll {
    grid-area: 2/1/3/-1;
    margin-top: 2.5625rem;
  }
  .header {
    background-color: color-mix(in oklab, var(--bg-base) 78%, transparent);
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.08);
  }
  .header__inner.inner {
    padding-right: initial;
  }
  .header__logo {
    filter: none;
    width: min(100%, 10.6875rem);
  }
  .header.is-scrolled .header__logo {
    filter: none;
  }
  .header__hamburger {
    --base-color: var(--gray-dark);
    --line-width: calc(31*var(--rem));
    --close-line-width: calc(36*var(--rem));
    border: none;
    display: grid;
    height: 100%;
    margin-left: auto;
    place-content: center;
    transition: rotate 0.4s ease-out;
    width: 3.9375rem;
  }
  .header__drawer {
    --top-position: var(--header-height);
    display: block;
    inset: var(--top-position) 0 0;
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    transition: background-color 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
    visibility: hidden;
  }
  .instructor {
    padding-block: 7.5rem 5.625rem;
  }
  .instructor__bg-text {
    left: 50%;
    top: 5rem;
  }
  .instructor__inner.inner-large {
    max-width: 600px;
  }
  .instructor__title {
    font-size: 1.4375rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.05em;
    line-height: 1.4347826087;
  }
  .instructor__cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 3.75rem;
  }
  .mv {
    --bg-boundary: calc(1078/1366*100%);
    padding-block: 2rem 2.375rem;
  }
  .mv__inner {
    grid-template-columns: 8.2723279649vw 1fr;
    padding-inline: initial;
  }
  .mv__slider {
    grid-column: 2/3;
  }
  .mv__slide {
    align-items: center;
    gap: min(20px, 1.4641288433vw);
    grid-template-columns: 1fr 53.203568532%;
    grid-template-rows: initial;
  }
  .mv__body {
    grid-row: initial;
    padding-bottom: 5rem;
    padding-right: initial;
  }
  .mv__slide--2 .mv__body {
    padding-bottom: 3.1875rem;
    padding-top: 2.1875rem;
  }
  .mv__slide--3 .mv__body {
    padding-bottom: 3.4375rem;
    padding-top: 2.1875rem;
  }
  .mv__slide--4 .mv__body {
    padding-bottom: 2.8125rem;
    padding-top: 2.1875rem;
  }
  .mv__catchcopy {
    width: min(24.0117130307vw, 328px);
  }
  .mv__slide--2 .mv__catchcopy {
    width: clamp(180px, 16.6910688141vw, 228px);
  }
  .mv__slide--3 .mv__catchcopy {
    width: clamp(260px, 29.2825768668vw, 400px);
  }
  .mv__slide--4 .mv__catchcopy {
    width: min(36.383601757vw, 497px);
  }
  .mv__text {
    font-size: clamp(14px, 1.317715959vw, 18px);
    line-height: 2.2777777778;
    margin-top: 1.75rem;
    max-width: 31.25rem;
  }
  .mv__slide--2 .mv__text {
    margin-top: 2.625rem;
  }
  .mv__slide--3 .mv__text {
    margin-top: 2.625rem;
  }
  .mv__slide--4 .mv__text {
    margin-top: 2.375rem;
  }
  .mv__pagination {
    text-align: left;
  }
  .mv__pagination.swiper-pagination-bullets, .mv__pagination.swiper-pagination-bullets.swiper-pagination-horizontal, .mv__pagination.swiper-pagination-custom, .mv__pagination.swiper-pagination-fraction {
    bottom: min(35px, 2.5622254758vw);
    left: 0.125rem;
    translate: initial;
  }
  .pagetop {
    width: 3.75rem;
  }
  .pdf-button {
    padding-inline: min(30 / var(--vw), 30 * var(--em));
  }
  .pdf-button--large {
    padding-inline: min(44 / var(--vw), 44 * var(--em));
    width: 100%;
  }
  .pdf-button::before {
    aspect-ratio: 1;
    width: 1.25rem;
    -webkit-mask-image: url("../images/icon_pdf-sp.svg");
            mask-image: url("../images/icon_pdf-sp.svg");
  }
  .section-title {
    gap: 1.25rem;
  }
  .section-title__main {
    font-size: 1.4375rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.05em;
    line-height: 1.4347826087;
  }
  .section-title--campaign .section-title__main {
    font-size: 1.3125rem;
  }
  .studio {
    padding-top: calc(40 / var(--vw));
  }
  .studio__bg-text {
    left: 50%;
  }
  .studio__blocks {
    margin-top: 0.625rem;
  }
  .studio__block {
    gap: initial;
    grid-template-areas: "img" "head" "lead" "access" "button";
    grid-template-columns: 1fr;
    padding-block: 1.875rem;
  }
  .studio__block:not(:first-of-type) {
    border: none;
  }
  .studio__block::before {
    background-color: #F5F2EC;
    content: "";
    inset-block: 12.8913443831% 0;
    inset-inline: calc(50% - 50cqw);
    position: absolute;
  }
  .studio__block-body {
    display: contents;
  }
  .studio__block-head {
    font-size: 1.25rem;
    grid-area: head;
    margin-top: 1.5rem;
  }
  .studio__block-lead {
    font-size: 0.9375rem;
    grid-area: lead;
    line-height: 1.8666666667;
    margin-top: 1.25rem;
  }
  .studio__block-button {
    grid-area: button;
    margin-inline: auto;
    margin-top: 1.5rem;
    width: min(100%, 360px);
  }
  .studio__block-img img {
    border-radius: 0.625rem;
  }
  .studio__block-access {
    margin-top: 2.0625rem;
  }
  .studio__block-access-head {
    gap: 1rem;
    padding-left: 0.25rem;
  }
  .studio__block-access-en {
    font-size: 1.25rem;
  }
  .studio__block-map {
    margin-inline: calc(50% - 50cqw);
  }
  .studio__block-map iframe {
    aspect-ratio: 375/141;
  }
  .thanks {
    padding-block: calc(var(--header-height) + 30px) 4.375rem;
  }
  .thanks__text {
    overflow-wrap: anywhere;
    word-break: keep-all;
  }
  .title {
    font-size: clamp(20px, 2.3426061493vw, 32px);
  }
  .title--small {
    font-size: clamp(18px, 1.756954612vw, 24px);
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover){
  .box-button:hover {
    background-color: color-mix(in oklab, var(--bg-color) 90%, var(--black));
  }
  .button:hover {
    background-color: color-mix(in oklab, var(--orange) 90%, var(--black));
  }
  .faq-item:hover .faq-item__title {
    color: var(--hover-color);
  }
  .faq-item:hover .faq-item__title::after {
    background-color: var(--hover-color);
  }
  .faq-item__text a:hover {
    color: var(--orange);
  }
  .footer__title:hover {
    opacity: 0.7;
  }
  .footer__store-address-link:hover {
    opacity: 0.7;
  }
  .footer__link:hover {
    opacity: 0.7;
  }
  .form__submit-button:hover {
    background-color: color-mix(in oklab, var(--orange) 90%, var(--black));
  }
  .header__logo-link:hover {
    opacity: 0.7;
  }
  .header__logo:hover {
    opacity: 0.6;
  }
  .header__nav-link:hover .header__nav-text {
    text-shadow: 0 0 0 var(--red), 0 1.5em 0 var(--red);
  }
  .pagetop:hover {
    opacity: 0.8;
  }
  .pagetop:hover::before {
    translate: 0 -0.125rem;
  }
  .pdf-button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
  }
  .studio__block-access-place: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 print{
  :where(mark) {
    border-style: dotted;
    /*
    * 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;
  }
}