
/* Source: temp/assets/styles/kiso.css */
/*! kiso.css v1.2.2 | MIT License | https://github.com/tak-dcxi/kiso.css */

/* ======================================================
//  MARK: Universal
// ====================================================== */
*,
::before,
::after {
  /*
  * Includes `padding` and `border` in the element's specified dimensions.
  * It is highly recommended to set `box-sizing: border-box;` by default, as it makes styling much easier, especially when specifying `width: 100%;`.
  */
  box-sizing: border-box;
}

/* ======================================================
//  MARK: Document and Body Elements
// ====================================================== */
:where(:root) {
  /* In Safari, if `font-family` is not specified, a serif font is applied by default, so `sans-serif` is set as the default here. */
  font-family: sans-serif;

  /*
  * For accessibility, it is recommended to set the `line-height` to at least 1.5 times the text size within paragraphs.
  * @see https://waic.jp/translations/WCAG21/#visual-presentation
  */
  line-height: 1.5;

  /* Remove space when punctuation marks are adjacent, and also remove leading spaces in a line. */
  text-spacing-trim: trim-start;

  /* Improves readability by inserting a small space between Japanese and alphanumeric characters. */
  text-autospace: normal;

  /* Prevents misreading by applying strict line-breaking rules. */
  line-break: strict;

  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;

  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;

  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  /*
  * When creating a sticky footer, a minimum height is often required.
  * Setting the `min-block-size` to the dynamic viewport height ensures enough space for the footer.
  */
  min-block-size: 100dvb;

  /* The `margin` specified in the User Agent (UA) stylesheet is often unnecessary, so it is reset here. */
  margin: unset;
}

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

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

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

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

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

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

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

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

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

  /*
  * In Safari, using `list-style: none` prevents screen readers from announcing lists.
  * `list-style-type: ""` is used to hide markers without affecting accessibility.
  * @see https://matuzo.at/blog/2023/removing-list-styles-without-affecting-semantics
  */
  list-style-type: "";
}

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

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

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

  /* Set to `no-autospace` as it can cause misalignment with monospaced fonts. */
  text-autospace: no-autospace;
}

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

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

:where(code, kbd, samp) {
  /*
  * Set a monospace font family referencing Tailwind.
  * @see https://tailwindcss.com/docs/font-family
  */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  /* Font feature settings can have adverse effects on monospaced fonts, so their values are explicitly set to `initial` to prevent inheritance. */
  font-feature-settings: initial;
  font-variation-settings: initial;

  /* Resets the `font-size` specified in the UA stylesheet to allow inheritance. */
  font-size: unset;

  /*
  * Disables font ligatures for programming fonts (like Fira Code)
  * to prevent character combinations like `=>` from being rendered as a single symbol (e.g., `⇒`).
  */
  font-variant-ligatures: none;
}

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

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}

@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}

/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a: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(:placeholder-shown)
  ) {
  /*
  * Certain input types need to maintain left alignment even in right-to-left (RTL) languages.
  * However, this only applies when the value is not empty, as the placeholder should be right-aligned.
  * @see https://rtlstyling.com/posts/rtl-styling#form-inputs
  */
  direction: ltr;
}

:where(textarea) {
  /* The `margin-block` specified in Firefox's UA stylesheet is often unnecessary, so it is reset. */
  margin-block: unset;

  /* Allows vertical resizing for `<textarea>` elements. */
  resize: block;
}

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

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

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

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

:where(fieldset) {
  /*
  * Prevent fieldset from causing overflow.
  * Reset the default `min-inline-size: min-content` to prevent children from stretching fieldset.
  * @see https://github.com/twbs/bootstrap/issues/12359
  */
  min-inline-size: 0;

  /* The following default styles are often unnecessary, so they are reset. */
  margin-inline: unset;
  padding: unset;
  border: unset;
}

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

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

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

/* ======================================================
//  MARK: Interactive elements
// ====================================================== */
:where(summary) {
  /* The default triangle marker is often unnecessary, so it is disabled. */
  list-style-type: "";

  /* Changing the cursor to a pointer clarifies the clickability of the element. */
  cursor: pointer;
}

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

:where(dialog, [popover]) {
  /*
  * When these fixed-position elements are scrolled, preventing scroll chaining on the underlying page and bounce effects on mobile improves usability.
  * Disabling block-direction scroll chaining is recommended.
  */
  overscroll-behavior-block: contain;

  /* The following default styles are often unnecessary, so they are reset. */
  padding: unset;
  border: unset;
}

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

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

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

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

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

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

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

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

/* Source: temp/assets/styles/common.css */
@charset "utf-8";

/* =============================================
共通
============================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  letter-spacing: 0.4px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

/* カラー */
:root {
  --black: #003240;
  --blue: #0097BF;
  --light-blue: #E0F2F7;
  --pink: #ED5583;
  --yellow: #EECA21;
  --white: #ffffff;
}

/* フォントサイズ */
*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc(
    (var(--clamp-max) - var(--clamp-min)) /
      (var(--clamp-viewport-max) - var(--clamp-viewport-min))
  );
  --clamp-y-axis-intersection: calc(
    var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min))
  );
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) +
      (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );

  font-size: var(--clamp) !important;
}
body {
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-max: 16;
  --clamp-min: 14;
}

/* ユーティリティ */
.section {
  padding: 80px 0;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
    border-radius: 30px;
  }
}
.inner {
  width: 92vw;
  margin-inline: auto;
}
.inner--large {
  max-width: 1320px;
}
.inner--medium {
  max-width: 1010px;
}
.inner--small {
  max-width: 880px;
}
.bg--navy {
  background: var(--black);
}
.bg--light-red {
  background: var(--light-blue);
}
.bg--light-blue {
  background: var(--light-blue);
}
.align--center {
  text-align: center;
  margin-inline: auto;
}
.heading {
  font-weight: 700;
}
.heading--large {
  --clamp-max: 41;
  --clamp-min: 25;
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  gap: clamp(0px, 0.3vw, 4px);
  text-align: center;
  margin-top: var(--leading-trim);
  letter-spacing: 0.1em;
}
.heading--large::before {
  content: attr(data-heading-before);
  --clamp-max: 75;
  --clamp-min: 25;
  color: var(--blue);
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
.bg--navy .heading--large,
.bg--navy .heading--large::before,
.bg--image .heading--large,
.bg--image .heading--large::before {
  color: var(--white);
}
.button.button {
  border-radius: 999em;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  font-weight: 700;
  text-align: center;
  border: solid 1px;
  min-width: 150px;
  text-decoration: none;
}
.button--red.button--red {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0px 4px 10px rgba(0, 151, 191, 0.2);
}
.button--navy.button--navy {
  background: var(--black);
  color: var(--white);
  box-shadow: 0px 4px 10px rgba(0, 50, 64, 0.2);
}
.button--grad.button--grad {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0px 4px 10px rgba(17, 17, 17, 0.2);
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pink);
    transition: left 0.6s ease;
  }
}
@media (hover: hover) {
  .button--grad:hover::before {
    left: 100%;
  }
}
.button--arrow {
  position: relative;
  padding-right: calc(1.9em + 1.2em + 0.4em) !important;
}
.button--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 1.6em;
  height: 1.6em;
  background-image: url(../images/column/icon-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.font--roboto.font--roboto {
  font-family: "Roboto", sans-serif;
}
.font--red.font--red {
  color: var(--blue);
}
.font--small.font--small {
  --clamp-max: 12;
  --clamp-min: 10;
}
.font--bold.font--bold {
  font-weight: 700;
}
.font--underline.font--underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (hover: hover) {
  .link--underline:hover {
    text-decoration: underline;
  }
}
.lead-box {
  background: var(--white);
  border: solid 6px var(--blue);
  padding: 32px;
  border-radius: 40px;
  font-weight: 700;
  text-align: center;
  --clamp-max: 25;
  --clamp-min: 18;
  line-height: 2;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .lead-box {
    padding: 10px 20px;
    margin: 0 auto 30px;
    border-radius: 20px;
    border: solid 4px var(--blue);
    line-height: 1.8;
  }
}
.lead-box__text {
  display: flex;
  justify-content: center;
}
.lead-box__text > img {
  margin-inline: 10px;
}
.display--only-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .display--only-pc {
    display: none;
  }
}
.display--only-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .display--only-sp {
    display: block;
  }
}

/* =============================================
ヘッダー
============================================= */
.header {
  position: absolute;
  width: 100%;
  padding: 40px 0 10px;
  background: var(--white);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__navigation {
}
.header__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__link {
  font-weight: 500;
  --clamp-max: 14;
  --clamp-min: 14;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .header__link:not(.header__link--button):hover {
    color: var(--blue);
  }
}
.header__link--button {
  font-weight: 700;
  --clamp-max: 16;
  --clamp-min: 16;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
.header__dropdown {
  position: relative;
}
.header__summary {
  padding-top: 2px;
}
.header__summary--dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__dropdown.is-open .header__summary--dropdown {
  color: var(--blue);
}
.header__summary--dropdown::after {
  content: "";
  inline-size: 0.5em;
  block-size: 0.5em;
  border-right: solid 1px currentColor;
  border-bottom: solid 1px currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.header__dropdown.is-open .header__summary--dropdown::after {
  transform: translateY(3px) rotate(-135deg);
}
.header__dropdown-list {
  --clamp-max: 14;
  --clamp-min: 14;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: max-content;
  padding: 20px;
  background: var(--white);
  border: solid 1px var(--light-blue);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transform-origin: top center;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  pointer-events: none;
  z-index: 99999;
}
.header__dropdown.is-open .header__dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__dropdown-item:not(:last-of-type) {
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(17, 17, 17, 0.1);
}

/* フロート */
.header--float {
  padding: 10px;
}
.header.header--float:not(.header--column) .header__logo {
  width: 120px;
}
.header--float.is-drawer-open {
  background: transparent;
}
.header--float.is-drawer-open .header__logo {
  display: none;
}
@media screen and (max-width: 1160px) {
  .header {
    padding: 10px 0;
  }
  .header__logo {
    width: 120px;
  }
  .header__navigation {
    display: none;
  }
}

/* =============================================
ドロワーメニュー
============================================= */
.drawer__toggle {
  position: relative;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 10001;
  display: none;
}
@media screen and (max-width: 1160px) {
  .drawer__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}
.drawer__line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--black);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}
.drawer__toggle[aria-expanded="true"] .drawer__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.drawer__toggle[aria-expanded="true"] .drawer__line:nth-child(2) {
  opacity: 0;
}
.drawer__toggle[aria-expanded="true"] .drawer__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  visibility: hidden;
  transition: visibility 0s 0.3s;
}
.drawer[aria-hidden="false"] {
  visibility: visible;
  transition: visibility 0s 0s;
}
.drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: -1;
}
.drawer[aria-hidden="false"] .drawer__overlay {
  opacity: 1;
}
.drawer__container {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 325px;
  height: 100%;
  background-color: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 40px 30px;
}
@media (prefers-reduced-motion: reduce) {
  .drawer__container {
    transition: none;
  }
}
.drawer[aria-hidden="false"] .drawer__container {
  transform: translateX(0);
}
.drawer__logo {
  width: 160px;
  height: auto;
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer__item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  &:last-child {
    border-bottom: none;
  }
}
.drawer__link {
  --clamp-max: 16;
  --clamp-min: 14;
  display: block;
  padding: 20px 0;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.drawer__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.drawer__summary::-webkit-details-marker {
  display: none;
}
.drawer__summary::after {
  content: "";
  inline-size: 0.55em;
  block-size: 0.55em;
  border-right: solid 2px currentColor;
  border-bottom: solid 2px currentColor;
  transform: translateY(-0.1em) rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.drawer__dropdown[open] .drawer__summary::after {
  transform: translateY(0.1em) rotate(-135deg);
}
.drawer__sublist {
  padding-bottom: 10px;
}
.drawer__subitem {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}
.drawer__sublink {
  --clamp-max: 15;
  --clamp-min: 13;
  display: block;
  padding: 16px 0 16px 14px;
  color: var(--black);
  line-height: 1.6;
}
.drawer__link--button.drawer__link--button {
  --clamp-min: 16;
  margin-top: 20px;
}

/* =============================================
フッター
============================================= */
.footer {
  background: var(--black);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 50px 10px;
  --clamp-max: 14;
  --clamp-min: 12;
  width: fit-content;
}
.footer__list {
  display: flex;
  line-height: 1;
}
.footer__list-item:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: solid 1px var(--white);
}
.footer__link {
  color: var(--white);
  display: block;
}
.footer__services {
  width: 100%;
  margin: 0 auto 20px;
  color: var(--white);
}
.footer__services-heading {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__services-heading::before,
.footer__services-heading::after {
  content: "";
  min-width: 30px;
  height: 1px;
  background: #ffffff99;
}
.footer__services-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-bottom: solid 1px #ffffff99;
  padding-bottom: 26px;
}
.footer__services-link {
  padding: 1em;
  border: solid 1px #ffffff99;
  text-align: center;
  width: 50%;
  background: #003240;
  border-radius: 10px;
}
.footer__services-name {
  font-weight: 700;
  padding-right: 6px;
  margin-right: 10px;
  border-right: solid 1px #ffffff99;
}
@media (hover: hover) {
  .footer__link:hover {
    text-decoration: underline;
  }
}
.footer__credit {
  color: var(--white);
  opacity: 0.6;
}
@media screen and (max-width: 1170px) {
  .footer__inner {
    align-items: flex-start;
    padding: 30px 0;
  }
  .footer__navigation {
    margin-inline: auto;
    text-align: center;
  }
  .footer__list {
    flex-direction: column;
    gap: 10px;
  }
  .footer__list-item:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .footer__link {
    padding-block: 5px;
  }
  .footer__credit {
    width: 100%;
    text-align: center;
  }
  .footer__services,
  .footer__services-link {
    width: 90vw;
    max-width: 1010px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__services-inner {
    flex-direction: column;
  }
  .footer__services-link {
    text-align: left;
  }
  .footer__services-heading {
    gap: 20px;
  }
}

/* =============================================
パンくずリスト
============================================= */
#breadcrumbs {
  color: var(--black);
  background: var(--light-blue);
  padding: 0.6em;
  --clamp-max: 12;
  --clamp-min: 12;
  font-weight: 500;
}
#breadcrumbs > span {
  width: 90vw;
  display: block;
  margin-inline: auto;
  max-width: 1010px;
}
#breadcrumbs span span:not(:first-child)::before {
  content: "»";
  display: inline-block;
  margin-inline: 0.3em;
  color: currentColor;
}

/* =============================================
テーブル
============================================= */
/* テーブル全体 */
.table,
.wp-block-flexible-table-block-table table,
.wp-block-table {
  border: solid 1px var(--black);
}
.wp-block-flexible-table-block-table table,
.wp-block-table {
  width: 100%;
}
.table__row,
.wp-block-flexible-table-block-table thead,
.wp-block-table thead {
  border-bottom: solid 1px var(--black) !important;
}

/* セル共通 */
.table__header,
.table__data,
.wp-block-flexible-table-block-table th,
.wp-block-flexible-table-block-table td,
.wp-block-table th,
.wp-block-table td {
  padding: 1.2em 1em;
}

/* ヘッダーセル */
.table__header,
.wp-block-flexible-table-block-table th,
.wp-block-table th {
  color: var(--black);
  background: var(--light-blue) !important;
  text-align: center;
  border-right: solid 1px var(--black);
  font-weight: 700;
}

/* データセル */
.table__data,
.wp-block-flexible-table-block-table td,
.wp-block-table td {
  background: var(--white);
  border: solid 1px var(--black);
}

/* =============================================
スクロールヒント
============================================= */
.scrollable {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
}

.scrollable table {
  white-space: normal;
  min-width: 600px;
}

.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  animation: scroll-hint-animation 2s infinite ease;
}
@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
.scroll-hint--show {
  display: block;
}

/* =============================================
CTA
============================================= */
.cta {
  border-radius: 0;
  padding: 40px 0;
  background: var(--black);
}
.cta__content {
  text-align: center;
  display: grid;
  place-items: center;
  background: var(--white);
  padding: 40px 60px;
  border-radius: 40px;
}
.cta__copy {
  --clamp-max: 20;
  --clamp-min: 16;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  margin-top: var(--leading-trim);
}
.cta__copy--large {
  --clamp-max: 31;
  --clamp-min: 20;
}
.cta__button {
  --clamp-max: 33;
  --clamp-min: 18;
  padding: 1em 1.2em;
  width: 100%;
  box-shadow: 0px 9px 24px 0px rgba(17, 17, 17, 0.2);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .cta__content {
    border-radius: 20px;
    padding: 20px 15px;
  }
  .cta__copy {
    align-items: flex-end;
  }
}

/* フロートCTA*/
.float-cta {
  position: fixed;
  bottom: 0;
  z-index: 99999;
  margin: 6px;
  width: calc(100% - 12px);
  padding: 10px;
  text-align: center;
  background: var(--black);
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
  transform: translateY(100%);
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 12px 27px 2px;
}
.float-cta__copy {
  font-weight: 700;
  --clamp-max: 14;
  --clamp-min: 14;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.float-cta__button {
  --clamp-max: 16;
  --clamp-min: 16;
}

@media screen and (max-width: 767px) {
}

/* =============================================
下層ページ
============================================= */
body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
.basic-page {
  padding: 180px 0 100px;
}
.basic-page__eyecatch.basic-page__eyecatch {
  border: solid 2px var(--light-blue);
  margin: 0 auto 2em;
  border-radius: 20px;
  overflow: hidden;
}
.basic-page__meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 1em !important;
}
.basic-page__meta {
  display: flex;
  gap: 6px;
  align-items: center;
  --clamp-max: 14;
  --clamp-min: 12;
}
.basic-page__categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}
.basic-page__category {
  background: var(--blue);
  padding: 6px 12px;
  border-radius: 999em;
  color: var(--white);
  font-weight: 600;
  --clamp-max: 14;
  --clamp-min: 12;
}

.basic-page__content > * {
  margin: 1.8em 0;
}
.basic-page__back-button.basic-page__back-button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .basic-page {
    padding: 100px 0 60px;
  }
}

/* ブロック */
.wp-block-heading.wp-block-heading {
  margin: 2em 0 1em;
  line-height: 1.5;
  word-break: break-all;
}
h1.wp-block-heading.wp-block-heading {
  margin-top: var(--leading-trim);
  margin-bottom: 14px;
  --clamp-max: 35;
  --clamp-min: 22;
}
h2.wp-block-heading.wp-block-heading {
  color: var(--black);
  --clamp-max: 28;
  --clamp-min: 20;
  border-bottom: solid 2px var(--black);
  padding: 0.6em 0.7em;
  background: var(--light-blue);
}
h3.wp-block-heading.wp-block-heading {
  color: var(--black);
  --clamp-max: 25;
  --clamp-min: 18;
  padding-bottom: 0.6em;
  border-bottom: solid 2px var(--black);
}
h4.wp-block-heading.wp-block-heading {
  color: var(--black);
  --clamp-max: 22;
  --clamp-min: 16;
}
h5.wp-block-heading.wp-block-heading {
  --clamp-max: 20;
  --clamp-min: 16;
}
h6.wp-block-heading.wp-block-heading {
  --clamp-max: 20;
  --clamp-min: 16;
}
.wp-block-paragraph {
  --clamp-max: 18;
  --clamp-min: 16;
  line-height: 1.75;
}
.basic-page__content a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (hover: hover) {
  .basic-page__content a:hover {
    text-decoration: none;
  }
}
.wp-block-image img {
  border: solid 2px var(--light-blue);
}
.wp-block-list {
  padding-left: 1.2em;
}
ol.wp-block-list {
  list-style: decimal;
}
ul.wp-block-list {
  list-style: circle;
}
.wp-block-list li:not(:last-of-type) {
  margin-bottom: 0.6em;
}
.wp-block-button {
  display: block;
  margin-inline: auto;
}
.wp-element-caption {
  text-align: center;
  --clamp-min: 12;
  --clamp-max: 14;
}
.wp-block-image {
  text-align: center;
}
.wp-block-embed {
  text-align: center;
}
.wp-block-columns {
  gap: 1.4em;
}

/* 目次 */
#ez-toc-container {
  padding: 10px 20px;
  border-left: solid 2px var(--black);
}
.ez-toc-title {
  margin-bottom: 0;
  font-weight: 700;
}
.ez-toc-list li {
  padding-top: 10px;
}
.ez-toc-list li ul {
  padding-left: 1em;
}
.ez-toc-list li a {
  text-decoration: none;
}

/* Source: temp/assets/styles/common-column.css */
@charset "utf-8";

/* =============================================
ヘッダー
============================================= */
.header--column {
  padding: 20px 0;
}
.header__heading {
  margin: 0;
}
.header--column .header__link {
  --clamp-max: 16;
  --clamp-min: 14;
}
.header--column .header__list {
  gap: 40px;
}
@media screen and (max-width: 1160px) {
  .header--column {
    padding: 10px 0;
  }
  .header--column .header__logo {
    width: 170px;
  }
}

/* =============================================
フッター
============================================= */
.footer--column .footer__inner {
  padding-block: 20px;
}
@media screen and (max-width: 767px) {
  .footer--column .footer__inner {
    padding-block: 10px;
  }
}

/* =============================================
パンくず
============================================= */
#breadcrumbs > span {
  width: 92vw;
  max-width: 1240px;
}
