@charset "UTF-8";
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  --layout-width-canvas: 1360px;
  --layout-width-inner: 1700px;
  --layout-width-wide: 1400px;
  --layout-width-article: 1200px;
  --layout-width-article-content: 860px;
  --padding-pc: 40px;
  --padding-sp: 18px;
  --color-black: #000;
  --color-white: #fff;
  --color-text: #202727;
  --color-primary: #fe5000;
  --color-primary-light: #10a6e1;
  --color-primary-dark: #003f7e;
  --color-primary-blue: #005bac;
  --color-dark-blue: #003f7e;
  --color-light-blue: #10a6e1;
  --color-water: #eff7ff;
  --color-secondary-blue: #248be7;
  --color-drop-shadow: #d5dde3;
  --color-border: #ccd4db;
  --color-light-gray: var(--color-border);
  --color-text-gray: #3b3d3f;
  --color-text-base: var(--color-black);
  --color-bg-base: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-secondary: "Montserrat", sans-serif;
  --font-size-base: 1rem;
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --light: 300;
  --font-weight-bold: 700;
  --font-weight-regular: 400;
  --line-height-base: 1.8;
  --letter-spacing-base: 0.03em;
  --header-height: 67px;
  --header-height-sp: 47px;
  --drawer-bottom-offset: 30px;
  --drawer-height: calc(100dvh - var(--header-height) - var(--drawer-bottom-offset));
  --drawer-height-sp: calc(100dvh - var(--header-height-sp) - var(--drawer-bottom-offset));
  --duration-default: 0.3s;
  --hover-opacity: 0.7;
  --animation-arrow-slide: arrow-slide 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --easing-zoom: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --padding-section: 160px;
  --border-radius-circle: 50%;
  --color-border-light: #cbd7e6;
  --color-text-muted: #788883;
  --color-text-muted-sp: #8b8b8b;
  --color-error: #d44343;
  --color-bg-light: #f5f7fa;
  --color-tab-inactive: #72818e;
  --color-tab-active: #0e73cc;
  --color-tab-bg: rgb(211 224 241 / 80%);
  --color-tab-bg-hover: rgb(211 224 241 / 50%);
  --color-gray-light: #d9d9d9;
  --color-gray-dark: #333;
  --color-round-button-close-bg: #ced3d7;
  --color-border-gray: #ccc;
}

/*! 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/30%);
}

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

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

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

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

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

html {
  box-sizing: border-box;
}

#top-hero,
#top-philosophy,
#top-business,
#top-news,
#top-note,
#top-recruit,
#top-company,
#contact {
  scroll-margin-top: var(--header-height);
}
@media (max-width: 767px) {
  #top-hero,
  #top-philosophy,
  #top-business,
  #top-news,
  #top-note,
  #top-recruit,
  #top-company,
  #contact {
    scroll-margin-top: var(--header-height-sp);
  }
}

body {
  overflow-x: clip;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--normal);
  line-height: var(--line-height-base);
  color: var(--color-text-base);
  letter-spacing: var(--letter-spacing-base);
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  background-color: var(--color-bg-base);
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

@media (width <= 767px) {
  [data-device=pc] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-device=sp] {
    display: none;
  }
}

button {
  cursor: pointer;
}

a {
  display: block;
}

html.lenis {
  height: auto;
}

html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.l-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  color: var(--color-white);
  background-color: rgba(0, 0, 0, 0.3);
}

.l-header--fixed {
  position: fixed;
  top: 0;
}
@media (min-width: 1351px) {
  .l-header--fixed {
    transition: transform 0.35s ease-out;
  }
}
@media (min-width: 1351px) {
  .l-header--fixed.is-header-hidden {
    transform: translateY(-100%);
  }
}

.l-header__main {
  display: grid;
  place-items: center;
  height: 50px;
}
@media (max-width: 767px) {
  .l-header__main {
    height: 50px;
  }
}

.l-header__main-content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  height: 100%;
}
@media (max-width: 1350px) {
  .l-header__main-content {
    grid-template-columns: auto 1fr;
  }
}

.l-header__logo {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.l-header__logo-link {
  flex-shrink: 0;
  width: 165px;
  aspect-ratio: 207/44;
  transition: opacity var(--duration-default);
}
@media (max-width: 767px) {
  .l-header__logo-link {
    width: 120px;
  }
}
@media (any-hover: hover) {
  .l-header__logo-link:hover {
    opacity: var(--hover-opacity);
  }
}

.l-header__logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-header__nav {
  display: flex;
  align-items: center;
  justify-self: end;
}
@media (max-width: 1350px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  gap: 53px;
  gap: clamp(0.75rem, -1.9144736842rem + 3.1578947368vw, 1.875rem);
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.l-header__nav-item {
  display: flex;
  align-items: center;
}

.l-header__nav-link {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: var(--normal);
  color: var(--color-white);
  letter-spacing: 0.047em;
  text-decoration: none;
  transition: opacity var(--duration-default);
  white-space: nowrap;
}
@media (any-hover: hover) {
  .l-header__nav-link:hover {
    opacity: var(--hover-opacity);
  }
}

.l-header__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 1350px) {
  .l-header__actions {
    display: none;
  }
}

.l-header__contact {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: var(--normal);
  width: min(235px, 100%);
  min-width: 235px;
  color: var(--color-white);
  letter-spacing: 0.047em;
  text-decoration: none;
  background-color: var(--color-primary);
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-header__contact:hover {
    opacity: var(--hover-opacity);
  }
}

.l-header__contact-en,
.l-header__contact-jp {
  line-height: 1;
}

.l-header__contact-en {
  font-family: var(--font-family-secondary);
  font-weight: var(--normal);
}

.l-header__hamburger {
  position: relative;
  display: none;
  place-items: center;
  width: 42px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
}
@media (max-width: 1350px) {
  .l-header__hamburger {
    display: grid;
    justify-self: end;
  }
}
@media (max-width: 767px) {
  .l-header__hamburger {
    width: 15px;
    height: 13px;
  }
}

.l-header__hamburger::before {
  position: absolute;
  inset: -10px;
  content: "";
}

.l-header__hamburger-line {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: background-color var(--duration-default);
}
@media (max-width: 767px) {
  .l-header__hamburger-line {
    height: 1px;
  }
}

.l-header__hamburger-line::before,
.l-header__hamburger-line::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--color-white);
  border-radius: calc(infinity * 1px);
  transition: transform var(--duration-default);
}

.l-header__hamburger-line::before {
  transform: translateY(-10px);
}
@media (max-width: 767px) {
  .l-header__hamburger-line::before {
    transform: translateY(-5px);
  }
}

.l-header__hamburger-line::after {
  transform: translateY(10px);
}
@media (max-width: 767px) {
  .l-header__hamburger-line::after {
    transform: translateY(5px);
  }
}

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

.l-header__hamburger.is-open .l-header__hamburger-line::before {
  transform: translateY(0) rotate(45deg);
}

.l-header__hamburger.is-open .l-header__hamburger-line::after {
  transform: translateY(0) rotate(-45deg);
}

.l-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}
@media (min-width: 1351px) {
  .l-header__drawer {
    display: none;
  }
}

.l-header__drawer::backdrop {
  background: url("../../images/top/img-modal-backdrop-pc.webp") center/cover no-repeat;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .l-header__drawer::backdrop {
    background-image: url("../../images/top/img-modal-backdrop-sp.webp");
  }
}

.l-header__drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1201;
  width: 320px;
  height: 616px;
  padding: 10px var(--padding-sp) 30px;
  display: grid;
  outline: none;
  grid-template-rows: auto 1fr auto;
  place-items: center;
  background-color: var(--color-primary);
  border-radius: 0 0 0 10px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.l-header__drawer-panel.is-open {
  transform: translateX(0);
}
@media (min-width: 769px) and (max-width: 1350px) {
  .l-header__drawer-panel {
    width: 100%;
    height: 100dvh;
    padding: 20px var(--padding-sp) 40px;
    border-radius: 0;
  }
}

.l-header__drawer-close {
  position: relative;
  justify-self: end;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--color-white);
  background: none;
  border: 0;
}
.l-header__drawer-close:focus:not(:focus-visible) {
  outline: none;
}
@media (min-width: 769px) and (max-width: 1350px) {
  .l-header__drawer-close {
    width: 56px;
    height: 56px;
  }
}

.l-header__drawer-close::before {
  position: absolute;
  inset: -10px;
  content: "";
}
@media (min-width: 769px) and (max-width: 1350px) {
  .l-header__drawer-close::before {
    inset: -12px;
  }
}

.l-header__drawer-close-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.l-header__drawer-close-icon::before,
.l-header__drawer-close-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  content: "";
  background-color: currentcolor;
}
@media (min-width: 769px) and (max-width: 1350px) {
  .l-header__drawer-close-icon::before,
  .l-header__drawer-close-icon::after {
    width: 28px;
    height: 2px;
  }
}

.l-header__drawer-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header__drawer-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header__drawer-nav {
  width: 100%;
}

.l-header__drawer-list {
  display: grid;
  gap: 40px;
  justify-items: center;
}
@media (min-width: 769px) and (max-width: 1350px) {
  .l-header__drawer-list {
    gap: 52px;
  }
}

.l-header__drawer-link {
  position: relative;
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: var(--semi-bold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.047em;
  white-space: nowrap;
  transition: opacity var(--duration-default);
}
.l-header__drawer-link::before {
  content: "";
  position: absolute;
  inset: -14px;
}
@media (min-width: 769px) and (max-width: 1350px) {
  .l-header__drawer-link {
    font-size: 22px;
  }
  .l-header__drawer-link::before {
    inset: -16px;
  }
}
@media (any-hover: hover) {
  .l-header__drawer-link:hover {
    opacity: var(--hover-opacity);
  }
}

.l-header__drawer-back-to-top {
  align-self: end;
}

body.is-drawer-open {
  overflow: hidden;
}

.l-footer {
  display: grid;
  grid-template-rows: 1fr;
  padding-block: 80px 70px;
  background-color: var(--color-black);
  min-height: 525px;
}
@media (max-width: 767px) {
  .l-footer {
    min-height: auto;
    padding-block: 60px 30px;
  }
}

.l-footer__container {
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr;
}

.l-footer__content {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  row-gap: 60px;
  margin-inline: auto;
  justify-items: center;
}
@media (max-width: 767px) {
  .l-footer__content {
    row-gap: 50px;
  }
}

.l-footer__logo-link {
  width: 208px;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-footer__logo-link:hover {
    opacity: var(--hover-opacity);
  }
}
@media (max-width: 767px) {
  .l-footer__logo-link {
    width: 186px;
  }
}

.l-footer__logo-image {
  width: 100%;
  height: auto;
}

.l-footer__nav {
  width: 100%;
}

.l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  justify-content: center;
  list-style: none;
}
@media (max-width: 767px) {
  .l-footer__nav-list {
    flex-direction: column;
    gap: 13px;
    text-align: center;
  }
}

.l-footer__nav-link {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: var(--normal);
  color: var(--color-white);
  letter-spacing: 0.05em;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    opacity: var(--hover-opacity);
  }
}
@media (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 12px;
    font-weight: var(--light);
  }
}

.l-footer__privacy {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: var(--medium);
  color: var(--color-white);
  letter-spacing: 0.05em;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .l-footer__privacy:hover {
    opacity: var(--hover-opacity);
  }
}
@media (max-width: 767px) {
  .l-footer__privacy {
    font-size: 13px;
  }
}

.l-footer__copyright {
  align-self: end;
  font-family: var(--font-family-secondary);
  font-size: 14px;
  color: var(--color-white);
  text-align: center;
}
@media (max-width: 767px) {
  .l-footer__copyright {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}

.l-container {
  box-sizing: border-box;
  max-inline-size: calc(var(--layout-width-inner) + var(--padding-pc) * 2);
  width: 100%;
  padding-inline: var(--padding-pc);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .l-container {
    max-inline-size: calc(var(--layout-width-inner) + var(--padding-sp) * 2);
    padding-inline: var(--padding-sp);
  }
}

.l-container--start {
  margin-inline: 0 auto;
}

.l-container--canvas {
  max-inline-size: calc(var(--layout-width-canvas) + var(--padding-pc) * 2);
}
@media (max-width: 767px) {
  .l-container--canvas {
    max-inline-size: calc(var(--layout-width-canvas) + var(--padding-sp) * 2);
  }
}

.l-container--wide {
  max-inline-size: calc(var(--layout-width-wide) + var(--padding-pc) * 2);
}
@media (max-width: 767px) {
  .l-container--wide {
    max-inline-size: calc(var(--layout-width-wide) + var(--padding-sp) * 2);
  }
}

.l-container--article {
  max-inline-size: calc(var(--layout-width-article) + var(--padding-pc) * 2);
}
@media (max-width: 767px) {
  .l-container--article {
    max-inline-size: calc(var(--layout-width-article) + var(--padding-sp) * 2);
  }
}

.l-container--article-content {
  max-inline-size: calc(var(--layout-width-article-content) + var(--padding-pc) * 2);
}
@media (max-width: 767px) {
  .l-container--article-content {
    max-inline-size: calc(var(--layout-width-article-content) + var(--padding-sp) * 2);
  }
}

.l-container--flush {
  max-inline-size: var(--layout-width-inner);
  padding-inline: 0;
}
@media (max-width: 767px) {
  .l-container--flush {
    max-inline-size: var(--layout-width-inner);
  }
}

@media (max-width: 767px) {
  .l-container--sp-flush {
    max-inline-size: var(--layout-width-inner);
    padding-inline: 0;
  }
}

@media (max-width: 767px) {
  .l-container--sp-wide {
    max-inline-size: calc(var(--layout-width-inner) + var(--padding-pc) * 2);
    padding-inline: var(--padding-pc);
  }
}

.l-section {
  margin-block: 64px;
  overflow: clip;
}
@media (max-width: 767px) {
  .l-section {
    margin-block: 40px;
  }
}

.c-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: min(150px, 100%);
  padding: 5px 22px;
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 1;
  color: #fe5000;
  text-decoration: none;
  background-color: var(--color-white);
  transition: opacity var(--duration-default);
  font-family: var(--font-family-secondary);
  text-align: center;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: var(--hover-opacity);
  }
}
@media (max-width: 767px) {
  .c-button {
    width: 150px;
    min-height: 38px;
    padding: 5px 10px;
    font-size: 14px;
  }
}

.c-button::before {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 15px;
  height: 1px;
  content: "";
  background-color: #2f2f2f;
  transform-origin: right center;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767px) {
  .c-button::before {
    right: -18px;
    width: 15px;
  }
}

.c-button::after {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 44px;
  height: 1px;
  content: "";
  background-color: #2f2f2f;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-button::after {
    right: -18px;
    width: 35px;
  }
}

.c-button--large {
  width: min(280px, 100%);
}
@media (max-width: 767px) {
  .c-button--large {
    width: min(225px, 100%);
  }
}

.c-button--primary {
  color: var(--color-white);
  background-color: var(--color-primary);
}
@media (max-width: 767px) {
  .c-button--primary {
    margin-top: 0;
  }
}

.c-button.c-button--outline {
  color: var(--color-white);
  background-color: transparent;
  border: 2px solid currentColor;
}

.c-button.c-button--outline::before,
.c-button.c-button--outline::after {
  display: none;
}

.c-button.c-button--outline-line {
  color: var(--color-white);
  background-color: transparent;
  border: 1px solid currentColor;
}
.c-button.c-button--outline-line::before, .c-button.c-button--outline-line::after {
  background-color: currentColor;
}

.c-button.c-button--outline-line.c-button--external {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
}
.c-button.c-button--outline-line.c-button--external::before {
  display: none;
}
.c-button.c-button--outline-line.c-button--external::after {
  position: static;
  width: 15px;
  height: 14px;
  margin: 0;
  transform: none;
  background-color: currentColor;
  mask-image: url("../../images/top/icon-external-link.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.c-button.c-button--view-more::before {
  right: 50px;
  width: 1px;
  height: 45px;
  transform-origin: center;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-button.c-button--view-more::before {
    right: 35px;
    width: 1px;
    height: 50px;
  }
}
.c-button.c-button--view-more::after {
  right: 50px;
  width: 45px;
  transform: translateY(0) translateX(50%);
}
@media (max-width: 767px) {
  .c-button.c-button--view-more::after {
    right: 35px;
    width: 50px;
  }
}

.c-round-button {
  --_width: 195px;
  --_height: 45px;
  --_font-size: 20px;
  --_border-width: 1px;
  --_border-color: var(--color-white);
  --_text-color: var(--color-white);
  --_bg-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: var(--_width);
  min-height: var(--_height);
  padding: 0 calc(var(--_height) / 2);
  border: var(--_border-width) solid var(--_border-color);
  border-radius: calc(infinity * 1px);
  background-color: var(--_bg-color);
  font-family: var(--font-family-secondary);
  font-size: var(--_font-size);
  font-weight: var(--bold);
  line-height: 1;
  color: var(--_text-color);
  text-decoration: none;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .c-round-button:hover {
    opacity: var(--hover-opacity);
  }
}
@media (max-width: 767px) {
  .c-round-button {
    --_width: 156px;
    --_height: 34px;
    --_font-size: 13px;
    padding: 0 18px;
  }
}

.c-round-button--primary {
  --_border-color: var(--color-primary);
  --_text-color: var(--color-primary);
}

.c-round-button--with-close {
  --_bg-color: var(--color-round-button-close-bg);
}

.c-round-button__close-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  mask-image: url("../../images/common/icon-close.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.c-media-info {
  --_color: var(--color-black);
  display: grid;
  justify-items: center;
  row-gap: 14px;
  padding-top: 0;
  max-inline-size: none;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .c-media-info {
    width: 80%;
    row-gap: 35px;
    padding-top: 0;
  }
}

.c-media-info--white {
  --_color: #fff;
}

.c-media-info__title {
  display: grid;
  row-gap: 14px;
  width: fit-content;
  place-items: center;
}

.c-media-info__official {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: var(--semi-bold);
  color: var(--_color);
  line-height: 1.27;
  text-align: center;
}
.c-media-info__logo {
  max-width: 120px;
}

.c-media-info__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-media-info__description {
  font-size: 16px;
  font-weight: var(--normal);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--_color);
}
@media (max-width: 767px) {
  .c-media-info__description {
    font-size: 14px;
    font-weight: var(--light);
    line-height: 1.8;
  }
}

.c-nav-heading {
  display: grid;
  row-gap: 10px;
}
@media (max-width: 767px) {
  .c-nav-heading {
    padding-left: 15px;
    row-gap: 5px;
  }
}

.c-nav-heading--white .c-nav-heading__eyebrow {
  color: var(--color-black);
}

.c-nav-heading--white .c-nav-heading__title {
  color: var(--color-white);
}

.c-nav-heading__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: var(--semi-bold);
  line-height: 1.2;
  color: var(--color-primary);
}

.c-nav-heading__title {
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.35;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .c-nav-heading__title {
    font-size: 22px;
    font-weight: var(--semi-bold);
  }
}

.c-news-card {
  position: relative;
  display: grid;
  color: var(--color-white);
  grid-row: span 4;
  grid-template-rows: subgrid;
  grid-template-columns: 1fr;
  grid-template-areas: "image" "date" "title" "tags";
  margin-bottom: 39px;
}
@media (max-width: 767px) {
  .c-news-card {
    grid-template: "image tags" auto "image title" 1fr "date title" auto/auto 1fr;
    column-gap: 10px;
    row-gap: 6px;
    margin-bottom: 20px;
    align-items: start;
  }
}

.c-news-card[hidden] {
  display: none;
}

.c-news-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
}

@media (any-hover: hover) {
  .c-news-card:has(.c-news-card__link:hover) .c-news-card__image img {
    transform: scale(1.1);
  }
}
.c-news-card__image {
  overflow: hidden;
  aspect-ratio: 355/190;
  overflow: clip;
  grid-area: image;
}
@media (max-width: 767px) {
  .c-news-card__image {
    flex-shrink: 0;
    width: 125px;
    min-width: 125px;
    aspect-ratio: 125/100;
  }
}

.c-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.c-news-card__date {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: var(--normal);
  line-height: 1;
  color: var(--color-white);
  grid-area: date;
}
@media (max-width: 767px) {
  .c-news-card__date {
    font-weight: var(--normal);
    font-size: 12px;
  }
}

.c-news-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 10px;
  grid-area: tags;
}
@media (max-width: 767px) {
  .c-news-card__tags {
    gap: 5px;
  }
}

.c-news-card__tag {
  padding: 5px 12px;
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: var(--normal);
  line-height: 1.2;
  color: var(--color-text);
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .c-news-card__tag {
    font-size: 10px;
    padding: 2px 8px;
  }
}

.c-news-card__title {
  font-size: 16px;
  font-weight: var(--normal);
  line-height: 1.7;
  color: var(--color-white);
  letter-spacing: 0.035em;
  grid-area: title;
}
@media (max-width: 767px) {
  .c-news-card__title {
    font-weight: var(--normal);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

.c-view-more-link {
  --c-view-more-link-color: var(--color-black);
  --c-view-more-link-border-color: var(--color-black);
  --c-view-more-link-size: 150px;
  --c-view-more-link-size-sp: 150px;
  --c-view-more-link-padding: 10px;
  --c-view-more-link-text-font-size: 17px;
  --c-view-more-link-sub-font-size: 16px;
  position: relative;
  display: grid;
  place-items: center;
  width: var(--c-view-more-link-size);
  padding: var(--c-view-more-link-padding);
  aspect-ratio: 1;
  color: var(--c-view-more-link-color);
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid var(--c-view-more-link-border-color);
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .c-view-more-link:hover {
    opacity: var(--hover-opacity);
  }
}
@media (max-width: 767px) {
  .c-view-more-link {
    width: var(--c-view-more-link-size-sp);
  }
}

.c-view-more-link__content {
  position: relative;
  display: grid;
  row-gap: 15px;
  justify-items: center;
  translate: 0 10%;
}

.c-view-more-link__content::after {
  content: "";
  display: block;
  width: 15px;
  height: 14px;
  margin-inline: auto;
  background-color: var(--c-view-more-link-color);
  mask-image: url("../../images/common/icon-external-link.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.c-view-more-link__text {
  font-family: var(--font-family-secondary);
  font-size: var(--c-view-more-link-text-font-size);
  font-weight: var(--semi-bold);
  line-height: 1;
  color: var(--c-view-more-link-color);
}

.c-view-more-link__sub {
  font-size: var(--c-view-more-link-sub-font-size);
  font-weight: var(--normal);
  line-height: 1;
  color: var(--c-view-more-link-color);
}

.p-top-hero {
  position: relative;
  overflow-x: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .p-top-hero {
    margin-bottom: 0;
  }
}

.p-top-hero__slider {
  position: relative;
  z-index: 0;
}

.p-top-hero__slider .splide__track {
  height: calc(896px + var(--header-height));
}
@media (max-width: 767px) {
  .p-top-hero__slider .splide__track {
    height: calc(764px + var(--header-height-sp));
  }
}

.p-top-hero__slide {
  position: relative;
  height: calc(896px + var(--header-height));
}
@media (max-width: 767px) {
  .p-top-hero__slide {
    height: calc(764px + var(--header-height-sp));
  }
}

.p-top-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-top-hero__bg {
    object-position: center top;
  }
}

.p-top-hero__slide::after {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

.p-top-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: center;
  pointer-events: none;
  padding-bottom: 56px;
  max-width: 1700px;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__overlay {
    align-items: center;
    padding-top: 0;
    padding-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .p-top-hero__overlay {
    align-items: center;
    padding-top: 0;
    padding-bottom: 24px;
  }
}

.p-top-hero__panel {
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  min-height: clamp(12.5rem, -0.7484076433rem + 27.6008492569vw, 28.75rem);
  padding-block: clamp(1.375rem, -0.0517515924rem + 2.9723991507vw, 3.125rem);
  padding-inline: clamp(2.75rem, -0.1035031847rem + 5.9447983015vw, 6.25rem) clamp(0.8125rem, -0.0537420382rem + 1.804670913vw, 1.875rem);
}
.p-top-hero__panel::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  right: calc(50% - 50vw);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  border-radius: 25px 0 0 25px;
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__panel {
    row-gap: 50px;
    grid-template-columns: 1fr;
    min-height: auto;
    justify-items: center;
  }
  .p-top-hero__panel::before {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
}
@media (max-width: 767px) {
  .p-top-hero__panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 15px 0 15px 42px;
    row-gap: 25px;
  }
  .p-top-hero__panel::before {
    left: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
}

.p-top-hero__catch-block {
  position: relative;
}

.p-top-hero__catch {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(0.25rem, 0.0461783439rem + 0.4246284501vw, 0.5rem);
  font-family: var(--font-family-secondary);
  font-size: clamp(2.375rem, -0.2746815287rem + 5.5201698514vw, 5.625rem);
  font-weight: var(--bold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.035em;
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__catch {
    font-size: 60px;
    line-height: 0.9;
  }
}
@media (max-width: 767px) {
  .p-top-hero__catch {
    font-size: 40px;
    line-height: 0.9;
  }
}

.p-top-hero__catch-line {
  padding-inline-start: 0;
}
.p-top-hero__catch-line:nth-child(2) {
  padding-inline-start: 0.65em;
}
.p-top-hero__catch-line:nth-child(3) {
  padding-inline-start: 1.2em;
}

.p-top-hero__right {
  display: grid;
  place-items: center;
  row-gap: clamp(0.5rem, -0.0095541401rem + 1.0615711253vw, 1.125rem);
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__right {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    place-items: center;
    row-gap: 16px;
    justify-self: center;
  }
}
@media (max-width: 767px) {
  .p-top-hero__right {
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr 1fr;
    place-items: unset;
    align-items: unset;
    row-gap: 18px;
    column-gap: 10px;
  }
}

.p-top-hero__lead {
  font-size: clamp(0.75rem, 0.0366242rem + 1.4862vw, 25px);
  font-weight: var(--bold);
  line-height: 1.8;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__lead {
    grid-column: 1;
    grid-row: 1;
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .p-top-hero__lead {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    font-size: 17px;
    font-weight: var(--bold);
    line-height: 1.6;
    text-align: left;
  }
}

.p-top-hero__flow {
  display: flex;
  gap: clamp(2.125rem, 0.0358280255rem + 4.3524416136vw, 4.6875rem);
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__flow {
    flex-direction: row;
    grid-column: 1;
    grid-row: 2;
    align-items: center;
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .p-top-hero__flow {
    flex-direction: column;
    grid-column: 2;
    grid-row: 1/-1;
    align-items: center;
    gap: 30px;
  }
}

.p-top-hero__flow-item {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(4.625rem, 0.0390127389rem + 9.5541401274vw, 10.25rem);
  height: auto;
  aspect-ratio: 1;
  font-size: clamp(0.75rem, 0.4952229299rem + 0.5307855626vw, 1.0625rem);
  font-weight: var(--medium);
  line-height: 1.8;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-black);
  border: 1.5px solid var(--color-black);
  border-radius: calc(infinity * 1px);
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__flow-item {
    width: 100px;
    height: 100px;
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .p-top-hero__flow-item {
    width: 92px;
    height: 92px;
    font-size: 13px;
    line-height: 1.35;
  }
}
[data-script=enabled] .p-top-hero__flow-item {
  opacity: 0;
}

.p-top-hero__flow-item + .p-top-hero__flow-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(1.25rem, -0.5334394904rem + 3.7154989384vw, 3.4375rem));
  top: 50%;
  aspect-ratio: 217/150;
  width: clamp(1.375rem, 0.9673566879rem + 0.8492569002vw, 1.875rem);
  height: auto;
  background: url("../../images/common/icon-hero-flow.svg") center/contain no-repeat;
  transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__flow-item + .p-top-hero__flow-item::before {
    left: -28px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url("../../images/common/icon-hero-flow.svg") center/contain no-repeat;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .p-top-hero__flow-item + .p-top-hero__flow-item::before {
    left: 50%;
    top: -15px;
    width: 15px;
    height: auto;
    background: var(--color-white);
    mask-image: url("../../images/common/icon-hero-flow.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.p-top-hero__description {
  font-size: clamp(0.75rem, 0.546178rem + 0.424628vw, 15px);
  font-weight: var(--normal);
  line-height: 1.6;
  color: var(--color-white);
  text-align: center;
}
@media (min-width: 768px) and (max-width: 899px) {
  .p-top-hero__description {
    grid-column: 1;
    grid-row: 3;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .p-top-hero__description {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
  }
}

.p-top-hero__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  row-gap: 15px;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .p-top-hero__controls {
    row-gap: 12px;
    padding-bottom: 16px;
  }
}

.p-top-hero__progress {
  position: relative;
  display: grid;
  align-items: end;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .p-top-hero__progress {
    padding-top: 16px;
  }
}

.p-top-hero__theme {
  justify-self: end;
  font-family: var(--font-family-secondary);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-white);
  letter-spacing: 0.035em;
}
@media (max-width: 767px) {
  .p-top-hero__theme {
    font-size: 14px;
  }
}

.p-top-hero__progress-line {
  position: relative;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
}

.p-top-hero__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
}

.p-top-hero__progress-bar.is-animating {
  animation: top-hero-progress var(--progress-duration, 5000ms) linear both;
}

@keyframes top-hero-progress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.p-top-hero__pagination {
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.p-top-hero .splide__pagination {
  position: static;
  z-index: 3;
  display: flex;
  gap: 13px;
  padding: 0;
  transform: none;
}
@media (max-width: 767px) {
  .p-top-hero .splide__pagination {
    gap: 8px;
  }
}

.p-top-hero .splide__pagination__page {
  width: 13px;
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  background-color: transparent;
  border: 1px solid var(--color-white);
  border-radius: calc(infinity * 1px);
  opacity: 1;
}
@media (max-width: 767px) {
  .p-top-hero .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}

.p-top-hero .splide__pagination__page.is-active {
  background-color: var(--color-white);
  transform: none;
}

.p-top-philosophy {
  overflow-x: clip;
}

.p-top-philosophy__wrap {
  position: relative;
}

.p-top-philosophy__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  background-color: var(--color-primary);
  inset: 0;
  border-radius: 0 20px 20px 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-top-philosophy__wrap::before {
    border-radius: 10px;
    margin-left: 0;
    inset: 0 -5px;
  }
}

.p-top-philosophy__nav {
  display: grid;
  row-gap: 15px;
  align-self: start;
}

.p-top-philosophy__content {
  display: grid;
  gap: 75px;
  max-width: 1030px;
}
@media (max-width: 767px) {
  .p-top-philosophy__content {
    gap: 40px;
  }
}

.p-top-philosophy__message {
  display: grid;
}
@media (max-width: 767px) {
  .p-top-philosophy__message {
    padding-inline: 15px;
  }
}

.p-top-philosophy__text {
  font-size: 16px;
  font-weight: var(--normal);
  line-height: 2.38;
  letter-spacing: 0;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-philosophy__text {
    font-size: 14px;
    line-height: 2.18;
  }
}

@media (max-width: 767px) {
  .p-top-philosophy__button {
    text-align: center;
  }
}

.p-top-philosophy__catch {
  font-family: var(--font-family-secondary);
  font-size: 34px;
  font-weight: var(--semi-bold);
  line-height: 1;
  color: var(--color-white);
  margin-block: 45px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .p-top-philosophy__catch {
    margin-block: 20px;
    font-size: 24px;
    letter-spacing: -0.01em;
  }
}

.p-philosophy {
  background-color: var(--color-primary);
  min-height: 100vh;
  padding-top: var(--header-height);
  padding-bottom: 190px;
}
@media (max-width: 767px) {
  .p-philosophy {
    padding-top: var(--header-height-sp);
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .p-philosophy .p-footer {
    margin-top: 30px;
  }
}

.p-philosophy__frame.p-top-section-frame {
  grid-template-columns: auto 1fr;
  --top-section-nav-width: 300px;
  --top-section-gap: 20px;
  --top-section-sticky-top: calc(var(--header-height) + 28px);
}
@media (width <= 1350px) {
  .p-philosophy__frame.p-top-section-frame {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .p-philosophy__frame.p-top-section-frame {
    --top-section-gap: 0;
    --top-section-sticky-top: auto;
    margin-top: 0;
  }
}

.p-philosophy__frame .p-philosophy__nav {
  padding-left: 0;
  padding-top: 0;
}

.p-philosophy__nav .p-philosophy__heading {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .p-philosophy__nav .p-philosophy__heading {
    margin-top: 10px;
  }
}

.p-philosophy__nav .c-round-button {
  margin-top: 220px;
}
@media (width <= 1350px) {
  .p-philosophy__nav .c-round-button {
    display: none;
  }
}

.p-philosophy__back-to-top {
  display: none;
}
@media (width <= 1350px) {
  .p-philosophy__back-to-top {
    display: inline-flex;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 100;
    background-color: #eb4e06;
  }
}
@media (max-width: 767px) {
  .p-philosophy__back-to-top {
    font-size: 12px;
    font-weight: var(--semi-bold);
    border-width: 2px;
  }
}

.p-philosophy__logo {
  inline-size: fit-content;
}

.p-philosophy__logo-image {
  display: block;
  width: 206px;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .p-philosophy__logo-image {
    width: 150px;
  }
}

.p-philosophy__heading {
  display: grid;
  row-gap: 8px;
}

.p-philosophy__heading-en {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 40px;
  font-weight: var(--bold);
  line-height: 1.1;
  color: var(--color-white);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-philosophy__heading-en {
    font-size: 29px;
    font-weight: var(--semi-bold);
    line-height: 1.1;
  }
}

.p-philosophy__heading-ja {
  margin: 0;
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.4;
  letter-spacing: 0.047em;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-philosophy__heading-ja {
    font-size: 12px;
  }
}

.p-philosophy__content {
  min-height: 2600px;
}
@media (max-width: 767px) {
  .p-philosophy__content {
    min-height: auto;
  }
}

.p-philosophy__content-block {
  width: 100%;
}

.p-philosophy__content-block--mvv {
  min-height: 780px;
}
@media (max-width: 767px) {
  .p-philosophy__content-block--mvv {
    min-height: auto;
  }
}

.p-philosophy__content-block--ceo {
  margin-top: 85px;
}
@media (max-width: 767px) {
  .p-philosophy__content-block--ceo {
    margin-top: 65px;
  }
}

.p-philosophy-mvv {
  position: relative;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .p-philosophy-mvv {
    padding-left: 10px;
  }
}

.p-philosophy-mvv__heading {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 28px;
  font-weight: var(--bold);
  line-height: 1;
  letter-spacing: 0.018em;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-philosophy-mvv__heading {
    font-size: 14px;
    font-weight: var(--semi-bold);
    gap: 17px;
  }
}
.p-philosophy-mvv__heading::before {
  --_icon-size: 0.75lh;
  translate: 50% 0;
  flex-shrink: 0;
  width: var(--_icon-size);
  height: auto;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_icon-size)) / 2);
  margin-left: calc(-1 * var(--_icon-size));
  content: "";
  position: relative;
  background: var(--color-white);
  border-radius: calc(infinity * 1px);
}
@media (max-width: 767px) {
  .p-philosophy-mvv__heading::before {
    --_icon-size: 1lh;
  }
}

.p-philosophy-mvv__title {
  border-bottom: 2px solid var(--color-white);
}
@media (max-width: 767px) {
  .p-philosophy-mvv__title {
    border-bottom: 1px solid var(--color-white);
  }
}

.p-philosophy-mvv__item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .p-philosophy-mvv__item::before {
    width: 1px;
  }
}

.p-philosophy-mvv__item--value::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1 * var(--_connector-width));
  width: var(--_connector-width);
  height: 2px;
  background-color: var(--color-white);
  transform: rotate(22deg);
  transform-origin: right center;
}
@media (max-width: 767px) {
  .p-philosophy-mvv__item--value::after {
    height: 1px;
    left: -28px;
    width: 29px;
    transform: rotate(44deg);
  }
}

.p-philosophy-mvv__item {
  position: relative;
  display: grid;
  row-gap: 30px;
  padding-block: 10px 85px;
}
@media (max-width: 767px) {
  .p-philosophy-mvv__item {
    row-gap: 16px;
    padding-block: 8px 50px;
  }
}

.p-philosophy-mvv__body {
  padding-left: 60px;
}
@media (max-width: 767px) {
  .p-philosophy-mvv__body {
    display: grid;
    gap: 5px;
    padding-left: 18px;
  }
}

.p-philosophy-mvv__item--mission .p-philosophy-mvv__text {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 68px;
  font-weight: var(--bold);
  line-height: 1.1;
  letter-spacing: 0.047em;
}
@media (max-width: 767px) {
  .p-philosophy-mvv__item--mission .p-philosophy-mvv__text {
    font-size: 22px;
    font-weight: var(--semi-bold);
    line-height: 1.45;
  }
}

.p-philosophy-mvv__item--vision .p-philosophy-mvv__text {
  margin: 0;
  color: var(--color-white);
  font-size: 39px;
  font-weight: var(--bold);
  line-height: 1.25;
  letter-spacing: 0.047em;
}
@media (max-width: 767px) {
  .p-philosophy-mvv__item--vision .p-philosophy-mvv__text {
    font-size: 20px;
    line-height: 1.7;
  }
}

.p-philosophy-mvv__item--value .p-philosophy-mvv__text {
  margin: 0;
  color: var(--color-white);
  font-size: 27px;
  font-weight: var(--bold);
  line-height: 1.9;
  letter-spacing: 0.047em;
}
@media (max-width: 767px) {
  .p-philosophy-mvv__item--value .p-philosophy-mvv__text {
    font-size: 18px;
    line-height: 1.6;
  }
}

.p-philosophy-mvv__item--value .p-philosophy-mvv__text + .p-philosophy-mvv__text {
  margin-top: 30px;
}

.p-philosophy-mvv__item--value {
  --_connector-width: 140px;
  margin-top: 50px;
  margin-left: 130px;
}
@media (max-width: 767px) {
  .p-philosophy-mvv__item--value {
    margin-left: 20px;
    margin-top: 20px;
  }
}

.p-philosophy-mvv__description {
  margin: 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: var(--light);
  line-height: 1.8;
  letter-spacing: 0.017em;
}
@media (max-width: 767px) {
  .p-philosophy-mvv__description {
    font-size: 12px;
    line-height: 1.9;
  }
}

.p-philosophy-ceo__section-heading {
  display: grid;
  row-gap: 8px;
}

.p-philosophy-ceo__section-heading-en {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 28px;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-philosophy-ceo__section-heading-en {
    font-size: 20px;
    font-weight: var(--semi-bold);
  }
}

.p-philosophy-ceo__section-heading-ja {
  margin: 0;
  font-size: 17px;
  font-weight: var(--bold);
  line-height: 1.4;
  letter-spacing: 0.047em;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-philosophy-ceo__section-heading-ja {
    font-size: 12px;
  }
}

.p-philosophy-ceo__card {
  margin-top: 24px;
  padding-block: 45px 120px;
  padding-inline: 45px 80px;
  display: grid;
  grid-template-columns: 325px 1fr;
  gap: 60px;
  background-color: var(--color-white);
  box-shadow: 30px 30px 0 rgba(173, 103, 55, 0.45);
}
@media (width <= 1050px) {
  .p-philosophy-ceo__card {
    grid-template-columns: 1fr;
    padding-inline: 45px;
  }
}
@media (max-width: 767px) {
  .p-philosophy-ceo__card {
    margin-top: 10px;
    padding: 20px 15px 80px;
    grid-template-columns: 1fr;
    row-gap: 40px;
    background-color: var(--color-white);
    box-shadow: none;
  }
}

.p-philosophy-ceo__profile {
  display: grid;
  align-content: start;
  row-gap: 14px;
}
@media (width <= 1050px) {
  .p-philosophy-ceo__profile {
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .p-philosophy-ceo__profile {
    grid-template-columns: 163px 1fr;
    grid-template-areas: "image role" "image name" "image toggle" "text  text";
    gap: 10px;
    align-items: start;
  }
}

.p-philosophy-ceo__profile > :not(.p-philosophy-ceo__profile-image):not(.p-philosophy-ceo__biography-toggle) {
  padding-inline: 10px;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__profile > :not(.p-philosophy-ceo__profile-image):not(.p-philosophy-ceo__biography-toggle) {
    padding-inline: 0;
  }
}

.p-philosophy-ceo__profile-image {
  width: 100%;
  aspect-ratio: 325/385;
  overflow: hidden;
}
@media (width <= 1050px) {
  .p-philosophy-ceo__profile-image {
    max-width: 325px;
    grid-row: 1/3;
  }
}
@media (max-width: 767px) {
  .p-philosophy-ceo__profile-image {
    aspect-ratio: 163/192;
    grid-area: image;
  }
}

.p-philosophy-ceo__profile-image-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-philosophy-ceo__profile-role {
  margin: 0;
  font-size: 13px;
  font-weight: var(--bold);
  line-height: 1.4;
  letter-spacing: 0.047em;
  color: var(--color-black);
}
@media (width <= 1050px) {
  .p-philosophy-ceo__profile-role {
    align-self: end;
  }
}
@media (max-width: 767px) {
  .p-philosophy-ceo__profile-role {
    font-size: 12px;
    align-self: end;
    grid-area: role;
  }
}

.p-philosophy-ceo__profile-name {
  margin: 0;
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.2;
  letter-spacing: 0.047em;
  color: var(--color-black);
}
@media (width <= 1050px) {
  .p-philosophy-ceo__profile-name {
    align-self: start;
  }
}
@media (max-width: 767px) {
  .p-philosophy-ceo__profile-name {
    font-size: 18px;
    align-self: start;
    grid-area: name;
  }
}

.p-philosophy-ceo__profile-name-en {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: var(--normal);
  letter-spacing: 0.018em;
  margin-left: 8px;
}
@media (width <= 1050px) {
  .p-philosophy-ceo__profile-name-en {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .p-philosophy-ceo__profile-name-en {
    display: block;
    margin-left: 0;
    margin-top: 5px;
    font-size: 13px;
  }
}

.p-philosophy-ceo__biography-toggle {
  display: none;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__biography-toggle {
    grid-area: toggle;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 220px;
    padding: 6px 10px;
    background-color: var(--color-primary);
    border: none;
  }
}

.p-philosophy-ceo__biography-toggle-label {
  font-size: 12px;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.p-philosophy-ceo__biography-toggle-icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 10px 7px;
  border-color: transparent transparent var(--color-white) transparent;
  transition: transform 0.2s ease;
}
[aria-expanded=false] .p-philosophy-ceo__biography-toggle-icon {
  transform: rotate(180deg);
}

.p-philosophy-ceo__profile-text {
  margin: 0;
  font-size: 14px;
  font-weight: var(--light);
  line-height: 1.75;
  letter-spacing: 0.017em;
  color: var(--color-black);
}
.p-philosophy-ceo__profile-text > p {
  margin: 0;
}
.p-philosophy-ceo__profile-text > p + p {
  margin-top: 1em;
}
@media (width <= 1050px) {
  .p-philosophy-ceo__profile-text {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .p-philosophy-ceo__profile-text {
    grid-area: text;
    font-size: 12px;
    line-height: 1.7;
  }
  .p-philosophy-ceo__profile-text.is-closed {
    display: none;
  }
}

.p-philosophy-ceo__message {
  display: grid;
  align-content: start;
  row-gap: 80px;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__message {
    row-gap: 40px;
  }
}

.p-philosophy-ceo__lead {
  margin: 0;
  font-size: 27px;
  font-weight: var(--semi-bold);
  line-height: 1.78;
  letter-spacing: 0.017em;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-philosophy-ceo__lead {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 40px;
  }
}

.p-philosophy-ceo__separator {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--color-black);
}
@media (max-width: 767px) {
  .p-philosophy-ceo__separator {
    width: 60px;
    border-top: 4px solid var(--color-primary);
    border-radius: 999px;
    margin-inline: auto;
  }
}

.p-philosophy-ceo__section {
  display: grid;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__section {
    row-gap: 20px;
  }
}

.p-philosophy-ceo__title {
  margin: 0;
  font-size: 23px;
  font-weight: var(--semi-bold);
  line-height: 1.65;
  letter-spacing: 0.017em;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-philosophy-ceo__title {
    font-size: 17px;
    line-height: 1.65;
    padding-left: 10px;
    border-left: 4px solid var(--color-primary);
  }
}

.p-philosophy-ceo__paragraph {
  margin: 0;
  font-size: 15px;
  font-weight: var(--light);
  line-height: 1.85;
  letter-spacing: 0.017em;
  color: var(--color-black);
}
.p-philosophy-ceo__paragraph > p {
  margin: 0;
}
.p-philosophy-ceo__paragraph > p + p {
  margin-top: 1em;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__paragraph {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 0.035em;
  }
}

.p-philosophy-ceo__signature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
}

.p-philosophy-ceo__signature-info {
  letter-spacing: 0.05em;
  line-height: 1.6;
  white-space: nowrap;
  margin-right: 100px;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__signature-info {
    margin-right: 60px;
  }
}

.p-philosophy-ceo__signature-company {
  font-size: 14px;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__signature-company {
    font-size: 9px;
  }
}

.p-philosophy-ceo__signature-title {
  font-size: 14px;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__signature-title {
    font-size: 9px;
  }
}

.p-philosophy-ceo__signature-name {
  font-size: 16px;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__signature-name {
    font-size: 10px;
  }
}

.p-philosophy-ceo__signature-sign {
  width: 260px;
  align-self: flex-end;
  margin-top: -15px;
}
@media (max-width: 767px) {
  .p-philosophy-ceo__signature-sign {
    width: 160px;
    margin-top: -10px;
  }
}

.p-philosophy-ceo__signature-sign img {
  width: 100%;
  height: auto;
}

.p-top-business__nav {
  display: grid;
  row-gap: 15px;
}

.p-top-business__content {
  display: grid;
  gap: 45px;
  justify-items: center;
}
@media (max-width: 767px) {
  .p-top-business__content {
    gap: 22px;
  }
}

.p-top-business__side-text-block {
  display: grid;
  gap: 18px;
  padding-left: 12px;
  border-left: 1px solid var(--color-primary);
  padding-block: 12px;
}
@media (max-width: 767px) {
  .p-top-business__side-text-block {
    display: none;
  }
}

.p-top-business__side-text {
  font-size: 14px;
  line-height: 1.45;
  color: #4d4d4d;
}
@media (max-width: 767px) {
  .p-top-business__side-text {
    font-size: 10px;
  }
}

.p-top-business__headline {
  padding: 10px;
  font-size: 25px;
  letter-spacing: 0.05em;
  font-weight: var(--medium);
  line-height: 1;
  text-align: center;
  border: 1px solid #8f8f8f;
  width: min(890px, 100%);
}
@media (max-width: 767px) {
  .p-top-business__headline {
    font-size: 15px;
  }
}

.p-top-business__headline-number {
  position: relative;
  display: inline-block;
  margin-inline: 2px;
  font-size: 25px;
  line-height: 1;
  color: transparent;
  text-align: center;
  width: 50px;
}
@media (max-width: 767px) {
  .p-top-business__headline-number {
    font-size: 15px;
  }
}

.p-top-business__headline-number::before {
  position: absolute;
  top: -35px;
  left: 50%;
  font-size: 72px;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--color-primary);
  content: attr(data-number);
  transform: translateX(-50%);
  font-family: var(--font-family-secondary);
}
@media (max-width: 767px) {
  .p-top-business__headline-number::before {
    top: -38px;
    font-size: 80px;
  }
}

.p-top-business__sub-headline {
  font-size: 18px;
  font-weight: var(--medium);
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-business__sub-headline {
    padding-top: 12px;
    font-size: 16px;
  }
}

.p-top-business__click-hint {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.p-top-business__fields-section {
  padding-inline: 30%;
}
@media (max-width: 767px) {
  .p-top-business__fields-section {
    padding-inline: 0;
  }
}

.p-top-business__map {
  position: relative;
  margin-top: 85px;
  max-width: 733px;
}
@media (max-width: 767px) {
  .p-top-business__map {
    margin-top: 25px;
  }
}

.p-top-business__map-img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-business__map-inner {
  position: relative;
}

.p-top-business__map-hover {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.p-top-business__map-hover.is-active {
  opacity: 1;
}

.p-top-business__map-overlays {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-top-business__map-overlays {
    display: none;
  }
}

.p-top-business__map-overlays-item {
  position: absolute;
  /* 2x書き出しの半分の幅 ÷ 733px で % 指定 */
}

.p-top-business__map-overlays-item img {
  width: 100%;
}

.p-top-business__map-overlays-item--and-more {
  top: 12%;
  left: -28%;
  width: 42.09%; /* 308.5 / 733 (617÷2) */
}

.p-top-business__map-overlays-item--tourism {
  top: 1%;
  left: 57%;
  width: 56.48%; /* 414 / 733 (828÷2) */
}

.p-top-business__map-overlays-item--medical {
  top: 28%;
  left: 92%;
  width: 50%; /* 366.5 / 733 (733÷2) */
}

.p-top-business__map-overlays-item--media {
  top: 76%;
  left: 86%;
  width: 47.2%; /* 346 / 733 (692÷2) */
}

.p-top-business__map-overlays-item--food {
  top: 88%;
  left: -12%;
  width: 56.21%; /* 412 / 733 (824÷2) */
}

.p-top-business__map-overlays-item--human {
  top: 62%;
  left: -33%;
  width: 39.9%; /* 292.5 / 733 (585÷2) */
}

.p-top-business__arrow {
  width: 80px;
  height: auto;
  aspect-ratio: 63/92;
}
@media (max-width: 767px) {
  .p-top-business__arrow {
    width: 45px;
  }
}

.p-top-business__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-top-business__methods-section {
  width: 100%;
}

.p-top-business__approach-title {
  font-family: var(--font-family-secondary);
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-business__approach-title {
    font-size: 17px;
  }
}

.p-top-business__approach-list {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-top-business__approach-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }
}

.p-top-business__approach-item {
  display: grid;
  place-items: center;
  gap: 10px;
  width: min(420px, 100%);
  min-height: 95px;
  padding-block: 10px;
  padding-inline: 5px;
  background-color: rgb(51, 51, 51);
  color: var(--color-white);
  border: 1px solid var(--color-black);
}
@media (max-width: 767px) {
  .p-top-business__approach-item {
    letter-spacing: 0;
    width: min(300px, 100%);
    padding-block: 5px;
    min-height: 52px;
    gap: 0;
  }
}

.p-top-business__approach-item-title {
  align-self: end;
  display: block;
  font-family: var(--font-family-secondary);
  font-size: 22px;
  font-weight: var(--semi-bold);
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-top-business__approach-item-title {
    font-size: 16px;
  }
}

.p-top-business__approach-item-desc {
  align-self: start;
  display: block;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: var(--light);
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-business__approach-item-desc {
    font-size: 12px;
  }
}

.p-top-business-modal {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  background: transparent;
  border: 0;
}

.p-top-business-modal::backdrop {
  background: url("../../images/top/img-modal-backdrop-pc.webp") center/cover no-repeat;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .p-top-business-modal::backdrop {
    background-image: url("../../images/top/img-modal-backdrop-sp.webp");
  }
}

.p-top-business-modal__panel {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  outline: none;
  max-width: 1250px;
  max-height: 90dvh;
  padding: 50px 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: var(--color-primary);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .p-top-business-modal__panel {
    width: 90%;
    max-height: 95dvh;
    padding: 24px 14px;
    border-radius: 10px;
  }
}

.p-top-business-modal__panel:has(.p-top-business-modal__content) {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.p-top-business-modal__body:has(.p-top-business-modal__content) {
  display: block;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-inline: 10px;
}

.p-top-business-modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 45px;
  aspect-ratio: 1;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
.p-top-business-modal__close:focus:not(:focus-visible) {
  outline: none;
}
@media (max-width: 767px) {
  .p-top-business-modal__close {
    top: 2px;
    right: 2px;
    width: 28px;
    aspect-ratio: 1;
  }
}

.p-top-business-modal__close-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-business-modal__close-icon::before,
.p-top-business-modal__close-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 1px;
  content: "";
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-business-modal__close-icon::before,
  .p-top-business-modal__close-icon::after {
    width: 20px;
    background-color: var(--color-white);
  }
}

.p-top-business-modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-top-business-modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-top-business-modal__body {
  display: grid;
  grid-template: "header main image"/185px 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (width <= 1200px) {
  .p-top-business-modal__body {
    grid-template: "header header" "main image"/1fr 1fr;
  }
}
@media (width <= 900px) {
  .p-top-business-modal__body {
    grid-template: "header" "image" "main"/1fr;
  }
}
@media (max-width: 767px) {
  .p-top-business-modal__body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-top-business-modal__content {
  display: grid;
  grid-template: "header main image"/185px 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (width <= 1200px) {
  .p-top-business-modal__content {
    grid-template: "header header" "main image"/1fr 1fr;
  }
}
@media (width <= 900px) {
  .p-top-business-modal__content {
    gap: 20px;
    grid-template: "header" "image" "main"/1fr;
  }
}

.p-top-business-modal__image {
  justify-self: center;
  grid-area: image;
  max-width: 480px;
}

.p-top-business-modal__header {
  grid-area: header;
  display: inline-grid;
  gap: 16px;
}
@media (width <= 1200px) {
  .p-top-business-modal__header {
    grid-template-columns: 125px 1fr;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .p-top-business-modal__header {
    grid-template-columns: 100px 1fr;
    column-gap: 12px;
    align-items: start;
  }
}

.p-top-business-modal__main {
  grid-area: main;
}

.p-top-business-modal__heading-block {
  display: grid;
  gap: 12px;
}
@media (max-width: 767px) {
  .p-top-business-modal__heading-block {
    gap: 8px;
  }
}

.p-top-business-modal__heading-en {
  position: relative;
  padding-bottom: 10px;
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 22px;
  font-weight: var(--semi-bold);
  line-height: 1;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
@media (max-width: 767px) {
  .p-top-business-modal__heading-en {
    padding-bottom: 6px;
    font-size: 14px;
  }
}

.p-top-business-modal__heading-ja {
  font-size: 19px;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-business-modal__heading-ja {
    font-size: 16px;
  }
}

.p-top-business-modal__lead {
  font-size: 13px;
  font-weight: var(--light);
  line-height: 2;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-business-modal__lead {
    font-size: 12px;
    line-height: 1.6;
  }
}

.p-top-business-modal__flow {
  display: grid;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .p-top-business-modal__flow {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 0;
    row-gap: 60px;
  }
}

.p-top-business-modal__flow-item {
  position: relative;
}

.p-top-business-modal__media {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top-business-modal__media {
    grid-template-columns: auto 1fr;
    column-gap: 12px;
  }
}

/* フローアイテムが並列する場合に擬似要素で矢印を表示（縦並び時は下向き） */
.p-top-business-modal__flow-item + .p-top-business-modal__flow-item::after {
  position: absolute;
  top: -20px;
  left: 50%;
  translate: -50% 0;
  border-top: 14px solid var(--color-white);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  content: "";
}
@media (max-width: 767px) {
  .p-top-business-modal__flow-item + .p-top-business-modal__flow-item::after {
    top: -37px;
  }
}

.p-top-business-modal__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  aspect-ratio: 1/1;
  height: auto;
  margin: 0;
  font-size: 15px;
  font-weight: var(--semi-bold);
  line-height: 1;
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .p-top-business-modal__label {
    font-size: 14px;
  }
}

.p-top-business-modal__label--approach {
  font-size: 12px;
}

.p-top-business-modal__flow-text {
  margin: 0;
  font-size: 16px;
  font-weight: var(--normal);
  line-height: 1.6;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-business-modal__flow-text {
    font-size: 14px;
  }
}

.p-top-business-modal__flow-media {
  width: 100%;
  max-width: 480px;
}
@media (max-width: 767px) {
  .p-top-business-modal__flow-media {
    margin-top: 0;
  }
}

.p-top-business-modal__flow-media img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top-business-modal__logo {
  margin-top: 20px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-top-business-modal__logo {
    margin-top: 10px;
  }
}

/* モーダルごとに元画像の半分のサイズを指定 */
#top-business-modal-tourism .p-top-business-modal__logo {
  max-width: 300px;
}
@media (max-width: 767px) {
  #top-business-modal-tourism .p-top-business-modal__logo {
    max-width: 200px;
  }
}

#top-business-modal-medial .p-top-business-modal__logo {
  max-width: 300px;
}
@media (max-width: 767px) {
  #top-business-modal-medial .p-top-business-modal__logo {
    max-width: 200px;
  }
}

#top-business-modal-media .p-top-business-modal__logo {
  max-width: 257px;
}
@media (max-width: 767px) {
  #top-business-modal-media .p-top-business-modal__logo {
    max-width: 200px;
  }
}

#top-business-modal-food .p-top-business-modal__logo {
  max-width: 246px;
}
@media (max-width: 767px) {
  #top-business-modal-food .p-top-business-modal__logo {
    max-width: 200px;
  }
}

#top-business-modal-human .p-top-business-modal__logo {
  max-width: 170px;
}
@media (max-width: 767px) {
  #top-business-modal-human .p-top-business-modal__logo {
    max-width: 200px;
  }
}

#top-business-modal-andmore .p-top-business-modal__logo {
  max-width: 365px;
}
@media (max-width: 767px) {
  #top-business-modal-andmore .p-top-business-modal__logo {
    max-width: 250px;
  }
}

.p-top-business-modal__logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-top-business-modal__cta {
  display: grid;
  place-items: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-top-business-modal__cta {
    padding-top: 14px;
    padding-bottom: 10px;
  }
}

.p-top-news {
  overflow-x: clip;
}

.p-top-news__wrap {
  position: relative;
}

.p-top-news__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-right: calc(50% - 50vw);
  background-color: var(--color-primary);
  border-radius: 20px 0 0 20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-top-news__wrap::before {
    border-radius: 10px;
    margin-left: 0;
    margin-right: 0;
    inset: 0 -5px;
  }
}

.p-top-news__nav {
  padding-top: 16px;
}
@media (max-width: 767px) {
  .p-top-news__nav {
    padding-top: 0;
  }
}

.p-top-news .c-nav-heading .c-nav-heading__eyebrow {
  color: var(--color-black);
}

.p-top-news .c-nav-heading .c-nav-heading__title {
  color: var(--color-white);
}

.p-top-news__content {
  display: grid;
  gap: 75px;
}
@media (max-width: 767px) {
  .p-top-news__content {
    padding-inline: 10px;
    gap: 40px;
  }
}

.p-top-news__tab {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: var(--medium);
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.p-top-news__tab--active {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.p-top-news__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(285px, 100%), 1fr));
  grid-template-rows: auto auto 1fr auto;
  column-gap: 55px;
  row-gap: 16px;
  align-items: start;
}
@media (width <= 1150px) {
  .p-top-news__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-top-news__cards {
    grid-template-columns: 1fr;
    column-gap: 40px;
    row-gap: 5px;
  }
}

@media (max-width: 767px) {
  .p-top-news .p-top-news__cards > .c-news-card:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 767px) {
  .p-top-news__more {
    text-align: center;
  }
}

.p-top-note .c-nav-heading {
  --c-nav-heading-eyebrow-font-weight: var(--bold);
  --c-nav-heading-eyebrow-color: var(--color-primary);
  --c-nav-heading-title-color: var(--color-black);
}

.p-top-note__nav {
  padding-top: 16px;
}
@media (max-width: 767px) {
  .p-top-note__nav {
    padding-top: 0;
  }
}

.p-top-note__subtitle {
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.3;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-top-note__subtitle {
    font-size: 14px;
  }
}

.p-top-note .c-media-info {
  grid-area: media-info;
  --c-media-info-color: var(--color-black);
  --c-media-info-padding-top: 56px;
  --c-media-info-max-inline-size: 230px;
}
@media (width <= 1800px) {
  .p-top-note .c-media-info {
    justify-self: center;
    text-align: center;
  }
}

.p-top-note .c-view-more-link {
  grid-area: view-more;
  --c-view-more-link-color: var(--color-black);
  --c-view-more-link-border-color: var(--color-black);
}
@media (width <= 1800px) {
  .p-top-note .c-view-more-link {
    align-self: center;
  }
}

.p-top-note__content {
  display: grid;
  place-items: center;
  grid-template: "media-info cards view-more"/228px auto auto;
  column-gap: 24px;
  width: fit-content;
  margin-inline: auto;
}
@media (width <= 1800px) {
  .p-top-note__content {
    width: 100%;
    row-gap: 50px;
    grid-template: "media-info ." "cards      view-more"/1fr auto;
  }
}
@media (width <= 1000px) {
  .p-top-note__content {
    row-gap: 50px;
    grid-template: "media-info" "cards" "view-more"/1fr;
  }
}
@media (max-width: 767px) {
  .p-top-note__content {
    margin-inline: auto;
    grid-template: "media-info" "cards" "view-more"/1fr;
    row-gap: 20px;
  }
}

.p-top-note__cards {
  grid-area: cards;
  display: flex;
  gap: 14px;
}
@media (max-width: 767px) {
  .p-top-note__cards {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}

.p-top-note__card {
  width: min(275px, 100%);
  position: relative;
  display: grid;
  align-items: start;
  row-gap: 40px;
  padding: 20px 12px;
  background-color: rgb(247, 245, 245);
  border: 2px solid #4b4b4b;
  border-radius: 24px;
  min-height: 400px;
  grid-template: "image" auto "body" 1fr/1fr;
}
@media (max-width: 767px) {
  .p-top-note__card {
    width: 100%;
    aspect-ratio: auto;
    grid-template: "image title" "image date"/145px 1fr;
    border-radius: 10px;
    row-gap: 20px;
    column-gap: 10px;
    padding: 10px 15px;
    min-height: auto;
  }
}

.p-top-note__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  color: var(--color-black);
  text-decoration: none;
}

.p-top-note__card-image {
  grid-area: image;
  aspect-ratio: 250/145;
  overflow: clip;
}
@media (max-width: 767px) {
  .p-top-note__card-image {
    aspect-ratio: 145/120;
  }
}

@media (any-hover: hover) {
  .p-top-note__card:has(.p-top-note__card-link:hover) .p-top-note__card-image img {
    transform: scale(1.1);
  }
}
.p-top-note__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.p-top-note__card-body {
  grid-area: body;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 12px;
  grid-template: "date" "title"/1fr;
}
@media (max-width: 767px) {
  .p-top-note__card-body {
    display: contents;
  }
}

.p-top-note__card-date {
  grid-area: date;
  font-family: var(--font-family-secondary);
  font-size: 15px;
  font-weight: var(--normal);
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-note__card-date {
    font-size: 12px;
    place-self: end;
  }
}

.p-top-note__card-title {
  grid-area: title;
  font-size: 16px;
  font-weight: var(--light);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-top-note__card-title {
    font-size: 14px;
  }
}

.p-top-recruit {
  overflow-x: clip;
}

.p-top-recruit__wrap {
  position: relative;
  align-items: center;
}
.p-top-recruit__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  right: 0;
  background-color: var(--color-primary);
  border-radius: 0 20px 20px 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-top-recruit__wrap::before {
    border-radius: 10px;
    margin-left: 0;
    inset: 0 -5px;
  }
}

.p-top-recruit__subtitle {
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.3;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-recruit__subtitle {
    font-size: 14px;
  }
}

.p-top-recruit__content {
  --recruit-image-width: 800px;
  position: relative;
  display: grid;
  place-items: center;
  grid-template: "media-info image-wrap view-more"/352px 1fr auto;
  column-gap: 24px;
}
@media (width <= 1800px) {
  .p-top-recruit__content {
    row-gap: 50px;
    max-width: calc(min(var(--recruit-image-width), 100%) + 24px + 150px);
    margin-inline: auto;
    grid-template: "media-info  ." "image-wrap  view-more"/1fr auto;
  }
}
@media (width <= 1000px) {
  .p-top-recruit__content {
    max-width: none;
    grid-template: "media-info" "image-wrap" "view-more"/1fr;
  }
}
@media (max-width: 767px) {
  .p-top-recruit__content {
    margin-inline: auto;
    grid-template: "media-info" "image-wrap" "view-more"/1fr;
    row-gap: 20px;
    justify-items: center;
  }
}

.p-top-recruit__image-wrap {
  grid-area: image-wrap;
  position: relative;
  width: min(var(--recruit-image-width), 100%);
  overflow: hidden;
}

.p-top-recruit__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-recruit__content .c-media-info {
  width: 80%;
}

.p-top-recruit__content .c-media-info__logo {
  max-width: 248px;
}

.p-top-recruit .c-media-info {
  grid-area: media-info;
  --c-media-info-color: var(--color-white);
  --c-media-info-official-font-size: 16px;
  --c-media-info-logo-max-width: 248px;
}
@media (width <= 1800px) {
  .p-top-recruit .c-media-info {
    justify-self: center;
    text-align: center;
  }
}

.p-top-recruit .c-view-more-link {
  grid-area: view-more;
  --c-view-more-link-color: var(--color-white);
  --c-view-more-link-border-color: var(--color-white);
  --c-view-more-link-size: 150px;
}
@media (width <= 1800px) {
  .p-top-recruit .c-view-more-link {
    align-self: center;
  }
}

.p-top-company .c-nav-heading {
  --c-nav-heading-eyebrow-font-weight: var(--bold);
  --c-nav-heading-eyebrow-color: var(--color-primary);
  --c-nav-heading-title-color: var(--color-black);
}

.p-top-company__nav {
  align-self: start;
  display: grid;
  row-gap: 15px;
}

@media (max-width: 767px) {
  .p-top-company__content {
    padding-inline: 15px;
  }
}

.p-top-company__title {
  display: flex;
  gap: 20px;
  align-items: center;
}

.p-top-company__title-main {
  font-size: 24px;
  line-height: 1;
  font-weight: var(--bold);
}
@media (max-width: 767px) {
  .p-top-company__title-main {
    font-size: 17px;
  }
}

.p-top-company__title-sub {
  font-family: var(--font-family-secondary);
  font-size: 16px;
  font-weight: var(--semi-bold);
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-company__title-sub {
    font-size: 15px;
  }
}

.p-top-company__table {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 30px;
  row-gap: 15px;
  margin-top: 24px;
  max-width: 800px;
}
@media (max-width: 767px) {
  .p-top-company__table {
    column-gap: 15px;
    row-gap: 5px;
    margin-top: 10px;
  }
}

.p-top-company__row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
}

.p-top-company__row dt {
  font-size: 16px;
  font-weight: var(--light);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-top-company__row dt {
    font-size: 13px;
    line-height: 1.75;
  }
}

.p-top-company__row dd {
  font-size: 16px;
  font-weight: var(--light);
  line-height: 1.9;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-top-company__row dd {
    font-size: 13px;
    line-height: 1.75;
  }
}

.p-top-company__map-link {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  place-items: center;
  gap: 10px;
  margin-left: 10px;
  padding-block: 4px;
  padding-inline: 10px;
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: var(--light);
  line-height: 1;
  border: 1px solid var(--color-black);
  vertical-align: middle;
  transition: opacity var(--duration-default);
}
.p-top-company__map-link::before {
  content: "";
}
.p-top-company__map-link::after {
  justify-content: end;
  content: "";
  display: inline-block;
  width: 0.93lh;
  aspect-ratio: 15/13;
  flex-shrink: 0;
  background-color: currentColor;
  mask-image: url("../../images/common/icon-external-link.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media (any-hover: hover) {
  .p-top-company__map-link:hover {
    opacity: var(--hover-opacity);
  }
}
@media (max-width: 767px) {
  .p-top-company__map-link {
    display: grid;
    max-width: 125px;
    margin-left: 0;
    margin-top: 4px;
    gap: 4px;
    min-width: 78px;
    height: 22px;
    font-size: 12px;
  }
}

.p-top-company__more {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .p-top-company__more {
    margin-top: 35px;
    text-align: center;
  }
}

.p-top-company__overview,
.p-top-company__history {
  display: block;
}

.p-top-company__history {
  margin-top: 250px;
}
@media (max-width: 767px) {
  .p-top-company__history {
    margin-top: 50px;
  }
}

.p-top-company__section-header {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-black);
}
@media (max-width: 767px) {
  .p-top-company__section-header {
    gap: 8px;
    padding-bottom: 8px;
  }
}

button.p-top-company__section-header {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-black);
  cursor: pointer;
  appearance: none;
  text-align: left;
}
button.p-top-company__section-header::after {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 13px 0 13px;
  border-color: var(--color-black) transparent transparent transparent;
  transition: transform 0.2s ease;
}
button.p-top-company__section-header[aria-expanded=true]::after {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  button.p-top-company__section-header::after {
    margin-left: auto;
  }
}

.p-top-company__history-years {
  display: grid;
  row-gap: 35px;
  margin-top: 24px;
  max-width: 800px;
}
.p-top-company__history-years.is-closed {
  display: none;
}

.p-top-company__history-year {
  display: grid;
  row-gap: 12px;
}

.p-top-company__history-year-label {
  font-family: var(--font-family-secondary);
  font-size: 19px;
  line-height: 1;
  color: var(--color-black);
  font-weight: var(--normal);
}
@media (max-width: 767px) {
  .p-top-company__history-year-label {
    font-size: 17px;
  }
}

.p-top-company__history-list {
  display: grid;
  row-gap: 8px;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .p-top-company__history-list {
    row-gap: 4px;
  }
}

.p-top-company__history-item {
  --_bullet-size: 0.25em;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 14px;
  font-weight: var(--normal);
  line-height: 2.1;
  color: var(--color-black);
}
.p-top-company__history-item::before {
  flex-shrink: 0;
  width: var(--_bullet-size);
  height: auto;
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_bullet-size)) / 2);
  content: "";
  background-color: currentColor;
  border-radius: calc(infinity * 1px);
}
@media (max-width: 767px) {
  .p-top-company__history-item {
    font-size: 14px;
    line-height: 1.7;
  }
}

.p-top-members-modal {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.p-top-members-modal::backdrop {
  background: url("../../images/top/img-modal-backdrop-pc.webp") center/cover no-repeat;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .p-top-members-modal::backdrop {
    background-image: url("../../images/top/img-modal-backdrop-sp.webp");
  }
}

.p-top-members-modal__panel {
  position: fixed;
  inset: 30px;
  height: 80dvh;
  outline: none;
  max-width: 1900px;
  margin: auto;
  overflow: hidden;
  background: var(--color-primary);
}
@media (max-width: 767px) {
  .p-top-members-modal__panel {
    inset: 50px 20px;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 10px;
    transform: none;
  }
  .p-top-members-modal__panel .p-top-members-modal__nav {
    position: sticky;
    top: 0;
    z-index: 10;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-top-section-frame.p-top-members-modal__frame {
  --top-section-nav-width: 260px;
  --top-section-gap: 22px;
  height: 100%;
  padding-block: 20px;
  overflow: hidden;
  grid-template-rows: 1fr;
}
@media (width <= 1400px) {
  .p-top-section-frame.p-top-members-modal__frame {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .p-top-section-frame.p-top-members-modal__frame {
    margin-top: 0;
    row-gap: 0;
  }
}

.p-top-members-modal__nav.p-top-section-frame__nav {
  position: static;
  top: auto;
  display: grid;
  align-content: space-between;
}
@media (width <= 1400px) {
  .p-top-members-modal__nav.p-top-section-frame__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-top-members-modal__brand {
  display: grid;
  gap: 30px;
}
@media (width <= 1400px) {
  .p-top-members-modal__brand {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .p-top-members-modal__brand {
    gap: 8px;
  }
}

.p-top-members-modal__brand-logo {
  width: 205px;
  height: auto;
}
@media (max-width: 767px) {
  .p-top-members-modal__brand-logo {
    width: 150px;
  }
}

.p-top-members-modal__brand-title {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 39px;
  font-weight: var(--semi-bold);
  line-height: 1;
  color: var(--color-white);
}
@media (width <= 1400px) {
  .p-top-members-modal__brand-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .p-top-members-modal__brand-title {
    font-size: 26px;
  }
}

.p-top-members-modal__close:focus:not(:focus-visible) {
  outline: none;
}
@media (width <= 1400px) {
  .p-top-members-modal__close {
    display: none;
  }
}

.p-top-members-modal__close-icon {
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-top-members-modal__close-icon {
    font-size: 14px;
  }
}

.p-top-members-modal__close-text {
  line-height: 1;
  text-transform: lowercase;
}
@media (width <= 1400px) {
  .p-top-members-modal__close-text {
    display: none;
  }
}

.p-top-members-modal__close-abs {
  display: none;
}
.p-top-members-modal__close-abs:focus:not(:focus-visible) {
  outline: none;
}
@media (width <= 1400px) {
  .p-top-members-modal__close-abs {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 45px;
    aspect-ratio: 1;
    padding: 0;
    cursor: pointer;
    background: none;
    border: 0;
  }
}
@media (max-width: 767px) {
  .p-top-members-modal__close-abs {
    top: 2px;
    right: 2px;
    width: 28px;
  }
}

.p-top-members-modal__close-abs-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-members-modal__close-abs-icon::before, .p-top-members-modal__close-abs-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 1px;
  content: "";
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-members-modal__close-abs-icon::before, .p-top-members-modal__close-abs-icon::after {
    width: 20px;
  }
}
.p-top-members-modal__close-abs-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-top-members-modal__close-abs-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-top-members-modal__content {
  height: 100%;
  min-height: 0;
  overflow-y: auto;
}

.p-top-members-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr));
  gap: 120px 40px;
  align-items: start;
  padding-right: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .p-top-members-modal__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 32px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-left: 16px;
  }
}

.p-top-members-modal__card {
  min-height: 335px;
  padding: 25px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  box-shadow: 20px 20px 0 rgba(164, 131, 110, 0.65);
}
@media (max-width: 767px) {
  .p-top-members-modal__card {
    min-height: auto;
    padding: 14px;
    box-shadow: 10px 10px 0 rgba(164, 131, 110, 0.65);
  }
}

.p-top-members-modal__card-head {
  display: grid;
  grid-template-columns: 235px 1fr;
  grid-template-areas: "image meta" "image toggle";
  align-items: center;
}
@media (max-width: 767px) {
  .p-top-members-modal__card-head {
    grid-template-columns: 158px 1fr;
    grid-template-areas: "image meta" "toggle toggle";
  }
}

.p-top-members-modal__image {
  grid-area: image;
  align-self: start;
  width: 100%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 240/218;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-top-members-modal__image {
    max-width: 158px;
  }
}

.p-top-members-modal__meta {
  grid-area: meta;
  display: grid;
  align-content: start;
}

.p-top-members-modal__role {
  margin: 0;
  padding-top: 4px;
  padding-left: 14px;
  padding-bottom: 6px;
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: var(--normal);
  line-height: 2;
  letter-spacing: 0.018em;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-top-members-modal__role {
    font-size: 11px;
    line-height: 1.636;
  }
}

.p-top-members-modal__divider {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.55);
}

.p-top-members-modal__name-en {
  margin: 0;
  padding-top: 18px;
  padding-left: 14px;
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: var(--light);
  line-height: 1.875;
  letter-spacing: 0.018em;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-top-members-modal__name-en {
    font-size: 12px;
    line-height: 1.583;
  }
}

.p-top-members-modal__nav .c-round-button {
  margin-top: 220px;
  gap: 20px;
}

.p-top-members-modal__name-ja {
  margin: 0;
  padding-top: 0;
  padding-left: 14px;
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.4;
  letter-spacing: 0.047em;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .p-top-members-modal__name-ja {
    font-size: 16px;
    line-height: 1.125;
  }
}

.p-top-members-modal__bio-toggle {
  grid-area: toggle;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 29px;
  margin-top: 25px;
  margin-left: 14px;
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 1;
  color: var(--color-white);
  cursor: pointer;
  background: var(--color-primary);
  border: 0;
}
@media (max-width: 767px) {
  .p-top-members-modal__bio-toggle {
    width: 100%;
    height: 24px;
    margin-top: 14px;
    margin-left: 0;
    font-size: 13px;
    max-width: 285px;
  }
}

.p-top-members-modal__bio-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  content: "";
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 0;
  border-bottom: 10px solid var(--color-white);
  transform: rotate(180deg);
  transition: transform var(--duration-default);
}

.p-top-members-modal__bio-toggle[aria-expanded=true]::after {
  transform: rotate(0deg);
}

.p-top-members-modal__bio {
  margin-top: 25px;
  font-size: 13px;
  font-weight: var(--light);
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--color-black);
}
.p-top-members-modal__bio > p {
  margin: 0;
}
.p-top-members-modal__bio > p + p {
  margin-top: 1em;
}
@media (max-width: 767px) {
  .p-top-members-modal__bio {
    font-size: 12px;
    line-height: 1.77;
  }
}

.p-top-section-frame {
  --top-section-nav-width: 302px;
  --top-section-gap: 36px;
  --top-section-row-gap-sp: 25px;
  --top-section-sticky-top: var(--header-height);
  display: grid;
  grid-template-columns: var(--top-section-nav-width) 1fr;
  column-gap: var(--top-section-gap);
  align-items: start;
  padding-block: 80px;
}
@media (width <= 1350px) {
  .p-top-section-frame {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .p-top-section-frame {
    grid-template-columns: 1fr;
    row-gap: 35px;
    padding-block: 50px;
    margin-top: 20px;
  }
}

.p-top-section-frame__nav {
  position: sticky;
  top: var(--top-section-sticky-top);
  align-self: start;
  padding-left: 30px;
  padding-top: 20px;
}
@media (width <= 1350px) {
  .p-top-section-frame__nav {
    position: static;
  }
}
@media (max-width: 767px) {
  .p-top-section-frame__nav {
    padding-left: 0;
    padding-top: 0;
  }
}

.p-top-section-frame__content {
  padding-block: 20px;
  padding-inline: 30px;
}
@media (max-width: 767px) {
  .p-top-section-frame__content {
    padding-block: 0;
    padding-inline: 0;
  }
}

.p-top-contact {
  overflow-x: clip;
  margin-bottom: 50px;
}

.p-top-contact__wrap {
  position: relative;
}
.p-top-contact__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-right: calc(50% - 50vw);
  background-color: var(--color-primary);
  border-radius: 20px 0 0 20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-top-contact__wrap::before {
    border-radius: 10px;
    margin-left: 0;
    margin-right: 0;
    inset: 0 -5px;
  }
}

.p-top-contact .c-nav-heading .c-nav-heading__eyebrow {
  color: var(--color-black);
}

.p-top-contact .c-nav-heading .c-nav-heading__title {
  color: var(--color-white);
}

@media (max-width: 767px) {
  .p-top-contact .c-nav-heading .c-nav-heading__eyebrow {
    color: var(--color-black);
  }
  .p-top-contact .c-nav-heading .c-nav-heading__title {
    color: var(--color-white);
  }
}

.p-top-contact__nav {
  display: grid;
  row-gap: 36px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .p-top-contact__nav {
    row-gap: 18px;
  }
}

.p-top-contact__content {
  padding: 20px;
  min-inline-size: 0;
}
@media (max-width: 767px) {
  .p-top-contact__content {
    padding: 0 15px 18px;
  }
}

.p-top-contact__guide {
  display: grid;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .p-top-contact__guide {
    padding-inline: 15px;
    row-gap: 15px;
  }
}

.p-top-contact__lead {
  font-size: 12px;
  font-weight: var(--light);
  line-height: 2;
  letter-spacing: 0;
  color: var(--color-white);
}
.p-top-contact__lead > p {
  margin: 0;
}
.p-top-contact__lead > p + p {
  margin-top: 1em;
}
@media (max-width: 767px) {
  .p-top-contact__lead {
    font-size: 13px;
    line-height: 1.6;
  }
}

.p-top-contact__required-note {
  font-weight: var(--medium);
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-contact__required-note {
    font-size: 13px;
    color: var(--color-black);
  }
}

.p-top-contact__form {
  display: grid;
  max-width: 700px;
  row-gap: 45px;
}
@media (max-width: 767px) {
  .p-top-contact__form {
    margin-top: 8px;
    row-gap: 16px;
  }
}

.p-top-contact__field {
  display: grid;
  row-gap: 8px;
}
@media (max-width: 767px) {
  .p-top-contact__field {
    row-gap: 4px;
  }
}

.p-top-contact__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}
@media (max-width: 767px) {
  .p-top-contact__field-row {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}

.p-top-contact__label {
  font-size: 14px;
  font-weight: var(--semi-bold);
  line-height: 1.5;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .p-top-contact__label {
    font-size: 12px;
    font-weight: var(--normal);
    color: var(--color-black);
  }
}

.p-top-contact__input,
.p-top-contact__select,
.p-top-contact__textarea {
  width: 100%;
  min-height: 34px;
  padding: 4px 15px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: var(--light);
  border: 1px solid var(--color-black);
}
@media (max-width: 767px) {
  .p-top-contact__input,
  .p-top-contact__select,
  .p-top-contact__textarea {
    padding: 4px 10px;
  }
}

.p-top-contact__select {
  appearance: none;
  background-image: url("../../images/common/icon-select.svg");
  background-position: right 18px center;
  background-size: 16px 14px;
  background-repeat: no-repeat;
  padding-block: 4px;
  padding-inline: 15px 40px;
}

.p-top-contact__textarea {
  min-height: 178px;
  resize: block;
  field-sizing: content;
}

.p-top-contact__submit {
  width: min(235px, 100%);
}
@media (max-width: 767px) {
  .p-top-contact__submit {
    margin-top: 42px;
    justify-self: center;
  }
}

.p-top-contact__form .wpcf7-form-control-wrap {
  display: block;
}
.p-top-contact__form .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-white);
}
.p-top-contact__form .wpcf7-spinner {
  display: none;
}
.p-top-contact__form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}
.p-top-contact__form .wpcf7-submit {
  cursor: pointer;
}

.p-news {
  padding-top: var(--header-height);
  overflow-x: clip;
}
@media (max-width: 767px) {
  .p-news {
    padding-top: var(--header-height-sp);
    background-color: var(--color-primary);
  }
}

.p-news__container {
  padding-block: 60px 80px;
}
@media (max-width: 767px) {
  .p-news__container {
    padding-block: 45px 160px;
  }
}

.p-news__inner {
  position: relative;
  padding: 70px 60px 190px;
}
@media (max-width: 767px) {
  .p-news__inner {
    padding: 0;
  }
}

.p-news__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-news__inner::before {
    display: none;
  }
}

.p-news__header {
  margin-bottom: 40px;
}

.p-news__heading {
  font-family: var(--font-family-secondary);
  font-size: 82px;
  font-weight: var(--bold);
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: 0.018em;
}
@media (max-width: 767px) {
  .p-news__heading {
    font-size: 26px;
  }
}

.p-news__heading-ja {
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 8px;
}
@media (max-width: 767px) {
  .p-news__heading-ja {
    font-size: 15px;
    margin-top: 15px;
  }
}

.p-news__body.p-top-section-frame {
  --top-section-nav-width: 195px;
  --top-section-gap: 93px;
  --top-section-sticky-top: calc(var(--header-height) + 20px);
  padding-block: 0;
}
@media (width <= 1350px) {
  .p-news__body.p-top-section-frame {
    grid-template-columns: var(--top-section-nav-width) 1fr;
    row-gap: 0;
  }
}
@media (width <= 1150px) {
  .p-news__body.p-top-section-frame {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }
}
@media (max-width: 767px) {
  .p-news__body.p-top-section-frame {
    row-gap: 60px;
    padding-block: 0;
    margin-top: 0;
  }
}

.p-news__tabs.p-top-section-frame__nav {
  padding-left: 0;
  padding-top: 0;
}
@media (width <= 1350px) {
  .p-news__tabs.p-top-section-frame__nav {
    position: sticky;
    top: var(--top-section-sticky-top);
  }
}
@media (width <= 1150px) {
  .p-news__tabs.p-top-section-frame__nav {
    position: static;
  }
}

.p-news__content.p-top-section-frame__content {
  padding-block: 0;
  padding-inline: 0;
}

.p-news__tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-news__tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3px;
  }
}

.p-news__tab {
  position: relative;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: var(--normal);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-white);
  background-color: transparent;
}
.p-news__tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0;
  transition: opacity var(--duration-default);
}
.p-news__tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-white);
  transform-origin: right bottom;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .p-news__tab:hover::before, .p-news__tab:hover::after {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .p-news__tab {
    padding: 2px 6px;
    font-size: 13px;
    color: var(--color-black);
    background-color: transparent;
    border: 1px solid var(--color-black);
    transition: color var(--duration-default), background-color var(--duration-default);
  }
}
@media (max-width: 767px) and (any-hover: hover) {
  .p-news__tab:hover {
    font-weight: var(--medium);
    color: var(--color-white);
    background-color: var(--color-black);
  }
}
@media (max-width: 767px) {
  .p-news__tab::before, .p-news__tab::after {
    display: none;
  }
}

.p-news__tab--active {
  font-size: 20px;
  font-weight: var(--bold);
}
.p-news__tab--active::before, .p-news__tab--active::after {
  opacity: 1;
}
@media (max-width: 767px) {
  .p-news__tab--active {
    font-size: 13px;
    font-weight: var(--medium);
    color: var(--color-white);
    background-color: var(--color-black);
  }
}

.p-news__content {
  display: grid;
  gap: 150px;
}
@media (max-width: 767px) {
  .p-news__content {
    gap: 80px;
  }
}

.p-news__more {
  text-align: center;
}

.p-news__back-to-top {
  margin-top: 220px;
}
@media (width <= 1150px) {
  .p-news__back-to-top {
    display: none;
  }
}

.p-news__back-to-top-fixed {
  display: none;
}
@media (width <= 1150px) {
  .p-news__back-to-top-fixed {
    display: inline-flex;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 100;
    background-color: #eb4e06;
  }
}
@media (max-width: 767px) {
  .p-news__back-to-top-fixed {
    font-size: 12px;
    font-weight: var(--semi-bold);
    border-width: 2px;
  }
}

.p-news-single {
  padding-top: var(--header-height);
}
@media (max-width: 767px) {
  .p-news-single {
    padding-top: var(--header-height-sp);
  }
}

.p-news-single__container {
  padding-block: 80px;
}
@media (max-width: 767px) {
  .p-news-single__container {
    padding-block: 45px 60px;
  }
}

.p-news-single__header {
  margin-bottom: 130px;
}
@media (max-width: 767px) {
  .p-news-single__header {
    margin-bottom: 25px;
  }
}

.p-news-single__heading {
  font-family: var(--font-family-secondary);
  font-size: 26px;
  font-weight: var(--semi-bold);
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.018em;
}
@media (max-width: 767px) {
  .p-news-single__heading {
    font-size: 14px;
    padding-bottom: 15px;
    border-bottom: 0.5px solid var(--color-black);
  }
}

.p-news-single__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  padding-bottom: 12px;
  border-bottom: solid 0.5px #000;
}
@media (max-width: 767px) {
  .p-news-single__meta {
    margin-bottom: 15px;
  }
}

.p-news-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-news-single__tags {
    gap: 5px;
  }
}
.p-news-single__tags .c-news-card__tag {
  border: 1px solid var(--color-black);
}
@media (max-width: 767px) {
  .p-news-single__tags .c-news-card__tag {
    border-width: 0.5px;
  }
}

.p-news-single__date {
  font-family: var(--font-family-secondary);
  font-size: 13px;
  font-weight: var(--semi-bold);
  line-height: 1.2;
  letter-spacing: 0.035em;
  white-space: nowrap;
  margin-left: auto;
}
@media (max-width: 767px) {
  .p-news-single__date {
    font-size: 11px;
  }
}

.p-news-single__title {
  font-family: var(--font-family-base);
  font-size: 40px;
  font-weight: var(--bold);
  line-height: 1.6;
  margin-bottom: 1em;
  letter-spacing: 0.035em;
}
@media (max-width: 767px) {
  .p-news-single__title {
    font-size: 22px;
    line-height: 1.3636363636;
    margin-bottom: 25px;
  }
}

.p-news-single__thumbnail {
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .p-news-single__thumbnail {
    margin-bottom: 30px;
  }
}
.p-news-single__thumbnail img {
  width: 100%;
  height: auto;
}

.p-news-single__content p {
  font-size: 18px;
  font-weight: var(--normal);
  line-height: 1.9444444444;
  letter-spacing: 0.035em;
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .p-news-single__content p {
    font-size: 14px;
    line-height: 2.0714285714;
    margin-bottom: 1.5em;
  }
}
.p-news-single__content strong {
  font-weight: var(--bold);
}
.p-news-single__content h2 {
  font-size: 30px;
  font-weight: var(--bold);
  line-height: 1.6;
  margin-top: 3.2em;
  margin-bottom: 1.2em;
  letter-spacing: 0.035em;
}
@media (max-width: 767px) {
  .p-news-single__content h2 {
    font-size: 18px;
    line-height: 1.6666666667;
    margin-top: 2.5em;
    margin-bottom: 1em;
  }
}
.p-news-single__content h3 {
  font-size: 25px;
  font-weight: var(--bold);
  line-height: 1.92;
  margin-top: 2.5em;
  margin-bottom: 1em;
  letter-spacing: 0.035em;
}
@media (max-width: 767px) {
  .p-news-single__content h3 {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 2em;
    margin-bottom: 0.8em;
  }
}
.p-news-single__content h4 {
  font-size: 22px;
  font-weight: var(--bold);
  line-height: 2.1818181818;
  margin-top: 2em;
  margin-bottom: 1.2em;
  letter-spacing: 0.035em;
}
@media (max-width: 767px) {
  .p-news-single__content h4 {
    font-size: 15px;
    line-height: 2;
    margin-top: 1.8em;
    margin-bottom: 1em;
  }
}
.p-news-single__content h5 {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 2.4;
  margin-top: 1.8em;
  margin-bottom: 1em;
  letter-spacing: 0.035em;
}
@media (max-width: 767px) {
  .p-news-single__content h5 {
    font-size: 14px;
    line-height: 2.1428571429;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
  }
}
.p-news-single__content h6 {
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 2.6666666667;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  letter-spacing: 0.035em;
}
@media (max-width: 767px) {
  .p-news-single__content h6 {
    font-size: 13px;
    line-height: 2.3076923077;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
  }
}
.p-news-single__content img {
  width: 100%;
  height: auto;
}
.p-news-single__content figure {
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .p-news-single__content figure {
    margin-bottom: 1.2em;
  }
}
.p-news-single__content figcaption {
  font-weight: var(--light);
  font-size: 15px;
  line-height: 2.3333333333;
  margin-top: 0.035em;
}
@media (max-width: 767px) {
  .p-news-single__content figcaption {
    font-size: 12px;
    line-height: 1.6666666667;
  }
}
.p-news-single__content ul,
.p-news-single__content ol {
  margin-bottom: 1.5em;
}
.p-news-single__content ul li,
.p-news-single__content ol li {
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.035em;
}
@media (max-width: 767px) {
  .p-news-single__content ul li,
  .p-news-single__content ol li {
    font-size: 14px;
    line-height: 2.0714285714;
  }
}
.p-news-single__content ul li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}
.p-news-single__content ul li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  color: currentColor;
}
.p-news-single__content ol {
  padding-left: 1.5em;
}
.p-news-single__content ol li {
  list-style: decimal;
}
.p-news-single__content em {
  font-style: italic;
  font-weight: inherit;
}
.p-news-single__content a {
  display: initial;
  color: var(--color-primary);
  transition: opacity var(--duration-default);
}
@media (any-hover: hover) {
  .p-news-single__content a:hover {
    opacity: var(--hover-opacity);
  }
}

.p-news-single__back {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-news-single__back {
    margin-top: 50px;
  }
}

.p-page {
  padding-top: var(--header-height);
}
@media (max-width: 767px) {
  .p-page {
    padding-top: var(--header-height-sp);
  }
}

.p-page__container {
  padding-block: 148px 80px;
}
@media (max-width: 767px) {
  .p-page__container {
    padding-block: 45px 60px;
  }
}

.p-page__inner {
  max-width: 1200px;
  margin-inline: auto;
}

.p-page__header {
  margin-bottom: 48px;
  border-bottom: 0.5px solid var(--color-black);
}
@media (max-width: 767px) {
  .p-page__header {
    margin-bottom: 25px;
  }
}

.p-page__heading {
  font-family: var(--font-family-secondary);
  font-size: 30px;
  font-weight: var(--normal);
  line-height: 1.2;
  letter-spacing: 0.018em;
  text-align: center;
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  .p-page__heading {
    font-size: 14px;
    padding-bottom: 15px;
  }
}

.p-page__content p {
  font-size: 15px;
  line-height: 1.9333333333;
  margin-bottom: 29px;
}
@media (max-width: 767px) {
  .p-page__content p {
    font-size: 13px;
  }
}
.p-page__content h2 {
  font-size: 30px;
  font-weight: var(--bold);
  margin-top: 2em;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .p-page__content h2 {
    font-size: 20px;
  }
}
.p-page__content ul,
.p-page__content ol {
  margin-bottom: 29px;
  padding-left: 1.5em;
}
.p-page__content ul li,
.p-page__content ol li {
  font-size: 15px;
  line-height: 1.9333333333;
}
@media (max-width: 767px) {
  .p-page__content ul li,
  .p-page__content ol li {
    font-size: 13px;
  }
}
.p-page__content ul li {
  list-style: disc;
}
.p-page__content ol li {
  list-style: decimal;
}
.p-page__content a {
  display: inline-block;
  color: var(--color-primary);
}

.p-not-found {
  padding-top: var(--header-height);
}
@media (max-width: 767px) {
  .p-not-found {
    padding-top: var(--header-height-sp);
  }
}

.p-not-found__container {
  padding-block: 148px 80px;
}
@media (max-width: 767px) {
  .p-not-found__container {
    padding-block: 45px 60px;
  }
}

.p-not-found__inner {
  max-width: 1200px;
  margin-inline: auto;
  text-align: center;
}

.p-not-found__heading {
  font-family: var(--font-family-secondary);
  font-size: 120px;
  font-weight: var(--bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .p-not-found__heading {
    font-size: 72px;
    margin-bottom: 16px;
  }
}

.p-not-found__message {
  font-size: 15px;
  font-weight: var(--normal);
  line-height: 1.9333333333;
  letter-spacing: 0.035em;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .p-not-found__message {
    font-size: 13px;
    line-height: 1.9230769231;
    margin-bottom: 32px;
  }
}

.u-color-text {
  color: var(--color-text);
}

.u-color-primary {
  color: var(--color-primary-blue);
}

[data-scroll-animation],
[data-scroll-animation-stagger] > * {
  will-change: opacity, transform;
}

html:not([data-script=enabled]) [data-scroll-animation],
html:not([data-script=enabled]) [data-scroll-animation-stagger] > * {
  opacity: 1 !important;
  transform: none !important;
}

.u-fz-64 {
  font-size: calc(64 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-64 {
    font-size: calc(28 * var(--to-rem));
  }
}

.u-fz-54 {
  font-size: calc(54 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-54 {
    font-size: calc(36 * var(--to-rem));
  }
}

.u-fz-48 {
  font-size: calc(48 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-48 {
    font-size: calc(36 * var(--to-rem));
  }
}

.u-fz-40 {
  font-size: calc(40 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-40 {
    font-size: calc(28 * var(--to-rem));
  }
}

.u-fz-32 {
  font-size: calc(32 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-32 {
    font-size: calc(20 * var(--to-rem));
  }
}

.u-fz-26 {
  font-size: calc(26 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-26 {
    font-size: calc(18 * var(--to-rem));
  }
}

.u-fz-22 {
  font-size: calc(22 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-22 {
    font-size: calc(14 * var(--to-rem));
  }
}

.u-fz-20 {
  font-size: calc(20 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-20 {
    font-size: calc(16 * var(--to-rem));
  }
}

.u-fz-18 {
  font-size: calc(18 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-18 {
    font-size: calc(12 * var(--to-rem));
  }
}

.u-fz-16 {
  font-size: calc(16 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-16 {
    font-size: calc(12 * var(--to-rem));
  }
}

.u-fz-14 {
  font-size: calc(14 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-14 {
    font-size: calc(10 * var(--to-rem));
  }
}

.u-fz-12 {
  font-size: calc(12 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-12 {
    font-size: calc(10 * var(--to-rem));
  }
}

.u-fz-10 {
  font-size: calc(10 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-10 {
    font-size: calc(8 * var(--to-rem));
  }
}

.u-fz-9 {
  font-size: calc(9 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-9 {
    font-size: calc(7 * var(--to-rem));
  }
}

.u-fz-8 {
  font-size: calc(8 * var(--to-rem));
}
@media (max-width: 767px) {
  .u-fz-8 {
    font-size: calc(7 * var(--to-rem));
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-no-break {
  white-space: nowrap;
}