@charset "UTF-8";
:root {
  --color-accent-dark: #866b2f;
  --color-accent: #c39e59;
  --color-accent-light: #ede2ce;
  --color-accent-lighter: #f6edd8;
  --color-primary: #23651c;
  --color-primary-light: #d7e7d5;
  --color-primary-lighter: #e0f2de;
  --color-primary-lightest: #ebf5e9;
  --color-black: #000000;
  --color-gray-900: #231815;
  --color-gray-800: #271f1c;
  --color-gray-700: #313133;
  --color-gray-500: #616161;
  --color-gray-300: #c8c8c8;
  --color-gray-200: #d9d9d9;
  --color-gray-100: #f6f6f6;
  --color-white: #ffffff;
  --color-link: #2253ad;
  --color-alert: #aa1e1e;
  --color-alert-lightest: #fff8f8;
  --font-family-en: "Poppins", "Noto Sans JP", system-ui, sans-serif;
  --font-weight-demilight: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --z-floating: 1000;
  --z-overlay: 2000;
  --z-system: 3000;
}

/*! kiso.css v1.2.2 | MIT License | https://github.com/tak-dcxi/kiso.css */
/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;
  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;
  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;
  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;
  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

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

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

:where(h1, h2, h3, h4, h5, h6) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(search) {
  /*
  * The `<search>` element is supported from Safari 17.
  * This prevents it from being displayed as an inline element in unsupported environments.
  */
  display: block flow;
}

/* ======================================================
//  MARK: Grouping content
// ====================================================== */
:where(p, blockquote, figure, pre, address, ul, ol, dl, menu) {
  /* The `margin-block` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
}

:where(blockquote, figure) {
  /* The `margin-inline` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline: unset;
}

:where(p:lang(en)) {
  /*
  * In English, a single word on the last line is called a "widow" or "orphan" and is considered something to avoid as it makes the text harder to read.
  * Therefore, when lang="en", this prevents the last line from ending with a single word.
  */
  text-wrap: pretty;
}

:where(address:lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

:where(ul, ol, menu) {
  /* The `padding-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  padding-inline-start: unset;
  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

:where(dt) {
  /* It is common to display `<dt>` elements in bold, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(dd) {
  /* The `margin-inline-start` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset. */
  margin-inline-start: unset;
}

:where(pre) {
  /*
  * Since `text-spacing-trim` can affect spacing in `<pre>` elements even with its initial value, the final rendering may depend on the user's font settings.
  * To ensure consistent alignment, `space-all` is explicitly specified and inheritance is prevented.
  */
  text-spacing-trim: space-all;
  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

:where(:is(i, cite, em, dfn, var):lang(ja)) {
  /* Italic style is not common in Japanese, so the `font-style` is reset. */
  font-style: unset;
}

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

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

:where(time) {
  /* Set to `no-autospace` because date notations in typography do not include spaces. */
  text-autospace: no-autospace;
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

/* ======================================================
//  MARK: Embedded content
// ====================================================== */
:where(img, svg, picture, video, canvas, model, audio, iframe, embed, object) {
  /* Automatically adjust block size based on content. */
  block-size: auto;
  /* Prevents overflow by setting the maximum width to `100%`. */
  max-inline-size: 100%;
  /* Prevents extra space from appearing at the bottom of the element. */
  vertical-align: bottom;
}

:where(iframe) {
  /* The `border` specified in the UA stylesheet is often unnecessary, so it is reset. */
  border: unset;
}

/* ======================================================
//  MARK: Tabular data
// ====================================================== */
:where(table) {
  /* Collapse borders for a more refined table design. */
  border-collapse: collapse;
}

:where(caption, th) {
  /* The `text-align` specified in the UA stylesheet is often unnecessary, so it is reset. */
  text-align: unset;
}

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

/* ======================================================
//  MARK: Forms
// ====================================================== */
:where(button, input, select, textarea),
::file-selector-button {
  /*
  * These elements are often styled with a border, so a `1px` border is applied by default for consistency.
  * This ensures readability even for unstyled elements.
  * When resetting, it's recommended to use `border-color: transparent` instead of `border: none` to account for forced color modes.
  */
  border-width: 1px;
  border-style: solid;
  /* These styles specified in the UA stylesheet are often unnecessary, so they are reset to allow for inheritance. */
  border-color: unset;
  border-radius: unset;
  color: unset;
  font: unset;
  letter-spacing: unset;
  text-align: unset;
}

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

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

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

@supports (-webkit-touch-callout: none) {
  :where(input[type=search i]) {
    /* normalize the background color on iOS. */
    background-color: Canvas;
  }
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:-moz-placeholder)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}
:where(input:is([type=tel i],
[type=url i],
[type=email i],
[type=number i]):not(:placeholder-shown)) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;
  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

:where(input:not([type=button i], [type=submit i], [type=reset i]),
textarea,
[contenteditable]) {
  /* Set to `no-autospace` because `text-autospace` can insert spaces during input, potentially causing erratic behavior. */
  text-autospace: no-autospace;
}

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

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

:where(button:enabled,
label[for],
select:enabled,
input:is([type=button i],
[type=submit i],
[type=reset i],
[type=radio i],
[type=checkbox i]):enabled,
[role=tab i],
[role=button i],
[role=option i]),
:where(:enabled)::file-selector-button {
  /* Indicate clickable elements with a pointer cursor. */
  cursor: pointer;
}

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;
  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

:where(legend) {
  /* The default `padding-inline` is often unnecessary, so it is reset. */
  padding-inline: unset;
}

:where(progress) {
  /* Resets the vertical alignment of the `<progress>` element to its initial value. */
  vertical-align: unset;
}

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

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

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

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

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

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

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

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

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

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

[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 {
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

body {
  font-weight: var(--font-weight-regular);
}
body[data-scroll-lock=true] {
  overflow: hidden;
}

main {
  container-name: main;
  container-type: inline-size;
}

:where(.entry) h2 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-primary);
  margin-block: 3rem 1.5rem;
}
@container main (min-width: 768px) {
  :where(.entry) h2 {
    font-size: 1.75rem;
    margin-block: 4.5rem 1.5rem;
  }
}

:where(.entry) h3 {
  --_icon-size: 1.25rem;
  --_column-gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-block: 2.5rem 1.25rem;
  padding-left: calc(var(--_icon-size) + var(--_column-gap));
  position: relative;
}
@container main (min-width: 768px) {
  :where(.entry) h3 {
    --_icon-size: 1.5rem;
    font-size: 1.5rem;
  }
}
:where(.entry) h3::before {
  content: "";
  width: var(--_icon-size);
  height: var(--_icon-size);
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="M0 24H16.5L24 12L16.5 0H0Z"/%3E%3C/svg%3E');
          mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="M0 24H16.5L24 12L16.5 0H0Z"/%3E%3C/svg%3E');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  color: var(--color-primary);
  background-color: var(--color-primary);
  position: absolute;
  top: calc((1lh - 1.25rem) / 2);
  left: 0;
}

:where(.entry) h4 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-block: 2rem 1rem;
}

:where(.entry) h5 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-block: 1rem 0.75rem;
}

:where(.entry) p {
  margin-block: 1rem;
}
@container main (min-width: 768px) {
  :where(.entry) p {
    margin-block: 1.5rem;
  }
}

ul.wp-block-list {
  margin-block: 1rem;
}
@container main (min-width: 768px) {
  ul.wp-block-list {
    margin-block: 1.5rem;
  }
}
ul.wp-block-list > li {
  --_line-height: 1.8;
  line-height: var(--_line-height);
  letter-spacing: 0.05em;
  margin-block: 0.5rem;
  padding-left: 0.875rem;
  position: relative;
}
ul.wp-block-list > li::before {
  --_icon-size: 0.375rem;
  content: "";
  width: var(--_icon-size);
  height: var(--_icon-size);
  border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
  top: calc((1em * var(--_line-height) - var(--_icon-size)) / 2);
  left: 0.125rem;
}
ul.wp-block-list > li > ul.wp-block-list {
  margin-block: 0;
  padding-left: 1em;
}
ul.wp-block-list > li > ul.wp-block-list > li {
  margin-block: 0;
}
ul.wp-block-list > li > ul.wp-block-list > li::before {
  --_icon-size: 0.1875rem;
  background-color: var(--color-black);
}

figure:not([class]) {
  display: inline-grid;
  row-gap: 0.75rem;
}
figure:not([class]) img {
  border-radius: 16px;
}
figure:not([class]) figcaption {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}

:lang(en) {
  font-family: var(--font-family-en);
}

a:not([class]) {
  color: var(--color-link);
  text-decoration: underline;
}

svg {
  vertical-align: text-bottom;
}

.site {
  min-block-size: inherit;
  min-inline-size: 22.5rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "header" "body" "footer";
}

.site__header {
  grid-area: header;
  position: sticky;
  top: 0;
  z-index: var(--z-floating);
  background-color: var(--color-white);
}

.site__body {
  grid-area: body;
  min-width: 0;
  background-color: var(--color-gray-100);
  position: relative;
}

.site__body:not(:is(.site__body--home)) {
  background-image: linear-gradient(180deg, #f6edd8 0.55%, #f6f6f6 99.45%);
  background-repeat: no-repeat;
  background-size: 100% 22.5rem;
}

.site__footer {
  grid-area: footer;
}

.header {
  position: relative;
}

.header__inner {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-left: 1.25rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-300);
}

.header__title {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.header__title img {
  display: block;
}

.header__menu-button {
  flex-shrink: 0;
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: var(--color-gray-300);
  width: 4.75rem;
  height: 3.75rem;
  background-color: #23651c;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.header__menu-button-bar, .header__menu-button-bars::after, .header__menu-button-bars::before {
  position: absolute;
  top: calc(50% - 0.0625rem);
  background-color: currentColor;
  width: 100%;
  height: 0.125rem;
  border-radius: 100vh;
}

.header__menu-button-bars {
  width: 1.5rem;
  height: 1rem;
  position: relative;
}
.header__menu-button-bars::before {
  content: "";
  transition: 0.2s translate, 0.2s rotate;
  translate: 0 -0.4375rem;
}
.header__menu-button-bars::after {
  content: "";
  transition: 0.2s translate, 0.2s rotate;
  translate: 0 0.4375rem;
}
.header__menu-button[aria-expanded=true] .header__menu-button-bars::before {
  translate: 0;
  rotate: -45deg;
}
.header__menu-button[aria-expanded=true] .header__menu-button-bars::after {
  translate: 0;
  rotate: 45deg;
}

.header__menu-button-bar {
  position: absolute;
  top: calc(50% - 0.0625rem);
  background-color: currentColor;
  width: 100%;
  height: 0.125rem;
  border-radius: 100vh;
  transition: 0.2s scale;
}
.header__menu-button[aria-expanded=true] .header__menu-button-bar {
  scale: 0 1;
}

.header__menu-button-text {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.header__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100dvb - 100%);
  background-color: var(--color-white);
  z-index: -1;
  overflow-y: auto;
}
.header__menu[data-animatable=true] {
  transition: 0.2s translate ease-in-out;
}
.header__menu[inert] {
  translate: 0 -100%;
}

.header__menu-inner {
  padding: 0.5rem 1.75rem 2.5rem;
}

.header__nav-link {
  border: unset;
  width: 100%;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1em;
       column-gap: 1em;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
  padding: 1rem 0.75rem;
  transition: 0.2s background-color ease-in-out;
  min-height: 3.5rem;
}

.header__nav-icon {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.header__nav-icon::before, .header__nav-icon::after {
  content: "";
  position: absolute;
  width: 0.875rem;
  height: 0.125rem;
  top: calc(50% - 0.0625rem);
  left: calc(50% - 0.4375rem);
  border-radius: 100vh;
  background-color: var(--color-primary);
  transition: 0.2s rotate ease-in-out;
}
.header__nav-icon::after {
  rotate: -90deg;
}
.header__nav-link[aria-expanded=true] .header__nav-icon::after {
  rotate: 0deg;
}

.header__sub-nav-area {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gray-200);
}
.header__sub-nav-item {
  line-height: 1.25;
}
.header__sub-nav-item + .header__sub-nav-item {
  margin-top: 1.25rem;
}

.header__child-nav {
  background-color: var(--color-primary-lightest);
  overflow: clip;
  display: grid;
  grid-template-rows: 1fr;
}
.header__child-nav[data-animatable=true] {
  transition: 0.2s grid-template-rows ease-in-out;
}
.header__child-nav[inert] {
  grid-template-rows: 0fr;
}

.header__child-nav-list {
  overflow: hidden;
}

.header__child-nav-item {
  font-size: 0.875rem;
}
.header__child-nav-item:first-child {
  font-weight: var(--font-weight-medium);
}

.header__child-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  transition: 0.2s background-color ease-in-out;
  padding: 0.75rem;
}

.header__child-nav-thumb {
  display: none;
}

.header__child-nav-icon {
  display: none;
}

.header__sub-nav-link {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.header__cta-area {
  margin-top: 1.25rem;
}

.header__banner-area {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.footer__sns-area {
  background-color: var(--color-primary);
  padding: 1.5rem 1.25rem;
}

.footer__sns-area-inner {
  display: grid;
  row-gap: 1rem;
}

.footer__sns-heading {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  padding-block: 0.5rem;
  text-align: center;
  border-style: solid;
  border-color: currentColor;
  border-width: 1px 0;
}

.footer__sns-buttons {
  display: grid;
  row-gap: 1rem;
}

.footer__main-area {
  padding-block: 2rem;
  padding-inline: 1.25rem;
}

.footer__main-area-inner {
  justify-items: center;
  max-width: 47.5rem;
  margin-inline: auto;
}

.footer__sub-area {
  padding-inline: 1.25rem;
  padding-bottom: 2rem;
}

.footer__sub-area-inner {
  max-width: 47.5rem;
  margin-inline: auto;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__address {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.footer__address-icon {
  color: var(--color-primary);
}

.footer__address-text {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.footer__contact {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.footer__contact-icon {
  color: var(--color-primary);
}

.footer__contact-heading {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.footer__contact-list {
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.25rem;
}
.footer__contact-list dt {
  grid-column: 1;
  font-size: 0.875rem;
  font-weight: var(--font-weight-regular);
}
.footer__contact-list dd {
  grid-column: 2;
  font-size: 1rem;
  font-family: var(--font-family-en);
}

.footer__cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.footer__nav-area {
  margin-top: 2rem;
}

.footer__nav-list {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.footer__nav-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.footer__nav-item + .footer__nav-item {
  margin-top: 0.25rem;
}

.footer__nav-link {
  display: flex;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  transition: 0.2s opacity ease-in-out;
  padding-block: 0.75rem;
}

.footer__nav-icon {
  flex-shrink: 0;
  color: var(--color-primary);
}

.footer__child-nav {
  margin-top: 0.25rem;
}

.footer__child-nav-item + .footer__child-nav-item {
  margin-top: 0.25rem;
}

.footer__child-nav-link {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.footer__sub-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__sub-nav-link {
  display: inline-block;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

.footer__copyright-area {
  padding: 0.5rem 1.25rem;
  color: var(--color-white);
  background-color: var(--color-gray-900);
}

.footer__copyright-area-inner {
  max-width: 62.5rem;
  margin-inline: auto;
  text-align: center;
}

.footer__copyright {
  font-size: 0.75rem;
  font-weight: var(--font-weight-demilight);
}

.page {
  overflow-x: clip;
  padding-bottom: 3.5rem;
}
@container main (min-width: 768px) {
  .page {
    padding-bottom: 7.5rem;
  }
}

body.page {
  padding-bottom: 0;
}

.page:not(:has(.page__header--page-home, .page-header__media, .news-article)) {
  padding-top: var(--breadcrumb-height, 64px);
  margin-top: calc(var(--breadcrumb-height) * -1);
  background-image: url(/wp-content/themes/hdcc/assets/images/bg_symbol.svg);
  background-repeat: no-repeat;
  background-size: 17.3125rem 13.625rem;
  background-position: top 3.0625rem right -3.5625rem;
}
@container main (min-width: 768px) {
  .page:not(:has(.page__header--page-home, .page-header__media, .news-article)) {
    background-size: 43rem 33.75rem;
    background-position: top -5rem right -8.5625rem;
  }
}

.page__body {
  padding-inline: 1.25rem;
}
@container main (min-width: 768px) {
  .page__body {
    max-width: 62.5rem;
    margin-inline: auto;
    box-sizing: content-box;
    padding-inline: 6.25rem;
  }
}

.page__footer {
  padding-inline: 2.5rem;
  margin-top: 3.5rem;
}
@container main (min-width: 768px) {
  .page__footer {
    max-width: 62.5rem;
    box-sizing: content-box;
    padding-inline: 6.25rem;
    margin-top: 7.5rem;
    margin-inline: auto;
  }
}

.page-header {
  margin-bottom: 2rem;
}
@container main (min-width: 768px) {
  .page-header {
    margin-bottom: 4rem;
  }
}
.page-header::after {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  background-image: url(/wp-content/themes/hdcc/assets/images/img_kami-hikoki.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  aspect-ratio: 355/70;
  max-height: 6rem;
  margin-left: 1.25rem;
}
@container main (min-width: 768px) {
  .page-header::after {
    aspect-ratio: 1335/165;
    max-height: 10.3125rem;
    background-image: url(/wp-content/themes/hdcc/assets/images/img_kami-hikoki_pc.svg);
    margin-left: 4rem;
  }
}
.page-header:has(.page-header__media)::after {
  margin-top: -4.5rem;
}
@container main (min-width: 768px) {
  .page-header:has(.page-header__media)::after {
    margin-top: 0;
  }
}

.page-header__inner {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
  padding-inline: 1.25rem;
}
@container main (min-width: 768px) {
  .page-header__inner {
    padding-top: 2.75rem;
    padding-bottom: 1.75rem;
    padding-inline: 6.25rem;
    margin-inline: auto;
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    max-width: 62.5rem;
    box-sizing: content-box;
  }
}

.page-header__title {
  position: relative;
  z-index: 1;
}

.page-header__title-en {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-accent-dark);
  font-weight: var(--font-weight-regular);
  font-size: 1.25rem;
  line-height: 1;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@container main (min-width: 768px) {
  .page-header__title-en {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }
}
.page-header__title-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 100vh;
}

.page-header__title-ja {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: var(--font-weight-semibold);
}
@container main (min-width: 768px) {
  .page-header__title-ja {
    font-size: 2.5rem;
  }
}

.page-header__title-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}
@container main (min-width: 768px) {
  .page-header__title-icon {
    width: 2.5rem;
  }
}

.page-header__media {
  overflow: clip;
  border-radius: 16px;
}
@container main (min-width: 768px) {
  .page-header__media {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 50%;
    height: 100%;
    max-height: 22.5rem;
    border-radius: 0 0 0 100px;
  }
}
.page-header__media > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb__inner {
  padding: 1.25rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.breadcrumb__item {
  flex-shrink: 0;
  display: flex;
  align-items: start;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.breadcrumb__icon {
  flex-shrink: 0;
}

.breadcrumb__link {
  color: var(--color-primary);
  text-decoration: underline;
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--column-count), 1fr);
}

.grid--2col {
  --column-count: 2;
}

.grid--3col {
  --column-count: 3;
}

.grid--4col {
  --column-count: 4;
}

@container main (min-width: 768px) {
  .grid--md-2col {
    --column-count: 2;
  }
}

@container main (min-width: 768px) {
  .grid--md-3col {
    --column-count: 3;
  }
}

@container main (min-width: 768px) {
  .grid--md-4col {
    --column-count: 4;
  }
}

@container main (min-width: 1048px) {
  .grid--lg-2col {
    --column-count: 2;
  }
}

@container main (min-width: 1048px) {
  .grid--lg-3col {
    --column-count: 3;
  }
}

@container main (min-width: 1048px) {
  .grid--lg-4col {
    --column-count: 4;
  }
}

.flex {
  display: flex;
}

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

.flex--flex-grow-1 {
  flex-grow: 1;
}
.flex--flex-shrink-0 {
  flex-shrink: 0;
}
.flex--flex-basis-100 {
  flex-basis: 100%;
}
.flex--flex-basis-interview-image {
  flex-basis: 44.6428571429%;
}
.flex--order-1 {
  order: 1;
}
@container main (min-width: 768px) {
  .flex--pc-order-1 {
    order: 1;
  }
}
.flex--order-2 {
  order: 2;
}
@container main (min-width: 768px) {
  .flex--pc-order-2 {
    order: 2;
  }
}
.flex--order-3 {
  order: 3;
}
@container main (min-width: 768px) {
  .flex--pc-order-3 {
    order: 3;
  }
}
.flex--order-4 {
  order: 4;
}
@container main (min-width: 768px) {
  .flex--pc-order-4 {
    order: 4;
  }
}
.flex--order-5 {
  order: 5;
}
@container main (min-width: 768px) {
  .flex--pc-order-5 {
    order: 5;
  }
}
.flex--order-6 {
  order: 6;
}
@container main (min-width: 768px) {
  .flex--pc-order-6 {
    order: 6;
  }
}
.flex--order-7 {
  order: 7;
}
@container main (min-width: 768px) {
  .flex--pc-order-7 {
    order: 7;
  }
}
.flex--order-8 {
  order: 8;
}
@container main (min-width: 768px) {
  .flex--pc-order-8 {
    order: 8;
  }
}
.flex--order-9 {
  order: 9;
}
@container main (min-width: 768px) {
  .flex--pc-order-9 {
    order: 9;
  }
}
.flex--order-10 {
  order: 10;
}
@container main (min-width: 768px) {
  .flex--pc-order-10 {
    order: 10;
  }
}

.news-article__inner {
  max-width: 50rem;
  margin-inline: auto;
}
.news-article__inner > :first-child {
  margin-top: 0 !important;
}
.news-article__inner > :last-child {
  margin-bottom: 0 !important;
}

.news-article__header {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 16px 16px 0 0;
  padding-block: 1.75rem 1.5rem;
  padding-inline: 1.25rem;
  background-image: url(/wp-content/themes/hdcc/assets/images/bg_symbol.svg);
  background-repeat: no-repeat;
  background-size: 31.125rem 24.4375rem;
  background-position: top 0.125rem right -7.5rem;
}
@container main (min-width: 768px) {
  .news-article__header {
    padding-block: 3.5rem 3.125rem;
    padding-inline: 2.5rem;
  }
}

.news-article__date {
  margin-left: 0.75rem;
}
@container main (min-width: 768px) {
  .news-article__date {
    margin-left: 1.25rem;
  }
}

.news-article__title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
@container main (min-width: 768px) {
  .news-article__title {
    margin-top: 1.5rem;
    font-size: 2.25rem;
  }
}

.news-article__note {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
}
@container main (min-width: 768px) {
  .news-article__note {
    margin-top: 1.5rem;
  }
}
.news-article__note dt {
  grid-column: 1;
}
.news-article__note dt::after {
  content: "：";
}
.news-article__note dd {
  grid-column: 2;
}

.news-article__body {
  background-color: var(--color-white);
  border-radius: 0 0 16px 16px;
  padding-block: 1.25rem 1.875rem;
  padding-inline: 1.25rem;
}
@container main (min-width: 768px) {
  .news-article__body {
    padding-block: 2.5rem 3.75rem;
    padding-inline: 2.5rem;
  }
}

.note-list > li, .is-style-annotation-list > li {
  list-style-type: none;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  text-indent: -1em;
  padding-left: 1em !important;
}
.note-list > li::before, .is-style-annotation-list > li::before {
  content: none !important;
}
:where(.entry) .note-list, :where(.entry) .is-style-annotation-list {
  margin-block: 1.25rem;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.75rem;
  border-radius: 100vh;
  border: 1px solid currentColor;
  line-height: 1;
  height: 1.625rem;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  background-color: var(--color-white);
}

.tag--lg {
  font-size: 0.875rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100vh;
  padding: 0.5rem 1.25rem;
  min-width: 13.75rem;
  min-height: 4rem;
  letter-spacing: 0.05em;
  color: var(--_color);
  border: 1px solid var(--_border-color);
  background-color: var(--_background-color);
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  transition: 0.2s color ease-in-out, 0.2s background-color ease-in-out;
}

.button__text {
  font-weight: var(--font-weight-medium);
}

.button__left-icon {
  color: currentColor;
  flex-shrink: 0;
}

.button__left-icon--sns {
  color: var(--color-black);
  margin-inline: -0.5rem;
}
.button__left-icon--sns > svg {
  width: 1.75rem;
  height: 1.75rem;
}

.button__right-icon {
  flex-shrink: 0;
  color: var(--_icon-color);
  background-color: var(--_icon-bg-color);
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-left: auto;
}

.button--primary, .wp-block-button:not(.is-style-button-secondary):not(.button--secondary):not(.is-style-button-tertiary):not(.button--tertiary) .button,
.wp-block-file .button {
  --_color: var(--color-white);
  --_border-color: var(--color-primary);
  --_background-color: var(--color-primary);
  --_icon-color: var(--color-primary);
  --_icon-bg-color: var(--color-white);
}

.button--secondary, .wp-block-button.is-style-button-secondary .button {
  --_color: var(--color-primary);
  --_border-color: var(--color-primary);
  --_background-color: var(--color-white);
  --_icon-color: var(--color-white);
  --_icon-bg-color: var(--color-primary);
}

.button--tertiary, .wp-block-button.is-style-button-tertiary .button {
  --_color: var(--color-primary);
  --_border-color: transparent;
  --_background-color: transparent;
  --_icon-color: var(--color-white);
  --_icon-bg-color: var(--color-primary);
  padding: 0;
  min-width: 0;
  min-height: 0;
}

.button--quaternary {
  --_color: var(--color-white);
  --_border-color: transparent;
  --_background-color: transparent;
  --_icon-color: var(--color-primary);
  --_icon-bg-color: var(--color-white);
  padding: 0;
  min-width: 0;
  min-height: 0;
}

.button--other {
  --_color: var(--color-white);
  --_border-color: var(--color-gray-900);
  --_background-color: var(--color-gray-900);
  --_icon-color: var(--color-gray-900);
  --_icon-bg-color: var(--color-white);
}

.button--shape-square, .wp-block-button.is-style-button-large .button {
  border-radius: 16px;
}

.button--fit-content, .wp-block-button:not(.is-style-button-full):not(.is-style-button-large) .button,
.wp-block-file .button {
  width: -moz-fit-content;
  width: fit-content;
}

.button--size-sm {
  max-width: 14.375rem;
}

.button--size-lg, .wp-block-button.is-style-button-large .button {
  font-size: 1.125rem;
  min-height: 5rem;
}
@container main (min-width: 768px) {
  .button--size-lg, .wp-block-button.is-style-button-large .button {
    font-size: 1.25rem;
    min-height: 7.5rem;
  }
}
.button--size-lg .button__left-icon > svg, .wp-block-button.is-style-button-large .button .button__left-icon > svg {
  width: 2rem;
  height: 2rem;
}
@container main (min-width: 768px) {
  .button--size-lg .button__left-icon > svg, .wp-block-button.is-style-button-large .button .button__left-icon > svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.news-card {
  display: block;
  border-radius: 16px;
  background-color: var(--color-white);
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border: 1px solid transparent;
  transition: 0.2s border ease-in-out;
}

.news-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 0.5rem;
}

.news-card__tag {
  flex-shrink: 0;
}

.news-card__date {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
}

.news-card__title {
  flex-basis: 100%;
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.news-card__body {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
}

.support-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 1.25rem 0.75rem;
  text-align: center;
}
@container main (min-width: 768px) {
  .support-card {
    padding: 1.5rem 1.625rem;
  }
}

.support-card__num {
  font-family: var(--font-family-en);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.support-card__title {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}
@container main (min-width: 768px) {
  .support-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.support-card__text {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-demilight);
}
@container main (min-width: 768px) {
  .support-card__text {
    margin-top: 1rem;
  }
}

.support-card__button {
  margin-top: 0.5rem;
}
@container main (min-width: 768px) {
  .support-card__button {
    margin-top: 1rem;
  }
}

.event-card {
  overflow: clip;
  border-radius: 16px;
  background-color: var(--color-white);
}

.event-card__media-area img {
  width: 100%;
}

.event-card__content-area {
  padding: 1.5rem 1.25rem;
}
@container main (min-width: 768px) {
  .event-card__content-area {
    padding: 2.5rem;
  }
}

.event-card__title {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-bold);
}
@container main (min-width: 768px) {
  .event-card__title {
    font-size: 1.5rem;
  }
}

.event-card__title-icon {
  color: var(--color-primary);
}

.event-card__description {
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.event-card__list {
  margin-top: 1rem;
}
@container main (min-width: 768px) {
  .event-card__list {
    margin-top: 1.5rem;
  }
}

.event-card__list-item + .event-card__list-item {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--color-gray-200);
}
@container main (min-width: 768px) {
  .event-card__list-item + .event-card__list-item {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

.event-card__item-link {
  letter-spacing: 0.05em;
}

.event-card__item-text {
  margin-top: 0.5rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.event-card__button {
  margin-top: 1rem;
}

.internship-card {
  border-radius: 16px;
  padding-inline: 1.25rem;
  padding-block: 1.5rem 2rem;
  background-color: var(--color-white);
}
.internship-card + .internship-card {
  margin-top: 1.5rem;
}

.internship-card__header {
  border-bottom: 1px solid var(--color-gray-200);
  padding-bottom: 0.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "num . date" "title title title";
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.75rem;
}

.internship-card__num {
  grid-area: num;
  font-family: var(--font-family-en);
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  line-height: 1;
}

.internship-card__date {
  grid-area: date;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-gray-500);
}

.internship-card__date-label {
  letter-spacing: 0.05em;
}

.internship-card__title {
  grid-area: title;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
}

.internship-card__title-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-primary);
  vertical-align: text-top;
  margin-left: 1rem;
}

.internship-card__body {
  padding-top: 0.75rem;
}

@container main (min-width: 768px) {
  .internship-card__info {
    display: grid;
    row-gap: 0.5rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    grid-template-columns: auto 1fr;
  }
}

.internship-card__term {
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
}
.internship-card__term:not(:first-child) {
  margin-top: 0.5rem;
}
@container main (min-width: 768px) {
  .internship-card__term:not(:first-child) {
    margin-top: 0;
  }
}

.internship-card__term-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  vertical-align: text-top;
  margin-right: 0.25rem;
}

.internship-card__detail {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@container main (min-width: 768px) {
  .internship-card__detail {
    grid-column: 2;
  }
}

.link-card, .wp-block-group.is-style-link-card {
  display: block;
  border-radius: 16px;
  background-color: var(--color-white);
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border: 1px solid var(--color-primary);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  min-height: 11.25rem;
  transition: 0.2s background-color ease-in-out;
}

.link-card__title, .wp-block-group.is-style-link-card h2,
.wp-block-group.is-style-link-card h3,
.wp-block-group.is-style-link-card h4,
.wp-block-group.is-style-link-card h5 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.link-card__text, .wp-block-group.is-style-link-card p {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.link-card__icon {
  color: var(--color-white);
  background-color: var(--color-primary);
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.box, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex) {
  border-radius: 16px;
  background-color: var(--color-white);
  border: 1px solid transparent;
  padding-block: 1.5rem;
  padding-inline: 1.25rem;
}
@container main (min-width: 768px) {
  .box, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex) {
    padding-block: 2rem;
    padding-inline: 2.5rem;
  }
}
:where(.entry) .box, :where(.entry) .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex) {
  margin-block: 1.25rem;
}
.box > :first-child, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex) > :first-child {
  margin-top: 0 !important;
}
.box > :last-child, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex) > :last-child {
  margin-bottom: 0 !important;
}

@container main (min-width: 768px) {
  .box--py-lg {
    padding-block: 3rem;
  }
}

.box--alert, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex).is-style-box-alert {
  border-color: var(--color-alert);
  background-color: var(--color-alert-lightest);
}
.box--alert h4, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex).is-style-box-alert h4 {
  color: var(--color-alert);
}

.stack, .wp-block-group.is-style-stack {
  position: relative;
  padding-block: 2rem;
  background-color: var(--color-primary-lightest);
}
@container main (min-width: 768px) {
  .stack, .wp-block-group.is-style-stack {
    padding-block: 2.5rem;
  }
}
.stack::before, .wp-block-group.is-style-stack::before, .stack::after, .wp-block-group.is-style-stack::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: var(--color-primary-lightest);
  width: calc((var(--main-width) - 100%) / 2);
}
.stack::before, .wp-block-group.is-style-stack::before {
  right: 100%;
}
.stack::after, .wp-block-group.is-style-stack::after {
  left: 100%;
  border-top-right-radius: 100px;
  max-width: 12.5rem;
}
.stack > :first-child, .wp-block-group.is-style-stack > :first-child {
  margin-top: 0 !important;
}
.stack > :last-child, .wp-block-group.is-style-stack > :last-child {
  margin-bottom: 0 !important;
}

.pickup-block {
  border-radius: 16px;
  background-color: var(--color-primary-lighter);
  padding: 2rem 1.25rem;
}
@container main (min-width: 768px) {
  .pickup-block {
    padding: 2.5rem 2.5rem 2.75rem;
  }
}

.pickup-block__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@container main (min-width: 768px) {
  .pickup-block__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}

.pickup-block__heading {
  font-size: 2.25rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1;
}

.pickup-block__description {
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.pickup-block__cards {
  display: grid;
  row-gap: 0.75rem;
}
@container main (min-width: 1048px) {
  .pickup-block__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.contact-block__header {
  margin-bottom: 1rem;
}

.contact-block__description {
  text-align: center;
  line-height: 1.8;
}

.contact-block__buttons {
  margin-top: 1.25rem;
  display: grid;
  row-gap: 1.25rem;
}
@container main (min-width: 768px) {
  .contact-block__buttons {
    margin-top: 2.25rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 46.5rem;
    margin-inline: auto;
  }
}

.contact-block__footer {
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--color-gray-200);
}
@container main (min-width: 768px) {
  .contact-block__footer {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}

@container main (min-width: 768px) {
  .contact-block__hours {
    display: flex;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}

.contact-block__hours-term {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
}
@container main (min-width: 768px) {
  .contact-block__hours-term {
    font-size: 1.25rem;
  }
}

.contact-block__hours-icon {
  color: var(--color-accent);
}

.contact-block__hours-description {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
}
@container main (min-width: 768px) {
  .contact-block__hours-description {
    font-size: 1.25rem;
  }
}

.contact-block__hours-num {
  font-family: var(--font-family-en);
  font-size: 1.75rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@container main (min-width: 768px) {
  .contact-block__hours-num {
    font-size: 2rem;
  }
}

.contact-block__note {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.tab-switcher__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  margin-bottom: 0.5rem;
}
@container main (min-width: 768px) {
  .tab-switcher__tabs {
    margin-bottom: 1rem;
    display: flex;
  }
}

.tab-switcher__tabs--in-box {
  margin-top: -1.5rem;
  margin-inline: -1.25rem;
}
@container main (min-width: 768px) {
  .tab-switcher__tabs--in-box {
    margin-top: -0.75rem;
    margin-inline: 0;
  }
}

.tab-switcher__tab {
  border: none;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  border-bottom: 2px solid transparent;
}
@container main (min-width: 768px) {
  .tab-switcher__tab {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}
.tab-switcher__tab[aria-selected=true] {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  border-color: currentColor;
}

.news-list__item {
  padding-block: 0.75rem;
  padding-inline: 0.5rem;
  border-bottom: 1px solid var(--color-gray-300);
}
@container main (min-width: 768px) {
  .news-list__item {
    padding-block: 1rem;
  }
}

.news-list__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.25rem;
}

.news-list__date {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--color-gray-500);
}

.news-list__new {
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.news-list__text {
  flex-basis: 100%;
}
@container main (min-width: 768px) {
  .news-list__text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}

.news-list__title {
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: var(--font-weight-medium);
}
@container main (min-width: 768px) {}

.news-list__note {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--color-gray-500);
  display: grid;
  grid-template-columns: auto 1fr;
}
@container main (min-width: 768px) {}
.news-list__note dt {
  font-weight: var(--font-weight-regular);
  grid-column: 1;
}
.news-list__note dt::after {
  content: "：";
}
@container main (min-width: 768px) {}
.news-list__note dd {
  grid-column: 2;
}
@container main (min-width: 768px) {}

.banner {
  transition: 0.2s opacity ease-in-out;
}

.banner-list {
  display: grid;
  gap: 1.25rem;
  max-width: 18.125rem;
  margin-inline: auto;
}
@container main (min-width: 768px) {
  .banner-list {
    max-width: 56.875rem;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }
}
.banner-list img {
  width: 100%;
}

.rich-banner {
  display: block;
  color: var(--color-white);
  background-color: var(--color-primary);
  overflow: clip;
  border-radius: 16px;
}
@container main (min-width: 768px) {}
@container main (min-width: 1048px) {
  .rich-banner {
    display: grid;
    grid-template-columns: 1fr 24.375rem;
  }
}

.rich-banner__content-area {
  padding: 2rem 1.25rem;
}
@container main (min-width: 768px) {
  .rich-banner__content-area {
    padding: 3.125rem 3.75rem 2.8125rem 2.5rem;
  }
}

.rich-banner__image-area {
  position: relative;
}

.rich-banner__heading {
  margin-bottom: 1rem;
}
@container main (min-width: 768px) {
  .rich-banner__heading {
    margin-bottom: 1.75rem;
  }
}

.rich-banner__text {
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.rich-banner__button {
  margin-top: 1rem;
}
@container main (min-width: 768px) {
  .rich-banner__button {
    margin-top: 2.5rem;
  }
}

.rich-banner__image {
  overflow: clip;
  border-radius: 160px 0 160px 0;
  height: 15rem;
}
@container main (min-width: 1048px) {
  .rich-banner__image {
    border-radius: 240px 0 240px 0;
    height: 100%;
  }
}
.rich-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@container main (min-width: 1048px) {
  .rich-banner__image img {
    content: url(/wp-content/themes/hdcc/assets/images/home_counselling_img_pc.png);
  }
}

.rich-banner__pic {
  position: absolute;
  right: 0.1875rem;
  bottom: 0;
}
@container main (min-width: 768px) {
  .rich-banner__pic {
    right: 0.5rem;
    bottom: 0.6875rem;
  }
}
@container main (min-width: 768px) {
  .rich-banner__pic img {
    width: 9.875rem;
    height: 9.4375rem;
  }
}

.pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
@container main (min-width: 768px) {
  .pagination {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}

.pagination__prev,
.pagination__next {
  flex-shrink: 0;
  display: block;
  padding: 0.5rem;
  color: var(--color-primary);
}
@container main (min-width: 768px) {
  .pagination__prev,
  .pagination__next {
    padding: 0.75rem;
  }
}
.pagination__prev:is(:disabled, [aria-disabled=true]),
.pagination__next:is(:disabled, [aria-disabled=true]) {
  cursor: not-allowed;
  color: var(--color-gray-200);
}

.pagination__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
@container main (min-width: 768px) {
  .pagination__list {
    gap: 0.5rem;
  }
}

.pagination__item {
  flex-shrink: 0;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  min-width: 3rem;
  height: 2rem;
  border-radius: 100vh;
  border: 1px solid var(--color-gray-300);
  color: var(--color-primary);
}
@container main (min-width: 768px) {
  .pagination__link {
    padding: 1rem;
    min-width: 4rem;
    height: 2.75rem;
  }
}
.pagination__link[aria-current=page] {
  background-color: var(--color-primary-lighter);
  border-color: var(--color-primary);
}

.modal-thumb {
  display: inline-grid;
  row-gap: 0.5rem;
}

.modal-thumb__content {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.modal-thumb__text {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
}

.modal-thumb__icon {
  flex-shrink: 0;
  width: 1.875rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-primary);
  display: grid;
  place-items: center;
}

.modal {
  --_outside-gutter-y: 1.875rem;
  --_outside-gutter-x: 1.875rem;
  --_inside-gutter-y: 1.25rem;
  --_inside-gutter-x: 1.25rem;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
  padding-block: var(--_outside-gutter-y);
  padding-inline: var(--_outside-gutter-x);
}

.modal__container {
  position: relative;
  width: 100%;
  max-width: 36.25rem;
  background-color: var(--color-white);
  border-radius: 16px;
  padding-block: var(--_inside-gutter-y);
}

.modal__inner {
  max-height: calc(100svh - var(--_outside-gutter-y) * 2 - var(--_inside-gutter-y) * 2);
  overflow-y: auto;
  padding-inline: var(--_inside-gutter-x);
}

.modal__close {
  width: 2.5rem;
  aspect-ratio: 1;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: 0;
  translate: 50% -50%;
}

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

/**************************\
  Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.fc-daygrid-event {
  white-space: wrap;
}

@container main (min-width: 768px) {
  .fc-scrollgrid-sync-table tr td:last-child .fc-scrollgrid-sync-inner {
    padding-right: 1rem;
  }
}

.hero {
  position: relative;
  margin-bottom: 2rem;
}
@container main (min-width: 768px) {
  .hero {
    margin-bottom: 2.5rem;
    background: linear-gradient(to right, transparent 50%, var(--color-gray-900) 50%);
  }
}

.hero__inner {
  display: grid;
}
@container main (min-width: 768px) {
  .hero__inner {
    max-width: 87.5rem;
    margin-inline: auto;
  }
}

.hero__logo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-color: var(--color-white);
  width: 9.5625rem;
  height: 3.9375rem;
  display: grid;
  place-items: center;
  border-radius: 0 0 0 20px;
}
@container main (min-width: 768px) {
  .hero__logo {
    width: 12.5rem;
    height: 5.1875rem;
  }
}
@container main (min-width: 768px) {
  .hero__logo img {
    width: 8.9375rem;
    height: 2.5rem;
  }
}

.hero__text-area {
  grid-area: 1/1;
  position: relative;
  z-index: 1;
  padding-top: 5.5rem;
  padding-inline: 3rem;
  box-sizing: content-box;
}
@container main (min-width: 768px) {
  .hero__text-area {
    max-width: 62.5rem;
    margin-inline: auto;
    padding-top: 0;
    padding-inline: 6.25rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.hero__main-lead {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@container main (min-width: 768px) {
  .hero__main-lead {
    margin-bottom: 1.75rem;
  }
}
@container main (min-width: 360px) {
  .hero__main-lead {
    font-size: clamp(2.5rem, 2.5rem + 40 * (100cqw - 22.5rem) / 408, 5rem);
  }
}
@container main (min-width: 768px) {
  .hero__main-lead {
    font-size: clamp(2.25rem, 2.25rem + 12 * (100cqw - 48rem) / 632, 3rem);
  }
}
@container main (min-width: 1400px) {
  .hero__main-lead {
    font-size: 3rem;
  }
}

.hero__main-lead-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 0.7em;
}
@container main (min-width: 768px) {
  .hero__main-lead-icon {
    width: 1.2em;
  }
}

.hero__sub-lead {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
  line-height: 2;
}
@container main (min-width: 360px) {
  .hero__sub-lead {
    font-size: clamp(0.875rem, 0.875rem + 14 * (100cqw - 22.5rem) / 408, 1.75rem);
  }
}
@container main (min-width: 768px) {
  .hero__sub-lead {
    font-size: clamp(0.875rem, 0.875rem + 4 * (100cqw - 48rem) / 632, 1.125rem);
  }
}
@container main (min-width: 1400px) {
  .hero__sub-lead {
    font-size: 1.125rem;
  }
}

.hero__image-area {
  grid-area: 1/1;
  overflow: clip;
  border-radius: 0 0 0 80px;
}
@container main (min-width: 768px) {
  .hero__image-area {
    border-radius: 0 0 0 100px;
    margin-right: -7.5rem;
  }
}
.hero__image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  max-height: calc(100svh - var(--header-height));
}
@container main (min-width: 768px) {
  .hero__image-area img {
    content: url(/wp-content/themes/hdcc/assets/images/hero_pc.png);
  }
}

.home-section {
  margin-top: 3.5rem;
}
@container main (min-width: 768px) {
  .home-section {
    margin-top: 6rem;
  }
}

.home-section__header {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
@container main (min-width: 768px) {
  .home-section__header {
    margin-bottom: 2.5rem;
  }
}

.home-section__body--bg01,
.home-section__body--bg02 {
  position: relative;
  padding-bottom: 3.5rem;
}
@container main (min-width: 768px) {
  .home-section__body--bg01,
  .home-section__body--bg02 {
    padding-bottom: 5rem;
  }
}
.home-section__body--bg01::before,
.home-section__body--bg02::before {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: var(--color-primary-lighter);
}
@container main (min-width: 768px) {
  .home-section__body--bg01::before,
  .home-section__body--bg02::before {
    right: -6.25rem;
  }
}
.home-section__body--bg01 > *,
.home-section__body--bg02 > * {
  position: relative;
  z-index: 1;
}

.home-section__body--bg01::before {
  top: 2.5rem;
  right: -1.125rem;
  left: -50vw;
  border-radius: 0 100px 0 0;
}
@container main (min-width: 768px) {
  .home-section__body--bg01::before {
    right: -6.25rem;
  }
}

.home-section__body--bg02::before {
  top: 8.125rem;
  right: -50vw;
  left: -1.125rem;
  border-radius: 100px 0 0 0;
}
@container main (min-width: 768px) {
  .home-section__body--bg02::before {
    top: 20.625rem;
    left: -6.25rem;
  }
}

.home-heading__en {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-primary);
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
  line-height: 1;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
@container main (min-width: 768px) {
  .home-heading__en {
    font-size: 1.25rem;
  }
}
.home-heading__en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 100vh;
}

.home-heading__en--color-white {
  color: var(--color-white);
}

.home-heading__en--color-accent {
  color: var(--color-accent);
}

.home-heading__ja {
  font-size: 1.75rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
}
@container main (min-width: 768px) {
  .home-heading__ja {
    font-size: 2.25rem;
  }
}

.home-heading--h-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-fc-white {
  color: var(--color-white) !important;
}

.u-fc-primary {
  color: var(--color-primary) !important;
}

.u-fc-alert {
  color: var(--color-alert) !important;
}

.u-bgc-accent-lighter {
  background-color: var(--color-accent-lighter);
}

.u-bgc-primary-lighter, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex).is-style-box-bg-green {
  background-color: var(--color-primary-lighter);
}

.u-bgc-primary-lightest {
  background-color: var(--color-primary-lightest);
}

.u-bgc-alert {
  background-color: var(--color-alert-lightest);
}

.u-bdc-gray, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex).is-style-box-border {
  border-color: var(--color-gray-200);
}

.u-bdc-primary, .wp-block-group:not(.is-style-stack):not(.is-style-link-card):not(.is-layout-flex).is-style-box-border-green {
  border-color: var(--color-primary);
}

.u-bdc-alert {
  border-color: var(--color-alert);
}

.u-mb-none {
  margin-bottom: 0 !important;
}

.u-mt-none {
  margin-top: 0 !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-none {
    margin-bottom: 0 !important;
  }
  .u-xs-mt-none {
    margin-top: 0 !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-none {
    margin-bottom: 0 !important;
  }
  .u-md-mt-none {
    margin-top: 0 !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-none {
    margin-bottom: 0 !important;
  }
  .u-lg-mt-none {
    margin-top: 0 !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-none {
    margin-bottom: 0 !important;
  }
  .u-xxl-mt-none {
    margin-top: 0 !important;
  }
}
.u-mb-xs {
  margin-bottom: 0.5rem !important;
}

.u-mt-xs {
  margin-top: 0.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-xs {
    margin-bottom: 0.5rem !important;
  }
  .u-xs-mt-xs {
    margin-top: 0.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-xs {
    margin-bottom: 0.5rem !important;
  }
  .u-md-mt-xs {
    margin-top: 0.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-xs {
    margin-bottom: 0.5rem !important;
  }
  .u-lg-mt-xs {
    margin-top: 0.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-xs {
    margin-bottom: 0.5rem !important;
  }
  .u-xxl-mt-xs {
    margin-top: 0.5rem !important;
  }
}
.u-mb-sm {
  margin-bottom: 0.75rem !important;
}

.u-mt-sm {
  margin-top: 0.75rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-sm {
    margin-bottom: 0.75rem !important;
  }
  .u-xs-mt-sm {
    margin-top: 0.75rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-sm {
    margin-bottom: 0.75rem !important;
  }
  .u-md-mt-sm {
    margin-top: 0.75rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-sm {
    margin-bottom: 0.75rem !important;
  }
  .u-lg-mt-sm {
    margin-top: 0.75rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-sm {
    margin-bottom: 0.75rem !important;
  }
  .u-xxl-mt-sm {
    margin-top: 0.75rem !important;
  }
}
.u-mb-md {
  margin-bottom: 1rem !important;
}

.u-mt-md {
  margin-top: 1rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-md {
    margin-bottom: 1rem !important;
  }
  .u-xs-mt-md {
    margin-top: 1rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-md {
    margin-bottom: 1rem !important;
  }
  .u-md-mt-md {
    margin-top: 1rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-md {
    margin-bottom: 1rem !important;
  }
  .u-lg-mt-md {
    margin-top: 1rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-md {
    margin-bottom: 1rem !important;
  }
  .u-xxl-mt-md {
    margin-top: 1rem !important;
  }
}
.u-mb-lg {
  margin-bottom: 1.5rem !important;
}

.u-mt-lg {
  margin-top: 1.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-lg {
    margin-bottom: 1.5rem !important;
  }
  .u-xs-mt-lg {
    margin-top: 1.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-lg {
    margin-bottom: 1.5rem !important;
  }
  .u-md-mt-lg {
    margin-top: 1.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-lg {
    margin-bottom: 1.5rem !important;
  }
  .u-lg-mt-lg {
    margin-top: 1.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-lg {
    margin-bottom: 1.5rem !important;
  }
  .u-xxl-mt-lg {
    margin-top: 1.5rem !important;
  }
}
.u-mb-xl {
  margin-bottom: 2rem !important;
}

.u-mt-xl {
  margin-top: 2rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-xl {
    margin-bottom: 2rem !important;
  }
  .u-xs-mt-xl {
    margin-top: 2rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-xl {
    margin-bottom: 2rem !important;
  }
  .u-md-mt-xl {
    margin-top: 2rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-xl {
    margin-bottom: 2rem !important;
  }
  .u-lg-mt-xl {
    margin-top: 2rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-xl {
    margin-bottom: 2rem !important;
  }
  .u-xxl-mt-xl {
    margin-top: 2rem !important;
  }
}
.u-mb-2xl {
  margin-bottom: 2.5rem !important;
}

.u-mt-2xl {
  margin-top: 2.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-2xl {
    margin-bottom: 2.5rem !important;
  }
  .u-xs-mt-2xl {
    margin-top: 2.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-2xl {
    margin-bottom: 2.5rem !important;
  }
  .u-md-mt-2xl {
    margin-top: 2.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-2xl {
    margin-bottom: 2.5rem !important;
  }
  .u-lg-mt-2xl {
    margin-top: 2.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-2xl {
    margin-bottom: 2.5rem !important;
  }
  .u-xxl-mt-2xl {
    margin-top: 2.5rem !important;
  }
}
.u-mb-3xl {
  margin-bottom: 3rem !important;
}

.u-mt-3xl {
  margin-top: 3rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-3xl {
    margin-bottom: 3rem !important;
  }
  .u-xs-mt-3xl {
    margin-top: 3rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-3xl {
    margin-bottom: 3rem !important;
  }
  .u-md-mt-3xl {
    margin-top: 3rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-3xl {
    margin-bottom: 3rem !important;
  }
  .u-lg-mt-3xl {
    margin-top: 3rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-3xl {
    margin-bottom: 3rem !important;
  }
  .u-xxl-mt-3xl {
    margin-top: 3rem !important;
  }
}
.u-mb-4xl {
  margin-bottom: 3.5rem !important;
}

.u-mt-4xl {
  margin-top: 3.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-4xl {
    margin-bottom: 3.5rem !important;
  }
  .u-xs-mt-4xl {
    margin-top: 3.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-4xl {
    margin-bottom: 3.5rem !important;
  }
  .u-md-mt-4xl {
    margin-top: 3.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-4xl {
    margin-bottom: 3.5rem !important;
  }
  .u-lg-mt-4xl {
    margin-top: 3.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-4xl {
    margin-bottom: 3.5rem !important;
  }
  .u-xxl-mt-4xl {
    margin-top: 3.5rem !important;
  }
}
.u-mb-5xl {
  margin-bottom: 4rem !important;
}

.u-mt-5xl {
  margin-top: 4rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-5xl {
    margin-bottom: 4rem !important;
  }
  .u-xs-mt-5xl {
    margin-top: 4rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-5xl {
    margin-bottom: 4rem !important;
  }
  .u-md-mt-5xl {
    margin-top: 4rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-5xl {
    margin-bottom: 4rem !important;
  }
  .u-lg-mt-5xl {
    margin-top: 4rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-5xl {
    margin-bottom: 4rem !important;
  }
  .u-xxl-mt-5xl {
    margin-top: 4rem !important;
  }
}
.u-mb-6xl {
  margin-bottom: 4.5rem !important;
}

.u-mt-6xl {
  margin-top: 4.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-6xl {
    margin-bottom: 4.5rem !important;
  }
  .u-xs-mt-6xl {
    margin-top: 4.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-6xl {
    margin-bottom: 4.5rem !important;
  }
  .u-md-mt-6xl {
    margin-top: 4.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-6xl {
    margin-bottom: 4.5rem !important;
  }
  .u-lg-mt-6xl {
    margin-top: 4.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-6xl {
    margin-bottom: 4.5rem !important;
  }
  .u-xxl-mt-6xl {
    margin-top: 4.5rem !important;
  }
}
.u-mb-7xl {
  margin-bottom: 5rem !important;
}

.u-mt-7xl {
  margin-top: 5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-7xl {
    margin-bottom: 5rem !important;
  }
  .u-xs-mt-7xl {
    margin-top: 5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-7xl {
    margin-bottom: 5rem !important;
  }
  .u-md-mt-7xl {
    margin-top: 5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-7xl {
    margin-bottom: 5rem !important;
  }
  .u-lg-mt-7xl {
    margin-top: 5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-7xl {
    margin-bottom: 5rem !important;
  }
  .u-xxl-mt-7xl {
    margin-top: 5rem !important;
  }
}
.u-mb-8xl {
  margin-bottom: 5.5rem !important;
}

.u-mt-8xl {
  margin-top: 5.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-8xl {
    margin-bottom: 5.5rem !important;
  }
  .u-xs-mt-8xl {
    margin-top: 5.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-8xl {
    margin-bottom: 5.5rem !important;
  }
  .u-md-mt-8xl {
    margin-top: 5.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-8xl {
    margin-bottom: 5.5rem !important;
  }
  .u-lg-mt-8xl {
    margin-top: 5.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-8xl {
    margin-bottom: 5.5rem !important;
  }
  .u-xxl-mt-8xl {
    margin-top: 5.5rem !important;
  }
}
.u-mb-9xl {
  margin-bottom: 6rem !important;
}

.u-mt-9xl {
  margin-top: 6rem !important;
}

@container main (min-width: 360px) {
  .u-xs-mb-9xl {
    margin-bottom: 6rem !important;
  }
  .u-xs-mt-9xl {
    margin-top: 6rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-mb-9xl {
    margin-bottom: 6rem !important;
  }
  .u-md-mt-9xl {
    margin-top: 6rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-mb-9xl {
    margin-bottom: 6rem !important;
  }
  .u-lg-mt-9xl {
    margin-top: 6rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-mb-9xl {
    margin-bottom: 6rem !important;
  }
  .u-xxl-mt-9xl {
    margin-top: 6rem !important;
  }
}
.u-pb-none {
  padding-bottom: 0 !important;
}

.u-pt-none {
  padding-top: 0 !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-none {
    padding-bottom: 0 !important;
  }
  .u-xs-pt-none {
    padding-top: 0 !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-none {
    padding-bottom: 0 !important;
  }
  .u-md-pt-none {
    padding-top: 0 !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-none {
    padding-bottom: 0 !important;
  }
  .u-lg-pt-none {
    padding-top: 0 !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-none {
    padding-bottom: 0 !important;
  }
  .u-xxl-pt-none {
    padding-top: 0 !important;
  }
}
.u-pb-xs {
  padding-bottom: 0.5rem !important;
}

.u-pt-xs {
  padding-top: 0.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-xs {
    padding-bottom: 0.5rem !important;
  }
  .u-xs-pt-xs {
    padding-top: 0.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-xs {
    padding-bottom: 0.5rem !important;
  }
  .u-md-pt-xs {
    padding-top: 0.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-xs {
    padding-bottom: 0.5rem !important;
  }
  .u-lg-pt-xs {
    padding-top: 0.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-xs {
    padding-bottom: 0.5rem !important;
  }
  .u-xxl-pt-xs {
    padding-top: 0.5rem !important;
  }
}
.u-pb-sm {
  padding-bottom: 0.75rem !important;
}

.u-pt-sm {
  padding-top: 0.75rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-sm {
    padding-bottom: 0.75rem !important;
  }
  .u-xs-pt-sm {
    padding-top: 0.75rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-sm {
    padding-bottom: 0.75rem !important;
  }
  .u-md-pt-sm {
    padding-top: 0.75rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-sm {
    padding-bottom: 0.75rem !important;
  }
  .u-lg-pt-sm {
    padding-top: 0.75rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-sm {
    padding-bottom: 0.75rem !important;
  }
  .u-xxl-pt-sm {
    padding-top: 0.75rem !important;
  }
}
.u-pb-md {
  padding-bottom: 1rem !important;
}

.u-pt-md {
  padding-top: 1rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-md {
    padding-bottom: 1rem !important;
  }
  .u-xs-pt-md {
    padding-top: 1rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-md {
    padding-bottom: 1rem !important;
  }
  .u-md-pt-md {
    padding-top: 1rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-md {
    padding-bottom: 1rem !important;
  }
  .u-lg-pt-md {
    padding-top: 1rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-md {
    padding-bottom: 1rem !important;
  }
  .u-xxl-pt-md {
    padding-top: 1rem !important;
  }
}
.u-pb-lg {
  padding-bottom: 1.5rem !important;
}

.u-pt-lg {
  padding-top: 1.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-lg {
    padding-bottom: 1.5rem !important;
  }
  .u-xs-pt-lg {
    padding-top: 1.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-lg {
    padding-bottom: 1.5rem !important;
  }
  .u-md-pt-lg {
    padding-top: 1.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-lg {
    padding-bottom: 1.5rem !important;
  }
  .u-lg-pt-lg {
    padding-top: 1.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-lg {
    padding-bottom: 1.5rem !important;
  }
  .u-xxl-pt-lg {
    padding-top: 1.5rem !important;
  }
}
.u-pb-xl {
  padding-bottom: 2rem !important;
}

.u-pt-xl {
  padding-top: 2rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-xl {
    padding-bottom: 2rem !important;
  }
  .u-xs-pt-xl {
    padding-top: 2rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-xl {
    padding-bottom: 2rem !important;
  }
  .u-md-pt-xl {
    padding-top: 2rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-xl {
    padding-bottom: 2rem !important;
  }
  .u-lg-pt-xl {
    padding-top: 2rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-xl {
    padding-bottom: 2rem !important;
  }
  .u-xxl-pt-xl {
    padding-top: 2rem !important;
  }
}
.u-pb-2xl {
  padding-bottom: 2.5rem !important;
}

.u-pt-2xl {
  padding-top: 2.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-2xl {
    padding-bottom: 2.5rem !important;
  }
  .u-xs-pt-2xl {
    padding-top: 2.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-2xl {
    padding-bottom: 2.5rem !important;
  }
  .u-md-pt-2xl {
    padding-top: 2.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-2xl {
    padding-bottom: 2.5rem !important;
  }
  .u-lg-pt-2xl {
    padding-top: 2.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-2xl {
    padding-bottom: 2.5rem !important;
  }
  .u-xxl-pt-2xl {
    padding-top: 2.5rem !important;
  }
}
.u-pb-3xl {
  padding-bottom: 3rem !important;
}

.u-pt-3xl {
  padding-top: 3rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-3xl {
    padding-bottom: 3rem !important;
  }
  .u-xs-pt-3xl {
    padding-top: 3rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-3xl {
    padding-bottom: 3rem !important;
  }
  .u-md-pt-3xl {
    padding-top: 3rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-3xl {
    padding-bottom: 3rem !important;
  }
  .u-lg-pt-3xl {
    padding-top: 3rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-3xl {
    padding-bottom: 3rem !important;
  }
  .u-xxl-pt-3xl {
    padding-top: 3rem !important;
  }
}
.u-pb-4xl {
  padding-bottom: 3.5rem !important;
}

.u-pt-4xl {
  padding-top: 3.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-4xl {
    padding-bottom: 3.5rem !important;
  }
  .u-xs-pt-4xl {
    padding-top: 3.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-4xl {
    padding-bottom: 3.5rem !important;
  }
  .u-md-pt-4xl {
    padding-top: 3.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-4xl {
    padding-bottom: 3.5rem !important;
  }
  .u-lg-pt-4xl {
    padding-top: 3.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-4xl {
    padding-bottom: 3.5rem !important;
  }
  .u-xxl-pt-4xl {
    padding-top: 3.5rem !important;
  }
}
.u-pb-5xl {
  padding-bottom: 4rem !important;
}

.u-pt-5xl {
  padding-top: 4rem !important;
}

@container main (min-width: 360px) {
  .u-xs-pb-5xl {
    padding-bottom: 4rem !important;
  }
  .u-xs-pt-5xl {
    padding-top: 4rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-pb-5xl {
    padding-bottom: 4rem !important;
  }
  .u-md-pt-5xl {
    padding-top: 4rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-pb-5xl {
    padding-bottom: 4rem !important;
  }
  .u-lg-pt-5xl {
    padding-top: 4rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-pb-5xl {
    padding-bottom: 4rem !important;
  }
  .u-xxl-pt-5xl {
    padding-top: 4rem !important;
  }
}
.u-gap-none {
  gap: 0 !important;
}

.u-col-gap-none {
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.u-row-gap-none {
  row-gap: 0 !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-none {
    gap: 0 !important;
  }
  .u-xs-col-gap-none {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .u-xs-row-gap-none {
    row-gap: 0 !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-none {
    gap: 0 !important;
  }
  .u-md-col-gap-none {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .u-md-row-gap-none {
    row-gap: 0 !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-none {
    gap: 0 !important;
  }
  .u-lg-col-gap-none {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .u-lg-row-gap-none {
    row-gap: 0 !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-none {
    gap: 0 !important;
  }
  .u-xxl-col-gap-none {
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
  }
  .u-xxl-row-gap-none {
    row-gap: 0 !important;
  }
}
.u-gap-xs {
  gap: 0.5rem !important;
}

.u-col-gap-xs {
  -moz-column-gap: 0.5rem !important;
       column-gap: 0.5rem !important;
}

.u-row-gap-xs {
  row-gap: 0.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-xs {
    gap: 0.5rem !important;
  }
  .u-xs-col-gap-xs {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .u-xs-row-gap-xs {
    row-gap: 0.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-xs {
    gap: 0.5rem !important;
  }
  .u-md-col-gap-xs {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .u-md-row-gap-xs {
    row-gap: 0.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-xs {
    gap: 0.5rem !important;
  }
  .u-lg-col-gap-xs {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .u-lg-row-gap-xs {
    row-gap: 0.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-xs {
    gap: 0.5rem !important;
  }
  .u-xxl-col-gap-xs {
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }
  .u-xxl-row-gap-xs {
    row-gap: 0.5rem !important;
  }
}
.u-gap-sm {
  gap: 0.75rem !important;
}

.u-col-gap-sm {
  -moz-column-gap: 0.75rem !important;
       column-gap: 0.75rem !important;
}

.u-row-gap-sm {
  row-gap: 0.75rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-sm {
    gap: 0.75rem !important;
  }
  .u-xs-col-gap-sm {
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }
  .u-xs-row-gap-sm {
    row-gap: 0.75rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-sm {
    gap: 0.75rem !important;
  }
  .u-md-col-gap-sm {
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }
  .u-md-row-gap-sm {
    row-gap: 0.75rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-sm {
    gap: 0.75rem !important;
  }
  .u-lg-col-gap-sm {
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }
  .u-lg-row-gap-sm {
    row-gap: 0.75rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-sm {
    gap: 0.75rem !important;
  }
  .u-xxl-col-gap-sm {
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }
  .u-xxl-row-gap-sm {
    row-gap: 0.75rem !important;
  }
}
.u-gap-md {
  gap: 1rem !important;
}

.u-col-gap-md {
  -moz-column-gap: 1rem !important;
       column-gap: 1rem !important;
}

.u-row-gap-md {
  row-gap: 1rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-md {
    gap: 1rem !important;
  }
  .u-xs-col-gap-md {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .u-xs-row-gap-md {
    row-gap: 1rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-md {
    gap: 1rem !important;
  }
  .u-md-col-gap-md {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .u-md-row-gap-md {
    row-gap: 1rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-md {
    gap: 1rem !important;
  }
  .u-lg-col-gap-md {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .u-lg-row-gap-md {
    row-gap: 1rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-md {
    gap: 1rem !important;
  }
  .u-xxl-col-gap-md {
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }
  .u-xxl-row-gap-md {
    row-gap: 1rem !important;
  }
}
.u-gap-lg {
  gap: 1.5rem !important;
}

.u-col-gap-lg {
  -moz-column-gap: 1.5rem !important;
       column-gap: 1.5rem !important;
}

.u-row-gap-lg {
  row-gap: 1.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-lg {
    gap: 1.5rem !important;
  }
  .u-xs-col-gap-lg {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .u-xs-row-gap-lg {
    row-gap: 1.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-lg {
    gap: 1.5rem !important;
  }
  .u-md-col-gap-lg {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .u-md-row-gap-lg {
    row-gap: 1.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-lg {
    gap: 1.5rem !important;
  }
  .u-lg-col-gap-lg {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .u-lg-row-gap-lg {
    row-gap: 1.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-lg {
    gap: 1.5rem !important;
  }
  .u-xxl-col-gap-lg {
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }
  .u-xxl-row-gap-lg {
    row-gap: 1.5rem !important;
  }
}
.u-gap-xl {
  gap: 2rem !important;
}

.u-col-gap-xl {
  -moz-column-gap: 2rem !important;
       column-gap: 2rem !important;
}

.u-row-gap-xl {
  row-gap: 2rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-xl {
    gap: 2rem !important;
  }
  .u-xs-col-gap-xl {
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }
  .u-xs-row-gap-xl {
    row-gap: 2rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-xl {
    gap: 2rem !important;
  }
  .u-md-col-gap-xl {
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }
  .u-md-row-gap-xl {
    row-gap: 2rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-xl {
    gap: 2rem !important;
  }
  .u-lg-col-gap-xl {
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }
  .u-lg-row-gap-xl {
    row-gap: 2rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-xl {
    gap: 2rem !important;
  }
  .u-xxl-col-gap-xl {
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }
  .u-xxl-row-gap-xl {
    row-gap: 2rem !important;
  }
}
.u-gap-2xl {
  gap: 2.5rem !important;
}

.u-col-gap-2xl {
  -moz-column-gap: 2.5rem !important;
       column-gap: 2.5rem !important;
}

.u-row-gap-2xl {
  row-gap: 2.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-2xl {
    gap: 2.5rem !important;
  }
  .u-xs-col-gap-2xl {
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }
  .u-xs-row-gap-2xl {
    row-gap: 2.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-2xl {
    gap: 2.5rem !important;
  }
  .u-md-col-gap-2xl {
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }
  .u-md-row-gap-2xl {
    row-gap: 2.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-2xl {
    gap: 2.5rem !important;
  }
  .u-lg-col-gap-2xl {
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }
  .u-lg-row-gap-2xl {
    row-gap: 2.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-2xl {
    gap: 2.5rem !important;
  }
  .u-xxl-col-gap-2xl {
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }
  .u-xxl-row-gap-2xl {
    row-gap: 2.5rem !important;
  }
}
.u-gap-3xl {
  gap: 3rem !important;
}

.u-col-gap-3xl {
  -moz-column-gap: 3rem !important;
       column-gap: 3rem !important;
}

.u-row-gap-3xl {
  row-gap: 3rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-3xl {
    gap: 3rem !important;
  }
  .u-xs-col-gap-3xl {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .u-xs-row-gap-3xl {
    row-gap: 3rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-3xl {
    gap: 3rem !important;
  }
  .u-md-col-gap-3xl {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .u-md-row-gap-3xl {
    row-gap: 3rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-3xl {
    gap: 3rem !important;
  }
  .u-lg-col-gap-3xl {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .u-lg-row-gap-3xl {
    row-gap: 3rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-3xl {
    gap: 3rem !important;
  }
  .u-xxl-col-gap-3xl {
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }
  .u-xxl-row-gap-3xl {
    row-gap: 3rem !important;
  }
}
.u-gap-4xl {
  gap: 3.5rem !important;
}

.u-col-gap-4xl {
  -moz-column-gap: 3.5rem !important;
       column-gap: 3.5rem !important;
}

.u-row-gap-4xl {
  row-gap: 3.5rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-4xl {
    gap: 3.5rem !important;
  }
  .u-xs-col-gap-4xl {
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }
  .u-xs-row-gap-4xl {
    row-gap: 3.5rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-4xl {
    gap: 3.5rem !important;
  }
  .u-md-col-gap-4xl {
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }
  .u-md-row-gap-4xl {
    row-gap: 3.5rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-4xl {
    gap: 3.5rem !important;
  }
  .u-lg-col-gap-4xl {
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }
  .u-lg-row-gap-4xl {
    row-gap: 3.5rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-4xl {
    gap: 3.5rem !important;
  }
  .u-xxl-col-gap-4xl {
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }
  .u-xxl-row-gap-4xl {
    row-gap: 3.5rem !important;
  }
}
.u-gap-5xl {
  gap: 4rem !important;
}

.u-col-gap-5xl {
  -moz-column-gap: 4rem !important;
       column-gap: 4rem !important;
}

.u-row-gap-5xl {
  row-gap: 4rem !important;
}

@container main (min-width: 360px) {
  .u-xs-gap-5xl {
    gap: 4rem !important;
  }
  .u-xs-col-gap-5xl {
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }
  .u-xs-row-gap-5xl {
    row-gap: 4rem !important;
  }
}
@container main (min-width: 768px) {
  .u-md-gap-5xl {
    gap: 4rem !important;
  }
  .u-md-col-gap-5xl {
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }
  .u-md-row-gap-5xl {
    row-gap: 4rem !important;
  }
}
@container main (min-width: 1048px) {
  .u-lg-gap-5xl {
    gap: 4rem !important;
  }
  .u-lg-col-gap-5xl {
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }
  .u-lg-row-gap-5xl {
    row-gap: 4rem !important;
  }
}
@container main (min-width: 1400px) {
  .u-xxl-gap-5xl {
    gap: 4rem !important;
  }
  .u-xxl-col-gap-5xl {
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }
  .u-xxl-row-gap-5xl {
    row-gap: 4rem !important;
  }
}
.u-marker-gold, mark.has-u-marker-gold-color {
  padding-inline: 0.25em;
  margin-inline: 0.25em;
  background: linear-gradient(to bottom, transparent 50%, var(--color-accent-light) 50%);
}

ol.wp-block-list {
  list-style-type: decimal;
  margin-left: 1em;
}
ol.wp-block-list li {
  letter-spacing: 0.05em;
  margin-block: 0.5rem;
}

.wp-block-group.is-layout-flex {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 1.5rem;
  flex-direction: column;
}
@container main (min-width: 768px) {
  .wp-block-group.is-layout-flex {
    flex-direction: row;
    align-items: flex-start;
  }
}
.wp-block-group.is-layout-flex .wp-block-image {
  flex-shrink: 0;
}
.wp-block-group.is-layout-flex .wp-block-group {
  margin: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
}
.wp-block-group.is-style-link-card {
  position: relative;
}
.wp-block-group.is-style-link-card h2,
.wp-block-group.is-style-link-card h3,
.wp-block-group.is-style-link-card h4,
.wp-block-group.is-style-link-card h5 {
  border: none !important;
  margin: 0 !important;
}
.wp-block-group.is-style-link-card h2 a,
.wp-block-group.is-style-link-card h3 a,
.wp-block-group.is-style-link-card h4 a,
.wp-block-group.is-style-link-card h5 a {
  text-decoration: none;
  color: var(--color-primary) !important;
}
.wp-block-group.is-style-link-card h2 a::after,
.wp-block-group.is-style-link-card h3 a::after,
.wp-block-group.is-style-link-card h4 a::after,
.wp-block-group.is-style-link-card h5 a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.wp-block-group.is-style-link-card::after {
  content: "";
  color: var(--color-white);
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary) url(/wp-content/themes/hdcc/assets/images/icons_arrow-next.svg) no-repeat center center/1.5rem;
}
.wp-block-group .wp-block-group__inner-container > *:first-child {
  margin-top: 0 !important;
}
.wp-block-group .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0 !important;
}

.wp-block-button.is-style-button-full {
  width: 100%;
}

.wp-block-button.is-style-button-large {
  width: 100%;
}
.wp-block-file a:not(.button) {
  display: none;
}
.wp-block-file .button {
  font-size: 1rem;
}

.wp-block-flexible-table-block-table table {
  width: 100%;
  margin-block: 1rem;
  border-top: 1px solid var(--color-gray-200) !important;
}
@container main (min-width: 768px) {
  .wp-block-flexible-table-block-table table {
    margin-block: 1.5rem;
  }
}
.wp-block-flexible-table-block-table table th,
.wp-block-flexible-table-block-table table td {
  padding: 0.75rem 1rem !important;
  border: none !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  font-size: 0.875rem !important;
}
@container main (min-width: 768px) {
  .wp-block-flexible-table-block-table table th,
  .wp-block-flexible-table-block-table table td {
    font-size: 1rem !important;
  }
}
.wp-block-flexible-table-block-table table th {
  background-color: var(--color-primary-lightest) !important;
}
.wp-block-flexible-table-block-table table tbody th {
  width: 25% !important;
}
mark {
  color: var(--color-black) !important;
}
.wp-block-separator {
  border-top: var(--color-gray-500) 1px solid !important;
}
@media (min-width: 768px){
  .site {
    grid-template-columns: 17.5rem 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "header body" "footer footer";
  }
  .site__header {
    position: static;
    border-right: 1px solid var(--color-gray-300);
  }
  .header {
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .header__inner {
    border-color: transparent;
    border-bottom: none;
    display: revert;
    padding: 2rem 1.875rem;
    height: 100vh;
    overflow-y: auto;
  }
  .header__title {
    margin-bottom: 2.5rem;
    justify-content: center;
  }
  .header__title img {
    content: url(/wp-content/themes/hdcc/assets/images/header_logo_pc.svg);
    width: 10.1875rem;
    height: 7.625rem;
  }
  .header__menu-button {
    display: none;
  }
  .header__menu[inert] {
    translate: none;
  }
  .header__menu {
    position: initial;
    width: initial;
    height: initial;
    overflow-y: initial;
  }
  .header__menu-inner {
    padding: 0;
  }
  .header__nav-area {
    margin-inline: -1.875rem;
  }
  .header__nav-link {
    padding: 0.875rem 1.875rem;
    min-height: auto;
  }
  .header__nav-link[aria-expanded=true] {
    background-color: var(--color-primary-lightest);
  }
  .header__nav-icon {
    display: none;
  }
  .header__child-nav {
    display: block;
    padding: 5rem 1.25rem 1.25rem;
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    z-index: -1;
    width: 17.5rem;
    overflow-y: auto;
  }
  .header__child-nav[data-animatable=true] {
    transition: 0.3s translate ease-in-out;
  }
  .header__child-nav[inert] {
    translate: -100% 0;
  }
  .header__child-nav-list {
    overflow: visible;
  }
  .header__child-nav-item:first-child {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .header__child-nav-thumb {
    display: block;
    border-radius: 8px;
    overflow: clip;
    margin-bottom: 0.5rem;
  }
  .header__child-nav-icon {
    display: block;
    flex-shrink: 0;
    color: var(--color-primary);
  }
  .header__cta-area {
    margin-top: 1.5rem;
  }
  .header__banner-area {
    margin-top: 1.5rem;
  }
  .footer__sns-area {
    padding: 2.5rem 1.25rem 2.8125rem;
  }
  .footer__sns-heading {
    font-size: 1.25rem;
  }
  .footer__sns-buttons {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .footer__main-area {
    padding-block: 3.75rem 2.5rem;
    padding-inline: 2.5rem;
  }
  .footer__sub-area {
    padding-bottom: 2.5rem;
  }
  .footer__logo img {
    width: 27.625rem;
  }
  .footer__address-text {
    font-size: 1rem;
  }
  .footer__contact {
    margin-top: 1.5rem;
  }
  .footer__contact-heading {
    font-size: 1rem;
  }
  .footer__contact-list {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .footer__contact-list dd {
    font-size: 1.125rem;
  }
  .footer__cta {
    margin-top: 1.75rem;
    grid-column: 2;
  }
  .footer__nav-area {
    margin-top: 2.5rem;
  }
  .footer__nav-list {
    -moz-columns: 3;
         columns: 3;
  }
  .footer__nav-item + .footer__nav-item {
    margin-top: 0.5rem;
  }
  .footer__nav-link {
    font-size: 1rem;
  }
  .footer__child-nav {
    margin-top: 0.5rem;
  }
  .footer__child-nav-item + .footer__child-nav-item {
    margin-top: 0.5rem;
  }
  .footer__child-nav-link {
    padding-inline: 1rem;
  }
  .flex--sp-order-1 {
    order: 1;
  }
  .flex--sp-order-2 {
    order: 2;
  }
  .modal {
    --_outside-gutter-y: 2.5rem;
    --_outside-gutter-x: 2.5rem;
    --_inside-gutter-y: 2.5rem;
    --_inside-gutter-x: 2.5rem;
  }
  .hero__image-area img {
    max-height: 100svh;
  }
}
@media (min-width: 1048px){
  .footer__sns-area-inner {
    max-width: 73.9375rem;
    margin-inline: auto;
    grid-template-columns: 16.4375rem 1fr;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    align-items: center;
  }
  .footer__main-area-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    max-width: 85rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
    row-gap: 2.5rem;
  }
  .footer__sub-area-inner {
    max-width: 85rem;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .footer__cta {
    justify-content: start;
  }
  .footer__nav-area {
    margin-top: 0;
    grid-column: 2;
    grid-row: 1/3;
  }
  .footer__nav-list {
    -moz-columns: 2;
         columns: 2;
  }
  .footer__sub-nav-list {
    justify-content: end;
  }
}
@media (min-width: 1328px){
  .footer__info-area {
    grid-column: 1;
  }
  .footer__address {
    grid-column: 2;
  }
  .footer__contact {
    grid-column: 2;
  }
  .footer__nav-list {
    -moz-columns: 3;
         columns: 3;
  }
}
@media (any-hover: hover){
  a:not([class]):where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: none;
  }
  .header__nav-link:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    background-color: var(--color-primary-lightest);
  }
  .header__child-nav-link:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    background-color: var(--color-primary-light);
  }
  .header__sub-nav-link:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: underline;
  }
  .footer__nav-link:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: underline;
  }
  .footer__child-nav-link:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: underline;
  }
  .footer__sub-nav-link:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: underline;
  }
  .breadcrumb__link:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: none;
  }
  .button--primary:where(:hover):not(:is(:disabled, [aria-disabled=true])), .wp-block-button:not(.is-style-button-secondary):not(.button--secondary):not(.is-style-button-tertiary):not(.button--tertiary) .button:where(:hover):not(:is(:disabled, [aria-disabled=true])),
  .wp-block-file .button:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    --_color: var(--color-primary);
    --_background-color: var(--color-white);
  }
  .button--secondary:where(:hover):not(:is(:disabled, [aria-disabled=true])), .wp-block-button.is-style-button-secondary .button:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    --_background-color: var(--color-primary-lighter);
  }
  .button--tertiary:where(:hover):not(:is(:disabled, [aria-disabled=true])), .wp-block-button.is-style-button-tertiary .button:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: underline;
  }
  .button--quaternary:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: underline;
  }
  .button--other:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    --_color: var(--color-gray-900);
    --_background-color: var(--color-white);
  }
  .news-card:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    border-color: var(--color-primary);
  }
  a.internship-card__title:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    text-decoration: underline;
  }
  .link-card:where(:hover):not(:is(:disabled, [aria-disabled=true])), .wp-block-group.is-style-link-card:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    background-color: var(--color-primary-lighter);
  }
  .news-list__link:where(:hover):not(:is(:disabled, [aria-disabled=true])) .news-list__title {
    text-decoration: underline;
  }
  .banner:where(:hover):not(:is(:disabled, [aria-disabled=true])) {
    opacity: 0.6;
  }
}
@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;
  }
}