@charset "UTF-8";
/*! 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;
  /* Wraps English words mid-word. Specifying `anywhere` also prevents content from overflowing in layouts like `flex` or `grid`. */
  overflow-wrap: anywhere;
  /*
  * Mobile browsers have an algorithm that automatically adjusts font sizes to prevent text from becoming too small.
  * This controls the auto-adjustment feature to prevent unwanted resizing.
  */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  /* Prevents layout shift caused by the appearance or disappearance of the scrollbar. */
  scrollbar-gutter: stable;
  /* Suppresses the tap highlight on iOS. */
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a:-moz-any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}
:where(a:any-link) {
  /* The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance. */
  color: unset;
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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;
  }
}
body {
  word-wrap: break-word;
  overflow-wrap: var(--color__black);
  line-height: 1.5;
  background-color: var(--color__white);
  color: var(--color__black);
  font-feature-settings: "pwid";
  letter-spacing: 0.05em;
  font-size: var(--font-size_m);
  font-family: "Montserrat", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.7;
  word-break: break-all;
  font-weight: 400;
  padding-top: 70px;
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  -webkit-tap-highlight-color: transparent; /* タップ時のハイライトを無効化（iOS・Android） */
  touch-action: manipulation; /* タッチ操作をボタン/リンク向けに最適化 */
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
html {
  touch-action: manipulation; /* タッチの動作制御 */
  -webkit-tap-highlight-color: transparent; /* ハイライト除去（iOS Safari） */
}

input[type=checkbox],
input[type=radio] {
  touch-action: manipulation;
}

.grecaptcha-badge {
  visibility: hidden;
}

:root {
  --color__white:#fff;
  --color__black:#0a0d27;
  --color__black-80:#333c45;
  --color__black-40:#707274;
  --color__gray:#969999;
  --color__gray-50:#dadada;
  --color__primary:#0e8cba;
  --color__primary-dark:#0e31ba;
  --color__primary-50:#5dc2ea;
  --color__primary-30:#9cd4e9;
  --color__primary-10:#ddeaef;
  --color__secondary:#2e9f50;
  --color__secondary-50:#c1e4bb;
  --color__accent:#ef4c5c;
  --color__accent-50:#eb8b9f;
  --color__accent--second:#f4e48a;
}

:root {
  --font-size_sss: clamp(10px, 1.56vw, 12px);
  --font-size_ss: clamp(12px, 1.82vw, 14px);
  --font-size_s: clamp(14px, 2.08vw, 16px);
  --font-size_m: clamp(15px, 2.21vw, 18px);
  --font-size_ml: clamp(16px, 2.5vw, 22px);
  --font-size_l: clamp(18px, 2.8vw, 28px);
  --font-size_ll: clamp(20px, 3vw, 32px);
  --font-size_lll: clamp(26px, 3.91vw, 36px);
}

:root {
  --space_ssss: 1px;
  --space_sss: 2px;
  --space_ss: 4px;
  --space_s: clamp(8px, 0.8vw, 12px);
  --space_ms: clamp(12px, 0.94vw, 20px);
  --space_m: clamp(14px, 1.25vw, 32px);
  --space_ml: clamp(20px, 2vw, 40px);
  --space_l: clamp(24px, 1.88vw, 48px);
  --space_ll: clamp(36px, 2.5vw, 62px);
  --space_lll: clamp(42px, 3.13vw, 80px);
  --space_llll: clamp(62px, 5vw, 128px);
}

.txt__section--title {
  font-weight: 600;
  font-size: var(--font-size_lll);
  color: var(--color__primary);
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0;
}

.txt__section--title.high-school {
  font-weight: 600;
  font-size: var(--font-size_lll);
  color: var(--color__primary);
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0;
  color: var(--color__navi-highschool--primary);
}

.txt__section--title.university {
  font-weight: 600;
  font-size: var(--font-size_lll);
  color: var(--color__primary);
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0;
  color: var(--color__navi-university--primary);
}

.txt__section--title + * {
  margin-top: var(--space_l) !important;
}

.txt__section--subtitle {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: var(--font-size_l);
  letter-spacing: 0.1em;
  margin: 0 auto;
  line-height: 1.3;
}

.page-contents---title {
  font-weight: 600;
  font-style: normal;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-size_l);
  color: var(--color__primary);
  padding: 2em 0 0.5 0;
  border-bottom: solid 3px var(--color__primary-50);
  position: relative;
  letter-spacing: 0.05em;
}
.page-contents---title::before {
  content: "";
  position: absolute;
  display: block;
  border-bottom: solid 3px var(--color__secondary-50);
  bottom: -3px;
  width: 50%;
}

.page-contents---title + * {
  margin-top: 2em !important;
}

.txt__caption {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.4em;
  font-size: var(--font-size_sss);
  text-align: left;
  letter-spacing: 0.04em;
  word-break: break-all;
  white-space: initial;
  line-height: 1.3;
}

.gnav__menu-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.pc-gnav {
  display: flex;
  gap: 1.2rem;
}
@media (max-width: 1200px) {
  .pc-gnav {
    display: none;
  }
}
.pc-gnav li {
  color: var(--color__white);
  letter-spacing: 0.02rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  letter-spacing: 0.1rem;
  border-right: 1px solid rgb(138, 138, 138);
  padding-right: 1.2rem;
}
.pc-gnav li:last-child {
  border: none;
}

/*　ハンバーガーボタン　*/
.hamburger-trigger {
  display: block;
  width: 100px;
  height: 70px;
  cursor: pointer;
  text-align: center;
  display: none;
}
.hamburger-trigger span {
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  border-radius: 1px;
  left: 25px;
  background: var(--color__white);
  transition: 0.3s ease-in-out;
}
.hamburger-trigger span:nth-child(1) {
  top: 15px;
}
.hamburger-trigger span:nth-child(2) {
  top: 25px;
}
.hamburger-trigger span:nth-child(3) {
  top: 35px;
}
@media (max-width: 675px) {
  .hamburger-trigger span {
    width: 30px;
    height: 2px;
    left: 20px;
  }
  .hamburger-trigger span:nth-child(1) {
    top: 23px;
  }
  .hamburger-trigger span:nth-child(2) {
    top: 33px;
  }
  .hamburger-trigger span:nth-child(3) {
    top: 43px;
  }
}
@media (max-width: 1200px) {
  .hamburger-trigger {
    display: block;
  }
}

/* ナビ開いてる時のボタン */
.hamburger-trigger.active span:nth-child(1) {
  top: 26px;
  left: 26px;
  transform: rotate(-30deg);
}
@media (max-width: 675px) {
  .hamburger-trigger.active span:nth-child(1) {
    top: 33px;
    left: 20px;
    transform: rotate(-45deg);
  }
}

.hamburger-trigger.active span:nth-child(2),
.hamburger-trigger.active span:nth-child(3) {
  top: 26px;
  transform: rotate(30deg);
}
@media (max-width: 675px) {
  .hamburger-trigger.active span:nth-child(2),
  .hamburger-trigger.active span:nth-child(3) {
    top: 33px;
    left: 20px;
    transform: rotate(45deg);
  }
}

.hamburger-menu-text__pc {
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size_ss);
  color: var(--color__white);
  letter-spacing: 0.1rem;
  margin-top: 0.3rem;
  line-height: 1;
}
@media (max-width: 675px) {
  .hamburger-menu-text__pc {
    display: none;
  }
}

.hamburger-menu-text__pc.main {
  margin-top: 36px;
}

.hamburger-menu-text__CLOSE {
  display: none;
}

.hamburger-menu-text__CLOSE.active {
  display: block;
}

.hamburger-menu-text__MENU.active {
  display: none;
}

@media (max-width: 675px) {
  .hamburger-menu-text__MENU, .hamburger-menu-text__CLOSE, .hamburger-menu-text__pc {
    display: none !important;
  }
}

.hamburgerPC__sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

nav.globalMenuSp {
  position: absolute;
  z-index: 10;
  top: 70px;
  left: 0;
  color: var(--color__black);
  text-align: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 100%;
  height: 0%;
}
nav.globalMenuSp .overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
nav.globalMenuSp .closebtnmenu {
  display: block;
  background: #000;
  color: #fff;
  padding: 1rem;
  cursor: pointer;
}
nav.globalMenuSp .hamburger__pc {
  position: relative;
  z-index: 500;
  background-color: var(--color__white);
  background-image: radial-gradient(#9af3da 0.7px, #fff 0.7px);
  background-size: 12px 12px;
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
  height: calc(100vh - 70px);
  overflow-y: auto;
}
@media (max-width: 675px) {
  nav.globalMenuSp .hamburger__pc {
    display: none;
  }
}

.hamburger-sp {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  z-index: 500;
  background-color: var(--color__white);
  height: calc(100% - 70px);
  overflow-y: auto;
  color: #fff;
}
@media (min-width: 676px) {
  .hamburger-sp {
    display: none;
  }
}
.hamburger-sp li {
  font-size: var(--font-size-m);
  width: 100%;
  transition: 0.3s;
}
.hamburger-sp li .icon_link {
  display: inline;
  width: 13px;
  margin-left: 0.2rem;
  margin-bottom: 0.1rem;
}

.hamburger-sp {
  background-color: var(--color__black-80);
}

.hamburger-sp__gnav {
  padding: 1.5em 0;
}

.hamburger-sp__title-wrap {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  cursor: pointer;
  padding: 1em 1em 0 0;
  font-size: var(--font-size_m);
  color: #fff;
  font-weight: 600;
}

.hamburger-sp__gnav .menu-item {
  line-height: 2;
  padding-top: 0.5em;
}

.hamburger-sp__other {
  width: 100%;
  background-color: var(--color__black-40);
  padding: 1em;
}

.hamburger-sp__nav-list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}

.hamburger-sp__nav-list li {
  font-size: var(--font-size_s);
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.hamburger-sp__nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.hamburger-sp__nav-list svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.hamburger-sp__sns-list {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 24px);
  gap: 1em;
  margin: 0 auto;
  margin-top: 1em;
  fill: #fff;
}

.hamburger-sp__sns-list svg {
  width: 24px;
  height: 24px;
}

.is-open01 {
  display: none;
}

.is-open02 {
  display: none;
}

.hamburger__pc-asaide {
  margin-top: 2rem;
}

.hamburger__pc-asaide--navi {
  width: min(200px, 90vw);
  margin: 0 auto;
}
.hamburger__pc-asaide--navi li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color__white);
  font-weight: 600;
  font-style: normal;
  text-align: center;
  padding: 0.7rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.hamburger__pc-asaide--navi li a .icon {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.hamburger__pc-asaide--navi li a.special {
  background-color: var(--color__accent-50);
}
.hamburger__pc-asaide--navi li a.medical {
  background-color: var(--color__primary);
}
.hamburger__pc-asaide--navi li a.school {
  background-color: var(--color__secondary);
}

.hamburger__pc__inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  justify-content: center;
  gap: 2rem;
  padding: var(--font-size_lll) var(--font-size_lll) var(--font-size_lll) var(--font-size_m);
}
.hamburger__pc__inner .txt__section--title {
  font-size: clamp(20px, 3vw, 28px);
}
.hamburger__pc__inner .txt__section--title + * {
  margin-top: 0 !important;
}
.hamburger__pc__inner .hamburger__pc-asaide--etc li {
  font-size: var(--font-size_s);
  border-bottom: 1px solid var(--color__gray-50);
  padding: 0.7rem;
}
.hamburger__pc__inner .hamburger__pc-asaide--etc li:last-child {
  border-bottom: none;
}

/*
black-bg(ハンバーガーメニューbg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 90px;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: var(--color__white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}

/*ハンバーガーメニューが開いたら表示*/
.active .black-bg {
  opacity: 1;
  visibility: visible;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  pointer-events: auto;
  visibility: visible;
  height: 100vh;
}

.gvav_wrap {
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 16px 0 0;
}
.gvav_wrap .gvav_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: right;
  gap: var(--margin-sm);
}
.gvav_wrap .gvav_container li div {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.gvav_item {
  display: inline-block;
}
.gvav_item .header__gnav_mainrogo {
  display: block;
  max-width: 270px;
  margin: 1.5rem;
}
@media (max-width: 675px) {
  .gvav_item .header__gnav_mainrogo {
    max-width: 210px;
  }
}

.hamburger-menu-text__pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.icon_mail {
  fill: #fff;
  width: 35px;
  height: 25px;
}

.icon_seach {
  fill: #fff;
  width: 35px;
  height: 25px;
}

/* フルナビ（モーダル）はじまり */
#modal-trigger {
  cursor: pointer;
}

.mail__icon svg {
  display: block;
  margin: 0 auto;
}

#modal-wrap {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  transition: opacity 0.3s linear, visibility 0.3s linear;
  z-index: -1;
}
#modal-wrap .overlay {
  position: fixed;
  top: 70px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
#modal-wrap .modal-inner {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 90%;
  max-width: 800px;
  background-color: var(--color__white);
  color: var(--color__black);
  border-radius: 20px;
  padding: var(--margin-md);
  padding-bottom: var(--margin-lg);
}
#modal-wrap.show {
  opacity: 1;
  display: block;
  z-index: 10000;
}

/* フルナビ（モーダル）終わり */
#gifuebooks__header {
  /*fixedで上部固定*/
  position: fixed;
  height: 70px;
  width: 100%;
  z-index: 999999999999999;
  top: 0;
  left: 0;
  transition: 0.5s;
  color: var(--color__black);
  background-color: rgba(11, 25, 33, 0.85);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 675px) {
  #gifuebooks__header {
    height: 70px;
  }
}

.arrow_bottom01 {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color__primary);
  border-right: 2px solid var(--color__primary);
  transform: rotate(-45deg);
  border-radius: 1px;
  margin-right: 1rem;
  top: 50%;
  left: 0;
  transition: 0.2s;
}
.arrow_bottom01.add {
  transform: rotate(45deg);
}

.arrow_bottom02 {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  border-radius: 1px;
  margin-right: 1rem;
  top: 50%;
  left: 0;
  transition: 0.2s;
}
.arrow_bottom02.add {
  transform: rotate(45deg);
}

.search_title__wrap {
  position: relative;
  margin-bottom: clamp(16px, 5vw, 35px);
}

.search_title {
  font-size: clamp(20px, 5vw, 35px);
  font-weight: 900;
  color: var(--color__secondary);
  text-align: center;
  margin-top: 1rem;
}

.modal-close {
  background-color: #666666;
  position: absolute;
  z-index: 10001;
  top: -1%;
  right: -7%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
}
.modal-close span {
  display: inline-block;
  vertical-align: middle;
  color: var(--color__white);
  line-height: 1;
  width: 1.5em;
  height: 0.15em;
  background: currentColor;
  border-radius: 0.15em;
  position: relative;
  transform: rotate(45deg);
}
.modal-close span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.search__freeword--wrap {
  background-color: var(--color__gray-50);
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid var(--color__gray-50);
  margin-bottom: var(--margin-md);
}

select {
  font-size: var(--font-size-m);
}

.search__pulldown--wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color__black-80);
  gap: 2rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 500px) {
  .search__pulldown--wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.search__pulldown--item {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1rem;
  border-radius: 25px;
  background: var(--color__gray-50);
  margin-top: 1rem;
}
.search__pulldown--item:hover {
  background-color: var(--color__secondary-50);
}
.search__pulldown--item::before {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
  transform: translateY(-50%);
}

.search__pulldown--item--inner {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1rem 1.5rem 1rem 1.5rem;
}

input {
  width: 100%;
  height: 100%;
}

.search__books--wrap {
  max-width: 250px;
}
.search__books--wrap img {
  width: 100%;
}

.search-title__section {
  background-color: var(--color__secondary);
  text-align: justify;
  padding: var(--margin-md) 0;
  letter-spacing: 0.03rem;
}
.search-title__section .inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.search-title__section h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color__white);
  margin-bottom: 0.5rem;
}
.search-title__section .search-conditions__wrap {
  background-color: var(--color__white);
  border-radius: 10px;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  color: var(--color__black-80);
  line-height: 1.5;
}
.search-title__section .search-conditions__wrap p {
  color: var(--color__secondary);
  font-weight: 700;
}

.search-title__result {
  letter-spacing: 0.06rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color__secondary);
  margin-top: 2rem;
  text-align: center;
}

.search_condition_text {
  text-align: center;
}

#footer {
  background-color: var(--color__gray-50);
}

.footer__contents {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space_ml) 0;
  padding-top: var(--space_lll);
}
.footer__contents .footer__gnav_mainrogo {
  width: 250px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.footer__contents .footer__gnav_mainrogo img {
  width: 100%;
}

.arrow_r {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: var(--color__black-40);
  text-decoration: none;
}

.arrow_r:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px var(--color__black-40);
  border-right: solid 1px var(--color__black-40);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(45deg);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  align-items: center;
  gap: 0.3em 1em;
  font-size: var(--font-size_ss);
  color: var(--color__black-40);
  margin: 0 auto;
}
@media (max-width: 650px) {
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
}

.footer__nav li {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-size: var(--font-size_ss);
  color: var(--color__black);
  text-decoration: none;
  line-height: 1.5;
}

.footer__nav li:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px var(--color__black);
  border-right: solid 1px var(--color__black);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(45deg);
}

@media (any-hover: hover) {
  .footer__nav li:hover {
    color: var(--color__primary-dark);
  }
  .footer__nav li:hover:before {
    border-color: var(--color__primary-dark);
  }
}
.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  height: 55px;
}

.footer__sns li {
  width: 55px;
  height: 55px;
}

.footer__sns a {
  display: block;
  aspect-ratio: 1/1;
  position: relative;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  width: 50px;
  will-change: color;
  align-items: center;
  display: flex;
  justify-content: center;
}

.footer__sns a:before {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1), cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__sns a svg {
  position: relative;
  width: calc(var(--size) * 0.4546);
  z-index: 1;
  fill: var(--color__black-40);
  pointer-events: none;
}

.footer__sns a .icon_X {
  width: 24px;
  height: 24px;
}

.footer__sns a .icon_Instagram {
  width: 25px;
  height: 26px;
}

.footer__sns a .icon_facebook {
  width: 24px;
  height: 24px;
}

.footer_copyright {
  font-size: var(--font-size_sss);
  color: #fff;
  text-align: center;
  background-color: var(--color__black-40);
  padding: 0.7rem;
  letter-spacing: 0.01rem;
}

@media (any-hover: hover) {
  .footer__sns a:hover {
    aspect-ratio: 1/1;
    position: relative;
  }
  .footer__sns a:hover:before {
    transform: scale(1.1);
    aspect-ratio: 1/1;
    background-color: var(--color__primary);
  }
  .footer__sns a:hover svg {
    fill: #fff;
  }
}
.page__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color__white);
  background-color: var(--color__secondary);
  text-align: center;
  padding: 3rem;
  margin: 0 auto;
}
@media (max-width: 650px) {
  .page__title {
    font-size: 1.3rem;
    padding: 1.5rem;
  }
}

.page__title + * {
  margin-top: var(--space_ml) !important;
}

.page__wrap {
  max-width: 850px;
  width: calc(100% - 40px);
  margin: 2rem auto;
  font-size: 0.9rem;
  line-height: 1.5rem;
  text-align: justify;
}
.page__wrap #page__content[role=main] {
  font-size: 16px;
  line-height: 1.8;
}
.page__wrap #page__content[role=main] h3 {
  font-size: clamp(20px, 2vw, 24px);
}
.page__wrap #page__content[role=main] p, .page__wrap #page__content[role=main] ul {
  font-size: 16px;
  line-height: 1.8;
}
.page__wrap h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color__secondary);
  padding: 2rem 0 1rem 0;
}
.page__wrap .page__small {
  font-size: 0.7rem;
}

.page__indent {
  padding-left: 1rem;
  text-indent: -1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.page__indent--maru {
  padding-left: 1rem;
  text-indent: -1rem;
}
.page__indent--maru::before {
  content: "●";
  color: var(--color__secondary-50);
  margin-right: 0.1rem;
}

#metoha01 {
  text-align: center;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.5;
  font-weight: 600;
  color: var(--color__primary);
  line-height: 1.6rem;
}

.under-line {
  background: linear-gradient(transparent 70%, var(--color__accent--second) 0%);
  font-weight: 600;
}

#QA_con2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.page__img {
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page__img img {
  width: 100%;
}

.page__link {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  background-color: var(--color__primary);
  padding: 1rem;
  margin-top: 1rem;
  color: var(--color__white);
  border-radius: 10px;
  text-align: center;
}

.page__aside {
  font-size: 14px;
  background-color: var(--color__gray-50);
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 2rem;
}

.about_me, #metoha02 {
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .sidebar {
    width: calc(100% - 60px);
    margin: 0 auto;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .sidebar {
    padding-right: 32px;
  }
}

@media (max-width: 1080px) {
  .l-sidebar__tag-category-list {
    max-width: 768px;
    display: grid;
    grid-template-columns: 1fr min(90vw, 300px);
    gap: 32px;
    padding: 32px 0;
  }
}
@media (max-width: 768px) {
  .l-sidebar__tag-category-list {
    display: block;
  }
}

.category_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-item > .children {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cat-item a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: var(--font-size_ss);
  border: 2px solid #8bdbfb;
  color: #191919;
  padding: 0.4em 0.8em;
  border-radius: 9999px;
  margin-bottom: 8px;
  font-weight: 600;
  margin-left: -2px;
  background-color: #fff;
  line-height: 1;
}

.cat-item a:hover {
  color: var(--color__accent) !important;
  border-color: #f6a6a6 !important;
}

.cat-item > .children > .cat-item a {
  display: block;
  font-size: 13px;
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 4px !important;
  border: none;
  margin-left: 0 !important;
}

.cat-item > .children > .cat-item a:before {
  content: "●";
  color: var(--color__primary-50) !important;
  font-size: 10px;
  margin-right: 2px;
}

.cat-item > .children > .cat-item a:hover {
  border-radius: 0;
  color: var(--color__accent) !important;
  font-weight: 600;
}

.cat-item > .children > .cat-item a:hover:before {
  color: var(--color__accent) !important;
}

.sidebar_title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #888;
  letter-spacing: 0.1em;
  color: var(--color__secondary);
}

.sidebar_title.english {
  font-size: 24px;
  color: var(--color__primary);
}

.sticky-item {
  position: sticky;
  top: 100px;
  container-type: inline-size;
}

.sticky-item .resent-post-list {
  display: grid;
  gap: 16px;
  grid-template-columns: auto;
}
@container (min-width:600px) {
  .sticky-item .resent-post-list {
    grid-template-columns: repeat(3, 1fr);
    font-weight: 600;
  }
}

.main-column {
  height: 100%;
}

.single_wrapper {
  background-color: var(--color__gray-50);
}

.add-sidebar_wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 56px;
  grid-template-columns: auto clamp(250px, 20vw, 300px);
}
@media (max-width: 1420px) {
  .add-sidebar_wrapper {
    padding-right: 56px;
  }
}
@media (max-width: 1200px) {
  .add-sidebar_wrapper {
    padding-right: 0;
  }
}
@media (max-width: 1080px) {
  .add-sidebar_wrapper {
    grid-template-columns: auto;
  }
}

.single--wrap {
  padding: var(--font-size_lll) var(--font-size_l);
  line-height: 1.6;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .single--wrap {
    padding-bottom: 24px;
  }
}

.single_header {
  width: calc(100% - var(--font-size_l));
  margin: 0 auto;
}

.single_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--font-size_ss);
  font-weight: 600;
  font-size: var(--font-size_ss);
  margin-top: 4px;
}

.single_tags li:before {
  content: " #";
  color: var(--color__primary);
  font-size: var(--font-size-m);
}

.single_tags li:hover,
.single_tags li:hover::before {
  color: var(--color__accent) !important;
}

@media (max-width: 1080px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.single--title {
  display: block;
  font-size: clamp(22px, 5vw, 32px);
  line-height: 130%;
  font-weight: 700;
  color: var(--color__black-80);
  text-align: justify;
}

.post-categories {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: var(--margin-md);
  font-size: var(--font-size_ss);
  font-weight: 600;
  display: flex;
  gap: 8px;
}
.post-categories li:hover {
  opacity: 0.8;
}

.blog-detail__image img {
  display: block;
  margin: var(--font-size_l) auto;
  width: clamp(1024px, 5vw, 90%);
}
@media (max-width: 1024px) {
  .blog-detail__image img {
    margin-bottom: 1rem;
    width: 100%;
  }
}

.blog-detail__body {
  max-width: 1024px;
  width: calc(100% - var(--font-size_l));
  margin: 0 auto;
  font-size: var(--font-size-m);
  line-height: 1.8;
  text-align: justify;
}
.blog-detail__body p:first-of-type {
  margin-top: 1rem;
}
.blog-detail__body h2 {
  font-size: var(--font-size_l);
  color: #fff;
  background-color: var(--color__primary);
  border-radius: 8px;
  width: 100%;
  padding: 0.3em 1em;
  line-height: 1.4;
}
.blog-detail__body *:not(h2):not(script) + h2.wp-block-heading, .blog-detail__body *:not(h3):not(script) + h3.wp-block-heading, .blog-detail__body *:not(h4):not(script) + h4.wp-block-heading, .blog-detail__body *:not(h5):not(script) + h5.wp-block-heading, .blog-detail__body *:not(h6):not(script) + h6.wp-block-heading {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.blog-detail__body h3 {
  position: relative;
  font-size: var(--font-size_ml);
  background-color: var(--color__gray-50);
  border-radius: 8px;
  padding: 0.6em 1em 0.5em 1.6em;
  line-height: 1.3;
}
.blog-detail__body h4.wp-block-heading {
  font-size: var(--font-size_ml);
  border-bottom: 2px solid var(--color__primary);
}
.blog-detail__body h4.wp-block-heading + * {
  margin-top: 1em;
}
.blog-detail__body h5.wp-block-heading {
  font-size: var(--font-size_ml);
  margin-top: 1em !important;
}
.blog-detail__body h6 {
  margin-top: -1em;
  text-align: right;
  font-size: 0.8rem;
  font-weight: normal;
}
.blog-detail__body img {
  display: block;
  margin: 1rem auto;
}
.blog-detail__body .wp-block-button__link {
  color: var(--color__primary);
  background-color: var(--color__white);
  border: 1px solid var(--color__primary);
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(0.5em + 1px) calc(1.333em + 1px);
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin: 1em auto;
  cursor: pointer;
  transition: all 0.3s;
}
.blog-detail__body .wp-block-button__link:hover {
  background-color: var(--color__primary-50);
  border: 1px solid var(--color__primary-50);
  color: var(--color__white);
}
.blog-detail__body .has-background {
  margin: 1em auto;
  padding: 1em 2em;
}
@media (max-width: 500px) {
  .blog-detail__body .has-background {
    padding: 1rem;
  }
}
.blog-detail__body ul {
  padding-left: 1rem;
}
.blog-detail__body ul li {
  font-size: 0.95rem;
  list-style-type: disc;
  text-align: left;
  line-height: 160%;
}
.blog-detail__body a {
  word-break: break-all;
  text-decoration: underline;
  font-weight: bold;
  color: #064db7;
}
.blog-detail__body h4 a {
  text-decoration: underline;
  font-weight: bold;
}
.blog-detail__body h4 a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_link.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 5px;
}
.blog-detail__body .is-type-video {
  margin: 2rem auto;
}
.blog-detail__body .wp-block-group {
  margin: 1rem 0;
}
.blog-detail__body .wp-block-group h3 {
  font-size: 1.2rem;
  display: flex;
  justify-content: left;
  align-items: center;
  color: var(--color__black);
  margin-top: 0rem;
}
.blog-detail__body .wp-block-group h3::before,
.blog-detail__body .wp-block-group h3::after {
  width: 3px;
  height: 40px;
  background-color: #25d089;
  content: "";
}
.blog-detail__body .wp-block-group h3::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}
.blog-detail__body .wp-block-group h3::after {
  transform: rotate(35deg);
  margin-left: 30px;
}
.blog-detail__body .wp-block-group h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #25A1Cf;
}
.blog-detail__body .wp-block-group p {
  font-size: 1rem;
  padding-left: 1rem;
  line-height: 160%;
  font-feature-settings: "palt";
}
.blog-detail__body .wp-block-group p strong {
  display: inline-block;
  margin-bottom: 0.2rem;
  margin-top: 1.5rem;
  text-indent: -1rem;
}
.blog-detail__body .wp-block-group p strong::before {
  content: "●";
  color: var(--color__primary);
  margin-right: 0.1rem;
}
.blog-detail__body .wp-block-group p.attention {
  font-size: 0.9rem;
  font-weight: bold;
  padding-left: 1.8rem;
  text-indent: -0.9rem;
  color: #000;
  font-feature-settings: "palt";
}
.blog-detail__body .wp-block-group p.link a {
  text-decoration: underline;
  font-weight: bold;
}
.blog-detail__body .wp-block-group p.link a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_link.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 5px;
}
.blog-detail__body .wp-block-group li {
  margin-bottom: 0.3rem;
}
.blog-detail__body .wp-block-group .has-small-font-size a, .blog-detail__body .wp-block-group li a {
  text-decoration: underline;
  font-weight: bold;
}
.blog-detail__body .wp-block-group .has-small-font-size a::after, .blog-detail__body .wp-block-group li a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_link.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 5px;
}
.blog-detail__body .wp-block-group .wp-block-group__inner-container .wp-block-heading {
  margin-bottom: 0.5rem;
}
.blog-detail__body .wp-block-group .wp-block-group__inner-container .has-small-font-size {
  display: block;
  line-height: 150%;
}
.blog-detail__body .wp-block-group .has-text-align-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.blog-detail__body .wp-block-group img {
  margin: 0;
  height: 100%;
}

.wp-block-embed__wrapper {
  margin-top: 1rem;
}

.wp-element-caption {
  font-size: 0.8rem;
  margin-bottom: 2rem;
  line-height: 140%;
}

.wp-block-columns.is-layout-flex {
  gap: 1rem;
}
.wp-block-columns.is-layout-flex img {
  margin: 0;
}

.wp-block-embed__wrapper {
  position: relative;
  height: 0px;
  width: 100%;
  padding-top: 66.6666%;
}
.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-image {
  margin-bottom: 2rem;
}

.wp-block-column a {
  text-decoration: underline;
}
.wp-block-column a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_link.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 5px;
}

@media (max-width: 600px) {
  .wp-block-media-text__content {
    margin-top: 1em;
  }
}

.has-medium-font-size {
  font-size: clamp(15px, 1.5vw, 18px);
}

.single-time {
  letter-spacing: 0.05em;
  color: #545454;
  font-weight: 600;
}

.wp-block-quote {
  font-size: var(--font-size_ss);
}

.bookinfo__wrap {
  margin: 0 auto;
  padding: clamp(1rem, 5vw, 2rem);
  max-width: 1200px;
}

.bookinfo__title {
  font-size: var(--font-size_l);
  max-width: 768px;
  width: -moz-fit-content;
  width: fit-content;
  margin: var(--font-size_l) auto;
  padding: 0 16px;
}

.bookinfo__contents-inner {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .bookinfo__contents-inner {
    gap: 1rem;
  }
}
.bookinfo__contents-inner ul {
  background-color: var(--color__gray-50);
  border-right: 1px solid var(--color__gray-50);
  border-bottom: 1px solid var(--color__gray-50);
  padding: 1rem;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .bookinfo__contents-inner ul {
    padding: 0.5rem;
  }
}
.bookinfo__contents-inner ul li {
  font-size: 0.9rem;
  color: var(--color__black-80);
  padding: 0.5rem;
  border-bottom: 1px dotted var(--color__black-80);
}
.bookinfo__contents-inner ul li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
@media (max-width: 640px) {
  .bookinfo__contents-inner ul li {
    font-size: 0.8rem;
  }
}

.bookinfo__img {
  max-width: 320px;
  box-shadow: 0px 11px 31px 0px #d9d9d9;
}
.bookinfo__img img {
  width: 100%;
}

.img__zoom-box {
  display: inline-block;
  overflow: hidden;
}
.img__zoom-box img {
  display: block;
  transition-duration: 0.3s;
}
.img__zoom-box img:hover {
  transform: scale(1.1);
  filter: brightness(40%);
}

.bookinfo__button {
  background-color: var(--color__primary);
  color: var(--color__white);
  padding: 1rem;
}

.mainvisual_gifuebooks {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
  aspect-ratio: 1920/778;
}
.mainvisual_gifuebooks img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .mainvisual_gifuebooks {
    margin-bottom: 70px;
    aspect-ratio: 640/396;
  }
}
.mainvisual_gifuebooks .mainvisual_btn {
  max-width: 400px;
  position: absolute;
  top: 92%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  background-color: #ffff00;
  border-radius: 100vmax;
  padding: 1.5em 3em;
  text-align: center;
  letter-spacing: 0.1rem;
  white-space: nowrap;
  font-weight: 600;
  font-style: normal;
  font-size: var(--font-size_ml);
  animation: 2s poyopoyo ease-out infinite;
  color: #3e3e3a;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
@media (max-width: 1000px) {
  .mainvisual_gifuebooks .mainvisual_btn {
    padding: 1.5rem 3rem;
    border-radius: 35px;
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .mainvisual_gifuebooks .mainvisual_btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    max-width: 300px;
  }
}

.arealist_container {
  background-color: var(--color__primary-30);
  margin: 0 auto;
  border-top: 10px solid var(--color__white);
  padding: var(--space_lll) 0;
}

.arealist_container .inner {
  max-width: 1420px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.area_list_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: var(--space_ms);
  margin-top: var(--space_m);
}
@media (min-width: 450px) {
  .area_list_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 660px) {
  .area_list_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .area_list_wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 2fr;
  }
}
.area_list_wrapper .flex-column {
  grid-template-columns: 1fr;
  flex-direction: column;
  text-align: center;
}
.area_list_wrapper .flex-column li {
  width: min(99%, 250px);
  padding: 0.25rem 0;
  margin: 0 auto;
}

.p-arealist--box {
  background-color: #fff;
  container-type: inline-size;
  container-name: area;
  padding: 1em;
  padding-bottom: 1.3em;
  container-type: inline-size;
}

.p-arealist--box h4 {
  font-size: var(--font-size_m);
  text-align: center;
  padding-bottom: 0.5em;
}

.p-arealist {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  line-height: 1.2;
}
@container (min-width:150px) {
  .p-arealist {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.2em 1em;
  }
}
@container (min-width:250px) {
  .p-arealist {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0.2em 1em;
  }
}
@container (min-width:300px) {
  .p-arealist {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 0.2em 1em;
  }
}

.p-arealist.area--other-group {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@container (min-width:50px) {
  .p-arealist.area--other-group {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
  }
}

.p-arealist li a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--color__black);
}
@media (min-width: 500px) {
  .p-arealist li a {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .p-arealist li a {
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .p-arealist li a:hover {
    border-bottom: 1px solid var(--color__accent);
    color: var(--color__accent);
    font-weight: 600;
  }
}
.japanebooks_container {
  padding: var(--space_lll) 0;
}

.section__header {
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.japanebooks_caption {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.3;
  font-size: var(--font-size_s);
  margin-top: 0.5em;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 1100px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.container .icon-card {
  display: flex;
  flex-wrap: wrap;
}
.container .icon-card .icon-card__item {
  width: 16.6666666667%;
  padding: 5px;
  transition: 0.3s ease-out;
}
.container .icon-card .icon-card__item:hover {
  filter: brightness(40%);
}
@media screen and (min-width: 768px) {
  .container .icon-card .icon-card__item {
    width: 9.0909090909%;
    padding: 10px;
  }
}
.container .icon-card .icon-card__item .icon-card__ttl {
  display: block;
  font-size: var(--font-size_ss);
  color: var(--color__black-80);
  text-align: center;
  margin-top: 0.2em;
}
.container .icon-card__img {
  max-width: 300px;
  margin-top: 1em;
}

.mainslide_container {
  width: 100%;
  width: calc(100% - 40px);
  position: relative;
  margin-inline: auto;
  margin: 2em auto 4em;
}

@media (min-width: 768px) {
  .mainslide_container {
    width: 100%;
  }
}
.mainslide_container .swiper-slide {
  opacity: 0.5; /* 左右のスライドを薄くする */
  transform: scale(0.8) !important; /* 左右のスライドを小さくする */
  transition: 0.6s; /* ゆっくり小さくさせる */
}

.mainslide_container .swiper-slide img {
  border-radius: 16px;
}

.mainslide_container .swiper-slide-active {
  opacity: 1; /* 中央のスライドは薄くしない */
  transform: scale(1) !important; /* 中央のスライドは小さくしない */
  z-index: 1; /* 中央のスライドを一番上にする */
}

.mainslide_container .swiper-button-prev {
  left: -16px;
  top: 45%;
}

.mainslide_container .swiper-button-next {
  right: -16px;
  top: 45%;
}

.mainslide_container .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
}

@media (min-width: 768px) {
  .mainslide_container {
    /* 前への矢印 */
    /* 次への矢印 */
  }
  .mainslide_container .swiper-button-prev {
    left: 12.5vw;
  }
  .mainslide_container .swiper-button-next {
    right: 12.5vw;
  }
}
@media (max-width: 500px) {
  .mainslide_container {
    /* 前への矢印 */
    /* 次への矢印 */
  }
  .mainslide_container .swiper-button-prev {
    top: 40%;
  }
  .mainslide_container .swiper-button-next {
    top: 40%;
  }
}
.mainslide_container .swiper-button-prev,
.mainslide_container .swiper-button-next {
  height: 40px;
  width: 40px;
}

.mainslide_container .swiper-button-prev::after,
.mainslide_container .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}

@media (min-width: 768px) {
  .mainslide_container {
    /* 前へ次への矢印カスタマイズ */
    /* 前へ次への矢印カスタマイズ */
  }
  .mainslide_container .swiper-button-prev,
  .mainslide_container .swiper-button-next {
    height: 50px;
    width: 50px;
  }
  .mainslide_container .swiper-button-prev::after,
  .mainslide_container .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 50px;
    margin: auto;
    width: 50px;
  }
}
.mainslide_container .swiper-button-prev::after {
  scale: -1;
  background-image: url(../../assets/img/top_slider_arrow.svg);
}

.mainslide_container .swiper-button-next::after {
  background-image: url(../../assets/img/top_slider_arrow.svg);
}

.mainslide_container .swiper-slide img {
  height: auto;
  width: 100%;
}

.mainslide_container .mainslider_text {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size_ss);
  margin-top: 0.5em;
  gap: 0.3em;
}

.mainslide_container .mainslider_text img {
  display: inline;
  width: var(--font-size_ss);
  border-radius: 0;
  margin-bottom: 0.2em;
}

/* コンテナー */
.container {
  margin: 0 auto;
  margin-bottom: 2rem;
}

/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* スライド */
.infinite-slider .swiper-slide {
  width: 20vw;
  margin: 0.5rem;
}

@media screen and (max-width: 700px) {
  .infinite-slider .swiper-slide {
    width: 50vw;
  }
}
.infinite-slider .swiper-slide:hover {
  filter: brightness(40%);
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: 100%;
}

/* サブスライダー */
.index__subslider {
  margin: 0 auto;
  aspect-ratio: 10/1;
}

@media (max-width: 700px) {
  .index__subslider {
    aspect-ratio: 70/15;
  }
}
.l-banner__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--font-size_m);
}
@container (min-width:768px) {
  .l-banner__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@container (min-width:1024px) {
  .l-banner__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.l-all-wrapper {
  width: 100%;
  padding: var(--space_lll) 0;
}

.l-sec {
  background-color: var(--color__white);
  padding: var(--space_lll) 0;
}
.l-sec:nth-of-type(odd) {
  background-color: var(--color__primary-10);
}

.l-contents-wrapper {
  max-width: 1420px;
  padding: 0 var(--font-size_m);
  margin: 0 auto;
  container-type: inline-size;
}

.article--wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1420px;
  width: calc(100% - 32px);
  margin: 0 auto;
  gap: var(--font-size_m);
}
@media (min-width: 450px) and (max-width: 768px) {
  .article--wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) and (max-width: 1050px) {
  .article--wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1051px) {
  .article--wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-sec .article--wrap.book {
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 768px) {
  .l-sec .article--wrap.book {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1rem;
  }
}
.l-sec .book--item {
  position: relative;
}
.l-sec .booksicon__customfield {
  position: absolute;
  z-index: 10;
  top: -10px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color__white);
  text-align: center;
  font-size: var(--font-size_sss);
  height: calc(var(--font-size_sss) * 1.5);
  line-height: calc(var(--font-size_sss) * 1.5);
  padding: 0 0.5em;
  background-color: var(--color__primary);
  right: 0;
}
.l-sec .booksicon__New {
  position: absolute;
  z-index: 10;
  top: -10px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color__white);
  text-align: center;
  font-size: var(--font-size_sss);
  height: calc(var(--font-size_sss) * 1.5);
  line-height: calc(var(--font-size_sss) * 1.5);
  padding: 0 0.5em;
  background-color: var(--color__accent);
  left: 0;
}

.img__zoom-box {
  display: inline-block;
  overflow: hidden;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
}

.img__zoom-box img {
  display: block;
  transition-duration: 0.5s;
}

.img__zoom-box img:hover {
  transform: scale(1.1);
  filter: brightness(40%);
}

.page-contents---wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .page-contents---wrap {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .page-contents---wrap {
    padding: 0 42px;
  }
}

.page-booklist--wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  gap: 24px;
}
@media (min-width: 768px) {
  .page-booklist--wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1280px) {
  .page-booklist--wrap {
    gap: 42px;
  }
}

.page-book--item {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.page-book--item .booksicon__New {
  background-color: var(--color__accent);
  position: absolute;
  z-index: 10;
  left: 0;
  top: -10px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding: 0 0.3em;
  color: var(--color__white);
  text-align: center;
  font-size: var(--font-size_ss);
  line-height: 24px;
  font-weight: 900;
}
.page-book--item .booksicon__customfield {
  background-color: var(--color__primary);
  position: absolute;
  z-index: 10;
  left: 0;
  top: -10px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding: 0 0.3em;
  color: var(--color__white);
  text-align: center;
  font-size: var(--font-size_ss);
  line-height: 24px;
  font-weight: 900;
}
.page-book--item .img__zoom-box {
  display: inline-block;
  overflow: hidden;
}
.page-book--item .img__zoom-box img {
  display: block;
  transition-duration: 0.5s;
}
.page-book--item .img__zoom-box img:hover {
  transform: scale(1.1);
  filter: brightness(40%);
}
.page-book--item img {
  width: 100%;
}

.postlist---wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1380px;
  width: calc(100% - 32px);
  margin: 2rem auto;
  gap: 16px;
  row-gap: 32px;
}
@media screen and (max-width: 768px) {
  .postlist---wrap {
    row-gap: 16px;
  }
}

button {
  border: none;
}

.btn-box {
  width: min(80vw, 300px);
  display: block;
  margin: 0 auto;
}

.btn {
  background-color: var(--color__white);
  color: var(--color__primary);
  border: 1px solid var(--color__primary);
  padding: 0.6em 1.5em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: calc(infinity * 1px);
  margin-top: var(--space_l);
}
.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.slide-bg span {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--color__primary);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-130%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn.slide-bg:hover {
  color: var(--color__white);
}
.btn.slide-bg:hover span {
  transform: none;
}

.btn.high-school {
  color: var(--color__navi-highschool--primary);
  border: 1px solid var(--color__navi-highschool--primary);
}
.btn.high-school span {
  background-color: var(--color__navi-highschool--primary);
}

.btn.university {
  color: var(--color__navi-university--primary);
  border: 1px solid var(--color__navi-university--primary);
}
.btn.university span {
  background-color: var(--color__navi-university--primary);
}

.btn p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size-m);
}

.btn_box {
  max-width: min(90vw, 1420px);
  margin: 0 auto;
}

.btn_box + * {
  margin-top: 42px;
}

.btn-sub {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color__black);
  font-weight: 600;
  border-bottom: 2px solid var(--color__secondary-50);
  padding-bottom: 4px;
  padding-left: 4px;
}

.btn-sub.right {
  margin-left: auto;
  margin-top: 8px;
}

.icon_btn-sub-arrow {
  width: 16px;
  height: 16px;
}

.c-floating-navi {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 999;
  writing-mode: vertical-rl;
  font-weight: 600;
  display: flex;
  gap: 0.5em;
}
@media (max-height: 625px) {
  .c-floating-navi {
    bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .c-floating-navi {
    display: none;
  }
}
.c-floating-navi i {
  font-size: 15px;
}
@keyframes updown_animation {
  0% {
    transform: translate(0%, 0);
  }
  3% {
    transform: translate(0%, -8px);
  }
  6% {
    transform: translate(0%, 0);
  }
  9% {
    transform: translate(0%, -8px);
  }
  12% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(0%, 0);
  }
}
@keyframes updown_animation02 {
  0% {
    transform: translate(0%, 0);
  }
  20% {
    transform: translate(0%, 0);
  }
  23% {
    transform: translate(0%, -8px);
  }
  26% {
    transform: translate(0%, 0);
  }
  29% {
    transform: translate(0%, -8px);
  }
  32% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(0%, 0);
  }
}
@keyframes updown_animation03 {
  0% {
    transform: translate(0%, 0);
  }
  40% {
    transform: translate(0%, 0);
  }
  43% {
    transform: translate(0%, -8px);
  }
  46% {
    transform: translate(0%, 0);
  }
  49% {
    transform: translate(0%, -8px);
  }
  52% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(0%, 0);
  }
}
.c-floating-navi .icon_medical {
  width: 22px;
  height: 18px;
  margin-bottom: 2px;
  fill: #fff;
  animation: updown_animation 4.5s linear infinite;
}
.c-floating-navi .icon_school {
  width: 23px;
  height: 20px;
  margin-bottom: 2px;
  fill: #fff;
  animation: updown_animation02 4.5s linear infinite;
}
.c-floating-navi .icon_heart {
  width: 19px;
  height: 17px;
  margin-bottom: 2px;
  fill: #fff;
  animation: updown_animation03 4.5s linear infinite;
}
.c-floating-navi .navi__tokusetsu {
  background-color: var(--color__accent-50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(107, 107, 107, 0.3);
  width: 60px;
  height: 150px;
  color: var(--color__white);
  font-size: 16px;
  letter-spacing: 0.01rem;
  border-radius: 10px 0px 0px 10px;
  padding-top: 12px;
  cursor: pointer;
  transition: 0.2s;
}
@media (max-height: 625px) {
  .c-floating-navi .navi__tokusetsu {
    height: 25vh;
  }
}
.c-floating-navi .navi__tokusetsu p {
  margin-top: 0.3rem;
  margin-right: 0.1em;
}
.c-floating-navi .navi__medical {
  background-color: var(--color__primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(107, 107, 107, 0.3);
  width: 60px;
  height: 150px;
  color: var(--color__white);
  font-size: 16px;
  letter-spacing: 0.01rem;
  border-radius: 10px 0px 0px 10px;
  padding-top: 12px;
  cursor: pointer;
  transition: 0.2s;
  height: 134px;
}
@media (max-height: 625px) {
  .c-floating-navi .navi__medical {
    height: 25vh;
  }
}
.c-floating-navi .navi__medical p {
  margin-top: 0.3rem;
  margin-right: 0.1em;
}
.c-floating-navi .navi__school {
  background-color: var(--color__secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(107, 107, 107, 0.3);
  width: 60px;
  height: 150px;
  color: var(--color__white);
  font-size: 16px;
  letter-spacing: 0.01rem;
  border-radius: 10px 0px 0px 10px;
  padding-top: 12px;
  cursor: pointer;
  transition: 0.2s;
  height: 134px;
}
@media (max-height: 625px) {
  .c-floating-navi .navi__school {
    height: 25vh;
  }
}
.c-floating-navi .navi__school p {
  margin-top: 0.3rem;
  margin-right: 0.1em;
}

@media (any-hover: hover) {
  .navi__tokusetsu:hover {
    background-color: #fff;
    color: var(--color__accent-50);
  }
  .navi__tokusetsu:hover svg {
    fill: var(--color__accent-50);
  }
  .navi__medical:hover {
    background-color: #fff;
    color: var(--color__primary);
  }
  .navi__medical:hover svg {
    fill: var(--color__primary);
  }
  .navi__school:hover {
    background-color: #fff;
    color: var(--color__secondary);
  }
  .navi__school:hover svg {
    fill: var(--color__secondary);
  }
}
.pc-fixed-link__arrow {
  width: 14px;
  height: 26px;
  fill: #fff;
  padding-left: 2px;
}
@media (max-height: 570px) {
  .pc-fixed-link__arrow {
    display: none;
  }
}

.card {
  background: #ffffff;
  container-type: inline-size;
  container-name: card;
}

.card_inner {
  position: relative;
  height: 100%;
}

.card__linkwrap {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.post-categories, .tag_list {
  position: relative;
  z-index: 5;
}

.card__imgframe {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card__imgframe img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@container card (min-width: 500px) {
  .card_inner {
    display: grid;
    grid-template-columns: min(30%, 250px) 1fr;
  }
}
@container card (max-width: 500px) {
  .card_inner {
    display: block;
  }
}
.card__imgframe {
  aspect-ratio: 3/2;
  height: auto;
}
@container card (min-width: 500px) {
  .card__imgframe {
    width: 100%;
    height: 100%;
  }
}

.card__imgframe {
  overflow: hidden;
}

.card__imgframe img {
  -o-object-fit: cover;
     object-fit: cover;
}

.card-skin {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card a:hover img {
  transform: scale(1.1);
  filter: brightness(40%);
}
.card a .card__imgframe {
  width: 100%;
  overflow: hidden;
  background-size: cover;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  aspect-ratio: 5/4;
}
.card a img {
  max-width: initial;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition-duration: 0.5s;
}

.card__textbox {
  width: 100%;
  padding: var(--font-size_s);
  padding-top: calc(var(--font-size_s) / 2);
  box-sizing: border-box;
}

.card--date {
  color: var(--color__black-40);
  font-size: clamp(12px, 2cqw, 14px);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.card__titletext {
  color: var(--color__black);
  font-size: clamp(14px, 3cqw, 18px);
  font-weight: 600;
  line-height: 1.3;
}

.card__titletext + * {
  margin-top: 0.5em;
}

.post-categories {
  font-size: clamp(11px, 1.8cqw, 12px);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3em;
}
.post-categories li {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border: 1px solid #8bdbfb;
  color: #191919;
  border-radius: 9999px;
  font-weight: 600;
  line-height: 1;
  padding: 0.2em 0.8em;
}

.post--wrap {
  width: calc(33.3333333333% - 25px);
  background-color: var(--color__gray-50);
}
.post--wrap .post--shumbnail {
  display: block;
  width: calc(33.3333333333% - 25px);
}
.post--wrap .post--shumbnail img {
  width: 100%;
}

.tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(12px, 2cqw, 14px);
  font-size: var(--font-size_sss);
  font-weight: 600;
  margin-top: 0.5em !important;
}

.tag_list li {
  display: flex;
  gap: 2px;
}

.tag_list li:before {
  content: " #";
  color: var(--color__primary);
  font-size: var(--font-size-m);
}

.card .tag_list {
  margin-top: var(--margin-xs);
}

@media (any-hover: hover) {
  .card:hover .card__imgframe img {
    transition-duration: 0.3s;
    transform: scale(1.1);
    filter: brightness(40%);
  }
  .card:hover .card__titletext {
    color: var(--color__accent);
  }
  .tag_list li:hover,
  .tag_list li:hover::before {
    color: var(--color__accent) !important;
  }
}
.c-icon__arrow-box-link {
  display: inline;
  width: var(--font-size_sss);
  height: var(--font-size_sss);
  margin-left: 0.2rem;
  margin-bottom: 0.1rem;
}

.m-pagenation {
  margin: 3em auto 0 auto;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-pagenation .nav-links {
  display: flex;
}

.page-numbers {
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
}
@media (min-width: 768px) {
  .page-numbers {
    font-size: 14px;
  }
}

.page-numbers li span {
  display: grid;
  place-content: center;
  width: 32px;
  height: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-numbers li span {
    width: 40px;
    height: 40px;
  }
}
.page-numbers li span.current {
  background-color: var(--color__primary);
  color: #fff;
}

.page-numbers li a {
  display: grid;
  place-content: center;
  border: 1px solid var(--color__gray);
  width: 32px;
  height: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-numbers li a {
    width: 40px;
    height: 40px;
  }
}

.prev.page-numbers,
.next.page-numbers {
  display: grid;
  place-content: center;
  border: 1px solid var(--color__gray);
  font-size: 16px;
  width: 32px;
  height: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .prev.page-numbers,
  .next.page-numbers {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 799px) {
  .sp-none {
    display: none;
  }
}

@media (min-width: 800px) {
  .pc-none {
    display: none;
  }
}

.u-text__center {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

:root {
  --color__navi-university--primary:#229d51;
  --color__navi-university--dark:#12522b;
  --color__navi-highschool--primary:#ed5d7a;
  --color__navi-highschool--dark:#581925;
}

.l-navi__wrapper.school {
  background-color: #e1dfe0;
  padding: 42px 0;
}

.l-navi__wrapper.school-list {
  background-color: #ffffff;
  padding: 0;
}
@media (min-width: 768px) {
  .l-navi__wrapper.school-list {
    padding: 42px 0;
  }
}

.mainimage-box {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.l-navi__wrapper .mainimage-box {
  padding: 0;
}
@media (min-width: 768px) {
  .l-navi__wrapper .mainimage-box {
    padding: 0 24px;
  }
}

.mainimage-box.medical {
  box-shadow: none;
  padding: 0;
}
@media (min-width: 768px) {
  .mainimage-box.medical {
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
    margin: 0 auto 2em auto;
  }
}
@media (min-width: 1024px) {
  .mainimage-box.medical {
    margin: 2em auto;
  }
}

#feas_1_0 {
  background-color: #ffffff;
}

.byoin-book-title {
  background-color: #62B0E3;
  font-weight: 700;
  color: #ffffff;
  height: 60px;
  border-radius: 13px;
  margin-bottom: 30px;
  text-align: left;
  font-size: 1.5em;
  padding-left: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.byoin-book-title-02 {
  background-color: #F4B4C9;
  font-weight: 700;
  color: #ffffff;
  height: 60px;
  border-radius: 13px;
  margin-bottom: 30px;
  text-align: left;
  font-size: 1.5em;
  padding-left: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.byoin-book-title h2, .byoin-book-title-02 h2 {
  line-height: 60px;
}

/* link */
.banner-box {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  margin-top: 35px;
  margin-bottom: 80px;
}

/* movie */
.p-navi__movie-container {
  max-width: 768px;
  width: calc(100% - 40px);
  display: grid;
  grid-row: inherit;
  gap: 2em;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .p-navi__movie-container {
    max-width: 1420px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.movie_wrap {
  width: 100%;
  margin: 0 auto;
  margin-top: calc(var(--margin-title) / 2);
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}

.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-navi__button-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1024px;
  gap: clamp(8px, 3vw, 32px);
  padding: 24px;
}

.p-navi__message-box {
  display: grid;
  gap: 42px;
  max-width: 1024px;
  padding: 42px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-navi__message-box {
    gap: 0;
  }
}

.l-navi__sec {
  width: 100%;
  padding: 3em 1em;
}

.l-navi__school-list--university {
  display: grid;
  grid-template-columns: auto;
  gap: 0.2em 3em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size_m);
  padding-top: 2em;
}
.l-navi__school-list--university li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  padding-left: 1em;
  text-indent: -1em;
}
.l-navi__school-list--university li::before {
  content: "●";
  font-size: 0.8em;
  margin-right: 0.2em;
}
.l-navi__school-list--university li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1em;
  height: 2px;
  width: calc(100% - 1em);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  .l-navi__school-list--university li:hover::after {
    transform: scale(1, 1);
  }
}
.l-navi__school-list--university li {
  color: var(--color__navi-university--dark);
}
.l-navi__school-list--university li::before {
  color: var(--color__navi-university--primary);
}
.l-navi__school-list--university li::after {
  background-color: var(--color__navi-university--primary);
}
@media (min-width: 600px) {
  .l-navi__school-list--university {
    grid-template-columns: repeat(2, auto);
  }
}

.l-navi__school-list--highschool {
  display: grid;
  grid-template-columns: auto;
  gap: 0.2em 3em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size_m);
  padding-top: 2em;
}
.l-navi__school-list--highschool li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  padding-left: 1em;
  text-indent: -1em;
}
.l-navi__school-list--highschool li::before {
  content: "●";
  font-size: 0.8em;
  margin-right: 0.2em;
}
.l-navi__school-list--highschool li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1em;
  height: 2px;
  width: calc(100% - 1em);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  .l-navi__school-list--highschool li:hover::after {
    transform: scale(1, 1);
  }
}
.l-navi__school-list--highschool li {
  color: var(--color__navi-highschool--dark);
}
.l-navi__school-list--highschool li::before {
  color: var(--color__navi-highschool--primary);
}
.l-navi__school-list--highschool li::after {
  background-color: var(--color__navi-highschool--primary);
}
@media (min-width: 450px) {
  .l-navi__school-list--highschool {
    grid-template-columns: repeat(2, auto);
  }
}
@media (min-width: 650px) {
  .l-navi__school-list--highschool {
    grid-template-columns: repeat(3, auto);
  }
}/*# sourceMappingURL=common.css.map */