@charset "UTF-8";
html {
  scrollbar-gutter: stable;
  font-size: 100%;
}
@media (max-width: 1074px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  position: relative;
  font-family: "";
  color: #333;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../images/bg@2x.webp");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  body::before {
    background-image: url("../images/bg_sp@2x.webp");
  }
}

body.is-menu-open,
body.is-modal-open {
  overflow: hidden;
}

a,
button {
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*! kiso.css v1.2.1 | 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;
  /*
   * `overflow-wrap: anywhere` は行あふれ回避のため任意の文字間で改行でき、日本語が語の途中で不自然に折れる（特に Safari）。
   * 禁則・語区切りに沿う `normal` を既定にする。flex/grid で子がはみ出す場合は当該要素に `min-inline-size: 0` 等で対応する。
   */
  overflow-wrap: normal;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  /* 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):lang(ja) {
  /* `pretty` は欧文向けの行詰めで、日本語＋ Safari では改行位置が不自然になることがある */
  text-wrap: wrap;
}

: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
  */
  font: inherit;
  font-size: 100%;
  margin: 0;
}

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

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

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

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

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

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

:where(ul, ol, menu) {
  /* 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 / 0.3);
}

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

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

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

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

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

@supports selector(::scroll-button(*)) {
  ::scroll-button(*) {
    /* Apply the same reset as for `<button>` elements. */
    border-width: 1px;
    border-style: solid;
    border-color: unset;
    border-radius: unset;
    background-color: unset;
    color: unset;
    font: unset;
    letter-spacing: unset;
    text-align: unset;
    touch-action: manipulation;
  }
  ::scroll-button(*):enabled {
    /* Make the scroll button indicate interactivity when enabled. */
    cursor: pointer;
  }
}
.c-dot-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-dot-heading {
    gap: 2.1875rem;
  }
}

.c-dot-heading__line {
  display: block;
  width: 0.375rem;
  height: 4.125rem;
  background-image: radial-gradient(circle, currentColor 0.125rem, transparent 0.125rem);
  background-size: 100% 0.5rem;
  background-repeat: repeat-y;
  background-position: center top;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-dot-heading__line {
    height: 3rem;
  }
}

.c-dot-heading__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-dot-heading__title {
    font-size: max(1.125rem, 12px);
  }
}

.c-fadeIn {
  transition: 1.7s;
  opacity: 0;
}

.c-fadeIn.animated {
  opacity: 1;
}

.c-fadeInLeft {
  transform: translate3d(-50px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.c-fadeInLeft.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.c-fadeInRight {
  transform: translate3d(50px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.c-fadeInRight.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.c-fadeInUp {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}

.c-fadeInUp.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.c-faq {
  border: 1px solid #47A5DD;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-faq__header {
  background: #47A5DD;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.9375rem;
}

.c-faq__header-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}

.c-faq__items {
  width: 100%;
  padding: 1.25rem 4.6875rem 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-faq__items {
    padding: 1.25rem 20px 1.875rem;
  }
}

.c-faq__qa {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  border-bottom: 1px solid #F4F4F4;
  padding-bottom: 1.25rem;
}
.c-faq__qa .c-faq__item + .c-faq__item {
  display: none;
}
.c-faq__qa.is-open .c-faq__item + .c-faq__item {
  display: flex;
}
.c-faq__qa.is-open .c-faq__q-arrow::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.c-faq__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.c-faq__item.js-faq-question {
  cursor: pointer;
  align-items: center;
}

.c-faq__q-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.125rem;
  background: #47A5DD;
  border-radius: 0.3125rem;
  font-family: "Jost", sans-serif;
  font-size: max(1.25rem, 12px);
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  line-height: 1;
}

.c-faq__a-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.125rem;
  background: #F4F4F4;
  border-radius: 0.3125rem;
  font-family: "Jost", sans-serif;
  font-size: max(1.25rem, 12px);
  color: #47A5DD;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  line-height: 1;
}

.c-faq__q-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 500;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.5;
  flex: 1;
}

.c-faq__a-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
  flex: 1;
  padding-top: 0.25rem;
}

.c-faq__q-arrow {
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
  position: relative;
}
.c-faq__q-arrow::before, .c-faq__q-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000066;
  transition: transform 0.3s;
}
.c-faq__q-arrow::before {
  width: 0.8125rem;
  height: 1px;
  transform: translate(-50%, -50%);
}
.c-faq__q-arrow::after {
  width: 1px;
  height: 0.8125rem;
  transform: translate(-50%, -50%);
}

.c-mask-reveal {
  overflow: hidden;
  mask-image: linear-gradient(to right, black 50%, transparent 100%);
  mask-size: 200% 100%;
  mask-repeat: no-repeat;
  mask-position: 200% 0%;
}

.c-sub-card {
  border-radius: 1rem;
  overflow: hidden;
}

.c-sub-card__header {
  background: #000066;
  border-radius: 1rem 1rem 0 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-sub-card__header {
    padding: 0.625rem;
  }
}
.c-sub-card__header::before {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
  background: url("../images/icon_white_star.svg") no-repeat center/contain;
}

.c-sub-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #fff;
  letter-spacing: 0.05em;
}

.c-sub-card__body {
  background: #fff;
  padding: 1.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-sub-card__body {
    padding: 1.25rem 20px;
  }
}

.c-sub-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-sub-card__tags {
    gap: 0.3125rem;
    justify-content: flex-start;
  }
}

.c-sub-card__tag {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #000066;
  letter-spacing: 0.05em;
  border: 1px solid #000066;
  border-radius: 0.3125rem;
  padding: 0.75rem 0.875rem 0.75rem 0.5rem;
  line-height: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-sub-card__tag {
    font-size: max(0.8125rem, 12px);
    padding: 0.5rem 0.5rem;
  }
}

.c-sub-card--purple .c-sub-card__header {
  background: #A46FA9;
}
.c-sub-card--purple .c-sub-card__tag {
  color: #A46FA9;
  border-color: #A46FA9;
}

.c-voice {
  --c-voice-color: #47A5DD;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.1875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-voice {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 1.875rem 1.25rem;
  }
}
.c-voice::before, .c-voice::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.25rem;
  border: 1px solid var(--c-voice-color);
  pointer-events: none;
}
.c-voice::before {
  top: 0;
  border-bottom: none;
  border-radius: 0.625rem 0.625rem 0 0;
}
.c-voice::after {
  bottom: 0;
  border-top: none;
  border-radius: 0 0 0.625rem 0.625rem;
}

.c-voice__badge {
  font-family: "Jost", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 500;
  color: #fff;
  background: var(--c-voice-color);
  border-radius: 1.875rem;
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-voice__badge {
    font-size: max(0.8125rem, 12px);
    padding: 0.25rem 1.125rem;
  }
}

.c-voice__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-voice__text {
    font-size: max(0.875rem, 12px);
  }
}

.p-a-day {
  padding: 1.875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-a-day {
    padding: 0.625rem 0 0;
  }
}

.p-a-day__content {
  background: #fff;
  padding: 3.75rem 0 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__content {
    padding: 0 0 6.875rem;
  }
}

.p-a-day__inner {
  max-width: 70.625rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-a-day__inner {
    padding: 0 1.5625rem;
  }
}

.p-a-day__header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-a-day__header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
  }
}

.p-a-day__header-img {
  grid-area: 1/1;
  justify-self: end;
  width: 45.77%;
  align-self: stretch;
  aspect-ratio: 692/459;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-a-day__header-img {
    align-self: flex-end;
    width: calc(100% - 1.5625rem);
    aspect-ratio: 350/232;
    order: -1;
  }
}
.p-a-day__header-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-a-day__header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-a-day__header-body {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.875rem;
  background: #fff;
  border-radius: 10rem 0 0 0;
  padding: 5rem 52.92% 3.75rem 14.29%;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__header-body {
    background: #fff;
    border-radius: 1.875rem 0 0 0;
    margin-top: -2.8125rem;
    position: relative;
    z-index: 1;
    gap: 1.25rem;
    padding: 5rem 1.5625rem 3.125rem;
  }
}

.p-a-day__header-heading {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__header-heading {
    gap: 0.625rem;
  }
}

.p-a-day__label {
  font-family: "Jost", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #47A5DD;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-a-day__label {
    font-size: max(0.8125rem, 12px);
  }
}

.p-a-day__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(2.25rem, 12px);
  font-weight: 500;
  color: #000066;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-a-day__title {
    font-size: max(1.5rem, 12px);
  }
}

.p-a-day__divider {
  display: block;
  width: 4.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  background-image: radial-gradient(circle, #47A5DD 0.125rem, transparent 0.125rem);
  background-size: 0.5rem 0.375rem;
  background-repeat: repeat-x;
  background-position: left center;
}

.p-a-day__header-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 400;
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
  max-width: 23.5rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__header-desc {
    font-size: max(0.875rem, 12px);
    max-width: none;
  }
}

.p-a-day__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-a-day__row {
  display: grid;
  grid-template-columns: 5.625rem 2.5rem 1fr;
  gap: 0 1.25rem;
  position: relative;
  --dot-center: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__row {
    grid-template-columns: 3.125rem 1.875rem 1fr;
    gap: 0 0.375rem;
    --dot-center: 1.40625rem;
  }
}

.p-a-day__time {
  font-family: "Jost", sans-serif;
  font-size: max(1.5rem, 12px);
  font-weight: 400;
  color: #000066;
  padding-top: 0.625rem;
  text-align: right;
  letter-spacing: 0.012em;
}
@media screen and (max-width: 767px) {
  .p-a-day__time {
    padding-top: 0.75rem;
    font-size: max(1rem, 12px);
  }
}

.p-a-day__line-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-a-day__dot {
  position: relative;
  z-index: 1;
  width: 0.6875rem;
  height: 0.6875rem;
  background: #fff;
  border: 1px solid #000066;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: calc(var(--dot-center) - 0.34375rem);
  box-shadow: 0 0 0 0.25rem #fff;
}

.p-a-day__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: #000066;
}
.p-a-day__row:first-child .p-a-day__line {
  top: var(--dot-center);
}
.p-a-day__row:last-child .p-a-day__line {
  bottom: auto;
  height: calc(var(--dot-center) + 7rem);
}
@media screen and (max-width: 767px) {
  .p-a-day__row:last-child .p-a-day__line {
    height: calc(var(--dot-center) + 5rem);
  }
}

.p-a-day__body {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__body {
    padding-bottom: 2.25rem;
  }
}
.p-a-day__row:last-child .p-a-day__body {
  padding-bottom: 0.5rem;
}

.p-a-day__pill {
  display: flex;
  align-items: center;
  background: #000066;
  color: #fff;
  border-radius: 6.25rem 1.25rem 1.25rem 6.25rem;
  padding: 0.875rem 1.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.25rem, 12px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__pill {
    font-size: max(1rem, 12px);
    padding: 0.625rem 1.25rem 0.625rem 1rem;
    margin-bottom: 0.75rem;
  }
}

.p-a-day__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 400;
  color: #000066;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__desc {
    font-size: max(0.875rem, 12px);
  }
}

.p-a-day__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__tags {
    margin-bottom: 1rem;
    gap: 0.25rem;
  }
}

.p-a-day__tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid #10B5B5;
  border-radius: 1rem;
  padding: 0.4375rem 0.9375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #10B5B5;
  letter-spacing: 0.05em;
  line-height: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-a-day__tag {
    font-size: max(0.75rem, 12px);
    padding: 0.375rem 0.75rem;
  }
}

.p-a-day__photos {
  display: flex;
  gap: 0.6875rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-a-day__photos {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.625rem;
  }
}

.p-a-day__photo {
  width: calc((100% - 1.5rem) / 3);
  overflow: hidden;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  background: url("../images/day_card_bg.webp") center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-a-day__photo {
    width: 100%;
    border-radius: 1rem;
  }
}
.p-a-day__photo > img {
  display: block;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-a-day__photo > img {
    height: 8.1875rem;
    object-fit: cover;
  }
}
.p-a-day__photo picture {
  display: block;
  flex-shrink: 0;
}
.p-a-day__photo picture img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-a-day__photo picture img {
    height: 8.1875rem;
    object-fit: cover;
  }
}

.p-a-day__photo-body {
  padding: 1.25rem 1.25rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__photo-body {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 0.9375rem 0.625rem 1.25rem;
  }
}

.p-a-day__photo-title-row {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-a-day__photo-title-row {
    margin-bottom: 0;
  }
}
.p-a-day__photo-title-row img {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.p-a-day__photo-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 500;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-a-day__photo-title {
    font-size: max(0.9375rem, 12px);
  }
}

.p-a-day__photo-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-a-day__photo-desc {
    font-size: max(0.8125rem, 12px);
  }
}

.p-appeal {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-appeal {
    padding: 3.75rem 0;
  }
}
.p-a-day .p-appeal {
  padding: 8.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-a-day .p-appeal {
    padding: 6.25rem 0 0;
  }
}

.p-appeal__inner {
  max-width: 70.625rem;
  margin: 0 auto;
  padding: 0 25px;
}
.p-a-day .p-appeal__inner {
  padding-left: 0;
  padding-right: 0;
}

.p-appeal__card {
  background: #F4F4F4;
  border-radius: 1.5rem;
  padding: 0 4.375rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-appeal__card {
    padding: 0 1.25rem 3.4375rem;
  }
}

.p-appeal__tag-wrap {
  display: flex;
  justify-content: center;
}

.p-appeal__tag {
  background: #47A5DD;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.25rem, 12px);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-align: center;
  padding: 1.25rem;
  border-radius: 0 0 1.25rem 1.25rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-appeal__tag {
    font-size: max(1.125rem, 12px);
    line-height: 1.6;
    padding: 1.125rem 1.25rem;
  }
}

.p-appeal__body {
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-appeal__body {
    padding-top: 1.5625rem;
  }
}

.p-appeal__icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-appeal__icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625rem;
    margin-bottom: 1.5625rem;
  }
}

.p-appeal__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.0625rem;
  width: 9.625rem;
}
@media screen and (max-width: 767px) {
  .p-appeal__icon-item {
    gap: 0.9375rem;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-appeal__icon-item:last-child {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-appeal__icon-item:last-child .p-appeal__icon-text {
    max-width: 8.125rem;
  }
}

.p-appeal__icon-circle {
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-appeal__icon-circle {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.p-appeal__icon-img {
  width: 2.5625rem;
  height: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-appeal__icon-img {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.p-appeal__icon-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 500;
  color: #000066;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-appeal__icon-text {
    font-size: max(0.875rem, 12px);
  }
}

.p-career__header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-career__header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
  }
}

.p-career__header-body {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 10rem 0 0 0;
  padding: 5rem calc(45.77% + 5rem) 3.75rem 14.29%;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-career__header-body {
    border-radius: 1.875rem 0 0 0;
    margin-top: -2.8125rem;
    position: relative;
    z-index: 1;
    padding: 5rem 1.5625rem 1.5625rem;
  }
}

.p-career__header-img {
  grid-area: 1/1;
  justify-self: end;
  width: 45.77%;
  align-self: stretch;
  aspect-ratio: 692/459;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-career__header-img {
    align-self: flex-end;
    width: calc(100% - 1.5625rem);
    aspect-ratio: 350/232;
    order: -1;
  }
}
.p-career__header-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-career__header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 32% center;
}
@media screen and (max-width: 767px) {
  .p-career__header-img img {
    object-position: center center;
  }
}

.p-career__label {
  font-family: "Jost", sans-serif;
  font-size: max(0.875rem, 12px);
  letter-spacing: 0.1em;
  color: #47A5DD;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-career__label {
    margin-bottom: 0.625rem;
  }
}

.p-career__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(2.25rem, 12px);
  font-weight: 500;
  color: #000066;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-career__title {
    font-size: max(1.5rem, 12px);
    margin-bottom: 1.25rem;
  }
}

.p-career__divider {
  display: block;
  width: 4.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  background-image: radial-gradient(circle, #47A5DD 0.125rem, transparent 0.125rem);
  background-size: 0.5rem 0.375rem;
  background-repeat: repeat-x;
  background-position: left center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-career__divider {
    margin-bottom: 1.25rem;
  }
}

.p-career__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-career__desc {
    font-size: max(0.875rem, 12px);
  }
}

.p-career__content {
  background: #fff;
  padding: 5rem 0 7rem;
}
@media screen and (max-width: 767px) {
  .p-career__content {
    padding: 0 0 7.5rem;
  }
}

.p-career__inner {
  max-width: 70.625rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-career__inner {
    padding: 0 1.5625rem;
  }
}

.p-career__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-career__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-career__card {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  row-gap: 0;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-career__card {
    display: flex;
    flex-direction: column;
  }
}

.p-career__card-header {
  background: #47A5DD;
  border-radius: 1rem 1rem 0 0;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  height: 3.125rem;
  flex-shrink: 0;
}
.p-career__card-header img {
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
}

.p-career__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-career__card-title {
    font-size: max(1rem, 12px);
  }
}

.p-career__card-body {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.p-career__card-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-career__card-img {
  width: 100%;
  aspect-ratio: 345/205;
  background: #CCCCCC;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-career__card-img {
    aspect-ratio: 325/239;
  }
}
.p-career__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-career__voice {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-career__voice {
    gap: 0.625rem;
    padding-bottom: 1rem;
  }
}

.p-career__voice-divider {
  width: 100%;
  height: 1.25rem;
  border: 1px solid #47A5DD;
  border-bottom: none;
  border-radius: 0.625rem 0.625rem 0 0;
}
.p-career__voice-divider:last-child {
  border-bottom: 1px solid #47A5DD;
  border-top: none;
  border-radius: 0 0 0.625rem 0.625rem;
}

.p-career__voice-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0 1.875rem;
  flex: 1;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-career__voice-body {
    padding: 0 1.25rem;
    gap: 0.625rem;
  }
}

.p-career__voice-quote {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #000066;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-career__voice-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #47A5DD;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-career__designated {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-career__designated {
    margin-top: 3.5rem;
    gap: 1.25rem;
  }
}

.p-career__designated-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-career__designated-lead {
    font-size: max(0.875rem, 12px);
  }
}

.p-career__designated-list {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-career__designated-list {
    font-size: max(0.875rem, 12px);
  }
  .p-career__designated-list br {
    display: none;
  }
}

.p-career__caption {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #000066;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-career__caption {
    font-size: max(0.875rem, 12px);
    margin-top: 2.25rem;
  }
}

.p-career__voices-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-career__voices-head {
    gap: 1.25rem;
    margin-top: 3.5rem;
  }
}

.p-career__voices-line {
  width: 0.375rem;
  height: 4.125rem;
  flex-shrink: 0;
  background-image: radial-gradient(circle, #47A5DD 0.125rem, transparent 0.125rem);
  background-size: 0.375rem 0.5rem;
  background-repeat: repeat-y;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .p-career__voices-line {
    height: 3.125rem;
  }
}

.p-career__voices-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  color: #47A5DD;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-career__voices-title {
    font-size: max(1.25rem, 12px);
  }
}

.p-career__graduates {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-career__graduates {
    margin-top: 1.75rem;
    gap: 1.25rem;
  }
}

.p-career__graduate-header {
  background: #47A5DD;
  border-radius: 1rem 1rem 0 0;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-career__graduate-header {
    padding: 0.9375rem 1.25rem;
  }
}

.p-career__graduate-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-career__graduate-name {
    font-size: max(1rem, 12px);
  }
}

.p-career__graduate-body {
  background: #F4F4F4;
  border-radius: 0 0 1rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  padding: 1.875rem 3.125rem 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-career__graduate-body {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.p-career__graduate-photo {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #CCCCCC;
}
.p-career__graduate-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-career__graduate-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  line-height: 1.8;
  letter-spacing: 0.05em;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-career__graduate-text {
    font-size: max(0.875rem, 12px);
    align-self: stretch;
  }
}

.p-career__note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #000066;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-career__note {
    font-size: max(0.9375rem, 12px);
    margin-top: 1.75rem;
  }
}

.p-career__faq-card {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-career__faq-card {
    margin-top: 2.5rem;
  }
}

.p-coeducation .c-voice {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation .c-voice {
    margin-top: 1.25rem;
  }
}

.p-coeducation__header {
  display: flex;
  align-items: flex-start;
  position: relative;
  aspect-ratio: 1512/459;
}
@media screen and (max-width: 767px) {
  .p-coeducation__header {
    flex-direction: column;
    aspect-ratio: auto;
  }
}

.p-coeducation__header-img {
  position: absolute;
  top: -3.125rem;
  bottom: 0;
  left: 0;
  width: 45.8%;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-coeducation__header-img {
    position: static;
    align-self: flex-start;
    width: calc(100% - 1.5625rem);
    aspect-ratio: 350/320;
    min-height: 0;
    margin-top: -1.875rem;
  }
}
.p-coeducation__header-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-coeducation__header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-coeducation__header-body {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 3.75rem 3.4375rem 2.5rem;
  padding-left: calc(45.8% + 5rem);
  padding-right: max(0px, (100% - 67.5rem) / 2);
}
@media screen and (max-width: 767px) {
  .p-coeducation__header-body {
    justify-content: center;
    padding: 2.1875rem 1.5625rem 3.125rem;
  }
}

.p-coeducation__label {
  font-family: "Jost", sans-serif;
  font-size: max(0.875rem, 12px);
  letter-spacing: 0.1em;
  color: #47A5DD;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__label {
    margin-bottom: 0.625rem;
  }
}

.p-coeducation__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(2.25rem, 12px);
  font-weight: 500;
  color: #000066;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__title {
    font-size: max(1.5rem, 12px);
    margin-bottom: 1.25rem;
  }
}

.p-coeducation__divider {
  display: block;
  width: 4.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  background-image: radial-gradient(circle, #47A5DD 0.125rem, transparent 0.125rem);
  background-size: 0.5rem 0.375rem;
  background-repeat: repeat-x;
  background-position: left center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__divider {
    margin-bottom: 1.25rem;
  }
}

.p-coeducation__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-coeducation__desc {
    font-size: max(0.875rem, 12px);
  }
}

.p-coeducation__inner {
  max-width: 70.625rem;
  margin: 0 auto;
  padding: 5rem 25px 0;
}
@media screen and (max-width: 767px) {
  .p-coeducation__inner {
    padding: 0 20px 0;
  }
}

.p-coeducation__section + .p-coeducation__section {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section + .p-coeducation__section {
    margin-top: 4rem;
  }
}

.p-coeducation__section-main {
  display: flex;
  align-items: flex-start;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section-main {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-coeducation__section-text {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section-text {
    flex: 0 0 auto;
    width: 100%;
  }
}

.p-coeducation__section-img {
  flex: 1;
  overflow: hidden;
  aspect-ratio: 468/304;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section-img {
    width: 100%;
    aspect-ratio: 325/212;
  }
}
.p-coeducation__section-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-coeducation__section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-coeducation__section-badge {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}

.p-coeducation__section-label {
  font-family: "Jost", sans-serif;
  font-size: max(1.375rem, 12px);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section-label {
    font-size: max(1.125rem, 12px);
  }
}

.p-coeducation__section-num {
  font-family: "Jost", sans-serif;
  font-size: max(2.75rem, 12px);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section-num {
    font-size: max(2rem, 12px);
  }
}

.p-coeducation__section-title-bar {
  padding: 0.125rem 0.75rem 0.125rem 0.75rem;
  display: flex;
  align-items: center;
  background: var(--coedu-color);
  width: fit-content;
  font: inherit;
  margin: 0;
}
@media screen and (max-width: 1113px) {
  .p-coeducation__section-title-bar {
    padding: 0;
    background: transparent;
  }
}

.p-coeducation__section-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section-title {
    font-size: max(1.125rem, 12px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 1113px) {
  .p-coeducation__section-title span {
    display: block;
    width: fit-content;
    background: var(--coedu-color);
    padding: 0.25rem 0.625rem;
  }
}

.p-coeducation__section-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section-body {
    font-size: max(0.875rem, 12px);
  }
}

.p-coeducation__section--purple {
  --coedu-color: #A46FA9;
}
.p-coeducation__section--purple .p-coeducation__section-label,
.p-coeducation__section--purple .p-coeducation__section-num {
  color: #A46FA9;
}
.p-coeducation__section--purple .c-voice {
  --c-voice-color: #A46FA9;
}

.p-coeducation__section--green {
  --coedu-color: #69B577;
}
.p-coeducation__section--green .p-coeducation__section-label,
.p-coeducation__section--green .p-coeducation__section-num {
  color: #69B577;
}

.p-coeducation__section--dark-blue {
  --coedu-color: #075b9a;
}
.p-coeducation__section--dark-blue .p-coeducation__section-label,
.p-coeducation__section--dark-blue .p-coeducation__section-num {
  color: #075b9a;
}

.p-coeducation__section--accent-blue {
  --coedu-color: #47A5DD;
}
.p-coeducation__section--accent-blue .p-coeducation__section-label,
.p-coeducation__section--accent-blue .p-coeducation__section-num {
  color: #47A5DD;
}

.p-coeducation__section-extra {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__section-extra {
    margin-top: 1.75rem;
  }
}

.p-coeducation__event-groups {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-groups {
    margin-top: 3.125rem;
  }
}

.p-coeducation__event-group + .p-coeducation__event-group {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-group + .p-coeducation__event-group {
    margin-top: 2.25rem;
  }
}

.p-coeducation__event-heading {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font: inherit;
  color: #69B577;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-heading {
    margin-bottom: 0.875rem;
  }
}

.p-coeducation__event-photos {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-photos {
    gap: 1.25rem 0.625rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-coeducation__event-photo {
  flex: 1;
  min-width: 0;
}
.p-coeducation__event-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 255/160;
  object-fit: cover;
  display: block;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-photo img {
    aspect-ratio: 158/99;
  }
}

.p-coeducation__event-caption {
  background: #69B577;
  padding: 0.25rem 1rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-caption {
    padding: 0.125rem 0.25rem;
  }
}

.p-coeducation__event-voice {
  position: relative;
  margin-top: 3.125rem;
  padding: 2.1875rem 3.125rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-voice {
    margin-top: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}
.p-coeducation__event-voice::before, .p-coeducation__event-voice::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.25rem;
  border: 1px solid #69B577;
  pointer-events: none;
}
.p-coeducation__event-voice::before {
  top: 0;
  border-bottom: none;
  border-radius: 0.625rem 0.625rem 0 0;
}
.p-coeducation__event-voice::after {
  bottom: 0;
  border-top: none;
  border-radius: 0 0 0.625rem 0.625rem;
}

.p-coeducation__event-voice-badge {
  font-family: "Jost", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 500;
  color: #fff;
  background: #69B577;
  border-radius: 1.875rem;
  padding: 0.5625rem 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-voice-badge {
    padding: 0.25rem 1.125rem;
  }
}

.p-coeducation__event-voice-body {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.p-coeducation__event-voice-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #CCCCCC;
}
.p-coeducation__event-voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-coeducation__event-voice-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-coeducation__event-voice-text {
    font-size: max(0.875rem, 12px);
  }
}

.p-coeducation__tag-card {
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__tag-card {
    padding: 1rem 20px;
  }
}

.p-coeducation__tag-card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 500;
  color: #000066;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.p-coeducation__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.p-coeducation__tag {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #A46FA9;
  border: 1px solid #A46FA9;
  border-radius: 0.3125rem;
  padding: 0.5rem 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-coeducation__projects {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__projects {
    margin-top: 3.125rem;
  }
}

.p-coeducation__projects-heading {
  margin-top: 0;
  margin-bottom: 3.125rem;
  font: inherit;
  color: #075b9a;
}
@media screen and (max-width: 767px) {
  .p-coeducation__projects-heading {
    margin-bottom: 2rem;
  }
}

.p-coeducation__projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__projects-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-coeducation__project-card {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.p-coeducation__project-card-media {
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}
.p-coeducation__project-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 510/295;
  height: auto;
  object-fit: cover;
}

.p-coeducation__project-card-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  height: 3.125rem;
  background: #075b9a;
  padding: 0 1rem;
}
.p-coeducation__project-card-bar img {
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
}
.p-coeducation__project-card-bar span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-coeducation__project-card-bar span {
    font-size: max(1rem, 12px);
  }
}

.p-coeducation__project-card-quote {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-coeducation__project-card-desc-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__project-card-desc-section {
    gap: 0.625rem;
  }
}

.p-coeducation__project-card-divider {
  width: 100%;
  height: 1.3125rem;
  background: url("../images/icon_kakko_up.svg") no-repeat center/100% 1.3125rem;
}
.p-coeducation__project-card-divider:last-child {
  background: url("../images/icon_kakko_down.svg") no-repeat center/100% 1.3125rem;
}

.p-coeducation__project-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-coeducation__project-card-body {
    padding: 0 1.25rem;
  }
}

.p-coeducation__project-card-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #000066;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-coeducation__project-card-source {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #075b9a;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-coeducation__faq-wrap {
  margin-top: 3.125rem;
}

.p-cta {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
}

.p-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-cta__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.p-cta__inner {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.375rem;
  padding: 9.125rem 25px;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    padding: 6.25rem 20px 11.25rem;
    gap: 3rem;
  }
}

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

.p-cta__buttons {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__buttons {
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
  }
}

.p-cta__buttons.is-revealed {
  overflow: visible;
  mask-image: none;
}

.p-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 15.625rem;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.9375rem 2.0625rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: none;
    padding: 1.25rem;
  }
}
@media (any-hover: hover) {
  .p-cta__btn:hover {
    opacity: 1;
    box-shadow: 0.1875rem 0.1875rem 0.6875rem rgba(0, 0, 0, 0.1);
  }
  .p-cta__btn:hover .p-cta__btn-icon {
    scale: 1.2;
  }
}

.p-cta__btn-icon {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000066;
  transition: scale 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-icon {
    width: 3.8125rem;
    height: 3.8125rem;
    flex-shrink: 0;
  }
}
.p-cta__btn-icon svg,
.p-cta__btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-cta__btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-text {
    flex: 1;
    min-width: 0;
    align-items: flex-start;
    gap: 0;
  }
}

.p-cta__btn-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-title {
    font-size: max(1rem, 12px);
    text-align: left;
  }
}

.p-cta__btn-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-sub {
    text-align: left;
  }
}

.p-faq__container {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-faq__container {
    gap: 0.5625rem;
  }
}

.p-faq__item {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.p-faq__question {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 1.0625rem 1.25rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    gap: 0.625rem;
    padding: 1.125rem 0.875rem;
  }
}

.p-faq__answer {
  display: none;
  align-items: flex-start;
  gap: 0.9375rem;
  padding: 0 1.25rem 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    gap: 0.625rem;
    padding: 0 0.875rem 1.125rem;
  }
}
.p-faq__item.is-open .p-faq__answer {
  display: flex;
}

.p-faq__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.125rem;
  border-radius: 0.3125rem;
  font-family: "Jost", sans-serif;
  font-size: max(1.25rem, 12px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
}

.p-faq__badge--q {
  background: #47A5DD;
}

.p-faq__badge--a {
  background: #F4F4F4;
  color: #47A5DD;
}

.p-faq__question-text {
  flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 500;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-faq__question-text {
    font-size: max(0.875rem, 12px);
  }
}

.p-faq__answer-text {
  flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 400;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-text {
    font-size: max(0.875rem, 12px);
    padding-top: 0.125rem;
  }
}

.p-faq__icon {
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
  position: relative;
}
.p-faq__icon::before, .p-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000066;
  transition: transform 0.3s;
}
.p-faq__icon::before {
  width: 0.8125rem;
  height: 1px;
  transform: translate(-50%, -50%);
}
.p-faq__icon::after {
  width: 1px;
  height: 0.8125rem;
  transform: translate(-50%, -50%);
}
.p-faq__item.is-open .p-faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.p-fixed-cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fixed-cta {
    position: fixed;
    right: 0.9375rem;
    bottom: 0.9375rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    padding: 1.125rem 2.1875rem;
    background: #000066;
    border-radius: 3.125rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: max(0.9375rem, 12px);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid #fff;
  }
  .p-fixed-cta img {
    width: 0.6875rem;
    height: auto;
  }
}

.p-footer {
  background: #000066;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 1.5rem 0 5.625rem;
  }
}

.p-footer__inner {
  max-width: 1074px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0 1.5625rem;
  }
}

.p-footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.p-footer__logo {
  display: block;
}
.p-footer__logo img {
  width: 17.5rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.p-footer__address {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.8125rem, 12px);
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-footer__copy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.8125rem, 12px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    text-align: left;
  }
}

.p-fv {
  position: relative;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: clamp(0px, (1400px - 100vw) * 0.45, 13.75rem);
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: auto;
    padding-top: 1.875rem;
    padding-bottom: 0;
    overflow: hidden;
  }
}

.p-fv__deco {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  z-index: 5;
}

.p-fv__deco--pc {
  left: -3.9%;
  top: 0;
  width: 31.4%;
}
@media screen and (max-width: 767px) {
  .p-fv__deco--pc {
    display: none;
  }
}

.p-fv__deco--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fv__deco--sp {
    display: block;
    left: -3%;
    top: -4rem;
    width: 36.3%;
  }
}

.p-fv__deco--sp2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fv__deco--sp2 {
    display: block;
    right: -0.5625rem;
    top: 29.375rem;
    width: 20.4375rem;
  }
}

.p-fv__deco--pc2 {
  right: -3.7%;
  top: auto;
  bottom: -3.375rem;
  width: 62%;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .p-fv__deco--pc2 {
    display: none;
  }
}

.p-fv__deco--line {
  right: -1.26%;
  top: -3.72%;
  width: 22.5%;
}
@media screen and (max-width: 767px) {
  .p-fv__deco--line {
    right: -10.1%;
    top: -0.8125rem;
    width: 44%;
  }
}

.p-fv__photos {
  position: relative;
  width: 100%;
  aspect-ratio: 1512/970;
}
@media screen and (max-width: 767px) {
  .p-fv__photos {
    aspect-ratio: unset;
    height: 30.625rem;
  }
}

.p-fv__photo {
  position: absolute;
  overflow: hidden;
}
.p-fv__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-fv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-fv__photo--a {
  left: 5.88%;
  top: 10.69%;
  width: 24.47%;
  height: 46%;
}
@media screen and (max-width: 767px) {
  .p-fv__photo--a {
    left: 0%;
    top: 8.98%;
    width: 44%;
    height: 38.57%;
  }
}

.p-fv__photo--b {
  left: 22.88%;
  top: 0;
  width: 17.66%;
  height: 14.78%;
}
@media screen and (max-width: 767px) {
  .p-fv__photo--b {
    display: block;
    left: 28%;
    top: 1.22%;
    width: 35.47%;
    height: 20.55%;
  }
}

.p-fv__photo--c {
  left: 68.39%;
  top: 12.55%;
  width: 25.13%;
  height: 28%;
}
@media screen and (max-width: 767px) {
  .p-fv__photo--c {
    left: 69.4%;
    right: auto;
    top: 8.98%;
    width: 30.8%;
    height: 31.84%;
  }
}

.p-fv__photo--d {
  left: 76.12%;
  top: 35.5%;
  width: 23.87%;
  height: 44.3%;
}
@media screen and (max-width: 767px) {
  .p-fv__photo--d {
    left: 57%;
    right: auto;
    top: 66.53%;
    width: 45.55%;
    height: 41.43%;
  }
}

.p-fv__photo--e {
  left: 0;
  top: 60.22%;
  width: 26.39%;
  height: 25.6%;
}
@media screen and (max-width: 767px) {
  .p-fv__photo--e {
    display: block;
    left: 0%;
    top: 78.57%;
    width: 42.4%;
    height: 22.63%;
  }
}

.p-fv__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 14.31%;
  width: 44.44%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    position: relative;
    left: auto;
    transform: none;
    top: auto;
    width: 100%;
    margin-top: -16.4375rem;
    padding: 0 0 4.625rem;
  }
}

.p-fv__title-wrap {
  display: block;
  margin: 0 auto 1.375rem;
  width: 92.41%;
}
@media screen and (max-width: 767px) {
  .p-fv__title-wrap {
    width: 22rem;
    max-width: none;
    margin-bottom: 14.125rem;
  }
}

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

.p-fv__svg-wrap {
  display: block;
  margin: 0 auto 1.375rem;
  width: 92.41%;
}
@media screen and (max-width: 767px) {
  .p-fv__svg-wrap {
    width: 93.8%;
    max-width: none;
    margin-bottom: 14.4375rem;
  }
}

.p-fv__svg {
  display: block;
  width: 100%;
  height: auto;
}

.p-fv__body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.p-fv__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fv__heading {
    font-size: max(1rem, 12px);
  }
}

.p-fv__texts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__texts {
    gap: 0.375rem;
  }
}

.p-fv__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 400;
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    font-size: max(0.875rem, 12px);
  }
}

.p-fv__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__label {
    margin-bottom: 1.75rem;
  }
}

.p-fv__label-line {
  width: 0.875rem;
  height: 2.5rem;
  border: 1px solid #000066;
  border-radius: 0.125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__label-line {
    width: 0.5625rem;
    height: 1.875rem;
  }
}

.p-fv__label-line:first-child {
  border-right: none;
  border-radius: 0.125rem 0 0 0.125rem;
}

.p-fv__label-line:last-child {
  border-left: none;
  border-radius: 0 0.125rem 0.125rem 0;
}

.p-fv__label-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 500;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-fv__label-text {
    font-size: max(0.8125rem, 12px);
    white-space: normal;
    text-align: center;
  }
}

.p-fv__btns {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-fv__btns {
    gap: 0.5rem;
    width: 100%;
    padding-inline: 1.5625rem;
  }
}

.p-fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5625rem;
  width: 14.375rem;
  height: 3.4375rem;
  border-radius: 3.125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.9375rem, 12px);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-fv__btn {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: none;
    height: 3.125rem;
    font-size: max(0.8125rem, 12px);
  }
}
@media (any-hover: hover) {
  .p-fv__btn:hover {
    opacity: 0.7;
  }
}

.p-fv__btn--primary {
  background: #000066;
  color: #fff;
}

.p-fv__btn--secondary {
  background: #fff;
  color: #000066;
  border: 1px solid #000066;
}

.p-learning {
  overflow-x: clip;
}

.p-learning__header {
  display: flex;
  align-items: flex-start;
  position: relative;
  aspect-ratio: 1512/459;
}
@media screen and (max-width: 767px) {
  .p-learning__header {
    flex-direction: column;
    aspect-ratio: auto;
  }
}

.p-learning__header-img {
  position: absolute;
  top: -3.125rem;
  bottom: 0;
  left: 0;
  width: 49.34%;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 746/459;
}
@media screen and (max-width: 1512px) {
  .p-learning__header-img {
    max-height: 28.6875rem;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-learning__header-img {
    position: static;
    align-self: flex-start;
    width: calc(100% - 1.5625rem);
    margin-top: -1.875rem;
    aspect-ratio: 350/215;
  }
}
.p-learning__header-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-learning__header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-learning__header-body {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 3.75rem 5rem;
  padding-left: calc(49.34% + 5rem);
}
@media screen and (max-width: 767px) {
  .p-learning__header-body {
    justify-content: center;
    padding: 2.1875rem 1.5625rem 3.125rem;
  }
}

.p-learning__label {
  font-family: "Jost", sans-serif;
  font-size: max(0.875rem, 12px);
  letter-spacing: 0.1em;
  color: #47A5DD;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-learning__label {
    margin-bottom: 0.625rem;
  }
}

.p-learning__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(2.25rem, 12px);
  font-weight: 500;
  color: #000066;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-learning__title {
    font-size: max(1.5rem, 12px);
    margin-bottom: 1.25rem;
  }
}

.p-learning__divider {
  display: block;
  width: 4.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  background-image: radial-gradient(circle, #47A5DD 0.125rem, transparent 0.125rem);
  background-size: 0.5rem 0.375rem;
  background-repeat: repeat-x;
  background-position: left center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-learning__divider {
    margin-bottom: 1.25rem;
  }
}

.p-learning__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-learning__desc {
    font-size: max(0.875rem, 12px);
  }
}

.p-learning__inner {
  max-width: 70.625rem;
  margin: 0 auto;
  padding: 5rem 25px 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-learning__inner {
    padding: 0 20px 6.25rem;
  }
}

.p-learning__block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-learning__block {
    gap: 1.875rem;
  }
}
.p-learning__block + .p-learning__block {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-learning__block + .p-learning__block {
    margin-top: 3.75rem;
  }
}

.p-learning__block-main {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-learning__block-main {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-learning__block-text {
  flex: 0 0 51.5%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-learning__block-text {
    flex: 0 0 auto;
    width: 100%;
  }
}

.p-learning__block-img {
  flex: 1;
  overflow: hidden;
  aspect-ratio: 468/304;
}
@media screen and (max-width: 767px) {
  .p-learning__block-img {
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.p-learning__block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-learning__block-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font: inherit;
  margin: 0;
}

.p-learning__block-num {
  font-family: "Jost", sans-serif;
  font-size: max(2.75rem, 12px);
  line-height: 1;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-learning__block-num {
    font-size: max(2.25rem, 12px);
  }
}

.p-learning__block-divider {
  display: block;
  width: 0.375rem;
  height: 4rem;
  flex-shrink: 0;
  background-image: radial-gradient(circle, currentColor 0.125rem, transparent 0.125rem);
  background-size: 0.375rem 0.5rem;
  background-repeat: repeat-y;
  background-position: center top;
}

.p-learning__block-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-learning__block-title {
    font-size: max(1.125rem, 12px);
  }
}

.p-learning__block-badge {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.25rem, 12px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 0.125rem 0.5rem;
  background: #fff;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-learning__block-badge {
    font-size: max(1.125rem, 12px);
    line-height: 1.5;
    padding: 0;
    background: transparent;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-learning__block-badge span {
    display: block;
    width: fit-content;
    background: #fff;
    padding: 0.25rem 0.625rem;
  }
}

.p-learning__block-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #000066;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-learning__block-body {
    font-size: max(0.875rem, 12px);
  }
}

.p-learning__block--teal .p-learning__block-num,
.p-learning__block--teal .p-learning__block-title {
  color: #10B5B5;
}
.p-learning__block--teal .p-learning__block-divider {
  color: #10B5B5;
}
.p-learning__block--teal .p-learning__block-badge {
  color: #10B5B5;
}

.p-learning__block--blue .p-learning__block-num,
.p-learning__block--blue .p-learning__block-title {
  color: #47A5DD;
}
.p-learning__block--blue .p-learning__block-divider {
  color: #47A5DD;
}
.p-learning__block--blue .p-learning__block-badge {
  color: #47A5DD;
}

.p-learning__block--navy .p-learning__block-num,
.p-learning__block--navy .p-learning__block-title {
  color: #000066;
}
.p-learning__block--navy .p-learning__block-divider {
  color: #000066;
}
.p-learning__block--navy .p-learning__block-badge {
  color: #000066;
}

.p-learning__card {
  border-radius: 1rem;
  overflow: hidden;
}

.p-learning__card-header {
  background: #47A5DD;
  border-radius: 1rem 1rem 0 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.p-learning__card-header::before {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
  background: url("../images/icon_white_star.svg") no-repeat center/contain;
}

.p-learning__card-header-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  color: #fff;
  letter-spacing: 0.05em;
}

.p-learning__card-body {
  background: #fff;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-learning__card-body {
    padding: 1.25rem 0.625rem;
  }
}

.p-learning__card-items {
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-learning__card-items {
    flex-direction: column;
  }
}

.p-learning__card-divider {
  display: none;
}

.p-learning__card-item {
  flex: 1;
  background: #F4F4F4;
  border-radius: 0.875rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.p-learning__card-program {
  font-family: "Jost", sans-serif;
  font-size: max(0.75rem, 12px);
  color: #47A5DD;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-learning__card-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-learning__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-learning__card-tags {
    gap: 0.3125rem;
  }
}

.p-learning__card-tag {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #47A5DD;
  letter-spacing: 0.05em;
  border: 1px solid #47A5DD;
  border-radius: 0.3125rem;
  padding: 0.625rem 0.625rem 0.625rem 0.375rem;
  line-height: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-learning__card-tag {
    font-size: max(0.8125rem, 12px);
    padding: 0.5rem 0.625rem;
  }
}

.p-learning__card-seminar {
  background: #F4F4F4;
  border-radius: 0.875rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  margin-top: 0.9375rem;
}

.p-learning__card-seminar-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-learning__card-seminar-grid {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.p-learning__card-seminar-item {
  display: flex;
  align-items: center;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-learning__card-seminar-item {
    flex-direction: column;
    gap: 0;
  }
}
.p-learning__card-seminar-item picture {
  display: contents;
}
.p-learning__card-seminar-item img {
  width: 8.3125rem;
  height: 5.25rem;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-learning__card-seminar-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 133/84;
  }
}

.p-learning__card-seminar-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 400;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-learning__card-seminar-text {
    margin-top: 0.875rem;
    font-size: max(0.8125rem, 12px);
  }
}

.p-learning__sub-cards {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-learning__sub-cards {
    gap: 1.25rem;
  }
}

.p-learning__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-learning__steps {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.p-learning__step {
  flex: 1;
  max-width: 18.875rem;
  background: #F4F4F4;
  border-radius: 0.875rem;
  padding: 1.25rem 1.25rem 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-learning__step {
    max-width: 100%;
    width: 100%;
    align-items: stretch;
    padding: 0.9375rem 0.9375rem 1.5625rem;
    gap: 0.9375rem;
  }
}

.p-learning__step-head {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-learning__step-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }
}

.p-learning__step-icon {
  width: 2.8125rem;
  height: 2.5625rem;
  background: #000066;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: max(1.25rem, 12px);
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-learning__step-icon {
    width: auto;
    height: 2rem;
    padding: 0 0.4375rem;
    font-size: max(1rem, 12px);
  }
}

.p-learning__step-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #000066;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-learning__step-name {
    font-size: max(0.9375rem, 12px);
    text-align: left;
  }
}

.p-learning__step-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #000066;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-learning__step-desc {
    font-size: max(0.875rem, 12px);
    line-height: 1.6;
    text-align: left;
  }
}

.p-learning__step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-learning__step-arrow img {
  display: block;
  width: 1.125rem;
  height: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-learning__step-arrow {
    width: 100%;
    height: 1.125rem;
  }
  .p-learning__step-arrow img {
    width: 1.125rem;
    height: 4.1875rem;
    transform: rotate(90deg);
  }
}

.p-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding-top: 10rem;
  padding-bottom: 7.75rem;
}
@media screen and (max-width: 767px) {
  .p-modal {
    padding-top: 1.875rem;
    padding-bottom: 0;
  }
}
.p-modal.is-open {
  display: flex;
}

.p-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 100, 124, 0.5);
  cursor: pointer;
}

.p-modal__content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 54.0625rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-modal__content {
    width: 92%;
  }
}

.p-modal__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-46%);
  display: flex;
  justify-content: center;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .p-modal__header {
    transform: translateY(-38%);
  }
}

.p-modal__type {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26.25rem;
  max-width: 100%;
  aspect-ratio: 422/87;
  padding: 0 2.5rem 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.625rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;

  background: url("../images/modal_heading_bubble_1.svg") no-repeat center center / contain;

  /*background-color: #10B5B5;
  -webkit-mask-image: url("../images/modal_heading_bubble.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../images/modal_heading_bubble.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;*/
}

.p-modal[data-modal="2"] .p-modal__type {
  background: url("../images/modal_heading_bubble_4.svg") no-repeat center center / contain;
}
.p-modal[data-modal="3"] .p-modal__type {
  background: url("../images/modal_heading_bubble_2.svg") no-repeat center center / contain;
}
.p-modal[data-modal="4"] .p-modal__type {
  background: url("../images/modal_heading_bubble_5.svg") no-repeat center center / contain;
}
.p-modal[data-modal="5"] .p-modal__type {
  background: url("../images/modal_heading_bubble_3.svg") no-repeat center center / contain;
}
.p-modal[data-modal="6"] .p-modal__type {
  background: url("../images/modal_heading_bubble_6.svg") no-repeat center center / contain;
}

@media screen and (max-width: 767px) {
  .p-modal__type {
    width: 18.75rem;
    aspect-ratio: 254.907/70.5141;
    padding: 0 1.75rem 0.6875rem;
    font-size: max(1.25rem, 12px);
    /*-webkit-mask-image: url("../images/whos_here_badge_1.svg");
    mask-image: url("../images/whos_here_badge_1.svg");*/
  }
}

.p-modal__body {
  background: #fff;
  border-radius: 5rem;
  max-height: 90dvh;
  overflow-y: auto;
  padding: 4.6875rem 4.0625rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-modal__body {
    border-radius: 1.875rem;
    padding: 4.375rem 1.25rem 2rem;
  }
}

.p-modal__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 735/464;
  object-fit: cover;
  border-radius: 2.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-modal__img {
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
}

.p-modal__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 400;
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-modal__text {
    font-size: max(0.875rem, 12px);
    margin-bottom: 1rem;
  }
}

.p-modal__pickup {
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
  background: #F4F4F4;
  border-radius: 0.625rem;
  padding: 1.25rem 1.875rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-modal__pickup {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
}

.p-modal__pickup-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-modal__pickup-left {
    gap: 0.75rem;
  }
}

.p-modal__pickup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #10B5B5;
  border-radius: 1.875rem;
  padding: 0.625rem 0.875rem;
  align-self: flex-start;
}
.p-modal__pickup-badge img {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}
.p-modal__pickup-badge span {
  font-family: "Jost", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-modal__pickup-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-modal__pickup-img {
  width: 13.875rem;
  height: 8.75rem;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-modal__pickup-img {
    width: 100%;
    height: 10rem;
  }
}
.p-modal__pickup-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-modal__faq {
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

.p-modal__faq-header {
  background: #10B5B5;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-modal__faq-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-modal__faq-title {
    font-size: max(1rem, 12px);
  }
}

.p-modal__faq-row {
  padding: 1.25rem 0 1.875rem;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-modal__faq-row {
    padding: 1rem 0 1.25rem;
  }
}

.p-modal__faq-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
}
.p-modal__faq-item + .p-modal__faq-item {
  margin-top: 0.625rem;
}

.p-modal__faq-badge {
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.125rem;
  border-radius: 0.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: max(1.25rem, 12px);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  line-height: 1;
}

.p-modal__faq-badge--q {
  background: #10B5B5;
  border: 1px solid #10B5B5;
  color: #fff;
}

.p-modal__faq-badge--a {
  background: #F4F4F4;
}

.p-modal__faq-text {
  flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #000066;
}
@media screen and (max-width: 767px) {
  .p-modal__faq-text {
    font-size: max(0.875rem, 12px);
  }
}

.p-modal__faq-text--q {
  font-weight: 500;
  padding-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-modal__faq-text--q {
    padding-top: 0;
  }
}

.p-modal__faq-text--a {
  font-weight: 400;
}

/*.p-modal[data-modal="2"] .p-modal__type {
  background-color: #A46FA9;
}

.p-modal[data-modal="3"] .p-modal__type {
  background-color: #47A5DD;
}

.p-modal[data-modal="4"] .p-modal__type {
  background-color: #69B577;
}

.p-modal[data-modal="5"] .p-modal__type {
  background-color: #000066;
}

.p-modal[data-modal="6"] .p-modal__type {
  background-color: #075b9a;
}*/

.p-modal[data-modal="1"] .p-modal__faq-badge--a {
  color: #10B5B5;
}

.p-modal[data-modal="2"] .p-modal__faq-badge--a {
  color: #A46FA9;
}

.p-modal[data-modal="3"] .p-modal__faq-badge--a {
  color: #47A5DD;
}

.p-modal[data-modal="4"] .p-modal__faq-badge--a {
  color: #69B577;
}

.p-modal[data-modal="5"] .p-modal__faq-badge--a {
  color: #000066;
}

.p-modal[data-modal="6"] .p-modal__faq-badge--a {
  color: #075b9a;
}

.p-modal[data-modal="2"] .p-modal__pickup-badge,
.p-modal[data-modal="2"] .p-modal__faq-header,
.p-modal[data-modal="2"] .p-modal__faq-badge--q {
  background: #A46FA9;
  border-color: #A46FA9;
}

.p-modal[data-modal="3"] .p-modal__pickup-badge,
.p-modal[data-modal="3"] .p-modal__faq-header,
.p-modal[data-modal="3"] .p-modal__faq-badge--q {
  background: #47A5DD;
  border-color: #47A5DD;
}

.p-modal[data-modal="4"] .p-modal__pickup-badge,
.p-modal[data-modal="4"] .p-modal__faq-header,
.p-modal[data-modal="4"] .p-modal__faq-badge--q {
  background: #69B577;
  border-color: #69B577;
}

.p-modal[data-modal="5"] .p-modal__pickup-badge,
.p-modal[data-modal="5"] .p-modal__faq-header,
.p-modal[data-modal="5"] .p-modal__faq-badge--q {
  background: #000066;
  border-color: #000066;
}

.p-modal[data-modal="6"] .p-modal__pickup-badge,
.p-modal[data-modal="6"] .p-modal__faq-header,
.p-modal[data-modal="6"] .p-modal__faq-badge--q {
  background: #075b9a;
  border-color: #075b9a;
}

.p-modal__close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 12.5rem;
  height: 3.125rem;
  margin: 2.5rem auto 0;
  border: none;
  border-radius: 0.3125rem;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  color: #000066;
  letter-spacing: 0.05em;
  background: rgba(16, 181, 181, 0.12);
}
.p-modal__close-btn img {
  width: 0.6875rem;
  height: auto;
}

.p-modal[data-modal="1"] .p-modal__close-btn {
  background: rgba(16, 181, 181, 0.12);
}

.p-modal[data-modal="2"] .p-modal__close-btn {
  background: rgba(164, 111, 169, 0.12);
}

.p-modal[data-modal="3"] .p-modal__close-btn {
  background: rgba(71, 165, 221, 0.12);
}

.p-modal[data-modal="4"] .p-modal__close-btn {
  background: rgba(105, 181, 119, 0.12);
}

.p-modal[data-modal="5"] .p-modal__close-btn {
  background: rgba(0, 0, 102, 0.12);
}

.p-modal[data-modal="6"] .p-modal__close-btn {
  background: rgba(7, 91, 154, 0.12);
}

.p-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.6875rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-nav {
    height: 4.75rem;
  }
}

.p-nav__inner {
  max-width: 94.5rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-nav__inner {
    padding: 0 1.25rem;
  }
}

.p-nav__logo {
  display: block;
  width: 16.375rem;
}
@media screen and (max-width: 767px) {
  .p-nav__logo {
    width: 14rem;
  }
}
.p-nav__logo img {
  width: 100%;
  height: auto;
}

.p-nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-nav__right {
    display: none;
  }
}

.p-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: #fff;
  border-radius: 5rem;
  padding: 1.125rem 2.1875rem;
  box-shadow: 0.1875rem 0.1875rem 0.6875rem rgba(0, 0, 0, 0.1);
}

.p-nav__link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  color: #000066;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  white-space: nowrap;
}

.p-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  background: #000066;
  color: #fff;
  border-radius: 3.125rem;
  padding: 1.125rem 1.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.9375rem, 12px);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .p-nav__cta:hover {
    opacity: 0.7;
  }
}

.p-nav__hamburger {
  display: none;
  width: 2.875rem;
  height: 2.875rem;
  background: #000066;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-nav__hamburger {
    display: flex;
    filter: drop-shadow(3px 3px 11px rgba(0, 0, 0, 0.1));
  }
}
.p-nav__hamburger span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: #fff;
  border-radius: 0.125rem;
  transition: transform 0.3s, opacity 0.3s;
}
.p-nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}
.p-nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.p-nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.p-sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg_sp@2x.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 110;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .p-sp-menu {
    display: block;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s;
  }
}
.p-sp-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}

.p-sp-menu__card {
  position: absolute;
  top: 1.625rem;
  left: 1.5625rem;
  width: calc(100% - 3.125rem);
  background: #fff;
  border-radius: 1rem;
  padding: 3.125rem 1.875rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-sp-menu__nav {
  display: flex;
  flex-direction: column;
}

.p-sp-menu__link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.9375rem 0;
  color: #000066;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 400;
  letter-spacing: 0.05em;
  background-image: radial-gradient(circle, #10B5B5 1px, transparent 1px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 5.1px 2px;
}

.p-sp-menu__link-icon {
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
}

.p-sp-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-sp-menu__cta {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  height: 5rem;
  padding: 0.9375rem;
  border-radius: 0.625rem;
  background: #000066;
  text-decoration: none;
}

.p-sp-menu__cta-icon {
  width: 3.125rem;
  height: 3.125rem;
  flex-shrink: 0;
}

.p-sp-menu__cta-body {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.p-sp-menu__cta-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-sp-menu__cta-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.8125rem, 12px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-sp-menu__close {
  position: absolute;
  top: 0.9375rem;
  right: 1.25rem;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: #000066;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0.1875rem 0.1875rem 0.6875rem rgba(0, 0, 0, 0.1);
  padding: 0;
}
.p-sp-menu__close span {
  position: absolute;
  width: 1.0625rem;
  height: 2px;
  background: #fff;
  border-radius: 0.0625rem;
}
.p-sp-menu__close span:first-child {
  transform: rotate(30deg);
}
.p-sp-menu__close span:last-child {
  transform: rotate(-30deg);
}

.p-whos-here {
  padding: 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-whos-here {
    padding: 0 0 6.25rem;
  }
}

.p-whos-here__top {
  display: flex;
  align-items: stretch;
  min-height: 28.75rem;
  margin-bottom: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-whos-here__top {
    align-items: flex-start;
    gap: 2rem;
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-whos-here__top {
    flex-direction: column;
    align-items: stretch;
    gap: 2.1875rem;
    margin-bottom: 0;
  }
}

.p-whos-here__top-img {
  width: 49.34%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .p-whos-here__top-img {
    flex: 1;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-whos-here__top-img {
    flex: none;
    align-self: flex-start;
    width: calc(100% - 1.5625rem);
    aspect-ratio: 350/215;
  }
}
.p-whos-here__top-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-whos-here__top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.p-whos-here__top-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.875rem;
  padding: 3.75rem 5rem;
}
@media screen and (max-width: 1024px) {
  .p-whos-here__top-body {
    padding: 1.25rem 0 0;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-whos-here__top-body {
    gap: 1.25rem;
    padding: 0 1.5625rem 2.5rem;
  }
}

.p-whos-here__top-heading {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-whos-here__top-heading {
    gap: 0.625rem;
  }
}

.p-whos-here__label {
  font-family: "Jost", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #47A5DD;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .p-whos-here__label {
    font-size: max(0.8125rem, 12px);
    letter-spacing: 0.1em;
  }
}

.p-whos-here__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(2.25rem, 12px);
  font-weight: 500;
  color: #000066;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-whos-here__title {
    font-size: max(1.5rem, 12px);
  }
}

.p-whos-here__divider {
  display: block;
  width: 4.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  background-image: radial-gradient(circle, #47A5DD 0.125rem, transparent 0.125rem);
  background-size: 0.5rem 0.375rem;
  background-repeat: repeat-x;
  background-position: left center;
}

.p-whos-here__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1rem, 12px);
  font-weight: 400;
  color: #000066;
  line-height: 2;
  letter-spacing: 0.05em;
  max-width: 23.5rem;
}
@media screen and (max-width: 1024px) {
  .p-whos-here__desc {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .p-whos-here__desc {
    font-size: max(0.875rem, 12px);
  }
}

.p-whos-here__inner {
  max-width: 70.625rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-whos-here__inner {
    padding: 0 20px;
  }
}

.p-whos-here__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 1.875rem;
  padding-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-whos-here__cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-items: center;
    padding-top: 0;
  }
}

.p-whos-here__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 21.25rem;
  justify-self: center;
  position: relative;
  isolation: isolate;
}

.p-whos-here__card-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15.875rem;
  max-width: 100%;
  height: 4.375rem;
  margin-top: 0;
  margin-bottom: -2.5rem;
  font: inherit;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-whos-here__card-badge {
    width: 15rem;
    height: 4.125rem;
    margin-bottom: -2.25rem;
  }
}

.p-whos-here__card-badge-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.p-whos-here__card-badge-text {
  position: relative;
  z-index: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.125rem, 12px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
  padding: 0 1.25rem;
  white-space: nowrap;
  transform: translateY(-0.375rem);
}
@media screen and (max-width: 767px) {
  .p-whos-here__card-badge-text {
    font-size: 1.125rem;
    transform: translateY(-0.3125rem);
  }
}

.p-whos-here__card-main {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 102, 0.08);
  border-radius: 1rem 1rem 0 1rem;
  overflow: hidden;
  height: 100%;
}

.p-whos-here__card-media {
  overflow: hidden;
  height: 12.9375rem;
  background: linear-gradient(122deg, #c8d8c0 0%, #b0c8c0 100%);
}
@media screen and (max-width: 767px) {
  .p-whos-here__card-media {
    height: 11.25rem;
  }
}
.p-whos-here__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-whos-here__card-body {
  padding: 1.5625rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-whos-here__card-body {
    padding: 1.5rem 1.25rem;
  }
}

.p-whos-here__card-quote {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.875rem, 12px);
  font-weight: 400;
  color: #000066;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-whos-here__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.625rem 0.9375rem;
  border: none;
  border-radius: 0.3125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(0.8125rem, 12px);
  font-weight: 400;
  color: #000066;
  letter-spacing: 0.05em;
  line-height: 1.8;
  cursor: pointer;
  transition: background 0.3s;
}
@media (any-hover: hover) {
  .p-whos-here__card-btn:hover {
    opacity: 1;
  }
}

.p-whos-here__card--teal .p-whos-here__card-btn {
  background: rgba(16, 181, 181, 0.12);
}
@media (any-hover: hover) {
  .p-whos-here__card--teal .p-whos-here__card-btn:hover {
    background: rgba(16, 181, 181, 0.2);
  }
}

.p-whos-here__card--accent .p-whos-here__card-btn {
  background: rgba(71, 165, 221, 0.12);
}
@media (any-hover: hover) {
  .p-whos-here__card--accent .p-whos-here__card-btn:hover {
    background: rgba(71, 165, 221, 0.2);
  }
}

.p-whos-here__card--navy .p-whos-here__card-btn {
  background: rgba(0, 0, 102, 0.12);
}
@media (any-hover: hover) {
  .p-whos-here__card--navy .p-whos-here__card-btn:hover {
    background: rgba(0, 0, 102, 0.2);
  }
}

.p-whos-here__card--purple .p-whos-here__card-btn {
  background: rgba(164, 111, 169, 0.12);
}
@media (any-hover: hover) {
  .p-whos-here__card--purple .p-whos-here__card-btn:hover {
    background: rgba(164, 111, 169, 0.2);
  }
}

.p-whos-here__card--green .p-whos-here__card-btn {
  background: rgba(105, 181, 119, 0.12);
}
@media (any-hover: hover) {
  .p-whos-here__card--green .p-whos-here__card-btn:hover {
    background: rgba(105, 181, 119, 0.2);
  }
}

.p-whos-here__card--dark-blue .p-whos-here__card-btn {
  background: rgba(7, 91, 154, 0.12);
}
@media (any-hover: hover) {
  .p-whos-here__card--dark-blue .p-whos-here__card-btn:hover {
    background: rgba(7, 91, 154, 0.2);
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.u-tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-tab {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-tab {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
