@charset "UTF-8";
/*! kiso.css v1.2.4 | 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%;
  text-size-adjust: 100%;
  /*
  * Prevents layout shift caused by the appearance or disappearance of the scrollbar.
  * Starting with Chrome 145, specifying `scrollbar-gutter: stable` will cause vw to be calculated without considering the scrollbar, which will also prevent horizontal scrolling.
  */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

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

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

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

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  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):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;
  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;
  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

:where(abbr[title]) {
  /*
  * The `<abbr>` element with the `title` attribute isn't helpful regarding accessibility because support is inconsistent, and it's only accessible to some users.
  * This rule shows a dotted underline on abbreviations in all browsers (there's a bug in Safari) and changes the cursor.
  * @see https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
  */
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-inset: auto;
  cursor: help;
}

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, audio, canvas, model, iframe, embed, object) {
  /* 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(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

: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:lang(en)) {
  /* Prevents the last line of text from ending with a single word, which can look awkward (known as an orphan). */
  text-wrap: pretty;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@property --zoom-factor {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
.zoom-wrapper {
  --_min-viewport-width: 768px; /* viewportの最小値を下回ったら縮小をやめる */
  --_max-viewport-width: 1400px; /* viewportの最大値を上回ったら拡大をやめる */
  --_zoom-value: clamp(
    tan(atan2(var(--_min-viewport-width), var(--_max-viewport-width))),
    tan(atan2(var(--zoom-factor), var(--_max-viewport-width))),
    1
  );
  --zoom-factor: clamp(
    var(--_min-viewport-width),
    100dvi,
    var(--_max-viewport-width)
  );
  zoom: var(--_zoom-value);
  -webkit-text-size-adjust: initial; /* iOS Safariのバグを修正 */
  /* 768px以下では100%のズーム値を適用 */
}
@media (max-width: 768px) {
  .zoom-wrapper {
    zoom: 1;
  }
}

html {
  font-family: "Noto Serif JP", "Cormorant Garamond", "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 62.5%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: #121212;
  background: #f6f6f6;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  overflow-x: clip;
}
@media (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}

p {
  line-height: 2.1;
}

a, a:link, a:visited {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 767px) {
  button,
  [role=button],
  button:focus,
  button:focus-visible,
  [role=button]:focus,
  [role=button]:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
  }
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
  transition: 0.3s;
}

.container {
  margin: 0 auto;
  width: 95.56%;
  max-width: 1376px;
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .container {
    width: 90%;
  }
}

.inner {
  margin: 0 auto;
  max-width: 1140px;
  width: 90%;
  box-sizing: border-box;
  height: auto;
}

main {
  display: block;
}

.commonTtl01 hgroup span.en {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.05em;
}
.commonTtl01 hgroup span.en.wh {
  color: #fff;
}
.commonTtl01 hgroup span.en.primary {
  color: #7da7df;
}
.commonTtl01 hgroup h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.375;
  margin-bottom: 20px;
}
.commonTtl01 hgroup h2.wh {
  color: #fff;
}
.commonTtl01 hgroup h2.yl {
  color: #ee6b7e;
}
.commonTtl01 p {
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5625;
}
.commonTtl01 p.wh {
  color: #fff;
}
.commonTtl01 p.primary {
  color: #7da7df;
}
@media (max-width: 480px) {
  .commonTtl01 hgroup span.en {
    font-size: 2rem;
  }
  .commonTtl01 hgroup h2 {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .commonTtl01 p {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}
.commonTtl01.js-common-ttl hgroup span.en,
.commonTtl01.js-common-ttl hgroup h2,
.commonTtl01.js-common-ttl > p {
  opacity: 0;
  transform: translateY(42px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.3, 0.64, 0.34, 0.97), clip-path 0.72s cubic-bezier(0.3, 0.64, 0.34, 0.97);
  will-change: opacity, transform, clip-path;
}
.commonTtl01.js-common-ttl hgroup h2 {
  transition-delay: 0.12s;
}
.commonTtl01.js-common-ttl > p {
  transition-delay: 0.24s;
}
.commonTtl01.js-common-ttl.is-show hgroup span.en,
.commonTtl01.js-common-ttl.is-show hgroup h2,
.commonTtl01.js-common-ttl.is-show > p {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}
@media (prefers-reduced-motion: reduce) {
  .commonTtl01.js-common-ttl hgroup span.en,
  .commonTtl01.js-common-ttl hgroup h2,
  .commonTtl01.js-common-ttl > p {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

.commonTtl02 {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.7115384615;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .commonTtl02 {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}

.commonSectionTitleEn {
  margin: 0;
  font-family: "Libre Caslon Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(86px, 10vw, 123px);
  line-height: 1.3;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
}

.commonSectionTitleEnLarge {
  font-size: clamp(125px, 15vw, 178px);
}

@media (max-width: 900px) {
  .commonSectionTitleEn {
    font-size: 10rem;
  }
  .commonSectionTitleEnLarge {
    font-size: 12rem;
  }
}
@media (max-width: 480px) {
  .commonSectionTitleEn {
    font-size: 8rem;
  }
  .commonSectionTitleEnLarge {
    font-size: 10rem;
  }
}
.js-section-title {
  opacity: 0;
  transform: translateY(42px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.3, 0.64, 0.34, 0.97), clip-path 0.72s cubic-bezier(0.3, 0.64, 0.34, 0.97);
  will-change: opacity, transform, clip-path;
}
.js-section-title.is-show {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

/* arrow */
.arrow_ani .arrow {
  margin: auto;
  z-index: 10;
}
.arrow_ani .arrow i {
  width: 20px;
  height: 14px;
  overflow: hidden;
  display: block;
  position: relative;
}
.arrow_ani .arrow i::before, .arrow_ani .arrow i::after {
  content: "";
  margin: auto;
  width: 9px;
  height: 14px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-duration: 0.7s;
  transform: translateX(0);
  opacity: 1;
}
.arrow_ani .arrow i::before {
  background: url("../img/common/arrow.svg") no-repeat center center/contain;
}
.arrow_ani .arrow i::after {
  background: url("../img/common/arrow.svg") no-repeat center center/contain;
  transform: translateX(-100%);
  opacity: 0;
}
.arrow_ani:hover .arrow i::before {
  transform: translateX(100%);
  opacity: 0;
}
.arrow_ani:hover .arrow i::after {
  transform: translateX(0);
  opacity: 1;
}

@keyframes arrowLineLink-arrow-return {
  0% {
    transform: translateX(0);
  }
  42% {
    transform: translateX(calc(-1 * var(--arrow-line-link-shift)));
  }
  100% {
    transform: translateX(0);
  }
}
.commonBtn {
  --commonBtn-padding-x: 15px;
  margin-top: 1em;
}
.commonBtn a,
.commonBtn button.commonBtn__trigger, .commonBtn__visual, .commonBtn.noLink {
  --commonBtn-gap: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  width: 288px;
  max-width: 100%;
  background: transparent;
  border: none;
  border-bottom: solid 2px #121212;
  padding: 0 var(--commonBtn-padding-x) 0.5em;
  margin: 0;
  justify-content: space-between;
  cursor: pointer;
  text-align: inherit;
  overflow: visible;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.commonBtn a span.txt,
.commonBtn button.commonBtn__trigger span.txt, .commonBtn__visual span.txt, .commonBtn.noLink span.txt {
  display: block;
  flex-shrink: 0;
  font: inherit;
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: 0.05em;
  color: inherit;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: normal;
}
.commonBtn a .light,
.commonBtn button.commonBtn__trigger .light, .commonBtn__visual .light, .commonBtn.noLink .light {
  position: relative;
  flex-shrink: 0;
  width: 51px;
  height: 17px;
  overflow: visible;
  transform: translateX(0);
  will-change: transform;
  pointer-events: none;
}
.commonBtn a .light span,
.commonBtn button.commonBtn__trigger .light span, .commonBtn__visual .light span, .commonBtn.noLink .light span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 51px;
  height: 17px;
  margin: 0;
  background-color: currentColor;
  mask: url("../img/common/btn_arrow.svg") no-repeat right center/contain;
  -webkit-mask: url("../img/common/btn_arrow.svg") no-repeat right center/contain;
  transform: translateX(0);
}
.commonBtn a:hover,
.commonBtn button.commonBtn__trigger:hover, .commonBtn__visual:hover, .commonBtn.noLink:hover {
  opacity: 1;
}
.commonBtn a:hover .light,
.commonBtn button.commonBtn__trigger:hover .light, .commonBtn__visual:hover .light, .commonBtn.noLink:hover .light {
  animation: commonBtn-arrow-bounce 0.65s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.commonBtn button.commonBtn__trigger {
  appearance: none;
}
.commonBtn.noLink {
  cursor: default;
  list-style: none;
}
.commonBtn.noLink:hover .light {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .commonBtn a:hover .light,
  .commonBtn button.commonBtn__trigger:hover .light, .commonBtn__visual:hover .light, .commonBtn.noLink:hover .light {
    animation: none;
    transform: translateX(calc(-1 * var(--commonBtn-gap, 0px)));
  }
}
.commonBtn.wh a,
.commonBtn.wh button.commonBtn__trigger,
.commonBtn.wh .commonBtn__visual, .commonBtn.wh.noLink {
  color: #fff;
  border-bottom-color: #fff;
}
.commonBtn.wh a .light span,
.commonBtn.wh button.commonBtn__trigger .light span,
.commonBtn.wh .commonBtn__visual .light span, .commonBtn.wh.noLink .light span {
  transition: background-color 0.35s ease;
}
.commonBtn.wh a:hover,
.commonBtn.wh button.commonBtn__trigger:hover,
.commonBtn.wh .commonBtn__visual:hover, .commonBtn.wh.noLink:hover {
  color: rgb(128, 221, 255);
  border-bottom-color: rgb(128, 221, 255);
}
.commonBtn.wh a:hover .light span,
.commonBtn.wh button.commonBtn__trigger:hover .light span,
.commonBtn.wh .commonBtn__visual:hover .light span, .commonBtn.wh.noLink:hover .light span {
  background-color: rgb(128, 221, 255);
}
.commonBtn.primary a,
.commonBtn.primary button.commonBtn__trigger,
.commonBtn.primary .commonBtn__visual, .commonBtn.primary.noLink {
  color: #7da7df;
  border-bottom-color: #7da7df;
}
.commonBtn.primary a .light span,
.commonBtn.primary button.commonBtn__trigger .light span,
.commonBtn.primary .commonBtn__visual .light span, .commonBtn.primary.noLink .light span {
  transition: background-color 0.35s ease;
}
.commonBtn.primary a:hover,
.commonBtn.primary button.commonBtn__trigger:hover,
.commonBtn.primary .commonBtn__visual:hover, .commonBtn.primary.noLink:hover {
  color: rgb(128, 221, 255);
  border-bottom-color: rgb(128, 221, 255);
}
.commonBtn.primary a:hover .light span,
.commonBtn.primary button.commonBtn__trigger:hover .light span,
.commonBtn.primary .commonBtn__visual:hover .light span, .commonBtn.primary.noLink:hover .light span {
  background-color: rgb(128, 221, 255);
}
.commonBtn.active .commonBtn__visual, .commonBtn.active.noLink {
  color: rgb(128, 221, 255);
  border-bottom-color: rgb(128, 221, 255);
}
.commonBtn.w327 a,
.commonBtn.w327 button.commonBtn__trigger,
.commonBtn.w327 .commonBtn__visual, .commonBtn.w327.noLink {
  width: 327px;
}
.commonBtn.fit a,
.commonBtn.fit button.commonBtn__trigger,
.commonBtn.fit .commonBtn__visual, .commonBtn.fit.noLink {
  width: fit-content;
  min-width: 0;
}
.commonBtn.sm a span.txt,
.commonBtn.sm button.commonBtn__trigger span.txt,
.commonBtn.sm .commonBtn__visual span.txt, .commonBtn.sm.noLink span.txt {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .commonBtn.sm a span.txt,
  .commonBtn.sm button.commonBtn__trigger span.txt,
  .commonBtn.sm .commonBtn__visual span.txt, .commonBtn.sm.noLink span.txt {
    font-size: 1.4rem;
  }
}
.commonBtn.sm a .light,
.commonBtn.sm button.commonBtn__trigger .light,
.commonBtn.sm .commonBtn__visual .light, .commonBtn.sm.noLink .light {
  width: 28px;
  height: 9px;
}
.commonBtn.sm a .light span,
.commonBtn.sm button.commonBtn__trigger .light span,
.commonBtn.sm .commonBtn__visual .light span, .commonBtn.sm.noLink .light span {
  width: 28px;
  height: 9px;
}
.commonBtn.jp a span.txt,
.commonBtn.jp button.commonBtn__trigger span.txt,
.commonBtn.jp .commonBtn__visual span.txt, .commonBtn.jp.noLink span.txt {
  font-family: inherit;
  font-weight: 700;
}
.commonBtn.en a span.txt,
.commonBtn.en button.commonBtn__trigger span.txt,
.commonBtn.en .commonBtn__visual span.txt, .commonBtn.en.noLink span.txt {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
}

@keyframes hover-in {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  100% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@keyframes hover-out {
  0% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
/*=====================================================================
	cheader（下層ページ共通ヘッダー）
=====================================================================*/
.cHeader {
  position: relative;
  padding: clamp(106px, 22.0836vw, 265px) 0 clamp(32px, 6.6672vw, 80px);
}
.cHeader .cHeaderTitle {
  position: relative;
}
.cHeader .cHeaderTitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #121212;
  transform: scaleX(0);
  transform-origin: left center;
}
.cHeader .cHeaderTitle::after {
  animation: commonLineXIn 1.05s cubic-bezier(0.18, 0.72, 0.18, 1) 0.18s both;
}
.cHeader .cHeaderTitle {
  margin: 0;
  padding: 0 0 clamp(26px, 5.4168vw, 65px);
  font-family: "Libre Caslon Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(86px, 10vw, 123px);
  line-height: 1;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (prefers-reduced-motion: reduce) {
  .cHeader .cHeaderTitle::after {
    animation: none;
    transform: scaleX(1);
  }
}
.cHeader .cHeaderLead {
  margin: clamp(38.4px, 8.0004vw, 96px) 0 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.035em;
  font-feature-settings: "palt";
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .cHeader {
    padding: 150px 0 66px;
  }
  .cHeader .cHeaderTitle {
    font-size: 7.2rem;
    line-height: 1.2;
    padding-bottom: 30px;
  }
  .cHeader .cHeaderLead {
    font-size: 1.6rem;
    line-height: 1.7272727273;
    letter-spacing: 0;
    margin-top: 32px;
  }
}
@media (max-width: 480px) {
  .cHeader.contact .cHeaderLead {
    font-size: 1.6rem;
  }
}

.cHeader.cHeader--whiteSurface {
  background-color: #fff;
}

.cheaderHero {
  position: relative;
  background: #fff;
}
.cheaderHero__image {
  position: relative;
  z-index: 0;
  margin: 0;
  width: 100%;
  height: clamp(246px, 51.2496vw, 615px);
  overflow: hidden;
}
.cheaderHero__image picture,
.cheaderHero__image img {
  display: block;
  width: 100%;
  height: 100%;
}
.cheaderHero__image img {
  object-fit: cover;
  object-position: center top;
}
.cheaderHero__inner {
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: 1;
  translate: 0 50%;
  pointer-events: none;
}
.cheaderHero__message {
  width: 58%;
  max-width: 646px;
  padding: clamp(32.4px, 5.25vw, 54px) clamp(32.4px, 5.25vw, 54px) clamp(28.8px, 4.6662vw, 48px);
  border-radius: 0 5px 5px 0;
  background: #fff;
  color: #7da7df;
  box-sizing: border-box;
  pointer-events: auto;
}
.cheaderHero__message h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.cheaderHero__message p {
  margin: clamp(14.4px, 2.3338vw, 24px) 0 0;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .cheaderHero__message {
    width: 72%;
    max-width: 640px;
  }
}
@media (max-width: 768px) {
  .cheaderHero {
    margin-top: clamp(24px, 3.8892vw, 40px);
  }
  .cheaderHero__image {
    height: 62vw;
    min-height: 320px;
  }
  .cheaderHero__inner {
    position: relative;
    left: auto;
    bottom: auto;
    translate: none;
    width: 100%;
    margin-top: -54px;
  }
  .cheaderHero__message {
    width: 100%;
    padding: 30px 24px;
    border-radius: 0 5px 5px 0;
  }
  .cheaderHero__message h2 {
    font-size: 2rem;
    line-height: 1.55;
  }
  .cheaderHero__message p {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .cheaderHero__image {
    height: 78vw;
    min-height: 290px;
  }
  .cheaderHero__image img {
    object-position: 60% top;
  }
  .cheaderHero__message h2 {
    font-size: 1.8rem;
  }
}

/*=====================================================================
	header
=====================================================================*/
.siteHeader {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9990;
  width: 100%;
  background: transparent;
  color: #121212;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  pointer-events: none;
  transition: color 0.45s ease, opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
}
.siteHeader a,
.siteHeader button {
  pointer-events: auto;
}
.siteHeader__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: clamp(30px, 6.2496vw, 75px) minmax(0, 1fr) 32px;
  align-items: flex-start;
  column-gap: clamp(36px, 5.8338vw, 60px);
  width: 100%;
  padding: clamp(22.8px, 3.6946vw, 38px) clamp(26.4px, 4.2784vw, 44px) 0 clamp(22.8px, 3.6946vw, 38px);
  box-sizing: border-box;
}
.siteHeader__logo {
  grid-column: 1;
  width: clamp(35.2px, 7.3332vw, 88px);
  margin: 0;
}
.siteHeader__logo a,
.siteHeader__logo img {
  display: block;
  width: 100%;
  transition: filter 0.45s ease;
}
.siteHeader__nav {
  grid-column: 2;
  justify-self: end;
}
.siteHeader__navList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 5.8338vw, 60px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.siteHeader__navLink {
  display: inline-block;
  color: currentColor;
  font-family: "Libre Caslon Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.siteHeader__navLink:hover {
  opacity: 0.66;
}
.siteHeader__menuBtn {
  grid-column: 3;
  justify-self: end;
  display: grid;
  grid-template-rows: repeat(6, 2px);
  align-content: space-between;
  width: 32px;
  height: 20px;
  margin: clamp(2.4px, 0.3892vw, 4px) 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  appearance: none;
}
.siteHeader__menuBtn span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.35s ease;
}
.siteHeader.is-hidden {
  transform: translateY(-100%);
}
.siteHeader__drawer {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 29.9vw;
  width: 100%;
  height: 100svh;
  background: #121212;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s cubic-bezier(0.3, 0.64, 0.34, 0.97);
  pointer-events: none;
}
.siteHeader__drawerMain {
  position: relative;
  min-height: 100svh;
  padding: 38px 7.2vw 64px 30px;
  box-sizing: border-box;
  background: #121212;
  display: flex;
  align-items: center;
}
.siteHeader__drawerLogo {
  display: none;
  width: clamp(74px, 6.4vw, 128px);
  margin: 0;
}
.siteHeader__drawerLogo a,
.siteHeader__drawerLogo img {
  display: block;
  width: 100%;
}
.siteHeader__drawerLogo img {
  filter: brightness(0) invert(1);
}
.siteHeader__drawerSide {
  position: absolute;
  left: clamp(27px, 4.375vw, 45px);
  top: 52%;
  width: clamp(55.2px, 11.4996vw, 138px);
  margin: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.siteHeader__drawerSide img {
  display: block;
  width: 100%;
  filter: brightness(0) invert(1);
}
.siteHeader__drawerNav {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1.1fr;
  column-gap: clamp(54px, 6.2vw, 122px);
  width: min(760px, 74%);
  margin: 56px 0 0 14.4vw;
}
.siteHeader__drawerGroup {
  margin: 0 0 38px;
}
.siteHeader__drawerGroup--top {
  display: none;
}
.siteHeader__drawerHead {
  margin: 0 0 24px;
  font-family: "Libre Caslon Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
}
.siteHeader__drawerHead a {
  color: white;
  text-decoration: none;
}
.siteHeader__drawerList {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.siteHeader__drawerList a {
  color: #a2a2a2;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
  font-feature-settings: "palt";
  text-decoration: none;
}
.siteHeader__drawerBrand {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: center;
  justify-items: center;
  min-height: 100svh;
  padding: 30px 34px 44px;
  box-sizing: border-box;
  overflow: hidden;
  background: #121212;
}
.siteHeader__drawerVideo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siteHeader__drawerClose {
  display: none;
  position: absolute;
  z-index: 1;
  top: 32px;
  right: 28px;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.siteHeader__drawerClose span {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.siteHeader__drawerClose span:nth-child(1) {
  transform: rotate(32deg);
}
.siteHeader__drawerClose span:nth-child(2) {
  transform: rotate(-32deg);
}
.siteHeader__drawerAnniversary {
  position: absolute;
  top: 50%;
  right: 7.1vw;
  z-index: 1;
  width: clamp(81.6px, 17.0004vw, 204px);
  margin: 0;
  transform: translateY(-50%);
}
.siteHeader__drawerAnniversary img {
  display: block;
  width: 100%;
}
.siteHeader__drawerCopyright {
  grid-row: 3;
  position: relative;
  z-index: 1;
  margin: 15.2vw 0 0;
  color: #fff;
  font-family: "Libre Caslon Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.2;
  letter-spacing: 0.035em;
  font-feature-settings: "palt";
  text-align: center;
}
.siteHeader.is-menu-open {
  color: #fff;
}
.siteHeader.is-menu-open .siteHeader__nav {
  opacity: 0;
  visibility: hidden;
}
.siteHeader.is-menu-open .siteHeader__drawer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.siteHeader.is-menu-open .siteHeader__logo img {
  filter: brightness(0) invert(1);
}
.siteHeader.is-menu-open .siteHeader__navLink,
.siteHeader.is-menu-open .siteHeader__menuBtn {
  color: #fff;
}
.siteHeader.is-menu-open .siteHeader__menuBtn span {
  background: #fff;
}
.siteHeader.is-menu-open .siteHeader__menuBtn span:nth-child(1),
.siteHeader.is-menu-open .siteHeader__menuBtn span:nth-child(2),
.siteHeader.is-menu-open .siteHeader__menuBtn span:nth-child(5),
.siteHeader.is-menu-open .siteHeader__menuBtn span:nth-child(6) {
  opacity: 0;
}
.siteHeader.is-menu-open .siteHeader__menuBtn span:nth-child(3) {
  transform: translateY(2px) rotate(32deg);
}
.siteHeader.is-menu-open .siteHeader__menuBtn span:nth-child(4) {
  transform: translateY(-2px) rotate(-32deg);
}

body.top .siteHeader {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
}

body.top.is-fv-header-ready .siteHeader {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.top.is-fv-header-hidden .siteHeader {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

body.top.is-fv-header-white .siteHeader {
  color: rgba(255, 255, 255, 0.9);
}
body.top.is-fv-header-white .siteHeader__navLink,
body.top.is-fv-header-white .siteHeader__menuBtn {
  color: rgba(255, 255, 255, 0.9);
}
body.top.is-fv-header-white .siteHeader__menuBtn span {
  background: rgba(255, 255, 255, 0.9);
}
body.top.is-fv-header-white .siteHeader__logo img {
  filter: brightness(0) invert(1);
}

body:not(.top) .siteHeader {
  color: #121212;
  opacity: 1;
  visibility: visible;
  transform: none;
}
body:not(.top) .siteHeader.is-hidden {
  transform: translateY(-100%);
}

body.is-menu-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .siteHeader__inner {
    grid-template-columns: 70px 1fr 44px;
    padding: 20px;
  }
  .siteHeader__nav {
    display: none;
  }
  .siteHeader__drawer {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    overflow-y: auto;
    background: #121212;
  }
  .siteHeader__drawerMain {
    flex: 1 1 auto;
    min-height: auto;
    padding: 0 45px 47px;
  }
  .siteHeader__drawerNav {
    padding-top: 132px;
  }
  .siteHeader__drawerLogo {
    display: none;
  }
  .siteHeader__drawerSide {
    display: none;
  }
  .siteHeader__drawerBrand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    grid-template-rows: unset;
    min-height: 268px;
    padding: 66px 36px 33px;
  }
  .siteHeader__drawerClose {
    display: none;
  }
  .siteHeader__drawerAnniversary {
    position: relative;
    top: auto;
    right: auto;
    width: 168px;
    margin: 0;
    transform: none;
  }
  .siteHeader__drawerCopyright {
    grid-row: auto;
    margin-top: 22px;
    font-size: 1.2rem;
  }
  .siteHeader__menuBtn {
    width: 32px;
  }
}
@media (max-width: 768px) {
  .siteHeader__logo {
    display: block;
    width: 58px;
  }
  .siteHeader__drawerNav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    align-content: start;
    column-gap: 40px;
    row-gap: 0;
    width: 100%;
    margin: 0;
  }
  .siteHeader__drawerMain {
    display: block;
  }
  .siteHeader__drawerCol {
    display: contents;
  }
  .siteHeader__drawerGroup {
    margin-bottom: 37px;
  }
  .siteHeader__drawerGroup--top {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }
  .siteHeader__drawerGroup--news {
    grid-column: 2;
    grid-row: 1;
  }
  .siteHeader__drawerGroup--message {
    grid-column: 1;
    grid-row: 2;
  }
  .siteHeader__drawerGroup--activity {
    grid-column: 2;
    grid-row: 2;
  }
  .siteHeader__drawerGroup--projects {
    grid-column: 1;
    grid-row: 3/span 5;
  }
  .siteHeader__drawerGroup--history {
    grid-column: 2;
    grid-row: 3;
  }
  .siteHeader__drawerGroup--company {
    grid-column: 2;
    grid-row: 4;
  }
  .siteHeader__drawerGroup--recruit {
    grid-column: 2;
    grid-row: 5;
  }
  .siteHeader__drawerGroup--contact {
    grid-column: 2;
    grid-row: 6;
  }
  .siteHeader__drawerHead {
    margin-bottom: 23px;
    font-size: 3.1rem;
  }
  .siteHeader__drawerList {
    gap: 14px;
  }
  .siteHeader__drawerList a {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .siteHeader__inner {
    padding: 20px;
    align-items: center;
  }
  .siteHeader__logo {
    width: 44px;
  }
  .siteHeader__drawerMain {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 48px;
  }
  .siteHeader__drawerNav {
    column-gap: 28px;
  }
  .siteHeader__drawerGroup {
    margin-bottom: 22px;
  }
  .siteHeader__drawerHead {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .siteHeader__drawerList {
    gap: 4px;
  }
  .siteHeader__drawerList a {
    font-size: 1.5rem;
  }
  .siteHeader__drawerBrand {
    min-height: 240px;
    padding: 56px 24px 28px;
  }
  .siteHeader__drawerAnniversary {
    width: 148px;
  }
  .siteHeader__drawerCopyright {
    font-size: 1.05rem;
    margin-top: 40px;
  }
}
/*=====================================================================
	footer
=====================================================================*/
/* SHIMEC footer */
/* CHOUKODO footer */
.siteFooter {
  position: relative;
  overflow: hidden;
  background: #121212;
  color: #fff;
  padding: clamp(51.2px, 10.6668vw, 128px) 0 clamp(28.8px, 4.6662vw, 48px);
}
.siteFooter::before {
  content: none;
}
.siteFooter a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.siteFooter a:hover {
  opacity: 0.68;
}
.siteFooter .siteFooter__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.siteFooter .siteFooter__logo {
  grid-column: 1;
  width: clamp(159.6px, 33.2496vw, 399px);
}
.siteFooter .siteFooter__logo a,
.siteFooter .siteFooter__logo img {
  display: block;
  width: 100%;
}
.siteFooter .siteFooter__logo img {
  height: auto;
  filter: brightness(0) invert(1);
}
.siteFooter .siteFooter__nav {
  grid-column: 2;
  display: grid;
  column-gap: clamp(34px, 7.0836vw, 85px);
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}
.siteFooter .siteFooter__navCol {
  display: grid;
  align-content: start;
  min-width: 0;
}
.siteFooter .siteFooter__navGroup {
  margin: 0;
  margin-bottom: 38px;
}
.siteFooter .siteFooter__navHead a {
  display: inline-block;
  color: #fff;
  font-family: "Libre Caslon Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
}
.siteFooter .siteFooter__navList {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 18px;
}
.siteFooter .siteFooter__navList li {
  margin: 0;
}
.siteFooter .siteFooter__navList a {
  color: #a2a2a2;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
.siteFooter .siteFooter__anniversary {
  width: clamp(79.2px, 16.5vw, 198px);
  margin: clamp(18px, 2.9162vw, 30px) auto 0;
}
.siteFooter .siteFooter__anniversary img {
  display: block;
  width: 100%;
  height: auto;
}
.siteFooter .siteFooter__copyright {
  margin: clamp(20.4px, 3.3054vw, 34px) 0 0;
  color: #fff;
  font-family: "Libre Caslon Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0.035em;
  text-align: center;
}
@media (max-width: 1200px) {
  .siteFooter .siteFooter__inner {
    display: block;
    min-height: clamp(280px, 58.3332vw, 700px);
  }
  .siteFooter .siteFooter__logo {
    width: clamp(172px, 35.8332vw, 430px);
  }
  .siteFooter .siteFooter__nav {
    display: grid;
    grid-template-columns: clamp(68px, 14.1672vw, 170px) clamp(92px, 19.1664vw, 230px) clamp(68px, 14.1672vw, 170px);
    column-gap: clamp(31.2px, 5.0554vw, 52px);
    margin-top: clamp(28.8px, 6vw, 72px);
  }
}
@media (max-width: 1024px) {
  .siteFooter .siteFooter__navHead {
    margin-bottom: 0;
  }
  .siteFooter .siteFooter__navHead a {
    font-size: 2.8rem;
  }
  .siteFooter .siteFooter__navList {
    gap: 12px;
  }
  .siteFooter .siteFooter__navList a {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .siteFooter {
    padding: 66px 0 25px;
  }
  .siteFooter .siteFooter__inner {
    display: block;
    min-height: auto;
  }
  .siteFooter .siteFooter__logo {
    width: 40rem;
    max-width: 100%;
    margin: 0;
  }
  .siteFooter .siteFooter__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    row-gap: 0;
    margin: 50px 0 0;
  }
  .siteFooter .siteFooter__nav .siteFooter__navGroup {
    margin-bottom: 24px;
  }
  .siteFooter .siteFooter__navCol:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .siteFooter .siteFooter__navCol:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .siteFooter .siteFooter__navCol:nth-child(3) {
    grid-column: 2;
    grid-row: 1/span 2;
  }
  .siteFooter .siteFooter__navHead {
    margin-bottom: 0;
  }
  .siteFooter .siteFooter__navHead a {
    font-size: 2.1rem;
  }
  .siteFooter .siteFooter__navList {
    gap: 4px;
  }
  .siteFooter .siteFooter__navList a {
    font-size: 1.3rem;
    line-height: 2;
  }
  .siteFooter .siteFooter__anniversary {
    position: relative;
    transform: none;
    width: 162px;
    margin: 68px auto 0;
  }
  .siteFooter .siteFooter__copyright {
    position: relative;
    margin: 26px 0 0;
    font-size: 1.05rem;
  }
}

/*============================================================================
	topBtn
=============================================================================*/
#goTop {
  display: none;
}

/*============================================================================
	調整用
=============================================================================*/
.fl {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}

.fl-tab {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 1024px) {
  .fl-tab {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}

.fl-sp {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 480px) {
  .fl-sp {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}

.fl-jst {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fl-cen {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fl-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fl-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fl-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fl-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.mt0 {
  margin-top: min(0vw,0px);
}

.mb0 {
  margin-bottom: min(0vw,0px);
}

.pt0 {
  padding-top: min(0vw,0px);
}

.pb0 {
  padding-bottom: min(0vw,0px);
}

.mt10 {
  margin-top: min(3vw,10px);
}

.mb10 {
  margin-bottom: min(3vw,10px);
}

.pt10 {
  padding-top: min(3vw,10px);
}

.pb10 {
  padding-bottom: min(3vw,10px);
}

.mt20 {
  margin-top: min(6vw,20px);
}

.mb20 {
  margin-bottom: min(6vw,20px);
}

.pt20 {
  padding-top: min(6vw,20px);
}

.pb20 {
  padding-bottom: min(6vw,20px);
}

.mt30 {
  margin-top: min(9vw,30px);
}

.mb30 {
  margin-bottom: min(9vw,30px);
}

.pt30 {
  padding-top: min(9vw,30px);
}

.pb30 {
  padding-bottom: min(9vw,30px);
}

.mt40 {
  margin-top: min(12vw,40px);
}

.mb40 {
  margin-bottom: min(12vw,40px);
}

.pt40 {
  padding-top: min(12vw,40px);
}

.pb40 {
  padding-bottom: min(12vw,40px);
}

.mt50 {
  margin-top: min(15vw,50px);
}

.mb50 {
  margin-bottom: min(15vw,50px);
}

.pt50 {
  padding-top: min(15vw,50px);
}

.pb50 {
  padding-bottom: min(15vw,50px);
}

.mt60 {
  margin-top: min(18vw,60px);
}

.mb60 {
  margin-bottom: min(18vw,60px);
}

.pt60 {
  padding-top: min(18vw,60px);
}

.pb60 {
  padding-bottom: min(18vw,60px);
}

.mt70 {
  margin-top: min(21vw,70px);
}

.mb70 {
  margin-bottom: min(21vw,70px);
}

.pt70 {
  padding-top: min(21vw,70px);
}

.pb70 {
  padding-bottom: min(21vw,70px);
}

.mt80 {
  margin-top: min(24vw,80px);
}

.mb80 {
  margin-bottom: min(24vw,80px);
}

.pt80 {
  padding-top: min(24vw,80px);
}

.pb80 {
  padding-bottom: min(24vw,80px);
}

.mt90 {
  margin-top: min(27vw,90px);
}

.mb90 {
  margin-bottom: min(27vw,90px);
}

.pt90 {
  padding-top: min(27vw,90px);
}

.pb90 {
  padding-bottom: min(27vw,90px);
}

.mt100 {
  margin-top: min(30vw,100px);
}

.mb100 {
  margin-bottom: min(30vw,100px);
}

.pt100 {
  padding-top: min(30vw,100px);
}

.pb100 {
  padding-bottom: min(30vw,100px);
}

.mt110 {
  margin-top: min(33vw,110px);
}

.mb110 {
  margin-bottom: min(33vw,110px);
}

.pt110 {
  padding-top: min(33vw,110px);
}

.pb110 {
  padding-bottom: min(33vw,110px);
}

.mt120 {
  margin-top: min(36vw,120px);
}

.mb120 {
  margin-bottom: min(36vw,120px);
}

.pt120 {
  padding-top: min(36vw,120px);
}

.pb120 {
  padding-bottom: min(36vw,120px);
}

.mt130 {
  margin-top: min(39vw,130px);
}

.mb130 {
  margin-bottom: min(39vw,130px);
}

.pt130 {
  padding-top: min(39vw,130px);
}

.pb130 {
  padding-bottom: min(39vw,130px);
}

.mt140 {
  margin-top: min(42vw,140px);
}

.mb140 {
  margin-bottom: min(42vw,140px);
}

.pt140 {
  padding-top: min(42vw,140px);
}

.pb140 {
  padding-bottom: min(42vw,140px);
}

br {
  display: inline;
}
@media (min-width: 1201px) {
  br.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  br.showTab {
    display: none !important;
  }
}
@media (min-width: 821px) {
  br.showStab {
    display: none !important;
  }
}
@media (min-width: 768px) {
  br.showStab01 {
    display: none !important;
  }
}
@media (min-width: 481px) {
  br.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  br.hdnPC {
    display: none;
  }
  br.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  br.hdnTab {
    display: none;
  }
  br.showTab {
    display: inherit;
  }
}
@media (max-width: 820px) {
  br.hdnStab {
    display: none;
  }
  br.showStab {
    display: inherit;
  }
}
@media (max-width: 768px) {
  br.hdnStab01 {
    display: none;
  }
  br.showStab01 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  br.hdnSP {
    display: none;
  }
  br.showSP {
    display: inherit;
  }
}

span {
  display: inline-block;
}
@media (min-width: 1201px) {
  span.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  span.showTab {
    display: none !important;
  }
}
@media (min-width: 821px) {
  span.showStab {
    display: none !important;
  }
}
@media (min-width: 481px) {
  span.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  span.hdnPC {
    display: none !important;
  }
  span.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  span.hdnTab {
    display: none !important;
  }
  span.showTab {
    display: inherit;
  }
}
@media (max-width: 820px) {
  span.hdnStab {
    display: none !important;
  }
  span.showStab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  span.hdnSP {
    display: none !important;
  }
  span.showSP {
    display: inherit;
  }
}

p, div, figure, ul {
  display: block;
}
@media (min-width: 1201px) {
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: none !important;
  }
}
@media (min-width: 821px) {
  p.showStab, div.showStab, figure.showStab, ul.showStab {
    display: none !important;
  }
}
@media (min-width: 481px) {
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  p.hdnPC, div.hdnPC, figure.hdnPC, ul.hdnPC {
    display: none !important;
  }
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  p.hdnTab, div.hdnTab, figure.hdnTab, ul.hdnTab {
    display: none !important;
  }
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: inherit;
  }
}
@media (max-width: 820px) {
  p.hdnStab, div.hdnStab, figure.hdnStab, ul.hdnStab {
    display: none !important;
  }
  p.showStab, div.showStab, figure.showStab, ul.showStab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  p.hdnSP, div.hdnSP, figure.hdnSP, ul.hdnSP {
    display: none !important;
  }
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: inherit;
  }
}

li {
  display: list-item;
}
@media (min-width: 1201px) {
  li.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  li.showTab {
    display: none !important;
  }
}
@media (min-width: 821px) {
  li.showStab {
    display: none !important;
  }
}
@media (min-width: 481px) {
  li.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  li.hdnPC {
    display: none !important;
  }
  li.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  li.hdnTab {
    display: none !important;
  }
  li.showTab {
    display: inherit;
  }
}
@media (max-width: 820px) {
  li.hdnStab {
    display: none !important;
  }
  li.showStab {
    display: inherit;
  }
}
@media (max-width: 480px) {
  li.hdnSP {
    display: none !important;
  }
  li.showSP {
    display: inherit;
  }
}

.ta_cnt {
  text-align: center;
}

.ta_right {
  text-align: right;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.js_up {
  transform: translate(0, 50px);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.js_up.isActive {
  transform: translate(0, 0);
  opacity: 1;
}

@keyframes commonFadeUpIn {
  from {
    opacity: 0;
    transform: translate3d(0, var(--common-fade-y, 28px), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes commonLineYIn {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes commonLineXIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
/*================================
	汎用スクロールリビール
	HTML: data-scroll-reveal
	JS: initScrollReveal（is-visible を付与）
================================*/
[data-scroll-reveal] {
  --scroll-reveal-y: clamp(16.8px, 2.7216vw, 28px);
  --scroll-reveal-duration: .95s;
  --scroll-reveal-delay: 0s;
  opacity: 0;
  transform: translate3d(0, var(--scroll-reveal-y), 0);
  transition: opacity var(--scroll-reveal-duration) cubic-bezier(0.18, 0.72, 0.18, 1) var(--scroll-reveal-delay), transform var(--scroll-reveal-duration) cubic-bezier(0.18, 0.72, 0.18, 1) var(--scroll-reveal-delay);
  will-change: opacity, transform;
}
[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

[data-scroll-reveal=fade] {
  --scroll-reveal-y: 0px;
}

[data-scroll-reveal=image] {
  overflow: hidden;
}
[data-scroll-reveal=image] img {
  transform: scale(1.045);
  transition: transform 1.35s cubic-bezier(0.18, 0.72, 0.18, 1) var(--scroll-reveal-delay);
  will-change: transform;
}
[data-scroll-reveal=image].is-visible img {
  transform: scale(1);
  will-change: auto;
}

[data-scroll-reveal-delay="1"] {
  --scroll-reveal-delay: .1s;
}

[data-scroll-reveal-delay="2"] {
  --scroll-reveal-delay: .2s;
}

[data-scroll-reveal-delay="3"] {
  --scroll-reveal-delay: .3s;
}

[data-scroll-reveal-delay="4"] {
  --scroll-reveal-delay: .4s;
}

[data-scroll-reveal-delay="5"] {
  --scroll-reveal-delay: .5s;
}

/*================================
	横線リビール（スクロール発火）
	HTML: data-flow-line-reveal
	JS: initFlowLineReveal（is-visible を付与）
	SCSS: @include commonFlowLineInScroll(...)
================================*/
@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  [data-scroll-reveal=image] img {
    transform: none;
    transition: none;
  }
  [data-flow-line-reveal]::after {
    animation: none !important;
    transform: scaleX(1);
  }
}
.js_fadein {
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.js_fadein.isActive {
  opacity: 1;
}

.js_fadein_slow {
  opacity: 0;
  -webkit-transition: all 1.4s cubic-bezier(0.39, 0.57, 0.56, 1) 0.2s;
  transition: all 1.4s cubic-bezier(0.39, 0.57, 0.56, 1) 0.2s;
}
.js_fadein_slow.isActive {
  opacity: 1;
}

.slipin {
  overflow: hidden;
  position: relative;
}
.slipin span, .slipin em {
  transform: translate(0, 100px);
  transform-origin: top;
}
.slipin.isActive span, .slipin.isActive em {
  animation: slip 0.4s ease-out 0.2s forwards;
}

@keyframes slip {
  0% {
    transform: translate(0, 35px);
  }
  100% {
    transform: translate(0);
  }
}
.maskttl span {
  overflow: hidden;
  position: relative;
}
.maskttl span::after {
  content: "";
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(left, #7da7df, #ee6b7e);
  background: -webkit-linear-gradient(left, #7da7df, #ee6b7e);
  background: linear-gradient(to right, #7da7df, #ee6b7e);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 1;
  transform: translateX(101%);
}
.maskttl.isActive span::after {
  opacity: 0;
  transform: translateX(-50%);
}

.maskText {
  overflow: hidden;
  position: relative;
}
.maskText::after {
  content: "";
  width: 150%;
  height: 100%;
  background: #7da7df;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  transform: translateX(-25%);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0s;
}
.maskText.isActive::after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.maskBlock {
  overflow: hidden;
  position: relative;
}
.maskBlock::after {
  content: "";
  margin: auto;
  width: 150%;
  height: 100%;
  background: -moz-linear-gradient(right, #7da7df 0%, #7da7df 75%, transparent 100%);
  background: -webkit-linear-gradient(right, #7da7df 0%, #7da7df 75%, transparent 100%);
  background: linear-gradient(to left, #7da7df 0%, #7da7df 75%, transparent 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  transform: translateX(-25%);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.2s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.2s;
  z-index: 10;
}
.maskBlock.secondary::after {
  background: -moz-linear-gradient(right, #ee6b7e 0%, #ee6b7e 75%, transparent 100%);
  background: -webkit-linear-gradient(right, #ee6b7e 0%, #ee6b7e 75%, transparent 100%);
  background: linear-gradient(to left, #ee6b7e 0%, #ee6b7e 75%, transparent 100%);
}
.maskBlock.isActive::after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.js_listfade02 > * {
  transform: translateY(50px);
  opacity: 0;
}
.js_listfade02 > *:nth-of-type(1) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.2s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.2s;
}
.js_listfade02 > *:nth-of-type(2) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.4s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.4s;
}
.js_listfade02 > *:nth-of-type(3) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.6s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.6s;
}
.js_listfade02 > *:nth-of-type(4) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.8s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 0.8s;
}
.js_listfade02 > *:nth-of-type(5) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1s;
}
.js_listfade02 > *:nth-of-type(6) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1.2s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1.2s;
}
.js_listfade02 > *:nth-of-type(7) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1.4s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1.4s;
}
.js_listfade02 > *:nth-of-type(8) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1.6s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1.6s;
}
.js_listfade02 > *:nth-of-type(9) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1.8s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 1.8s;
}
.js_listfade02 > *:nth-of-type(10) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2s;
}
.js_listfade02 > *:nth-of-type(11) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2.2s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2.2s;
}
.js_listfade02 > *:nth-of-type(12) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2.4s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2.4s;
}
.js_listfade02 > *:nth-of-type(13) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2.6s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2.6s;
}
.js_listfade02 > *:nth-of-type(14) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2.8s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 2.8s;
}
.js_listfade02 > *:nth-of-type(15) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3s;
}
.js_listfade02 > *:nth-of-type(16) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3.2s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3.2s;
}
.js_listfade02 > *:nth-of-type(17) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3.4s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3.4s;
}
.js_listfade02 > *:nth-of-type(18) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3.6s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3.6s;
}
.js_listfade02 > *:nth-of-type(19) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3.8s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 3.8s;
}
.js_listfade02 > *:nth-of-type(20) {
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 4s;
  transition: all 0.8s cubic-bezier(0.39, 0.57, 0.56, 1) 4s;
}
.js_listfade02.isActive > * {
  transform: translateY(0);
  opacity: 1;
}

/*================================
	scアニメ
================================*/
.fadein, .fadein02, .fadein03 {
  opacity: 0;
  transition: all 2.5s;
}

.fadein.show, .fadein02.show, .fadein03.show {
  opacity: 1;
}

.upfade {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}

.upfade.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.ani-delay-01 {
  transition-delay: 0.12s !important;
}

.ani-delay-02 {
  transition-delay: 0.24s !important;
}

.ani-delay-03 {
  transition-delay: 0.36s !important;
}

.ani-delay-04 {
  transition-delay: 0.48s !important;
}

.ani-delay-05 {
  transition-delay: 0.6s !important;
}

.ani-title-reveal {
  opacity: 0;
  transform: translateY(42px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.3, 0.64, 0.34, 0.97), clip-path 0.72s cubic-bezier(0.3, 0.64, 0.34, 0.97);
  will-change: opacity, transform, clip-path;
}
.ani-title-reveal.is-show {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

.ani-common-ttl .en,
.ani-common-ttl h1,
.ani-common-ttl h2,
.ani-common-ttl h3,
.ani-common-ttl .txt,
.ani-common-ttl > p {
  opacity: 0;
  transform: translateY(42px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.3, 0.64, 0.34, 0.97), clip-path 0.72s cubic-bezier(0.3, 0.64, 0.34, 0.97);
  will-change: opacity, transform, clip-path;
}
.ani-common-ttl h1,
.ani-common-ttl h2,
.ani-common-ttl h3,
.ani-common-ttl .txt {
  transition-delay: 0.12s;
}
.ani-common-ttl > p {
  transition-delay: 0.24s;
}
.ani-common-ttl.is-show .en,
.ani-common-ttl.is-show h1,
.ani-common-ttl.is-show h2,
.ani-common-ttl.is-show h3,
.ani-common-ttl.is-show .txt,
.ani-common-ttl.is-show > p {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

@media (prefers-reduced-motion: reduce) {
  .ani-title-reveal,
  .ani-common-ttl .en,
  .ani-common-ttl h1,
  .ani-common-ttl h2,
  .ani-common-ttl h3,
  .ani-common-ttl .txt,
  .ani-common-ttl > p {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}
.fvupfade1, .fvupfade2 {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}

.fvupfade1.display, .fvupfade2.display {
  opacity: 1;
  transform: translate(0, 0);
}

.downfade {
  opacity: 0;
  transform: translate(0, -50px);
  transition: all 1s;
}

.downfade.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fade {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 1.2s ease;
}

.fade.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scalbig {
  transform: scale(0.9);
}

.scalbig.scrollin {
  transform: scale(1);
}

.sclinWrap {
  height: auto;
  overflow: hidden;
}

.sclin_right {
  opacity: 0;
  transform: translate(50px, 0);
  transition: all 1s;
}

.sclin_right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.sclin_left {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 1s;
}

.sclin_left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Transform（移動）はSVGの属性と競合するため削除し、opacityのみにします */
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* solution 円グラフィック：各円の出現（はみ出し防止のためオーバーシュートなし） */
@keyframes solution-circle-pop {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes solution-circle-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes solution-circle-piece-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes solution-circle-fade-dots {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.1;
  }
}
@keyframes solution-circle-ring-in {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* solution 円グラフィック：中央テキストリング */
@keyframes solution-circle-txt-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* intro 地図：右上から左下へ矩形が広がるリビール */
@keyframes intro-map-reveal {
  0% {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 0.01%, 100% 0.01%);
  }
  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* 同一内容を2列並べたラッパーを -50% 移動してシームレスにループ */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.scrollInfinity {
  overflow: hidden;
}
.scrollInfinity .scrollInfinityWrap {
  display: flex;
  width: max-content;
  column-gap: 0;
  animation: infinity-scroll-left 90s linear infinite 0.5s;
}
@media (prefers-reduced-motion: reduce) {
  .scrollInfinity .scrollInfinityWrap {
    animation: none;
  }
}
.scrollInfinity .scrollInfinityWrap .scrollInfinityList {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  column-gap: 100px;
  flex-shrink: 0;
}
.scrollInfinity .scrollInfinityWrap .scrollInfinityItem {
  flex: 0 0 auto;
}
.scrollInfinity .scrollInfinityWrap .scrollInfinityItem img {
  width: fit-content;
  display: block;
}
.scrollInfinity .scrollInfinityWrap .scroll-txt {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(147px, 18vw, 210px);
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.4;
  letter-spacing: -0.05em;
}
@media (max-width: 480px) {
  .scrollInfinity .scrollInfinityWrap .scroll-txt {
    font-size: 6rem;
  }
}