@charset "UTF-8";
@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner（sass変数を使用） */
  /* z-index */
  --z-index-header: 100;
  --z-index-modal: 200;
  --z-index-overlay: 900;
  /* color */
  --color-base: #fff;
  --color-text: #333333;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #ec6d6f;
  --color-secondary: #ef9057;
  --color-orange: #de8430;
  /* font-family */
  --ff-base: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --ff-zen: "Zen Maru Gothic", sans-serif;
  --ff-en: "Lato", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 110px;
}
@media screen and (width <= 1023px) {
  :root {
    --header-height: 70px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print {
  :where(pre) {
    /* Prevent text wrapping in print media. */
    text-wrap-mode: unset;
  }
}
/* ======================================================
//  MARK: Text-level semantics
// ====================================================== */
:where(em:lang(ja)) {
  /* In Japanese, emphasis is commonly represented by bold text, so `font-weight: bolder;` is set by default. */
  font-weight: bolder;
}

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

:where(u, s, del, ins) {
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

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

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

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

@media (forced-colors: active) {
  :where(mark) {
    /*
    * In forced-colors mode, the color of the mark element may not change, which can be problematic. Use system colors in forced-colors mode.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
    background-color: Highlight;
    color: HighlightText;
  }
}
@media print {
  :where(mark) {
    /*
    * Not all printers support color, and users might print in grayscale.
    * It's worth adding a non-disruptive style that scales with the text, as an alternative to relying only on background color.
    * @see https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkPrint
    */
    border-width: 1px;
    border-style: dotted;
  }
}
/* ======================================================
//  MARK: Links
// ====================================================== */
:where(a) {
  /*
  * The default `color` from the UA stylesheet is rarely used as is, so it's reset to allow inheritance.
  * In Firefox on iOS, the user agent stylesheet’s text color is applied even when the text is not a link.
  * @see https://github.com/darkreader/darkreader/issues/9836
  */
  color: unset;
}

:where(a:any-link) {
  /*
  * While link underlines can be useful, they are often obstructive.
  * They are disabled by default.
  * If needed, restore them using `text-decoration-line: revert;`.
  */
  text-decoration-line: unset;
  /* Set the underline thickness to the font's default thickness. */
  text-decoration-thickness: from-font;
  /* Set the underline inset to `auto` and separate only the horizontal lines when underlines are consecutive. */
  text-decoration-inset: auto;
}

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

:where(img, svg, picture, video, canvas, model, iframe, embed, object) {
  /*
  * Automatically adjust block size based on content.
  * Exclude the <audio> element as it disappears when block-size is auto.
  * @see https://github.com/tak-dcxi/kiso.css/issues/5
  */
  block-size: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(p) {
  margin: 0;
}

html {
  font-size: 100%;
}

body {
  color: var(--color-text);
  font-family: var(--ff-base);
  font-weight: 500;
  letter-spacing: 0.04em;
}

a[href^=tel] {
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
  transition: opacity var(--duration) ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img,
svg {
  vertical-align: middle;
}

picture {
  display: block;
}

video,
object {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

input,
textarea,
select {
  font: inherit;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
}

button {
  margin: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

textarea {
  field-sizing: content;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-index-header);
}

.l-inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.l-inner-narrow {
  width: min(100%, 56.25rem);
}
@media screen and (max-width: 767px) {
  .l-inner-narrow {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.c-bottom-fixed-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav {
    display: block;
    position: fixed;
    z-index: 111;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(110%);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s step-end;
  }
  .c-bottom-fixed-nav.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s step-start;
  }
}
@media screen and (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .c-bottom-fixed-nav.is-visible {
    transition-duration: 0.01ms;
  }
}
@media screen and (max-width: 767px) {
  body.admin-bar .c-bottom-fixed-nav {
    bottom: 46px;
  }
}

.c-bottom-fixed-nav__inner {
  display: flex;
  width: 100%;
  padding: 1.125rem max(1.5rem, env(safe-area-inset-right)) 1.125rem max(1.5rem, env(safe-area-inset-left));
  border-radius: 1.75rem 1.75rem 0 0;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 52%, #e85767 100%);
  box-shadow: 0 -0.5rem 1.75rem rgba(13, 41, 54, 0.14);
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__inner {
    padding: 0.6875rem max(0.75rem, env(safe-area-inset-right)) max(0.5rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    border-radius: 1.5rem 1.5rem 0 0;
  }
}

.c-bottom-fixed-nav__link {
  display: flex;
  position: relative;
  flex: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  padding-inline: 0.75rem;
  color: var(--color-white);
  font-family: var(--ff-base);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__link {
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
    padding-inline: 0.375rem;
  }
}
.c-bottom-fixed-nav__link::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.55);
}
.c-bottom-fixed-nav__link:last-child::after {
  display: none;
}
@media (any-hover: hover) {
  .c-bottom-fixed-nav__link:hover {
    opacity: 0.94;
  }
}
.c-bottom-fixed-nav__link:focus-visible {
  outline: 0.125rem solid var(--color-white);
  outline-offset: 0.1875rem;
  border-radius: 0.375rem;
}

.c-bottom-fixed-nav__icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.c-bottom-fixed-nav__icon-wrap img {
  display: block;
  height: auto;
  filter: brightness(0) invert(1);
}
.c-bottom-fixed-nav__icon-wrap--tel {
  width: 1.75rem;
  height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__icon-wrap--tel {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.c-bottom-fixed-nav__icon-wrap--reserve {
  width: 1.8125rem;
  height: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__icon-wrap--reserve {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.c-bottom-fixed-nav__icon {
  display: block;
  flex-shrink: 0;
  background-color: var(--color-white);
}

.c-bottom-fixed-nav__icon--pin {
  width: 1.25rem;
  height: 1.625rem;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='24' viewBox='0 0 18 24'%3E%3Cpath fill='%23fff' d='M12.13 8.62c0-1.65-1.4-3-3.13-3s-3.13 1.35-3.13 3 1.4 3 3.13 3 3.13-1.35 3.13-3zm-4.7 0c0-.83.7-1.5 1.57-1.5s1.57.67 1.57 1.5-.7 1.5-1.57 1.5-1.57-.67-1.57-1.5zM8.99 24c.22 0 .44-.09.59-.25.35-.38 8.45-9.26 8.43-15.11-.02-4.76-4.06-8.63-9-8.63S0 3.87 0 8.64c0 5.85 8.05 14.73 8.4 15.11.15.16.35.25.59.26zM9 1.5c4.08 0 7.42 3.2 7.43 7.14.02 4.43-5.59 11.3-7.45 13.45-1.85-2.15-7.42-9.01-7.42-13.45,0-3.94 3.34-7.14 7.43-7.14z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='24' viewBox='0 0 18 24'%3E%3Cpath fill='%23fff' d='M12.13 8.62c0-1.65-1.4-3-3.13-3s-3.13 1.35-3.13 3 1.4 3 3.13 3 3.13-1.35 3.13-3zm-4.7 0c0-.83.7-1.5 1.57-1.5s1.57.67 1.57 1.5-.7 1.5-1.57 1.5-1.57-.67-1.57-1.5zM8.99 24c.22 0 .44-.09.59-.25.35-.38 8.45-9.26 8.43-15.11-.02-4.76-4.06-8.63-9-8.63S0 3.87 0 8.64c0 5.85 8.05 14.73 8.4 15.11.15.16.35.25.59.26zM9 1.5c4.08 0 7.42 3.2 7.43 7.14.02 4.43-5.59 11.3-7.45 13.45-1.85-2.15-7.42-9.01-7.42-13.45,0-3.94 3.34-7.14 7.43-7.14z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__icon--pin {
    width: 1.0625rem;
    height: 1.375rem;
  }
}

.c-bottom-fixed-nav__stack {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__stack {
    align-items: center;
    text-align: center;
  }
}

.c-bottom-fixed-nav__tel {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__tel {
    font-size: 0.625rem;
  }
}

.c-bottom-fixed-nav__hours {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  opacity: 0.95;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__hours {
    font-size: 0.625rem;
  }
}

.c-bottom-fixed-nav__label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__label {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-bottom-fixed-nav__label--small {
    font-size: 0.625rem;
  }
}

/**
 * パンくずリスト（c-breadcrumb）
 *
 * 構造:
 *   .c-breadcrumb（外枠）
 *   .c-breadcrumb__inner（l-inner）
 *   .c-breadcrumb__nav > .c-breadcrumb__list > .c-breadcrumb__item
 * 区切りは .c-breadcrumb__item + .c-breadcrumb__item::before で表示
 */
.c-breadcrumb {
  padding-block: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
  }
}

.c-breadcrumb__inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__inner {
    width: fit-content;
    margin-inline: auto 0;
    padding-inline: 1.25rem;
  }
}

.c-breadcrumb__list {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: var(--color-text, #333);
  font-size: 0.875rem;
  /* 2番目以降の項目の前に矢印を表示 */
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item {
    font-size: 0.75rem;
  }
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  display: inline-block;
  margin: 0 0.25rem;
  flex-shrink: 0;
}

.c-breadcrumb__link {
  min-width: 0;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.125rem;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18.75rem;
  padding: 0.9375rem 1.5rem;
  border: none;
  border-radius: 100vmax;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #f5a86a 0%, #f06b9a 100%);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-button {
    min-width: min(100%, 18.75rem);
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }
}

.c-consultation-hours__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 0.875rem;
}

.c-consultation-hours__title-icon {
  display: flex;
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
}

.c-consultation-hours__title-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.c-consultation-hours__table-scroll {
  overflow-x: auto;
  border-radius: 0.375rem;
  border: 1px solid #ffc9c9;
  border-block-end: none;
  background-color: var(--color-white);
}

.c-consultation-hours__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.c-consultation-hours__col--corner {
  width: 11.125rem;
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__col--corner {
    width: 8.75rem;
  }
}

.c-consultation-hours__th {
  padding: 1rem 0.375rem;
  border-block-end: 1px solid #ffc9c9;
  border-inline-start: 1px solid #ffc9c9;
  background-color: #fdeeee;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__th {
    font-size: 0.9375rem;
    padding: 1rem 0;
  }
}

.c-consultation-hours__th--corner {
  border-inline-start: none;
  background-color: #fdeeee;
}

@media screen and (max-width: 767px) {
  .c-consultation-hours__th--last {
    font-size: 0.625rem;
    letter-spacing: 0;
  }
  .c-consultation-hours__th--last span {
    letter-spacing: -0.32em;
  }
}

.c-consultation-hours__row-head {
  padding: 0.75rem 0.875rem;
  border-block-end: 1px solid #ffc9c9;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .c-consultation-hours__row-head {
    padding-inline: 0.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__row-head {
    padding: 0.375rem 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.3;
  }
}

.c-consultation-hours__row-head-note {
  display: block;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__row-head-note {
    font-size: 0.5rem;
  }
}

.c-consultation-hours__cell {
  padding: 0.75rem 0.375rem;
  border-block-end: 1px solid #ffc9c9;
  border-inline-start: 1px solid #ffc9c9;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__cell {
    padding: 0.5rem 0.3125rem;
  }
}

.c-consultation-hours__cell--dash {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
}
.c-consultation-hours__cell--dash::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.875rem;
  height: 0.0625rem;
  border-radius: 50%;
  background: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__cell--dash::before {
    width: 0.75rem;
  }
}

.c-consultation-hours__dot {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__dot {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.c-consultation-hours__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__footer {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-block-start: 0.75rem;
  }
}

.c-consultation-hours__notes {
  flex: 1;
  min-width: 0;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__notes {
    width: 100%;
    font-size: 0.75rem;
  }
}

.c-consultation-hours__note {
  text-indent: hanging 1em;
}

.c-consultation-hours__note + .c-consultation-hours__note {
  margin-block-start: 0.1875rem;
}

.c-consultation-hours__actions {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__actions {
    justify-content: center;
    width: 100%;
  }
}

.c-consultation-hours__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.5625rem;
  border-radius: 100vmax;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  box-shadow: 0 4px 18px rgba(236, 109, 111, 0.28);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.25s ease, box-shadow 0.25s ease;
}
@media screen and (max-width: 767px) {
  .c-consultation-hours__cta {
    gap: 1.375rem;
    min-width: 17.5rem;
    min-height: 4.0625rem;
    padding: 0.625rem 1.375rem;
  }
}
@media (any-hover: hover) {
  .c-consultation-hours__cta:hover {
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  }
}

.c-consultation-hours__cta-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.c-consultation-hours__cta-icon--schedule {
  width: 1.375rem;
  height: 1.1875rem;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='19' viewBox='0 0 22 19'%3E%3Cpath fill='%23fff' d='M6.88 6.79h-2.75c-.38 0-.69.3-.69.68v2.71c0 .37.31.68.69.68h2.75c.38 0 .69-.3.69-.68v-2.71c0-.37-.31-.68-.69-.68zm-.69 2.71h-1.38v-1.36h1.38v1.36zm6.19-2.71h-2.75c-.38 0-.69.3-.69.68v2.71c0 .37.31.68.69.68h2.75c.38 0 .69-.3.69-.68v-2.71c0-.37-.31-.68-.69-.68zm-.69 2.71h-1.38v-1.36h1.38v1.36zm6.19-2.71h-2.75c-.38 0-.69.3-.69.68v2.71c0 .37.31.68.69.68h2.75c.38 0 .69-.3.69-.68v-2.71c0-.37-.31-.68-.69-.68zm-.69 2.71h-1.38v-1.36h1.38v1.36zM21.31 1.36h-2.75v-.68c0-.37-.31-.68-.69-.68h-2.06c-.38 0-.69.3-.69.68v.68H6.88v-.68c0-.37-.31-.68-.69-.68h-2.06c-.38 0-.69.3-.69.68v.68H.69c-.38 0-.69.3-.69.68v16.29c0 .37.31.68.69.68h20.62c.38 0 .69-.3.69-.68V2.04c0-.37-.31-.68-.69-.68zM16.5 1.36h.69v1.36h-.69v-1.36zM4.81 1.36h.69v1.36h-.69v-1.36zM20.62 17.64H1.38V2.71h2.06v.68c0 .37.31.68.69.68h2.06c.38 0 .69-.3.69-.68v-.68h8.25v.68c0 .37.31.68.69.68h2.06c.38 0 .69-.3.69-.68v-.68h2.06v14.93zm-13.74-5.43h-2.75c-.38 0-.69.3-.69.68v2.71c0 .37.31.68.69.68h2.75c.38 0 .69-.3.69-.68v-2.71c0-.37-.31-.68-.69-.68zm-.69 2.72h-1.38v-1.36h1.38v1.36zm6.19-2.72h-2.75c-.38 0-.69.3-.69.68v2.71c0 .37.31.68.69.68h2.75c.38 0 .69-.3.69-.68v-2.71c0-.37-.31-.68-.69-.68zm-.69 2.72h-1.38v-1.36h1.38v1.36zm6.19-2.72h-2.75c-.38 0-.69.3-.69.68v2.71c0 .37.31.68.69.68h2.75c.38 0 .69-.3.69-.68v-2.71c0-.37-.31-.68-.69-.68zm-.69 2.72h-1.38v-1.36h1.38v1.36z'/%3E%3C/svg%3E ");
}

.flatpickr-calendar {
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem oklch(from var(--color-text) l c h/12%);
  font-family: var(--ff-base);
}
.flatpickr-calendar::before, .flatpickr-calendar::after {
  display: none;
}

.flatpickr-months .flatpickr-month {
  color: var(--color-text);
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: var(--color-text);
  font-weight: 500;
}

.flatpickr-weekdays {
  background: var(--color-gray);
}

span.flatpickr-weekday {
  color: var(--color-text);
  font-weight: 500;
}

.flatpickr-day {
  color: var(--color-text);
}
.flatpickr-day.today {
  border-color: var(--color-accent);
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .flatpickr-day:hover {
    border-color: var(--color-primary);
    background: oklch(from var(--color-primary) l c h/15%);
    color: var(--color-text);
  }
}

.flatpickr-day.flatpickr-disabled {
  color: oklch(from var(--color-text) l c h/35%);
}

.flatpickr-monthSelect-month {
  color: var(--color-text);
}
.flatpickr-monthSelect-month.selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .flatpickr-monthSelect-month:hover {
    border-color: var(--color-primary);
    background: oklch(from var(--color-primary) l c h/15%);
    color: var(--color-text);
  }
}

.p-form--postpartum .js-flatpickr-preferred,
.p-form--postpartum .js-flatpickr-past-use {
  cursor: pointer;
}

.c-link-cards {
  margin-block: 7.5rem 7.5rem;
  padding-block: 3.5rem 3.5rem;
  background-image: url("../images/image_related_pages_bg.webp");
  background-repeat: repeat;
  background-size: 16rem 15.75rem;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .c-link-cards {
    margin-block: 0 3.75rem;
    padding-block: 2.5rem 2.5rem;
  }
}

.c-link-cards__inner {
  width: min(100%, 54.8125rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-link-cards__inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.c-link-cards__title {
  color: var(--color-primary);
  font-family: var(--ff-base);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.c-link-cards__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.125rem 0.75rem;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-link-cards__list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.c-link-cards__item {
  display: flex;
  min-width: 0;
}

.c-link-cards__card {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--ff-zen);
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-link-cards__card {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .c-link-cards__card:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  }
}

.c-link-cards__label {
  flex: 1;
  min-width: 0;
}

.c-link-cards__arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.c-link-cards__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.c-link-cards--3 .c-link-cards__list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .c-link-cards--3 .c-link-cards__list {
    grid-template-columns: 1fr;
  }
}

.c-notice__item {
  border: 3px solid #e9eeef;
  border-radius: 0.5rem;
}
.c-notice__item.is-opened .c-notice__item-summary-inner::after {
  rotate: 90deg;
}

.c-notice__item-summary {
  display: block;
  width: 100%;
  color: var(--color-text);
}
.c-notice__item-summary::-webkit-details-marker {
  display: none;
}

.c-notice__item-summary-inner {
  display: block;
  position: relative;
  padding: 1.25rem 1.875rem;
  text-align: center;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner {
    padding: 1.25rem;
  }
}
.c-notice__item-summary-inner::before, .c-notice__item-summary-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  border-radius: 100vmax;
  background: var(--color-text);
}
.c-notice__item-summary-inner::before {
  right: 2.5rem;
  width: 1rem;
  height: 0.125rem;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner::before {
    right: 1.25rem;
    width: 1.25rem;
  }
}
.c-notice__item-summary-inner::after {
  right: 2.9375rem;
  width: 0.125rem;
  height: 1rem;
  rotate: 0deg;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-inner::after {
    height: 1.25rem;
    right: 1.8125rem;
  }
}
@media (any-hover: hover) {
  .c-notice__item-summary-inner:hover {
    cursor: pointer;
    background-color: color-mix(in srgb, var(--color-primary) 5%, white);
  }
}

.c-notice__item-summary-text {
  display: inline-block;
  position: relative;
  font-size: max(1.25rem, 8px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .c-notice__item-summary-text {
    display: inline-block;
    padding-inline: 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.c-notice__item-content {
  overflow: hidden;
}

.c-notice__item-content-inner {
  padding: 1.25rem 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-notice__item-content-inner {
    padding: 1rem 1.25rem;
  }
}

.c-notice__item-content-text {
  position: relative;
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .c-notice__item-content-text {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

.c-notice__item-content-text-item {
  padding-inline-start: 1rem;
  position: relative;
}
.c-notice__item-content-text-item::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  left: 0rem;
  top: 0.7em;
  border-radius: 50%;
}

/**
 * ページネーション共通コンポーネント
 *
 * 親（プロジェクト）から上書きする場合:
 *   - 呼び出し元で親クラスで wrap する（例: <div class="p-archive__pagination">...</div>）
 *   - プロジェクトの SCSS ではその wrapper クラスに --_pagination-* を設定する
 *   - 親の CSS ファイルに c-pagination のクラス名は書かない（コンポーネントのカプセル化）
 *
 * 上書き可能な変数: --_pagination-bg, --_pagination-text, --_pagination-text-hover,
 *   --_pagination-bg-hover, --_pagination-active-bg, --_pagination-active-text,
 *   --_pagination-border, --_pagination-border-hover
 */
.c-pagination {
  /* 色（ローカル変数。親の wrapper で上書き可能） */
  --_pagination-bg: var(--color-white, #fff);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-primary);
  --_pagination-bg-hover: transparent;
  --_pagination-active-bg: var(--color-white, #000);
  --_pagination-active-text: var(--color-primary, #fff);
  --_pagination-border: transparent;
  --_pagination-border-hover: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
  min-width: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--_pagination-border);
  background-color: var(--_pagination-bg);
  color: var(--_pagination-text);
  font-size: 1rem;
  font-family: var(--ff-zen);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    height: 2.5rem;
    min-width: 2.5rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]) {
    border-color: var(--_pagination-border-hover);
    background-color: var(--_pagination-bg-hover);
    color: var(--_pagination-text-hover);
  }
}

.c-pagination__item[data-state=current] {
  border-color: var(--_pagination-active-bg);
  background-color: var(--_pagination-active-bg);
  color: var(--_pagination-active-text);
}

.c-pagination__item[data-state=dots] {
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
.c-pagination__item[data-state=dots]:hover {
  border-color: transparent;
  background-color: transparent;
}

.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  font-weight: 500;
}

.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=disabled]:hover {
    border-color: var(--_pagination-border);
    background-color: var(--_pagination-bg);
    color: var(--_pagination-text);
  }
}

.c-pdf-downloads__inner {
  padding: 2.375rem 2rem;
  border-radius: 0.75rem;
  background-color: #f8fce8;
}
@media screen and (max-width: 767px) {
  .c-pdf-downloads__inner {
    padding: 1.5rem 1.25rem;
    border-radius: 1rem;
  }
}

.c-pdf-downloads__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 1.25rem 1.5625rem;
  width: min(100%, 52.0625rem);
  margin-inline: auto;
  padding-inline-start: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-pdf-downloads__list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.c-pdf-downloads__item {
  display: flex;
}

.c-pdf-downloads__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-block-size: 3.25rem;
  inline-size: 100%;
  padding-block: 0.875rem;
  padding-inline: 2.125rem 1.375rem;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  background-color: #fff;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-pdf-downloads__link {
    min-block-size: 3rem;
    padding-block: 0.75rem;
    padding-inline: 1.25rem 0.875rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .c-pdf-downloads__link:hover {
    border-color: #cfcfcf;
    background-color: #fafafa;
  }
}

.c-pdf-downloads__label {
  flex: 1;
  min-inline-size: 0;
}

.c-pdf-downloads__badge {
  flex-shrink: 0;
  padding-block: 0.3125rem;
  padding-inline: 0.75rem;
  border: 1px solid #b50d23;
  border-radius: 999px;
  color: #b50d23;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-related-pages {
  position: relative;
  padding-block: 2.875rem 3.375rem;
  margin-block: 5.6875rem 5.5625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-related-pages {
    padding-block: 2.5rem 2.5rem;
    margin-block: 3.75rem 3.75rem;
  }
}

.c-related-pages__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/image_related_pages_bg.webp");
  background-repeat: repeat;
  background-size: 16rem 15.75rem;
  background-position: center center;
  pointer-events: none;
}

.c-related-pages__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 71rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-related-pages__inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.c-related-pages__title {
  color: var(--color-primary);
  font-family: var(--ff-base);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-related-pages__title {
    font-size: 1.125rem;
  }
}

.c-related-pages__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.125rem 0.75rem;
  margin-block-start: 1.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-related-pages__list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.c-related-pages__item {
  display: flex;
  min-width: 0;
}

.c-related-pages__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-related-pages__link {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .c-related-pages__link:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 8px 5px rgba(226, 226, 226, 0.75);
  }
}

.c-related-pages__label {
  flex: 1;
  min-width: 0;
}

.c-related-pages__arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.c-related-pages__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.js-scrollable .scroll-hint-icon {
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.c-section-title {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  width: max-content;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    gap: 0.5rem;
  }
}
.c-section-title[data-align=center] {
  justify-items: center;
  text-align: center;
}
.c-section-title[data-align=left] {
  justify-items: start;
  text-align: left;
}
.c-section-title[data-align=right] {
  justify-items: end;
  text-align: right;
}

.c-section-title::after {
  content: "";
  display: block;
  width: 80%;
  height: 0.1875rem;
  background-color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .c-section-title::after {
    width: 60%;
  }
}

.c-section-title__main {
  color: var(--color-text);
  font-family: var(--ff-en);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: 2rem;
  }
}

.c-section-title__sub {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: 0.875rem;
  }
}

.c-text-media-deco {
  background-color: var(--color-base);
}

.c-text-media-deco__inner {
  margin-block: 4.5rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__inner {
    margin-block: 3rem 3.75rem;
  }
}
.c-text-media-deco__inner .c-title-main + .c-text-media-deco__holder {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__inner .c-title-main + .c-text-media-deco__holder {
    margin-block-start: 2rem;
  }
}

.c-text-media-deco__holder {
  position: relative;
}

.c-text-media-deco__grid {
  display: grid;
  align-items: flex-start;
  grid-template-columns: minmax(0, 1fr) 43.2525951557%;
  gap: 4.5rem 3.75rem;
  margin-inline: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .c-text-media-deco__grid {
    gap: 3rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-inline: 0;
  }
}

.c-text-media-deco__text-wrap {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__text-wrap {
    margin-block-start: 0;
  }
}
.c-text-media-deco__text-wrap--nomargin {
  margin-block-start: 0;
}

.c-text-media-deco__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.c-text-media-deco__check-list {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.5rem;
  list-style: none;
  padding-inline-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__check-list {
    margin-block-start: 1.25rem;
  }
}

.c-text-media-deco__check-item {
  position: relative;
  padding-inline-start: 1.25rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__check-item {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}
.c-text-media-deco__check-item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.45em;
  inset-inline-start: 0.0625rem;
  inline-size: 0.375rem;
  block-size: 0.75rem;
  border: 0.125rem solid var(--color-primary);
  border-block-start: none;
  border-inline-start: none;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__check-item::before {
    inset-block-start: 0.5em;
  }
}

.c-text-media-deco__cooperation {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__cooperation {
    margin-block-start: 2rem;
  }
}

.c-text-media-deco__cooperation-lead {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__cooperation-lead {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.c-text-media-deco__cooperation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.3125rem;
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__cooperation-grid {
    grid-template-columns: 1fr;
    gap: 0rem;
    margin-block-start: 0.75rem;
  }
}

.c-text-media-deco__cooperation-list {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__cooperation-list {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

.c-text-media-deco__cooperation-item {
  position: relative;
  padding-inline-start: 1.5rem;
  font-size: 0.875rem;
}
.c-text-media-deco__cooperation-item:before {
  content: "";
  position: absolute;
  inset-block-start: 0.65em;
  inset-inline-start: 0.5rem;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 100vmax;
  background-color: var(--color-primary);
}

.c-text-media-deco__image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 500/375;
  border-radius: 0.625rem;
  box-shadow: 0 0 8px 5px rgba(234, 185, 211, 0.5);
}

.c-text-media-deco__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.c-text-media-deco__deco {
  position: absolute;
  top: 8.75rem;
  right: -0.375rem;
  z-index: -1;
  inline-size: 11.0625rem;
  block-size: auto;
  aspect-ratio: 177/132;
  pointer-events: none;
}
@media screen and (max-width: 1439px) {
  .c-text-media-deco__deco {
    top: 6.875rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-text-media-deco__deco {
    top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__deco {
    top: 11.25rem;
    inline-size: 8.25rem;
    translate: 0 0;
  }
}

.c-text-media-deco__text-wrap:has(.c-text-media-deco__text br:nth-of-type(6)) .c-text-media-deco__deco {
  bottom: -2.1875rem;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco__text-wrap:has(.c-text-media-deco__text br:nth-of-type(6)) .c-text-media-deco__deco {
    bottom: -0.625rem;
  }
}

.c-text-media-deco__deco img {
  display: block;
  inline-size: 100%;
  block-size: auto;
}

.c-text-media-deco--wide .c-text-media-deco__grid {
  grid-template-columns: minmax(0, 1fr) 57.9584775087%;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco--wide .c-text-media-deco__grid {
    grid-template-columns: 1fr;
  }
}
.c-text-media-deco--wide .c-text-media-deco__image-wrap {
  aspect-ratio: 670/300;
}

.c-text-media-deco--no-image .c-text-media-deco__grid {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 56.25rem;
  margin-inline: auto;
}
.c-text-media-deco--no-image .c-text-media-deco__text-wrap {
  padding-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-text-media-deco--no-image .c-text-media-deco__text-wrap {
    padding-block-end: 1rem;
  }
}
.c-text-media-deco--no-image .c-text-media-deco__text {
  position: relative;
  z-index: 1;
}
.c-text-media-deco--no-image .c-text-media-deco__deco {
  top: auto;
  right: auto;
  inset-block-end: 0rem;
  inset-inline-end: 0rem;
  z-index: 0;
  translate: none;
}
@media screen and (max-width: 1439px) {
  .c-text-media-deco--no-image .c-text-media-deco__deco {
    top: auto;
  }
}
@media screen and (max-width: 1023px) {
  .c-text-media-deco--no-image .c-text-media-deco__deco {
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-text-media-deco--no-image .c-text-media-deco__deco {
    inset-block-end: -0.25rem;
    inset-inline-end: -0.5rem;
    inline-size: 8.25rem;
  }
}

.c-title-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-title-center__text {
  color: var(--color-text);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-title-center__text {
    font-size: 1.5rem;
  }
}

.c-title-center__line {
  display: block;
  inline-size: 3.75rem;
  block-size: 0.1875rem;
  margin-block-start: 0.75rem;
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-title-center__line {
    margin-block-start: 0.5rem;
  }
}

.c-title-main {
  position: relative;
  margin-block-end: 0.75rem;
  padding-block-end: 1.8125rem;
  padding-inline-start: 1.375rem;
  border-bottom: 0.0625rem solid #a6a6a7;
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.c-title-main:before {
  content: "";
  position: absolute;
  bottom: -0.15625rem;
  left: -0.125rem;
  width: 9.5rem;
  height: 0.3125rem;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #ef9057 0%, #ec6d80 100%);
}
@media screen and (max-width: 767px) {
  .c-title-main {
    padding-block-end: 1.125rem;
    padding-inline-start: 1.125rem;
    font-size: 1.125rem;
  }
}

.c-title-small {
  position: relative;
  margin-block-end: 0.75rem;
  padding-block-end: 1.5625rem;
  padding-inline-start: 1.75rem;
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-title-small {
    margin-inline: 0;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}
.c-title-small::before {
  content: "";
  position: absolute;
  inset-block-end: 0.3125rem;
  inset-inline: 0;
  block-size: 0.0625rem;
  background: linear-gradient(90deg, #ffc757 0%, #ec6d80 100%);
}
.c-title-small:after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  block-size: 0.0625rem;
  background: linear-gradient(90deg, #ffc757 0%, #ec6d80 100%);
}

.c-title-small--paddingnone {
  padding-inline-start: 0.5rem;
}

.c-title-small--large {
  font-size: 1.25rem;
}

.c-title-sub {
  position: relative;
  margin-block-end: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #dcefe7 0%, #dcefe7 52%, #FDBCBE 100%);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-title-sub:before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0.75rem;
  width: calc(100% - 1.5rem);
  height: 0.0625rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-title-sub {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

.c-under-intro {
  padding-block: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .c-under-intro {
    padding-block: 2.5rem 0;
  }
}

.c-under-intro__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-under-intro__text {
    font-size: 1rem;
    text-align: left;
  }
}

.c-under-intro--large .c-under-intro__text {
  font-size: 1.125rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .c-under-intro--large .c-under-intro__text {
    font-size: 0.9375rem;
    line-height: 1.85;
  }
}

.c-under-intro__catch {
  color: var(--color-primary);
  font-size: 1.625rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-under-intro__catch {
    font-size: 1.25rem;
  }
}

.c-under-intro__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-under-intro__body {
    margin-block-start: 1.75rem;
    gap: 1rem;
  }
}

.p-4d-echo-about {
  padding-block: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-about {
    padding-block: 2.5rem 0;
  }
}

.p-4d-echo-about__inner {
  display: flex;
  flex-direction: column;
}

.p-4d-echo-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 41.6666666667%) minmax(0, 1fr);
  gap: 3.75rem 3.25rem;
  align-items: start;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-about__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 2rem;
  }
}

.p-4d-echo-about__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
  box-shadow: 0 0 0.5rem 0.3125rem rgba(234, 185, 211, 0.5);
}
@media screen and (max-width: 767px) {
  .p-4d-echo-about__visual {
    order: 1;
  }
}

.p-4d-echo-about__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-4d-echo-about__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .p-4d-echo-about__content {
    margin-block-start: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-4d-echo-about__content {
    order: 2;
    margin-block-start: 0;
  }
}

.p-4d-echo-about__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.89;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-about__text {
    font-size: 1rem;
    line-height: 1.85;
  }
}

.p-4d-echo-compare {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-compare {
    margin-block-start: 1rem;
  }
}

.p-4d-echo-compare__inner {
  display: flex;
  flex-direction: column;
}

.p-4d-echo-compare__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-block-start: 3rem;
  padding-inline-start: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-4d-echo-compare__list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-4d-echo-compare__list {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-block-start: 2rem;
  }
}

.p-4d-echo-compare__card {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
  background-color: var(--color-white);
  border: 0.0625rem solid #eee;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.02);
}
.p-4d-echo-compare__card .c-title-sub {
  margin-block-end: 0;
}

.p-4d-echo-compare__content {
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-compare__content {
    padding: 1.5rem;
  }
}

.p-4d-echo-compare__visual {
  overflow: hidden;
  aspect-ratio: 500/375;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-compare__visual {
    aspect-ratio: 343/258;
  }
}

.p-4d-echo-compare__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-4d-echo-message {
  position: relative;
  margin-block-start: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-message {
    margin-block-start: 1.25rem;
  }
}
.p-4d-echo-message::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  inline-size: 51.25rem;
  block-size: auto;
  aspect-ratio: 820/400;
  background: url("../images/image_4d_echo_message_bg.webp") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-message::before {
    background-size: 100% 100%;
    inline-size: min(500px, 94%);
    block-size: 100%;
    opacity: 0.5;
  }
}

.p-4d-echo-message__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-message__inner {
    width: min(80%, 460px);
    padding-block: min(25.641025641vw, 100px);
  }
}

.p-4d-echo-message__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-message__heading {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.p-4d-echo-message__heading-icon {
  inline-size: 3.25rem;
  block-size: 3.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='52' height='62' viewBox='0 0 52 62'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: url(%23grad-2); %7D .cls-2 %7B fill: url(%23grad-3); %7D .cls-3 %7B fill: url(%23grad-1); %7D %3C/style%3E%3ClinearGradient id='grad-1' x1='0' y1='31' x2='50.83' y2='31' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ef9057'/%3E%3Cstop offset='1' stop-color='%23ec6d80'/%3E%3C/linearGradient%3E%3ClinearGradient id='grad-2' x1='49.38' y1='43.24' x2='52' y2='43.24' xlink:href='%23grad-1'/%3E%3ClinearGradient id='grad-3' x1='22.07' y1='22.11' x2='26.13' y2='22.11' xlink:href='%23grad-1'/%3E%3C/defs%3E%3Cg%3E%3Cpath class='cls-3' d='M23.97,61.92c-2.75-.18-6.15-.67-7.55-3.22-.26-.47-.59-1.95-.72-2.09s-2.11-1.07-2.52-1.33c-.78-.48-1.52-1.04-2.21-1.64-.34-.15-.64.18-.97.28-4.3,1.29-8.31-2.14-7.14-6.35.38-1.38,1.28-2.23,2.39-3.1-.43-1.95-.78-4.05-.71-6.05.01-.28.18-.55.13-.84s-1.02-.78-1.33-1.03C-2.97,31.26.2,21.59,8.32,20.47c-2.29-5.97-1.47-12.86,3.72-17.17,5.75-4.77,14.23-3.94,20.33-.24,8.27,5.02,13.12,15.75,7.89,24.42,3.67,1.54,7.23,4.41,9.32,7.7.59.94,2.08,3.03.58,3.77-1.65.81-2.48-1.98-3.23-3.04-2.46-3.48-6.46-6-10.58-7.34-.54,4.1-3.2,7.64-6.98,9.57-1.17.59-2.43.89-3.58,1.41-1.09.49-1.73,1.42-.93,2.5.53.71,1.43.57,2.2.79,3.63,1.03,6.19,3.57,6.64,7.24,2.83-1.11,5.48-3.5,6.04-6.48.16-.82-.16-2.21,1.22-2.34,1.88-.18,1.48,2.29,1.23,3.36-.71,3.08-3.36,5.68-6.14,7.17-3.08,1.65-6.65,2.32-10.17,2.17l-.9,5.43c8.84.49,18.07-2.51,22.74-10.07.56-.91.87-2.58,2.47-1.92,1.42.59.09,2.69-.41,3.54-3.89,6.56-12.75,10.52-20.39,11-1.56.1-3.87.1-5.43,0ZM36.25,25.88c.07.05,1.54.5,1.61.46,5.47-8.52-1.27-19.54-10.2-22.76C17.16-.21,7.74,6.52,10.13,17.35c.25,1.11.64,2.18,1.12,3.22.86.08,1.66.38,2.44.71,1.74-1.32,2.71-3.47,2.59-5.59-.05-.95-.75-2.23.45-2.82.7-.34,3.03-.05,4.01-.15,1.15-.12,1.76-.68,2.76-.99,3.48-1.07,6.62.65,8.48,3.43,1.62,2.42,1.87,5.24.96,7.97,1.26.2,2.17.92,2.88,1.9.14.2.33.78.43.85ZM18.93,15.27c.14,2.52-.7,4.85-2.28,6.83,2.26,2.47,4.24,4.66,8.02,4.42,5.97-.38,8.29-7.77,3.78-11.49-3.04-2.51-4.82.02-7.82.25-.55.04-1.15-.04-1.71,0ZM8.93,22.92c-5.01.45-7.85,5.71-5.4,9.94,2.72,4.7,10.06,4.37,12.37-.49-.21-.27-.57-.14-.88-.24-1.11-.35-1.21-1.84-.16-2.33.78-.37,1.77.49,1.67-.93-.23-3.56-3.98-6.28-7.6-5.95ZM16.27,54.07c.93-2.27,3.26-3.34,5.74-3.14,2.96.24,4.47.83,7.68.34.62-.1,1.51-.07,1.46-.75-.1-1.55-1.15-3.18-2.39-4.13-2.2-1.69-6.13-.93-6.76-4.4-.83-4.6,3.69-4.69,6.62-6.36s5.09-4.82,5.19-8.08c.07-2.37-2.8-2.6-3.13-.7-.38,2.2-.31,3.1-1.93,4.92-3.03,3.43-7.52,3.89-11.73,5.08-3.26.92-6.33,2.57-9.84,1.63-.05,1.75.15,3.5.56,5.2.17.21.89.09,1.23.15,3.95.67,5.79,4.79,3.76,8.06,1.16.76,2.23,1.63,3.53,2.18ZM27.76,28.32c-2.02.86-4.25.95-6.37.36-.87-.24-1.62-.67-2.46-.97.6,2.05.11,4.3-.88,6.16,3.65-.66,8.42-1.77,9.72-5.56ZM7.41,46.36c-3.03.5-2.75,5.42.73,5.38,3.93-.04,3.74-6.12-.73-5.38ZM23.21,53.71c-1.84-.62-4.27-.35-4.73,1.8-.53,2.46,1.63,3.54,3.85,3.63l.88-5.43Z'/%3E%3Cpath class='cls-1' d='M50.32,42.01c1.46-.32,2.33,1.51,1.09,2.25-1.85,1.1-2.9-1.86-1.09-2.25Z'/%3E%3Cpath class='cls-2' d='M24.7,20.13c1.07-.13,1.51.85,1.42,1.73-.23,2.29-4.12,3.2-4.05.97.04-1.22,1.04-.97,1.4-1.33.32-.31.18-1.25,1.23-1.37Z'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-message__heading-icon {
    inline-size: 2rem;
    block-size: 2.25rem;
  }
}

.p-4d-echo-message__title {
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-message__title {
    font-size: 1.0625rem;
    text-align: center;
  }
}

.p-4d-echo-message__text {
  margin-block-start: 1.5rem;
  max-inline-size: 33.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-message__text {
    margin-block-start: 1.25rem;
    font-size: 0.9375rem;
    text-align: start;
  }
}

.p-4d-echo-reservation {
  margin-block: 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation {
    margin-block: 1.5rem 3rem;
  }
}

.p-4d-echo-reservation__inner {
  display: flex;
  flex-direction: column;
}

.p-4d-echo-reservation__block {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation__block {
    margin-block-start: 2rem;
  }
}

.p-4d-echo-reservation__section-title {
  padding: 1.25rem 1.5rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation__section-title {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
  }
}

.p-4d-echo-reservation__list {
  display: flex;
  flex-direction: column;
  margin-block-start: 0;
  width: min(100%, 62.5rem);
  margin-inline: auto;
}

.p-4d-echo-reservation__row {
  display: grid;
  grid-template-columns: minmax(7rem, 30%) minmax(0, 1fr);
  gap: 1.25rem 2.5rem;
  padding: 1.25rem 0.5rem;
  border-block-end: 0.0625rem solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation__row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-block: 1rem;
  }
}

.p-4d-echo-reservation__term {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation__term {
    font-size: 1rem;
  }
}

.p-4d-echo-reservation__value {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation__value {
    font-size: 1rem;
  }
}

.p-4d-echo-reservation__note {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation__note {
    font-size: 0.8125rem;
  }
}

.p-4d-echo-reservation__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.4375rem 1.375rem;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #31cfe9 0%, #fe8395 100%);
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-4d-echo-reservation__reserve:hover {
    opacity: 0.85;
  }
}

.p-4d-echo-reservation__reserve-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-4d-echo-reservation__reserve-icon img {
  display: block;
  width: 1.4375rem;
  height: auto;
}

.p-4d-echo-reservation__reserve-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-4d-echo-reservation__reserve + .p-4d-echo-reservation__note {
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation__reserve + .p-4d-echo-reservation__note {
    margin-block-start: 0.625rem;
  }
}

.p-4d-echo-reservation__bring-list {
  display: flex;
  flex-direction: column;
  padding-inline-start: 0;
  list-style: none;
}

.p-4d-echo-reservation__bring-item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-4d-echo-reservation__bring-item {
    font-size: 0.9375rem;
  }
}
.p-4d-echo-reservation__bring-item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.75em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 100vmax;
  background-color: var(--color-primary);
}

.p-about-greeting {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about-greeting {
    margin-block: 3rem;
  }
}

.p-about-greeting__inner {
  display: flex;
  flex-direction: column;
}

.p-about-greeting__layout {
  display: grid;
  grid-template-columns: minmax(0, 41.6666666667%) minmax(0, 1fr);
  gap: 3.75rem 3.25rem;
  align-items: start;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-about-greeting__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 2rem;
  }
}

.p-about-greeting__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
}
@media screen and (max-width: 767px) {
  .p-about-greeting__visual {
    order: 1;
  }
}

.p-about-greeting__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.p-about-greeting__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-about-greeting__content {
    order: 2;
  }
}

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

.p-about-greeting__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-about-greeting__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.p-about-greeting__signature {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-about-greeting__signature {
    margin-block-start: 0.25rem;
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

.p-about-greeting__button {
  margin-block-start: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-greeting__button {
    margin-block-start: 2rem;
  }
}

.p-about-intro-links {
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about-intro-links {
    margin-block-end: 3rem;
  }
}

.p-about-intro-links .p-about-intro__links {
  margin-block-start: 0;
}

.p-about-intro__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-about-intro__links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-about-intro__links-item {
  display: flex;
  min-width: 0;
}

.p-about-intro__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-about-intro__link {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
.p-about-intro__link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-about-intro__link:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 8px 5px rgba(226, 226, 226, 0.75);
  }
}

.p-about-intro__link-label {
  flex: 1;
  min-width: 0;
}

.p-about-intro__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-about-intro__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-access-bus {
  padding-block: 0rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-access-bus {
    padding-block: 0rem 3.5rem;
  }
}

.p-access-bus__body {
  padding-inline: 1.25rem;
}

.p-access-bus__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem 3.75rem;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-access-bus__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-block-start: 1.5rem;
  }
}

.p-access-bus__item {
  min-inline-size: 0;
}

.p-access-bus__name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-bus__name {
    font-size: 1rem;
  }
}

.p-access-bus__icon {
  flex-shrink: 0;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='30' height='20' viewBox='0 0 30 20' fill='%23333333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.9067 0C24.5201 -0.000100003 25.1254 0.140901 25.6756 0.412099C26.2259 0.683296 26.7064 1.07742 27.08 1.564L27.2347 1.78133L28.6613 3.92133C29.0439 4.49495 29.2717 5.15772 29.3227 5.84533L29.3333 6.14133V14.6667C29.3335 15.3394 29.0795 15.9874 28.622 16.4807C28.1646 16.974 27.5375 17.2762 26.8667 17.3267L26.6667 17.3333H26.44C26.1712 18.0937 25.6789 18.7551 25.0276 19.2308C24.3764 19.7065 23.5966 19.9744 22.7905 19.9991C21.9844 20.0239 21.1896 19.8046 20.5103 19.3698C19.831 18.935 19.299 18.3051 18.984 17.5627L18.8933 17.3333H10.4387C10.1696 18.0933 9.6773 18.7543 9.02619 19.2296C8.37508 19.705 7.59556 19.9726 6.78976 19.9974C5.98396 20.0222 5.18947 19.803 4.51037 19.3686C3.83127 18.9341 3.29925 18.3047 2.984 17.5627L2.89333 17.3333H2.66667C1.9939 17.3335 1.34591 17.0795 0.852603 16.622C0.359294 16.1645 0.0571243 15.5375 0.00666667 14.8667L0 14.6667V4C-5.6829e-05 2.97972 0.389767 1.99798 1.08971 1.25565C1.78966 0.513324 2.74681 0.0665234 3.76533 0.00666687L4 0H23.9067ZM22.6667 14.6667C22.313 14.6667 21.9739 14.8071 21.7239 15.0572C21.4738 15.3072 21.3333 15.6464 21.3333 16C21.3333 16.3536 21.4738 16.6928 21.7239 16.9428C21.9739 17.1929 22.313 17.3333 22.6667 17.3333C23.0203 17.3333 23.3594 17.1929 23.6095 16.9428C23.8595 16.6928 24 16.3536 24 16C24 15.6464 23.8595 15.3072 23.6095 15.0572C23.3594 14.8071 23.0203 14.6667 22.6667 14.6667ZM6.66667 14.6667C6.31305 14.6667 5.97391 14.8071 5.72386 15.0572C5.47381 15.3072 5.33333 15.6464 5.33333 16C5.33333 16.3536 5.47381 16.6928 5.72386 16.9428C5.97391 17.1929 6.31305 17.3333 6.66667 17.3333C7.02029 17.3333 7.35943 17.1929 7.60948 16.9428C7.85952 16.6928 8 16.3536 8 16C8 15.6464 7.85952 15.3072 7.60948 15.0572C7.35943 14.8071 7.02029 14.6667 6.66667 14.6667ZM23.9067 2.66667H22.6667V8H26.6667V6.14133C26.6667 5.87796 26.5888 5.62046 26.4427 5.40133L25.016 3.26C24.8942 3.07745 24.7292 2.92778 24.5357 2.82427C24.3422 2.72077 24.1261 2.66663 23.9067 2.66667ZM6.66667 2.66667H4C3.67342 2.66671 3.35822 2.78661 3.11417 3.00362C2.87012 3.22063 2.71421 3.51966 2.676 3.844L2.66667 4V6.66667H6.66667V2.66667ZM13.3333 2.66667H9.33333V6.66667H13.3333V2.66667ZM20 2.66667H16V6.66667H20V2.66667Z'/%3E%3C/svg%3E%0A");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--color-text);
}

.p-access-bus__text {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-bus__text {
    font-size: 0.9375rem;
  }
}

.p-access-bus__text p + p {
  margin-block-start: 0.25rem;
}

.p-access-bus__route {
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-access-bus__route {
    margin-block-start: 2.5rem;
  }
}

.p-access-bus__steps-swiper {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-access-bus__steps-swiper {
    margin-block-start: 1.5rem;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    overflow: hidden;
  }
}

.p-access-bus__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.8125rem;
  margin-block-start: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-access-bus__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-access-bus__steps {
    display: flex;
    gap: 0;
  }
}

.p-access-bus__step {
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-access-bus__step {
    flex-shrink: 0;
    width: 17.5rem;
    height: auto;
  }
}

@media (min-width: 768px) {
  .p-access-bus__steps.swiper-wrapper {
    display: grid !important;
    transform: none !important;
  }
  .p-access-bus__step.swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}
.p-access-bus__step-card {
  display: flex;
  flex-direction: column;
}

.p-access-bus__step-image {
  position: relative;
  overflow: hidden;
  background-color: #d6d6d6;
  aspect-ratio: 310/228;
  border-radius: 0.625rem;
}

.p-access-bus__step-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-access-bus__step-badge {
  position: absolute;
  inset-block-end: 0.5rem;
  inset-inline-start: 0.5rem;
  padding-block: 0.5rem;
  padding-inline: 1.6875rem;
  border: 0.0625rem solid var(--color-primary);
  border-radius: 5.625rem;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-access-bus__step-text {
  margin-block-start: 0.6875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-bus__step-text {
    font-size: 0.9375rem;
  }
}

.p-access-car {
  padding-block: 0rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-access-car {
    padding-block: 0rem 3.5rem;
  }
}

.p-access-car__body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 2.5rem;
  margin-block-start: 2rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-access-car__body {
    flex-direction: column;
    gap: 0.75rem;
    margin-block-start: 1.5rem;
  }
}

.p-access-car__parking {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-car__parking {
    font-size: 1rem;
  }
}

.p-access-car__icon {
  flex-shrink: 0;
  inline-size: 2rem;
  block-size: 1rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='32' height='16' viewBox='0 0 32 16' fill='%23333333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.2703 5.22156L29.1438 1.83763C28.4246 0.693751 27.1682 0 25.8178 0H15.9153C14.2494 0 12.6531 0.669937 11.4873 1.85906L8.66125 4.74075L1.92113 6.30106C0.795813 6.56213 0 7.56444 0 8.71869V11.3654C0 11.9356 0.462875 12.3991 1.03363 12.3991H4.61713C4.6125 12.4704 4.60556 12.5412 4.60556 12.6131C4.60556 14.4756 6.116 15.9855 7.97913 15.9855C9.84113 15.9855 11.3515 14.4756 11.3515 12.6131C11.3515 12.5412 11.3446 12.4704 11.3399 12.3991H21.9443C21.9397 12.4704 21.9328 12.5412 21.9328 12.6131C21.9328 14.4756 23.4431 15.9855 25.3051 15.9855C27.1682 15.9855 28.6775 14.4756 28.6775 12.6131C28.6775 12.5412 28.6718 12.4704 28.6671 12.3991H30.9664C31.5372 12.3991 32.0001 11.9356 32.0001 11.3654V7.75231C32 6.85675 31.7471 5.98031 31.2703 5.22156ZM7.97913 13.9571C7.23669 13.9571 6.63575 13.3544 6.63575 12.6131C6.63575 11.8712 7.23669 11.2697 7.97913 11.2697C8.72038 11.2697 9.3225 11.8712 9.3225 12.6131C9.3225 13.3544 8.72038 13.9571 7.97913 13.9571ZM16.5081 5.47738H10.4339L12.7587 3.10675C13.5848 2.2645 14.7355 1.78188 15.9153 1.78188H16.5082V5.47738H16.5081ZM23.4374 5.47738H18.0661V1.78188H23.4374V5.47738ZM25.3051 13.9571C24.5639 13.9571 23.9618 13.3544 23.9618 12.6131C23.9618 11.8712 24.5639 11.2697 25.3051 11.2697C26.0476 11.2697 26.6485 11.8712 26.6485 12.6131C26.6485 13.3544 26.0476 13.9571 25.3051 13.9571ZM24.9965 5.47738V1.78188H25.8179C26.5603 1.78188 27.2401 2.15712 27.6346 2.78594L29.3259 5.47738H24.9965Z'/%3E%3C/svg%3E%0A");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--color-text);
}

.p-access-car__detail {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-car__detail {
    font-size: 0.9375rem;
  }
}

.p-access-hours {
  padding-block: 0rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-access-hours {
    padding-block: 0rem 2.5rem;
  }
}

.p-access-hours__title-line {
  display: block;
  inline-size: 6.25rem;
  block-size: 0.125rem;
  margin-block-start: 0.9375rem;
  margin-inline: auto;
  border-radius: 100vmax;
  background-color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-access-hours__title-line {
    margin-block-start: 0.75rem;
  }
}

.p-access-hours__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.75rem 2.5rem;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-access-hours__grid {
    gap: 2rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-access-hours__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-block-start: 2rem;
  }
}

.p-access-hours__card {
  min-inline-size: 0;
}

.p-access-hours__table-scroll {
  overflow-x: auto;
  border-radius: 0.375rem;
  border: 1px solid #ffc9c9;
  border-block-end: none;
  background-color: var(--color-white);
}

.p-access-hours__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-access-hours__col--corner {
  width: 11.125rem;
}
@media screen and (max-width: 767px) {
  .p-access-hours__col--corner {
    width: 8.75rem;
  }
}

.p-access-hours__th {
  padding: 1rem 0.375rem;
  border-block-end: 1px solid #ffc9c9;
  border-inline-start: 1px solid #ffc9c9;
  background-color: #fdeeee;
  color: var(--color-text);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-access-hours__th {
    font-size: 0.9375rem;
    padding: 1rem 0;
  }
}

.p-access-hours__th--corner {
  border-inline-start: none;
  background-color: #fdeeee;
}

.p-access-hours__th--last {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-access-hours__th--last {
    font-size: 0.625rem;
    letter-spacing: 0;
  }
  .p-access-hours__th--last span {
    letter-spacing: -0.32em;
  }
}

.p-access-hours__row-head {
  padding: 0.75rem 0.875rem;
  border-block-end: 1px solid #ffc9c9;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .p-access-hours__row-head {
    padding-inline: 0.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-access-hours__row-head {
    padding: 0.375rem 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.3;
  }
}

.p-access-hours__row-head-note {
  display: block;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-access-hours__row-head-note {
    font-size: 0.5rem;
  }
}

.p-access-hours__cell {
  padding: 1rem 0.375rem;
  border-block-end: 1px solid #ffc9c9;
  border-inline-start: 1px solid #ffc9c9;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-access-hours__cell {
    padding: 0.5rem 0.3125rem;
  }
}

.p-access-hours__cell--dash {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
}
.p-access-hours__cell--dash::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.875rem;
  height: 0.0625rem;
  border-radius: 50%;
  background: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-access-hours__cell--dash::before {
    width: 0.75rem;
  }
}

.p-access-hours__dot {
  display: inline-block;
  width: min(1.125rem, 100%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}
@media screen and (max-width: 767px) {
  .p-access-hours__dot {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.p-access-map {
  padding-block: 3rem 0;
}
@media screen and (max-width: 767px) {
  .p-access-map {
    padding-block: 2.5rem 0;
  }
}

.p-access-map__location {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.5rem 1.5rem;
  align-items: start;
  width: min(100%, 50rem);
  margin-inline: auto;
  margin-block: 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-access-map__location {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block-end: 1rem;
  }
}

.p-access-map__location-term {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-map__location-term {
    font-size: 0.875rem;
  }
}

.p-access-map__location-body {
  margin: 0;
}

.p-access-map__location-address {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-map__location-address {
    font-size: 0.75rem;
  }
}

.p-access-map__map {
  overflow: hidden;
  width: min(100%, 50rem);
  margin-inline: auto;
  aspect-ratio: 3/2;
  border-radius: 0.625rem;
}

.p-access-map__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-access-train {
  padding-block: 3.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-access-train {
    padding-block: 2.5rem 3.5rem;
  }
}

.p-access-train__body {
  padding-inline: 1.25rem;
}

.p-access-train__station {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-access-train__station {
    margin-block-start: 1.5rem;
  }
}

.p-access-train__station-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-train__station-name {
    font-size: 1.25rem;
  }
}

.p-access-train__station-icon {
  flex-shrink: 0;
  inline-size: 1.5rem;
  block-size: 1.5rem;
  mask-image: url("data:image/svg+xml,%3Csvg width='22' height='26' viewBox='0 0 22 26' fill='%23333333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 18V5.33334C0 4.15557 0.305779 3.21645 0.917335 2.51601C1.52889 1.81557 2.33422 1.28223 3.33333 0.91601C4.33245 0.549787 5.47156 0.305343 6.75067 0.182676C8.02978 0.0600097 9.33511 -0.000879297 10.6667 0C12.1333 0 13.5169 0.0613429 14.8173 0.18401C16.1178 0.306676 17.2511 0.551121 18.2173 0.917343C19.1836 1.28357 19.9444 1.8169 20.5 2.51734C21.0556 3.21779 21.3333 4.15645 21.3333 5.33334V18C21.3333 19.3111 20.8836 20.4169 19.984 21.3173C19.0844 22.2178 17.9787 22.6676 16.6667 22.6667L18.6667 24.6667V25.3333H16L13.3333 22.6667H8L5.33334 25.3333H2.66667V24.6667L4.66667 22.6667C3.35556 22.6667 2.24978 22.2169 1.34933 21.3173C0.44889 20.4178 -0.000887574 19.312 0 18ZM2.66667 10.6667H9.33334V6.66668H2.66667V10.6667ZM12 10.6667H18.6667V6.66668H12V10.6667ZM6 18.6667C6.57778 18.6667 7.05556 18.4778 7.43334 18.1C7.81111 17.7222 8 17.2445 8 16.6667C8 16.0889 7.81111 15.6111 7.43334 15.2333C7.05556 14.8556 6.57778 14.6667 6 14.6667C5.42222 14.6667 4.94445 14.8556 4.56667 15.2333C4.18889 15.6111 4 16.0889 4 16.6667C4 17.2445 4.18889 17.7222 4.56667 18.1C4.94445 18.4778 5.42222 18.6667 6 18.6667ZM15.3333 18.6667C15.9111 18.6667 16.3889 18.4778 16.7667 18.1C17.1444 17.7222 17.3333 17.2445 17.3333 16.6667C17.3333 16.0889 17.1444 15.6111 16.7667 15.2333C16.3889 14.8556 15.9111 14.6667 15.3333 14.6667C14.7556 14.6667 14.2778 14.8556 13.9 15.2333C13.5222 15.6111 13.3333 16.0889 13.3333 16.6667C13.3333 17.2445 13.5222 17.7222 13.9 18.1C14.2778 18.4778 14.7556 18.6667 15.3333 18.6667Z'/%3E%3C/svg%3E%0A");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--color-text);
}

.p-access-train__station-text {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-train__station-text {
    font-size: 0.9375rem;
  }
}

.p-access-train__route {
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-access-train__route {
    margin-block-start: 2.5rem;
  }
}

.p-access-train__steps-swiper {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-access-train__steps-swiper {
    margin-block-start: 1.5rem;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    overflow: hidden;
  }
}

.p-access-train__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.8125rem;
  margin-block-start: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-access-train__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-access-train__steps {
    display: flex;
    gap: 0;
  }
}

.p-access-train__step {
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-access-train__step {
    flex-shrink: 0;
    width: 17.5rem;
    height: auto;
  }
}

@media (min-width: 768px) {
  .p-access-train__steps.swiper-wrapper {
    display: grid !important;
    transform: none !important;
  }
  .p-access-train__step.swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}
.p-access-train__step-card {
  display: flex;
  flex-direction: column;
}

.p-access-train__step-image {
  position: relative;
  overflow: hidden;
  background-color: #d6d6d6;
  aspect-ratio: 310/228;
  border-radius: 0.625rem;
}

.p-access-train__step-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-access-train__step-badge {
  position: absolute;
  inset-block-end: 0.5rem;
  inset-inline-start: 0.5rem;
  padding-block: 0.5rem;
  padding-inline: 1.6875rem;
  border: 0.0625rem solid var(--color-primary);
  border-radius: 5.625rem;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-access-train__step-text {
  margin-block-start: 0.6875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-access-train__step-text {
    font-size: 0.9375rem;
  }
}

.p-amenities {
  margin-block-start: 8.375rem;
  scroll-margin-block-start: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-amenities {
    margin-block-start: 2.5rem;
    scroll-margin-block-start: 5rem;
  }
}

.p-amenities__text {
  margin-block-start: 2.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-amenities__text {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-amenities__shell {
  width: 100%;
  margin-block-start: 2.625rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-amenities__shell {
    margin-block-start: 2rem;
  }
}

.p-amenities__board {
  width: min(70.625rem, 100%);
  margin-inline: auto;
  padding: 3.125rem 3.125rem 3.75rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-amenities__board {
    border-radius: 1.875rem 1.875rem 0 0;
    padding: 3.125rem 1.25rem;
  }
}

.p-amenities__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-amenities__grid {
    max-width: 33.75rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}

.p-amenities__stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.p-amenities__card {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.25rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-amenities__card {
    padding: 1.5rem 1.25rem;
  }
}

.p-amenities__card-title {
  padding-block-end: 1.9375rem;
  padding-inline-start: 1.25rem;
  border-block-end: 0.0625rem solid #ec6d6f;
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-amenities__card-title {
    padding-block-end: 1.125rem;
    padding-inline-start: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-amenities__card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-block-start: 2rem;
  padding-inline: 1.25rem 3.125rem;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-amenities__card-list {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-amenities__card-list {
    margin-block-start: 1.125rem;
  }
}

.p-amenities__card-item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-amenities__card-item {
    font-size: 0.9375rem;
  }
}
.p-amenities__card-item::before {
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
  content: "";
}

.p-amenities__card-item-note {
  display: block;
  margin-block-start: -0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-amenities__card-item-note {
    font-size: 0.8125rem;
  }
}

.p-amenities__card-visual {
  margin-block-start: 1.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-amenities__card-visual {
    margin-block-start: 1.125rem;
  }
}

.p-amenities__card-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.p-amenities__card-link {
  display: inline-block;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-amenities__card-link {
    font-size: 0.875rem;
  }
}
.p-amenities__card-link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-amenities__card-link:hover {
    color: var(--color-primary);
  }
}

.p-archive {
  padding-block: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive {
    padding-block: calc(80 * var(--to-rem));
  }
}

.p-archive__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}

.p-archive__header {
  margin-block-end: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__header {
    margin-block-end: calc(60 * var(--to-rem));
  }
}

.p-archive__title {
  margin-block-end: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__title {
    margin-block-end: calc(24 * var(--to-rem));
  }
}

.p-archive__description {
  margin-block-start: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__description {
    margin-block-start: calc(24 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}

.p-archive__list {
  display: grid;
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(32 * var(--to-rem));
  }
}
@media screen and (max-width: 1023px) {
  .p-archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-archive__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(16 * var(--to-rem));
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  background-color: var(--color-white);
  text-decoration: none;
  transition: translate 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-archive__link {
    padding: calc(20 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-archive__link:hover {
    box-shadow: 0 8px 24px oklch(from var(--color-black) l c h/10%);
    translate: 0 calc(-4 * var(--to-rem));
  }
}

.p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: calc(16 * var(--to-rem));
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-archive__thumbnail {
    margin-block-end: calc(20 * var(--to-rem));
  }
}

.p-archive__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

@media (any-hover: hover) {
  .p-archive__link:hover .p-archive__thumbnail img {
    scale: 1.05;
  }
}
.p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
}

.p-archive__item-title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-archive__item-title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__meta {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive__date {
  display: inline-block;
}

.p-archive__categories {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
}

.p-archive__category {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__category {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-archive__excerpt {
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-archive__excerpt {
    font-size: calc(16 * var(--to-rem));
  }
}

.p-archive__pagination {
  margin-block-start: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive__pagination {
    margin-block-start: calc(60 * var(--to-rem));
  }
}

.p-archive__empty {
  padding-block: calc(60 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-archive__empty {
    padding-block: calc(80 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}

.p-single__back {
  margin-block-start: calc(48 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-single__back {
    margin-block-start: calc(60 * var(--to-rem));
  }
}

.p-archive--works .p-archive__link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 calc(2 * var(--to-rem)) calc(8 * var(--to-rem)) oklch(from var(--color-black) l c h/8%);
  background-color: var(--color-white);
  text-decoration: none;
}

.p-archive--works .p-archive__thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-block-end: 0;
  border-radius: 12px 12px 0 0;
}

.p-archive--works .p-archive__thumbnail img {
  transition: scale 0.5s ease;
}

@media (any-hover: hover) {
  .p-archive--works .p-archive__link:has(.p-archive__thumbnail):hover .p-archive__thumbnail img {
    scale: 1.1;
  }
}
.p-archive--works .p-archive__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
}

.p-archive--works .p-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12 * var(--to-rem));
  align-items: center;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__meta {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive--works .p-archive__date {
  display: inline-block;
}

.p-archive--works .p-archive__category {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__category {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-archive--works .p-archive__item-title {
  margin: 0;
  margin-block-end: calc(8 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__item-title {
    margin-block-end: calc(12 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
    line-height: 1.6;
  }
}

.p-archive--works .p-archive__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-block-start: 0;
  color: var(--color-text);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__excerpt {
    font-size: calc(14 * var(--to-rem));
    line-height: 1.8;
  }
}

.p-archive--works .p-archive__client,
.p-archive--works .p-archive__period {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  color: var(--color-text);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__client,
  .p-archive--works .p-archive__period {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-archive--works .p-archive__client-label,
.p-archive--works .p-archive__period-label {
  font-weight: 500;
}

.p-archive--works .p-archive__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(12 * var(--to-rem));
}

.p-archive--works .p-archive__technology {
  display: inline-block;
  padding: calc(4 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: calc(11 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-archive--works .p-archive__technology {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-breast-symptoms {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-breast-symptoms {
    margin-block-start: 0;
  }
}

.p-breast-symptoms__inner {
  display: flex;
  flex-direction: column;
}

.p-breast-symptoms__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 62.5rem);
  margin-inline: auto;
  padding: 1.75rem 2.5rem 2rem;
  border-radius: 0.75rem;
  background-color: #f8fce8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-breast-symptoms__box {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-breast-symptoms__heading {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-symptoms__heading {
    font-size: 1.125rem;
  }
}

.p-breast-symptoms__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: center;
  gap: 0.5rem 3.5rem;
  margin-block-start: 1.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-breast-symptoms__list {
    grid-template-columns: 1fr;
    inline-size: 100%;
    justify-items: stretch;
    gap: 0.625rem;
    margin-block-start: 1.5rem;
  }
}

.p-breast-symptoms__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-breast-symptoms__item {
    font-size: 0.9375rem;
  }
}
.p-breast-symptoms__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-breast-exams {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-breast-exams {
    margin-block-start: 3.75rem;
  }
}

.p-breast-exams__inner {
  display: flex;
  flex-direction: column;
}

.p-breast-exams__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-block-start: 3rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-breast-exams__list {
    gap: 2rem;
    margin-block-start: 2rem;
  }
}

.p-breast-exams__item {
  min-inline-size: 0;
}

.p-breast-exams__card {
  padding: 3rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
  box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-breast-exams__card {
    padding: 1.5rem 1.25rem;
  }
}

.p-breast-exams__card-title {
  padding-block-end: 1rem;
  border-block-end: 0.0625rem solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-exams__card-title {
    font-size: 1.125rem;
  }
}

.p-breast-exams__card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 23.75rem);
  gap: 2rem 2.5rem;
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 1023px) {
  .p-breast-exams__card-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 18.75rem);
  }
}
@media screen and (max-width: 767px) {
  .p-breast-exams__card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-breast-exams__card-text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-exams__card-text {
    font-size: 1rem;
  }
}

.p-breast-exams__card-text p + p,
.p-breast-exams__card-text p + .p-breast-exams__card-subtitle,
.p-breast-exams__card-text .p-breast-exams__card-subtitle + p {
  margin-block-start: 0.5rem;
}

.p-breast-exams__card-subtitle {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-exams__card-subtitle {
    font-size: 1rem;
  }
}

.p-breast-exams__card-text p + .p-breast-exams__card-subtitle {
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-breast-exams__card-text p + .p-breast-exams__card-subtitle {
    margin-block-start: 0.75rem;
  }
}

.p-breast-exams__card-visual {
  overflow: hidden;
  border-radius: 0.25rem;
  aspect-ratio: 500/375;
}
@media screen and (max-width: 1023px) {
  .p-breast-exams__card-visual {
    max-inline-size: 31.25rem;
  }
}

.p-breast-exams__card-image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-breast-exams__profile {
  padding-block-start: 1.75rem;
  margin-block-start: 1.75rem;
  border-block-start: 0.0625rem solid #eee;
}
@media screen and (max-width: 767px) {
  .p-breast-exams__profile {
    padding-block-start: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-breast-exams__profile-title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-exams__profile-title {
    font-size: 0.9375rem;
  }
}

.p-breast-exams__profile-text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-exams__profile-text {
    font-size: 1rem;
  }
}

.p-breast-staff {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-breast-staff {
    margin-block-start: 3.75rem;
  }
}

.p-breast-staff__inner {
  display: flex;
  flex-direction: column;
}

.p-breast-staff__card {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-breast-staff__card {
    margin-block-start: 2rem;
  }
}

.p-breast-staff__item:not(:first-child) {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-breast-staff__item:not(:first-child) {
    margin-block-start: 1.5rem;
  }
}
.p-breast-staff__item .p-breast-exams__card-text {
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-breast-staff__item .p-breast-exams__card-text {
    margin-block-start: 1.5rem;
  }
}

.p-breast-selfcheck {
  margin-block-start: 5rem;
  padding-block-end: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck {
    margin-block-start: 3.75rem;
  }
}

.p-breast-selfcheck__inner {
  display: flex;
  flex-direction: column;
}

.p-breast-selfcheck__lead {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__lead {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-breast-selfcheck__shell {
  width: min(65.625rem, 100%);
  margin-inline: auto;
  margin-block-start: 2.625rem;
  padding: 3.3125rem 5rem 4.125rem 5.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 230, 230, 0.5);
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__shell {
    margin-block-start: 1.75rem;
    padding: 2rem 1.25rem 2.25rem;
    border-radius: 1.25rem;
  }
}

.p-breast-selfcheck__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6875rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__list {
    gap: 1.375rem;
  }
}
.p-breast-selfcheck__list::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset-block-start: 5rem;
  inset-block-end: 2.25rem;
  inset-inline-start: 1.875rem;
  inline-size: 0.125rem;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 10'%3E%3Cline x1='1' y1='1' x2='1' y2='9' fill='none' stroke='%23ec6d6f' stroke-dasharray='3 2 0' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 0.125rem 0.625rem;
}
@media screen and (max-width: 1439px) {
  .p-breast-selfcheck__list::before {
    inset-block-start: 5.625rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-breast-selfcheck__list::before {
    inset-block-start: 6.25rem;
    inset-block-end: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__list::before {
    inset-inline-start: 1.1875rem;
    inset-block-start: 6.25rem;
    inset-block-end: 5rem;
  }
}
@media (max-width: 540px) {
  .p-breast-selfcheck__list::before {
    inset-block-start: 5rem;
  }
}
@media (max-width: 410px) {
  .p-breast-selfcheck__list::before {
    inset-block-start: 5rem;
    inset-block-end: 6.25rem;
  }
}
@media (max-width: 370px) {
  .p-breast-selfcheck__list::before {
    inset-block-start: 3.75rem;
  }
}

.p-breast-selfcheck__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.p-breast-selfcheck__track {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  inline-size: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__track {
    inline-size: 2.5rem;
  }
}

.p-breast-selfcheck__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  inline-size: 5rem;
  block-size: 5rem;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__badge {
    inline-size: 3.5rem;
    block-size: 3.5rem;
    font-size: 0.8125rem;
  }
}

.p-breast-selfcheck__entries {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__entries {
    gap: 0.75rem;
  }
}

.p-breast-selfcheck__card {
  padding: 1.8125rem 1.875rem 2.0625rem 3.5625rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__card {
    padding: 1.125rem 1rem 1.25rem;
    border-radius: 0.75rem;
  }
}

.p-breast-selfcheck__card-title {
  display: flex;
  align-items: flex-start;
  padding: 0;
  color: #ec6d6f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__card-title {
    font-size: 0.9375rem;
  }
}

.p-breast-selfcheck__card-text {
  margin-block-start: 0.5rem;
  padding-inline-start: 1.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__card-text {
    margin-block-start: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-breast-selfcheck__footer {
  margin-block-start: 3rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-breast-selfcheck__footer {
    margin-block-start: 2rem;
    font-size: 0.9375rem;
    text-align: left;
  }
}

.p-breast-reservation {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation {
    margin-block-start: 3.75rem;
    margin-block-end: 3.75rem;
  }
}

.p-breast-reservation__inner {
  display: flex;
  flex-direction: column;
}

.p-breast-reservation__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(100%, 56.25rem);
  margin-inline: auto;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__list {
    gap: 1.25rem;
    margin-block-start: 2rem;
  }
}

.p-breast-reservation__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  padding: 1.875rem;
  border: 0.0625rem solid #f9cdce;
  border-radius: 0.625rem;
  background-color: #fff9fc;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__box {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-breast-reservation__content {
  flex: 1;
  min-inline-size: 0;
}

.p-breast-reservation__title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__title {
    font-size: 1.125rem;
  }
}

.p-breast-reservation__text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__text {
    margin-block-start: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.p-breast-reservation__box .c-button {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__box .c-button {
    inline-size: 100%;
  }
}

.p-breast-reservation__phone {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__phone {
    justify-content: center;
    gap: 0.75rem;
  }
}

.p-breast-reservation__phone-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-breast-reservation__phone-icon img {
  display: block;
  inline-size: 2.25rem;
  block-size: auto;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__phone-icon img {
    inline-size: 1.875rem;
  }
}

.p-breast-reservation__phone-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.3;
  padding-inline-end: 0.1875rem;
  text-align: start;
}

.p-breast-reservation__tel {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__tel {
    font-size: 1.75rem;
  }
}
@media (any-hover: hover) {
  .p-breast-reservation__tel:hover {
    opacity: 0.7;
  }
}

.p-breast-reservation__hours {
  color: #333;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breast-reservation__hours {
    font-size: 0.8125rem;
  }
}

.p-breastfeeding-concerns {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-concerns {
    margin-block-start: 2.5rem;
  }
}

.p-breastfeeding-concerns__inner {
  width: min(100%, 62.5rem);
}

.p-breastfeeding-concerns__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.875rem 3.75rem 2.25rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  box-shadow: 0 0.25rem 1.25rem rgba(236, 109, 111, 0.25);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-concerns__box {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-breastfeeding-concerns__heading {
  inline-size: 100%;
  padding-block-end: 1rem;
  border-block-end: 0.0625rem solid #ec6d6f;
  font-family: var(--ff-zen);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-concerns__heading {
    padding-block-end: 1.125rem;
    font-size: 1.125rem;
    text-align: start;
  }
}

.p-breastfeeding-concerns__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: center;
  gap: 0.5rem 3.5rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-concerns__list {
    grid-template-columns: 1fr;
    inline-size: 100%;
    justify-items: stretch;
    gap: 0.25rem;
    margin-block-start: 1.5rem;
  }
}

.p-breastfeeding-concerns__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-concerns__item {
    font-size: 0.9375rem;
  }
}
.p-breastfeeding-concerns__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-breastfeeding-concerns__footer {
  margin-block-start: 1.75rem;
  color: #ec6d6f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-concerns__footer {
    margin-block-start: 1.5rem;
    font-size: 0.9375rem;
  }
}

.p-breastfeeding-care {
  margin-block-start: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-care {
    margin-block-start: 3.75rem;
  }
}

.p-breastfeeding-care__inner {
  display: flex;
  flex-direction: column;
}

.p-breastfeeding-care__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-block-start: 2rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 3rem 5rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-care__list-wrap {
    margin-block-start: 1.5rem;
    padding-block: 2rem 2.5rem;
  }
}

.p-breastfeeding-care__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-care__list {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
    gap: 2rem;
  }
}

.p-breastfeeding-care__item {
  min-inline-size: 0;
}

.p-breastfeeding-care__card {
  overflow: hidden;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-care__card {
    border-radius: 0.75rem;
  }
}
.p-breastfeeding-care__card .c-title-sub {
  margin-block-end: 0;
}

.p-breastfeeding-care__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.25rem 2.625rem 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-care__body {
    gap: 1rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-breastfeeding-care__sub {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-care__sub {
    font-size: 1rem;
  }
}

.p-breastfeeding-care__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-care__text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.p-breastfeeding-items {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-items {
    margin-block-start: 3.75rem;
  }
}

.p-breastfeeding-items__inner {
  display: flex;
  flex-direction: column;
}

.p-breastfeeding-items__card {
  display: flex;
  flex-direction: column;
  width: min(100%, 62.5rem);
  margin-inline: auto;
  margin-block-start: 3rem;
  padding: 2.5rem 3.5rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 1.25rem rgba(236, 109, 111, 0.25);
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-items__card {
    margin-block-start: 2rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-breastfeeding-items__card-title {
  padding-block-end: 1rem;
  padding-inline-start: 1.25rem;
  border-block-end: 0.0625rem solid #ec6d6f;
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-items__card-title {
    padding-block-end: 1.125rem;
    font-size: 1.125rem;
  }
}

.p-breastfeeding-items__card-list {
  display: flex;
  flex-direction: column;
  margin-block-start: 2rem;
  padding-inline: 1.25rem 3.125rem;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-breastfeeding-items__card-list {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-items__card-list {
    margin-block-start: 1.125rem;
  }
}

.p-breastfeeding-items__card-item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-items__card-item {
    font-size: 0.9375rem;
  }
}
.p-breastfeeding-items__card-item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-breastfeeding-items__note {
  margin-block-start: 1.5rem;
  padding-inline: 1.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-items__note {
    margin-block-start: 1.25rem;
    font-size: 0.8125rem;
  }
}

.p-breastfeeding-contact {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-contact {
    margin-block-start: 3.75rem;
    margin-block-end: 3.75rem;
  }
}

.p-breastfeeding-contact__inner {
  display: flex;
  flex-direction: column;
}

.p-breastfeeding-contact__box {
  width: min(100%, 62.5rem);
  margin-block-start: 3rem;
  margin-inline: auto;
  padding: 2.5rem 3rem 2.75rem;
  border: 0.0625rem solid #f9cdce;
  border-radius: 0.9375rem;
  background-color: #fff9fc;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-contact__box {
    margin-block-start: 2rem;
    padding: 2rem 1.25rem 2.25rem;
  }
}

.p-breastfeeding-contact__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-contact__text {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}
.p-breastfeeding-contact__text strong {
  color: #ec6d6f;
  font-weight: 700;
}

.p-breastfeeding-contact__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-block-start: 1rem;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-contact__phone {
    gap: 0.75rem;
    margin-block-start: 1.5rem;
  }
}

.p-breastfeeding-contact__phone-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-breastfeeding-contact__phone-icon img {
  display: block;
  inline-size: 2.25rem;
  block-size: auto;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-contact__phone-icon img {
    inline-size: 1.5rem;
  }
}

.p-breastfeeding-contact__phone-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.3;
  padding-inline-end: 0.1875rem;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-contact__phone-body {
    justify-content: center;
    align-items: center;
  }
}

.p-breastfeeding-contact__tel {
  color: var(--color-text);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-contact__tel {
    font-size: 1.75rem;
  }
}
@media (any-hover: hover) {
  .p-breastfeeding-contact__tel:hover {
    opacity: 0.7;
  }
}

.p-breastfeeding-contact__hours {
  color: #333;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-breastfeeding-contact__hours {
    font-size: 0.625rem;
  }
}

.p-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(320 * var(--to-rem)), 1fr));
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-card-list {
    gap: calc(32 * var(--to-rem));
  }
}

.p-checkup-midwife {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-checkup-midwife {
    margin-block: 3rem 0;
  }
}

.p-checkup-midwife__inner {
  display: flex;
  flex-direction: column;
}

.p-checkup-midwife__layout {
  display: grid;
  grid-template-columns: minmax(0, 41.6666666667%) minmax(0, 1fr);
  gap: 3.75rem 3.25rem;
  align-items: start;
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-checkup-midwife__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-checkup-midwife__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
}
@media screen and (max-width: 767px) {
  .p-checkup-midwife__visual {
    order: 1;
  }
}

.p-checkup-midwife__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-checkup-midwife__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-checkup-midwife__content {
    order: 2;
  }
}

.p-checkup-midwife__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-checkup-midwife__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.p-checkup-midwife__note {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-checkup-midwife__note {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

.p-checkup-midwife__content .c-text-media-deco__check-list + .p-checkup-midwife__note {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-checkup-midwife__content .c-text-media-deco__check-list + .p-checkup-midwife__note {
    margin-block-start: 1.25rem;
  }
}

.p-checkup-schedule {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule {
    margin-block: 3rem;
  }
}

.p-checkup-schedule__inner {
  display: flex;
  flex-direction: column;
}

.p-checkup-schedule__lead {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__lead {
    margin-block-start: 1.5rem;
    font-size: 1rem;
  }
}

.p-checkup-schedule__notice {
  display: flex;
  gap: 1.875rem;
  align-items: flex-start;
  margin-block-start: 2.5rem;
  padding: 2.5rem;
  border-radius: 0.625rem;
  background-color: #f8fce8;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__notice {
    flex-direction: column;
    gap: 1.25rem;
    margin-block-start: 2rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-checkup-schedule__notice-icon {
  display: flex;
  flex-shrink: 0;
  width: 1.4375rem;
  height: 1.4375rem;
  background-color: var(--color-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='23' viewBox='0 0 23 23'%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; %7D %3C/style%3E%3Cg%3E%3Cpath class='cls-1' d='M1.09,17.99c.12.87.88,1.3,1.68,1.35,2.51.16,5.2-.13,7.73,0,.67.14.59,1.04-.1,1.08-2.56-.16-5.38.22-7.91,0-1.13-.1-2.1-.86-2.39-1.96C-.1,13.66.07,8.83.01,4.03.08,2.96.83,1.98,1.86,1.67c.6-.18,1.2-.09,1.82-.11.04-2.08,3.08-2.08,3.13,0h5.69c.2-2.07,3.01-2.09,3.21,0,.43.03.89-.03,1.33.02,1.14.13,2.11,1.09,2.28,2.22-.13,2.04.19,4.35,0,6.36-.04.41-.43.6-.8.41-.07-.04-.28-.3-.28-.36v-3.4H1.09v11.19ZM5.13,1.08c-.16.03-.35.2-.38.36-.04.2-.03,1.06,0,1.27.07.53.85.53.97.08.04-.16.03-1.29-.01-1.43-.07-.21-.36-.33-.57-.29ZM14.03,1.08c-.19.03-.36.19-.41.38-.05.21-.05,1.16.02,1.35.17.45.82.4.95-.09.07-.26.07-1.13-.04-1.36-.09-.2-.31-.32-.52-.28ZM1.09,3.99c-.06.54.05,1.19,0,1.74h17.15v-1.84c0-.08-.15-.39-.21-.48-.52-.9-1.42-.79-2.33-.76-.18,2.07-3.06,2.08-3.18,0h-5.72c-.05,2.08-3.08,2.08-3.13,0-.75.02-1.5-.14-2.1.42-.22.21-.45.63-.49.93Z'/%3E%3Cpath class='cls-1' d='M16.57,11.52c4.27-.38,7.54,3.61,6.07,7.7-1.68,4.67-8.15,5.13-10.49.76-1.88-3.53.42-8.1,4.41-8.46ZM16.67,12.59c-3.07.31-4.92,3.64-3.75,6.47s4.9,3.8,7.3,1.79c3.56-2.98,1.1-8.73-3.55-8.26Z'/%3E%3Cpath class='cls-1' d='M3.57,13.57c.4-.05,1.39-.05,1.78,0,.33.05.66.25.82.55.2.37.19,1.7.14,2.15-.04.35-.24.7-.56.86-.37.2-1.7.19-2.15.14-.6-.07-.96-.51-1.01-1.09-.04-.41-.04-1.53.07-1.89.13-.39.49-.67.89-.72ZM5.24,14.64h-1.56v1.57h1.56v-1.57Z'/%3E%3Cpath class='cls-1' d='M6.01,11.73c-.19.2-.47.29-.74.31-.43.03-1.35.05-1.76,0-.3-.04-.67-.31-.79-.58-.17-.4-.16-1.52-.12-1.99.04-.5.32-1.02.86-1.1.42-.06,1.47-.05,1.9,0,.39.04.72.28.86.65.15.4.14,2-.02,2.4-.04.09-.14.24-.2.31ZM5.24,9.45h-1.56v1.52h1.56v-1.52Z'/%3E%3Cpath class='cls-1' d='M8.65,8.38c.36-.06,1.67-.06,2.04,0s.76.46.81.81c.06.39.05,1.55,0,1.95-.04.35-.31.71-.64.83s-1.69.12-2.08.08c-.51-.06-.9-.44-.95-.95-.04-.39-.05-1.53.01-1.9s.44-.75.81-.81ZM10.42,9.45h-1.52v1.52h1.52v-1.52Z'/%3E%3Cpath class='cls-1' d='M8.91,14.64v1.57h1.25s.23.17.26.23c.22.43-.06.8-.51.85-.75.08-1.94.06-2.07-.91-.05-.35-.05-1.75.04-2.05.07-.26.3-.52.54-.64.37-.17,1.69-.17,2.12-.12.68.08.88.82.23,1.1l-1.86-.03Z'/%3E%3Cpath class='cls-1' d='M14.14,10.99c-.1.58-.95.62-1.06.09-.05-.23-.04-1.68,0-1.94.07-.39.51-.74.89-.77.44-.04,1.43-.05,1.86,0,.41.05.82.41.89.82.07.45.12,1.39-.54,1.37-.18,0-.52-.23-.52-.4v-.71h-1.52c-.05.47.07,1.1,0,1.54Z'/%3E%3Cpath class='cls-1' d='M17.11,14.11c.31-.06.52.09.64.37l.02,2.53c.23.37,1.12.9,1.05,1.36-.07.43-.53.59-.89.34-.16-.11-.99-.94-1.1-1.1-.06-.08-.1-.17-.12-.27-.08-.4-.08-2.28-.02-2.72.03-.24.17-.46.42-.51Z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.p-checkup-schedule__notice-body {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}

.p-checkup-schedule__notice-header {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.p-checkup-schedule__notice-title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__notice-title {
    font-size: 1.125rem;
  }
}

.p-checkup-schedule__notice-text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__notice-text {
    margin-block-start: 0.75rem;
    font-size: 1rem;
  }
}
.p-checkup-schedule__notice-text strong {
  color: var(--color-primary);
}

.p-checkup-schedule__table-title {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__table-title {
    margin-block-start: 2rem;
  }
}

.p-checkup-schedule__table-scroll {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__table-scroll {
    margin-block-start: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-checkup-schedule__table {
    min-width: 50rem;
  }
}

.p-checkup-schedule__th {
  font-size: 0.9375rem;
  line-height: 1.4;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__th {
    font-size: 0.8125rem;
    padding: 0.75rem 0.375rem;
  }
}

.p-checkup-schedule__th--corner {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__th--corner {
    width: 6.25rem;
  }
}

.p-checkup-schedule__th--frequency,
.p-checkup-schedule__cell--frequency {
  width: 13.125rem;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__th--frequency,
  .p-checkup-schedule__cell--frequency {
    width: 11.25rem;
  }
}

.p-checkup-schedule__row-head {
  width: 7.5rem;
  padding: 1.25rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  text-align: start;
  white-space: normal;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__row-head {
    width: 6.25rem;
    padding: 1rem 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-checkup-schedule__row-label {
  display: block;
  font-weight: 700;
  line-height: 1.5;
}

.p-checkup-schedule__row-week {
  display: block;
  margin-block-start: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__row-week {
    margin-block-start: 0.125rem;
    font-size: 0.8125rem;
  }
}

.p-checkup-schedule__cell {
  padding: 1rem 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  text-align: start;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__cell {
    padding: 0.75rem 0.625rem;
    font-size: 0.8125rem;
  }
}

.p-checkup-schedule__cell--frequency {
  text-align: center;
}

.p-checkup-schedule__cell--center {
  text-align: center;
}

.p-checkup-schedule__badge {
  display: inline-block;
  padding: 0.25rem 0.9375rem;
  border-radius: 100vmax;
  background-color: #ffc9c9;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__badge {
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
  }
}

.p-checkup-schedule__cell--frequency .p-checkup-schedule__badge + .p-checkup-schedule__badge {
  margin-block-start: 0.5rem;
}

.p-checkup-schedule__list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.p-checkup-schedule__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__item {
    font-size: 0.8125rem;
  }
}
.p-checkup-schedule__item::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-checkup-schedule__item + .p-checkup-schedule__item {
  margin-block-start: 0.375rem;
}

.p-checkup-schedule__notes {
  display: flex;
  flex-direction: column;
  margin-block-start: 1rem;
}

.p-checkup-schedule__note {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-checkup-schedule__note {
    font-size: 0.9375rem;
  }
}

.p-childbirth-intro__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-childbirth-intro__links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-childbirth-intro__links-item {
  display: flex;
  min-width: 0;
}

.p-childbirth-intro__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-childbirth-intro__link {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
.p-childbirth-intro__link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-childbirth-intro__link:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 8px 5px rgba(226, 226, 226, 0.75);
  }
}

.p-childbirth-intro__link-label {
  flex: 1;
  min-width: 0;
}

.p-childbirth-intro__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-childbirth-intro__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-class-sections {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-class-sections {
    margin-block-start: 3rem;
  }
}

.p-class-section:not(:first-child) {
  margin-block-start: 6rem;
}
@media screen and (max-width: 767px) {
  .p-class-section:not(:first-child) {
    margin-block-start: 3rem;
  }
}

.p-class-section__inner {
  display: flex;
  flex-direction: column;
}

.p-class-panel {
  display: flex;
  flex-direction: column;
  width: min(100%, 70rem);
  margin-block-start: 3rem;
  margin-inline: auto;
  border-radius: 0.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-class-panel {
    margin-block-start: 2rem;
  }
}

.p-class-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 1fr);
  gap: 2.5rem 2.25rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-class-panel__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-class-panel__visual {
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 4/3;
}

.p-class-panel__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-class-panel__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}

.p-class-panel__title {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-panel__title {
    font-size: 1.25rem;
  }
}

.p-class-panel__lead {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-panel__lead {
    font-size: 1rem;
  }
}
.p-class-panel__title + .p-class-panel__lead {
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-class-panel__title + .p-class-panel__lead {
    margin-block-start: 0.5rem;
  }
}

.p-class-meta {
  overflow: hidden;
  margin-block-start: 1.25rem;
  border: 1px solid #ffc9c9;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-class-meta {
    margin-block-start: 1rem;
  }
}

.p-class-meta__row {
  display: grid;
  grid-template-columns: 9.375rem minmax(0, 1fr);
  border-block-end: 1px solid #ffc9c9;
}
.p-class-meta__row:last-child {
  border-block-end: none;
}
@media screen and (max-width: 767px) {
  .p-class-meta__row {
    grid-template-columns: 5.6875rem minmax(0, 1fr);
  }
}

.p-class-meta__term {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.875rem;
  background-color: #fdeeee;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-meta__term {
    align-items: start;
    padding: 0.375rem 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.3;
  }
}

.p-class-meta__detail {
  padding: 1rem 0.875rem;
  border-inline-start: 1px solid #ffc9c9;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-meta__detail {
    padding: 0.5rem 0.625rem;
    font-size: 1rem;
  }
}

.p-class-meta__note {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-class-meta__note {
    font-size: 0.6875rem;
  }
}

.p-class-panel__subs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-class-panel__subs {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-block-start: 1.5rem;
  }
}

.p-class-panel__subs--inline {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-class-panel__subs--inline {
    margin-block-start: 1.25rem;
  }
}

.p-class-sub-card {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.25rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-class-sub-card {
    padding: 1.5rem 1.25rem;
  }
}

.p-class-sub-card__title {
  padding-block-end: 1rem;
  padding-inline-start: 1.25rem;
  border-block-end: 0.0625rem solid #ec6d6f;
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-sub-card__title {
    padding-block-end: 1.125rem;
    font-size: 1.125rem;
  }
}

.p-class-sub-card__text {
  margin-block-start: 1.5rem;
  padding-inline: 1.25rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-sub-card__text {
    margin-block-start: 1.125rem;
    font-size: 1rem;
  }
}

.p-class-panel__schedule {
  width: 100%;
  margin-block-start: 2.5rem;
  padding: 2.375rem 2rem;
  border-radius: 0.5rem;
  background-color: #f8fce8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-class-panel__schedule {
    margin-block-start: 1.5rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-class-panel__schedule-title {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-panel__schedule-title {
    font-size: 1rem;
  }
}

.p-class-panel__schedule .c-pdf-downloads {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-class-panel__schedule .c-pdf-downloads {
    margin-block-start: 1rem;
  }
}

.p-class-panel__schedule .c-pdf-downloads__inner {
  padding: 0;
  background-color: transparent;
}

.p-class-panel__schedule .c-pdf-downloads__link.is-disabled {
  cursor: default;
  opacity: 0.55;
  pointer-events: none;
}

.p-class-panel__schedule .c-pdf-downloads__list:has(.c-pdf-downloads__item:only-child) {
  grid-template-columns: 1fr;
  max-inline-size: 25rem;
}

.p-class-panel__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-class-panel__actions {
    align-items: stretch;
    margin-block-start: 1.5rem;
  }
}

.p-class-panel__action-link {
  display: inline-flex;
  align-items: center;
  gap: 1.3125rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-class-panel__action-link {
    justify-content: flex-end;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-class-panel__action-link:hover {
    opacity: 0.8;
  }
}

.p-class-panel__action-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  inline-size: 2.6875rem;
  block-size: 2.6875rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-class-panel__action-arrow::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  translate: -50% -50%;
  inline-size: 0.5rem;
  block-size: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-class-promo {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-class-promo {
    margin-block: 3rem 3.75rem;
  }
}

.p-class-promo__inner {
  display: flex;
  flex-direction: column;
}

.p-class-promo__box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: space-between;
  align-items: center;
  padding: 2.25rem 2.5rem;
  border: 0.0625rem solid #f9cdce;
  border-radius: 0.5rem;
  background-color: #fff9fc;
}
@media screen and (max-width: 767px) {
  .p-class-promo__box {
    flex-direction: column;
    align-items: stretch;
    padding: 1.75rem 1.25rem;
  }
}

.p-class-promo__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  min-inline-size: min(100%, 32.5rem);
}

.p-class-promo__title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-promo__title {
    font-size: 1.125rem;
  }
}

.p-class-promo__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-class-promo__text {
    font-size: 1rem;
  }
}

.p-class-promo__action {
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p-class-promo__cta {
    width: 100%;
    max-width: none;
  }
}

.p-consultation-midwife {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife {
    margin-block: 3rem 0;
  }
}

.p-consultation-midwife__inner {
  display: flex;
  flex-direction: column;
}

.p-consultation-midwife__layout-wrapper {
  width: 100%;
  margin-block-start: 2.625rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__layout-wrapper {
    margin-block-start: 2rem;
  }
}

.p-consultation-midwife__layout-board {
  width: min(70.625rem, 100%);
  margin-inline: auto;
  padding: 3.125rem 3.125rem 3.75rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__layout-board {
    width: min(100%, 33.75rem);
    margin-inline: auto;
    border-radius: 1.875rem 1.875rem 0 0;
    padding: 3.125rem 1.25rem;
  }
}

.p-consultation-midwife__layout {
  display: grid;
  grid-template-columns: minmax(0, 41.6666666667%) minmax(0, 1fr);
  gap: 3.75rem 3.25rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-consultation-midwife__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__visual {
    order: 1;
  }
}

.p-consultation-midwife__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-consultation-midwife__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__content {
    order: 2;
  }
}

.p-consultation-midwife__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.p-consultation-midwife__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-block-start: 3rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-consultation-midwife__card-item {
  min-inline-size: 0;
}

.p-consultation-midwife__card {
  block-size: 100%;
  padding: 1.875rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__card {
    padding: 1.5rem 1.25rem;
    border-radius: 0.75rem;
  }
}

.p-consultation-midwife__card-head {
  padding-block-end: 1.25rem;
  border-block-end: 0.0625rem solid var(--color-primary);
  text-align: center;
}

.p-consultation-midwife__card-title {
  color: var(--color-primary);
  font-family: var(--ff-zen);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__card-title {
    font-size: 1.125rem;
  }
}

.p-consultation-midwife__card-period {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__card-period {
    font-size: 0.8125rem;
  }
}

.p-consultation-midwife__card-list {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.25rem;
  list-style: none;
}

.p-consultation-midwife__card-list-item {
  position: relative;
  padding-inline-start: 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-consultation-midwife__card-list-item {
    font-size: 0.8125rem;
  }
}
.p-consultation-midwife__card-list-item::before {
  content: "・";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  color: var(--color-primary);
}

.p-consultation-midwife__card-list-item + .p-consultation-midwife__card-list-item {
  margin-block-start: 0.25rem;
}

.p-consultation-nutrition {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition {
    margin-block: 2.5rem;
  }
}

.p-consultation-nutrition__inner {
  display: flex;
  flex-direction: column;
}

.p-consultation-nutrition__heading-note {
  padding-inline-start: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__heading-note {
    font-size: 0.875rem;
  }
}

.p-consultation-nutrition__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 41.6666666667%);
  gap: 3.75rem 3.25rem;
  align-items: start;
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-consultation-nutrition__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__content {
    order: 2;
  }
}

.p-consultation-nutrition__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.p-consultation-nutrition__content .c-text-media-deco__check-list {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__content .c-text-media-deco__check-list {
    margin-block-start: 1.25rem;
  }
}

.p-consultation-nutrition__notice {
  margin-block-start: 2rem;
  padding: 1.5rem 1.875rem;
  border-radius: 0.75rem;
  border: 0.0625rem solid #f9cdce;
  background-color: #fff9fc;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__notice {
    margin-block-start: 1.5rem;
    padding: 1.25rem;
  }
}

.p-consultation-nutrition__notice-lead {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__notice-lead {
    font-size: 1rem;
  }
}

.p-consultation-nutrition__notice-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__notice-text {
    font-size: 0.9375rem;
  }
}

.p-consultation-nutrition__notice-lead + .p-consultation-nutrition__notice-text {
  margin-block-start: 0.5rem;
}

.p-consultation-nutrition__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
}
@media screen and (max-width: 767px) {
  .p-consultation-nutrition__visual {
    order: 1;
  }
}

.p-consultation-nutrition__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-contact {
  padding-block: 4.5rem;
}

.p-contact__form {
  margin-block-start: 4rem;
}

.p-contact__title {
  display: grid;
  place-items: center;
}

.p-cost-heading {
  position: relative;
  padding-block-end: 0.75rem;
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cost-heading {
    font-size: 1.5rem;
  }
}
.p-cost-heading::after {
  content: "";
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  margin-block-start: 0.75rem;
  margin-inline: auto;
  border-radius: 100vmax;
  background-color: var(--color-text);
}

.p-cost-payment {
  margin-block: 5rem 7.5rem;
  padding-block-end: 0rem;
}
@media screen and (max-width: 767px) {
  .p-cost-payment {
    margin-block: 3rem 5rem;
  }
}

.p-cost-payment__inner {
  display: flex;
  flex-direction: column;
}

.p-cost-payment__box {
  width: min(100%, 65.625rem);
  margin-block-start: 3rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cost-payment__box {
    margin-block-start: 2rem;
  }
}

.p-cost-payment__block + .p-cost-payment__block {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cost-payment__block + .p-cost-payment__block {
    margin-block-start: 2rem;
  }
}

.p-cost-payment__list {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.5rem;
  padding-inline: 1.25rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-cost-payment__list {
    margin-block-start: 1rem;
    padding-inline: 0;
  }
}

.p-cost-payment__list-item {
  position: relative;
  padding-inline-start: 1.125rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cost-payment__list-item {
    font-size: 0.9375rem;
  }
}
.p-cost-payment__list-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-cost-payment__list-item + .p-cost-payment__list-item {
  margin-block-start: 0.5rem;
}

.p-cost-payment__footnotes {
  display: flex;
  flex-direction: column;
  margin-block-start: 2rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cost-payment__footnotes {
    margin-block-start: 1.5rem;
    padding-inline: 0;
    font-size: 0.8125rem;
  }
}

.p-cost-payment__footnote + .p-cost-payment__footnote {
  margin-block-start: 0.25rem;
}

.p-cost-systems {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-cost-systems {
    margin-block: 3rem 0;
  }
}

.p-cost-systems__inner {
  display: flex;
  flex-direction: column;
}

.p-cost-systems__box {
  margin-block-start: 3rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 3.5rem 5rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f8fce8;
}
@media screen and (max-width: 767px) {
  .p-cost-systems__box {
    padding-block: 2.5rem;
  }
}

.p-cost-systems__list {
  display: flex;
  flex-direction: column;
  width: min(71.875rem, 100%);
  padding-inline: 3.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cost-systems__list {
    width: min(33.75rem, 100%);
    padding-inline: 1.25rem;
  }
}

.p-cost-systems__item {
  padding: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-cost-systems__item {
    padding: 1.5rem 1.25rem;
  }
}

.p-cost-systems__item + .p-cost-systems__item {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-cost-systems__item + .p-cost-systems__item {
    margin-block-start: 1.25rem;
  }
}

.p-cost-systems__title {
  padding-block-end: 1.25rem;
  border-block-end: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cost-systems__title {
    padding-block-end: 1rem;
    font-size: 1.125rem;
  }
}

.p-cost-systems__text {
  margin-block-start: 1.875rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cost-systems__text {
    margin-block-start: 1.25rem;
    font-size: 1rem;
  }
}

.p-cost-systems__note {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cost-systems__note {
    font-size: 0.9375rem;
  }
}

.p-cost-table {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-cost-table {
    margin-block: 3rem 0;
  }
}

.p-cost-table__inner {
  display: flex;
  flex-direction: column;
}

.p-cost-table__label {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cost-table__label {
    margin-block-start: 1.5rem;
    font-size: 1rem;
  }
}

.p-cost-table__scroll-holder {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-cost-table__scroll-holder {
    margin-block-start: 1.25rem;
  }
}

.p-cost-table__scroll .scroll-hint-text {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cost-table__scroll .c-consultation-hours__th--corner,
  .p-cost-table__scroll .p-cost-table__th--corner {
    position: sticky;
    left: 0;
    z-index: 3;
    background-color: #fdeeee;
    box-shadow: 0.25rem 0 0.5rem rgba(13, 41, 54, 0.08);
  }
}
@media screen and (max-width: 767px) {
  .p-cost-table__scroll .c-consultation-hours__row-head {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: #fff9fc;
    box-shadow: 0.25rem 0 0.5rem rgba(13, 41, 54, 0.08);
  }
}
@media screen and (max-width: 767px) {
  .p-cost-table__scroll .p-cost-table__row--total .c-consultation-hours__row-head {
    background-color: #fdeeee;
  }
}

@media screen and (max-width: 767px) {
  .p-cost-table__table {
    min-width: 51.25rem;
    border-collapse: separate;
    border-spacing: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-cost-table__th {
    width: calc((100% - 7.5rem) / 4);
    font-size: 0.8125rem;
    padding: 0.75rem 0.25rem;
  }
}

.p-cost-table__th--corner {
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-cost-table__th--corner {
    width: 8.75rem;
  }
}

.p-cost-table__row-head {
  width: 12.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  text-align: start;
  white-space: normal;
  background-color: #fff9fc;
}
@media screen and (max-width: 767px) {
  .p-cost-table__row-head {
    width: 7.5rem;
    padding: 0.625rem 0.5rem;
    font-size: 0.8125rem;
  }
}

.p-cost-table__row-head-note {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-cost-table__row-head-note {
    font-size: 0.75rem;
  }
}

.p-cost-table__cell {
  padding: 0.875rem 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-cost-table__cell {
    padding: 0.625rem 0.375rem;
    font-size: 0.8125rem;
  }
}

.p-cost-table__cell strong {
  font-weight: 700;
}

.p-cost-table__cell--large {
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cost-table__cell--large {
    font-size: 1.125rem;
  }
}

.p-cost-table__cell-note {
  display: block;
  margin-block-start: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-cost-table__row--total .p-cost-table__row-head {
  background-color: #fdeeee;
  border-block-start: 0.125rem solid #ffc9c9;
  font-weight: 700;
}

.p-cost-table__row--total .p-cost-table__cell {
  background-color: #fdeeee;
  border-block-start: 0.125rem solid #ffc9c9;
}

.p-cost-table__row--total .p-cost-table__cell--large {
  color: var(--color-primary);
}

.p-cost-table__row--total .p-cost-table__cell-note {
  color: var(--color-text);
  font-weight: 500;
}

.p-cost-table__notes {
  display: flex;
  flex-direction: column;
  margin-block-start: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-cost-table__notes {
    margin-block-start: 1.5rem;
    font-size: 0.8125rem;
  }
}

.p-cost-table__note {
  position: relative;
  padding-inline-start: 0.875rem;
}
.p-cost-table__note::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-cost-table__note + .p-cost-table__note {
  margin-block-start: 0.25rem;
}

.p-data-cards {
  position: relative;
  padding-block: 4.25rem 8.5rem;
  background-color: var(--color-base);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-data-cards {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-data-cards__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 71rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-data-cards__inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.p-data-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6875rem 4.25rem;
}
@media screen and (max-width: 1023px) {
  .p-data-cards__grid {
    gap: 3rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-data-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.8125rem;
  }
}

.p-data-cards__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 2.5rem 1.25rem 1.875rem;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 1.25rem rgba(13, 41, 54, 0.08);
}
@media screen and (max-width: 767px) {
  .p-data-cards__card {
    padding: 1.875rem 0.625rem 0.9375rem;
  }
}
.p-data-cards__card::before {
  content: "";
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-data-cards__card::before {
    display: none;
  }
}
.p-data-cards__card:nth-child(1)::before {
  top: -3.125rem;
  left: -3.125rem;
  width: 6.875rem;
  height: auto;
  aspect-ratio: 110/155;
  background: url("../images/image_data_cards_deco_blue.webp") no-repeat center center/cover;
}
.p-data-cards__card:nth-child(2)::before {
  top: -1.875rem;
  right: -3.125rem;
  width: 8.5rem;
  height: auto;
  aspect-ratio: 136/135;
  background: url("../images/image_data_cards_deco_red.webp") no-repeat center center/cover;
}
.p-data-cards__card:nth-child(3) .p-data-cards__note {
  padding-block-start: 1.0625rem;
  line-height: 1.8;
}
.p-data-cards__card:nth-child(3)::before {
  bottom: -1.875rem;
  left: -3.125rem;
  width: 8.9375rem;
  height: auto;
  aspect-ratio: 143/132;
  background: url("../images/image_data_cards_deco_yellow.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-data-cards__card:nth-child(4) .p-data-cards__title {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .p-data-cards__card:nth-child(4) .p-data-cards__value {
    margin-block-start: 0;
  }
}
.p-data-cards__card:nth-child(4)::before {
  top: 5.625rem;
  left: -3.125rem;
  width: 8.5rem;
  height: auto;
  aspect-ratio: 136/135;
  background: url("../images/image_data_cards_deco_yellow.webp") no-repeat center center/cover;
}
.p-data-cards__card:nth-child(5)::before {
  bottom: -1.875rem;
  left: -1.875rem;
  width: 8.5rem;
  height: auto;
  aspect-ratio: 136/135;
  background: url("../images/image_data_cards_deco_green1.webp") no-repeat center center/cover;
}
.p-data-cards__card:nth-child(6)::before {
  top: -1.875rem;
  right: -3.125rem;
  width: 8.5rem;
  height: auto;
  aspect-ratio: 136/135;
  background: url("../images/image_data_cards_deco_red.webp") no-repeat center center/cover;
}
.p-data-cards__card:nth-child(7) .p-data-cards__note {
  padding-block-start: 1.0625rem;
  line-height: 1.5;
}
.p-data-cards__card:nth-child(7)::before {
  bottom: -2.5rem;
  left: -2.5rem;
  width: 8.9375rem;
  height: auto;
  aspect-ratio: 143/132;
  background: url("../images/image_data_cards_deco_red.webp") no-repeat center center/cover;
}
.p-data-cards__card:nth-child(8)::before {
  bottom: -2.5rem;
  right: -1.875rem;
  width: 6.875rem;
  height: auto;
  aspect-ratio: 110/155;
  background: url("../images/image_data_cards_deco_blue.webp") no-repeat center center/cover;
}
.p-data-cards__card:nth-child(9) .p-data-cards__title {
  translate: 0 -1.125rem;
  font-size: 1.25rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-data-cards__card:nth-child(9) .p-data-cards__title {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}
.p-data-cards__card:nth-child(9) .p-data-cards__icon-wrap {
  translate: 0 -0.9375rem;
  margin-block-start: 0;
}
.p-data-cards__card:nth-child(9) .p-data-cards__value {
  margin-block-start: -1.625rem;
}
.p-data-cards__card:nth-child(9) .p-data-cards__note {
  padding-block-start: 1.125rem;
  line-height: 1.5;
}
.p-data-cards__card:nth-child(9)::before {
  top: 1.25rem;
  right: -2.5rem;
  width: 6.875rem;
  height: auto;
  aspect-ratio: 110/155;
  background: url("../images/image_data_cards_deco_green2.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-data-cards__card:nth-child(9) {
    grid-column: span 2;
  }
}

.p-data-cards__title {
  font-size: 1.5rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-data-cards__title {
    font-size: 1rem;
  }
}

.p-data-cards__icon-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-block-size: 5.5rem;
  margin-block-start: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-data-cards__icon-wrap {
    min-block-size: 3.75rem;
    margin-block-start: 0.5rem;
  }
}

.p-data-cards__icon {
  display: block;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-data-cards__icon {
    zoom: 0.7;
  }
}

.p-data-cards__icon--01 {
  width: 3.4375rem;
  height: 3.4375rem;
}

.p-data-cards__icon--02 {
  width: 3.625rem;
  height: 3.625rem;
}

.p-data-cards__icon--03 {
  width: 2.4375rem;
  height: 4.125rem;
}

.p-data-cards__icon--04 {
  width: 3.6875rem;
  height: 3.6875rem;
}

.p-data-cards__icon--05 {
  width: 3rem;
  height: 3.8125rem;
}

.p-data-cards__icon--06 {
  width: 2.5rem;
  height: 3.75rem;
}

.p-data-cards__icon--07 {
  width: 4.25rem;
  height: 3rem;
}

.p-data-cards__icon--08 {
  width: 3.25rem;
  height: 2.5rem;
}

.p-data-cards__icon--09 {
  width: 6rem;
  height: 3.625rem;
}

.p-data-cards__value {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.125rem 0.375rem;
  margin-block-start: -0.125rem;
}
@media screen and (max-width: 767px) {
  .p-data-cards__value {
    gap: 0.25rem;
  }
}

.p-data-cards__number {
  font-size: 3.75rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-data-cards__number {
    font-size: 2.5625rem;
  }
}

.p-data-cards__unit {
  font-size: 1.5rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-data-cards__unit {
    font-size: 1rem;
  }
}

.p-data-cards__note {
  min-block-size: 2.5rem;
  padding-block-start: 1.375rem;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-data-cards__note {
    font-size: 0.625rem;
  }
}

.p-data-cards__note-small {
  font-size: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-data-cards__note-small {
    font-size: 0.5rem;
  }
}

.p-data-cards__footer {
  margin-block-start: 1.5rem;
  text-align: end;
}

.p-data-cards__footer-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text);
}

.p-dev-notice {
  padding-block: calc(24 * var(--to-rem));
  background-color: #fff3cd;
}
@media screen and (max-width: 767px) {
  .p-dev-notice {
    padding-block: calc(32 * var(--to-rem));
  }
}

.p-dev-notice__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}

.p-dev-notice__content {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__content {
    gap: calc(20 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}

.p-dev-notice__title {
  color: var(--color-text);
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-dev-notice__title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-dev-notice__text code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__text code {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-dev-notice__list {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--to-rem));
  margin: 0;
  padding-inline-start: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__list {
    gap: calc(16 * var(--to-rem));
    padding-inline-start: calc(32 * var(--to-rem));
  }
}

.p-dev-notice__item {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--to-rem));
  line-height: 1.8;
}

.p-dev-notice__item strong {
  color: var(--color-primary);
  font-weight: 700;
}

.p-dev-notice__item code {
  padding-block: calc(2 * var(--to-rem));
  padding-inline: calc(6 * var(--to-rem));
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
  font-family: "Courier New", Courier, monospace;
  font-size: calc(13 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-dev-notice__item code {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-doctor-list {
  padding-block: 3rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-doctor-list__inner {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-doctor-list__tabs {
    margin-inline: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 1.25rem;
  }
}
.p-doctor-list__tabs + .p-doctor-list__category {
  margin-block-start: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__tabs + .p-doctor-list__category {
    margin-block-start: 5rem;
  }
}

.p-doctor-list__tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__tab-list {
    justify-content: flex-start;
    gap: 0.75rem;
    width: fit-content;
  }
}

@media screen and (max-width: 767px) {
  .p-doctor-list__tab-item {
    flex-shrink: 0;
  }
}

.p-doctor-list__tab {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  min-width: 12.5rem;
  padding: 0.875rem 1.75rem 0.875rem 2rem;
  border: 1px solid #ec6d80;
  border-radius: 100vmax;
  background-color: #ec6d80;
  color: var(--color-white);
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .p-doctor-list__tab {
    min-width: 10rem;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    white-space: nowrap;
  }
}
@media (any-hover: hover) {
  .p-doctor-list__tab:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

.p-doctor-list__tab-text {
  font-weight: 500;
}

.p-doctor-list__tab-arrow {
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--color-white);
}

.p-doctor-list__tab-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.271875rem;
  height: 0.538125rem;
  translate: -50% -50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.35' height='8.61' viewBox='0 0 4.35 8.61'%3E%3Cpath fill='%23ec6d6f' d='M4.35,4.33L.27,8.61l-.27-.99,3.16-3.29v-.04L0,.99l.27-.99,4.09,4.28v.04Z'/%3E%3C/svg%3E%0A") no-repeat center center/contain;
}

.p-doctor-list__tab.is-active {
  border-color: #d85a6c;
  background-color: #d85a6c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-doctor-list__category {
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__category {
    margin-block-start: 2.5rem;
  }
}

.p-doctor-list__category .c-title-main {
  scroll-margin-top: var(--header-height);
}

.p-doctor-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  margin-block-start: 3rem;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .p-doctor-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-doctor-list__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 25rem;
    margin-inline: auto;
  }
}

.p-doctor-list__tabs + .p-doctor-list__grid {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__tabs + .p-doctor-list__grid {
    margin-block-start: 2rem;
  }
}

.p-doctor-list__item {
  list-style: none;
}

.p-doctor-list__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.25rem 2rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  box-shadow: 0 0 1rem rgba(236, 109, 111, 0.5);
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}

.p-doctor-list__card-image {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 3/2;
  background-color: #ebebeb;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-image {
    border-radius: 0.625rem;
  }
}

.p-doctor-list__card-image-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-doctor-list__card-image-link:hover {
    opacity: 1;
  }
  .p-doctor-list__card-image-link:hover img {
    scale: 1.05;
  }
}

.p-doctor-list__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: scale var(--duration);
}
@media (prefers-reduced-motion: reduce) {
  .p-doctor-list__card-image img {
    transition: none;
  }
}

.p-doctor-list__card-body {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-body {
    margin-block-start: 1rem;
  }
}

.p-doctor-list__card-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.375rem 0.875rem;
  border-radius: 100vmax;
  background-color: #fdeef0;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-label {
    font-size: 0.6875rem;
  }
}

.p-doctor-list__card-title {
  margin-block-start: 0.75rem;
  color: var(--color-primary);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-title {
    margin-block-start: 0.625rem;
    font-size: 1.25rem;
  }
}

.p-doctor-list__card-block {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-block {
    margin-block-start: 1.25rem;
  }
}

.p-doctor-list__card-block-title {
  padding-block-end: 0.5rem;
  border-block-end: 1px solid var(--color-primary);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-block-title {
    padding-block-end: 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-doctor-list__card-block-text {
  width: 92%;
  margin-block-start: 0.75rem;
  margin-inline: auto;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-block-text {
    margin-block-start: 0.625rem;
    font-size: 0.8125rem;
  }
}

.p-doctor-list__card-foot {
  display: flex;
  justify-content: center;
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-foot {
    margin-block-start: 1.5rem;
  }
}

.p-doctor-list__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15rem;
  padding: 0.875rem 2rem;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #ef9057 0%, #ec6d80 100%);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .p-doctor-list__card-button {
    width: 100%;
    min-width: 0;
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-doctor-list__card-button:hover {
    opacity: 0.9;
  }
}

.p-doctor-list__pagination {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-list__pagination {
    margin-block-start: 2.5rem;
  }
}

.p-doctor-list__empty {
  padding-block: 3rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
}

.p-doctor-single {
  padding-block: 3rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single {
    padding-block: 2rem 3.5rem;
  }
}

.p-doctor-single__hero {
  display: grid;
  grid-template-columns: minmax(0, 810fr) minmax(0, 453fr);
  gap: 3.75rem;
  align-items: stretch;
}
@media screen and (max-width: 1023px) {
  .p-doctor-single__hero {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-doctor-single__hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-doctor-single__profile {
  display: flex;
  flex-direction: column;
  border-radius: 0.625rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-doctor-single__profile {
    order: 2;
    border-radius: 0.75rem;
  }
}

.p-doctor-single__catch {
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__catch {
    font-size: 1.25rem;
  }
}

.p-doctor-single__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__badges {
    gap: 0.5rem;
  }
}

.p-doctor-single__profile .p-doctor-single__badges {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__profile .p-doctor-single__badges {
    margin-block-start: 1rem;
  }
}

.p-doctor-single__badge-item {
  list-style: none;
}

.p-doctor-single__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.875rem;
  border-radius: 100vmax;
  background-color: #fdeef0;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__badge {
    font-size: 0.6875rem;
  }
}

.p-doctor-single__name {
  margin-block-start: 1.25rem;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__name {
    margin-block-start: 1rem;
    font-size: 1.375rem;
  }
}

.p-doctor-single__profile-block {
  margin-block-start: 1.75rem;
  padding-inline: 1rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__profile-block {
    margin-block-start: 1.5rem;
  }
}

.p-doctor-single__profile-block-title {
  padding-block-end: 0.5rem;
  border-block-end: 1px solid var(--color-primary);
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__profile-block-title {
    padding-block-end: 0.625rem;
    font-size: 1rem;
  }
}

.p-doctor-single__profile-block-list {
  margin-block-start: 0.75rem;
  padding-inline-start: 1.3125rem;
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__profile-block-list {
    padding-inline-start: 1.125rem;
  }
}

.p-doctor-single__profile-block-item {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__profile-block-item {
    font-size: 0.8125rem;
  }
}

.p-doctor-single__profile-block-item + .p-doctor-single__profile-block-item {
  margin-block-start: 0.25rem;
}

.p-doctor-single__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  background-color: #ebebeb;
  box-shadow: 0 0 1rem rgba(236, 109, 111, 0.5);
  max-height: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__visual {
    order: 1;
    border-radius: 0.75rem;
  }
}

.p-doctor-single__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-doctor-single__section {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__section {
    margin-block-start: 2.5rem;
  }
}

.p-doctor-single__interview .p-doctor-single__section + .p-doctor-single__section {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__interview .p-doctor-single__section + .p-doctor-single__section {
    margin-block-start: 2rem;
  }
}

.p-doctor-single__section-body {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__section-body {
    margin-block-start: 1.5rem;
  }
}

.p-doctor-single__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__text {
    font-size: 1rem;
  }
}

.p-doctor-single__media {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__media {
    margin-block-start: 1.5rem;
  }
}

.p-doctor-single__media--has-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 25.1875rem);
  gap: 3rem 2.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-doctor-single__media--has-image {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-doctor-single__media--has-image {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-doctor-single__media--image-left {
  grid-template-columns: minmax(0, 25.1875rem) minmax(0, 1fr);
}
@media screen and (max-width: 767px) {
  .p-doctor-single__media--image-left {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .p-doctor-single__media--image-left .p-doctor-single__media-visual {
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-doctor-single__media--image-left .p-doctor-single__media-text {
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-doctor-single__media--image-right .p-doctor-single__media-text {
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-doctor-single__media--image-right .p-doctor-single__media-visual {
    order: 2;
  }
}

.p-doctor-single__media-visual {
  overflow: hidden;
  border-radius: 0.625rem;
  background-color: #ebebeb;
  aspect-ratio: 403/272;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__media-visual {
    aspect-ratio: 16/10;
    border-radius: 0.75rem;
  }
}

.p-doctor-single__media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-doctor-single__content-pagination {
  margin-block-start: 4rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-single__content-pagination {
    margin-block-start: 3rem;
  }
}

.p-doctor-single__pagination-button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  min-width: 12.5rem;
  padding: 0.875rem 1.75rem 0.875rem 2rem;
  border: 1px solid #ec6d80;
  border-radius: 100vmax;
  background-color: #ec6d80;
  color: var(--color-white);
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767px) {
  .p-doctor-single__pagination-button {
    min-width: 8.75rem;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    white-space: nowrap;
  }
}
@media (any-hover: hover) {
  .p-doctor-single__pagination-button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

.p-doctor-single__pagination-button-text {
  font-weight: 500;
}

.p-doctor-single__pagination-button-arrow {
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-doctor-single__pagination-button-arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.p-doctor-single__pagination-button-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.271875rem;
  height: 0.538125rem;
  translate: -50% -50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.35' height='8.61' viewBox='0 0 4.35 8.61'%3E%3Cpath fill='%23ec6d6f' d='M4.35,4.33L.27,8.61l-.27-.99,3.16-3.29v-.04L0,.99l.27-.99,4.09,4.28v.04Z'/%3E%3C/svg%3E%0A") no-repeat center center/contain;
}

.p-error {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-block: 3.75rem;
  }
}

.p-error__header {
  margin-block-end: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__header {
    margin-block-end: 1.5rem;
  }
}

.p-error__title {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-error__title {
    font-size: 1.25rem;
  }
}

.p-error__content {
  max-width: 40rem;
  margin-inline: auto;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-error__content {
    font-size: 0.875rem;
  }
}

.p-error__content p + p {
  margin-block-start: 1.5rem;
}

.p-facility-movie {
  padding-block: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-facility-movie {
    padding-block: 2.5rem 0;
  }
}

.p-facility-movie__video {
  overflow: hidden;
  width: min(100%, 50rem);
  margin-inline: auto;
  margin-block-start: 2.5rem;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 1.25rem rgba(13, 41, 54, 0.08);
}
@media screen and (max-width: 767px) {
  .p-facility-movie__video {
    margin-block-start: 1.5rem;
    border-radius: 0.75rem;
  }
}

.p-facility-movie__video iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.p-facility-photos {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-facility-photos {
    padding-block: 3.5rem;
  }
}

.p-facility-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 4rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-facility-photos__grid {
    gap: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-facility-photos__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-block-start: 1.5rem;
    max-width: 25rem;
    margin-inline: auto;
  }
}

.p-facility-photos__item {
  list-style: none;
}

.p-facility-photos__card {
  display: flex;
  flex-direction: column;
}

.p-facility-photos__image {
  overflow: hidden;
  background-color: #d6d6d6;
  aspect-ratio: 3/2;
  border-radius: 0.625rem;
}

.p-facility-photos__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-facility-photos__card-title {
  margin-block-start: 0.625rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-facility-photos__card-title {
    font-size: 1rem;
  }
}

.p-facility-photos__card-text {
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-facility-photos__card-text {
    font-size: 0.9375rem;
  }
}

.p-footer {
  position: relative;
  padding-block-end: 7.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 0 6.875rem;
  }
}
.p-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/690;
  background: url(../images/image_footer_bg.webp) no-repeat bottom center/cover;
}
@media screen and (max-width: 767px) {
  .p-footer::before {
    aspect-ratio: 390/909;
    background: url(../images/image_footer_bg_sp.webp) no-repeat bottom center/cover;
  }
}

.p-footer__inner {
  position: relative;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-block-start: 3.4375rem;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    width: min(100%, 24.375rem);
    padding: 1.875rem 1.25rem 0;
  }
}
.p-footer__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 6.25rem);
  height: 1px;
  background-color: #ffe9f2;
}
@media screen and (max-width: 767px) {
  .p-footer__inner::before {
    width: calc(100% - 2.5rem);
  }
}

.p-footer__top {
  width: 100%;
}

.p-footer__top-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__top-body {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1.5rem;
  }
}

.p-footer__brand {
  flex-shrink: 0;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__brand {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}

.p-footer__logo {
  width: min(100%, 12.9375rem);
  height: auto;
  aspect-ratio: 207/50;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-inline: auto;
  }
}

.p-footer__brand-name {
  margin-block-start: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__brand-name {
    white-space: normal;
  }
}

.p-footer__address {
  margin-block-start: 0.25rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    font-size: 0.875rem;
    white-space: normal;
  }
}

.p-footer__access-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: 0.875rem;
  margin-inline-start: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__access-button {
    margin-block-start: 0.75rem;
    margin-inline-start: 0;
  }
}

.p-footer__access-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.p-footer__access-icon {
  display: block;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.5rem;
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='24' viewBox='0 0 18 24'%3E%3Cpath fill='%23fff' d='M12.13 8.62c0-1.65-1.4-3-3.13-3s-3.13 1.35-3.13 3 1.4 3 3.13 3 3.13-1.35 3.13-3zm-4.7 0c0-.83.7-1.5 1.57-1.5s1.57.67 1.57 1.5-.7 1.5-1.57 1.5-1.57-.67-1.57-1.5zM8.99 24c.22 0 .44-.09.59-.25.35-.38 8.45-9.26 8.43-15.11-.02-4.76-4.06-8.63-9-8.63S0 3.87 0 8.64c0 5.85 8.05 14.73 8.4 15.11.15.16.35.25.59.26zM9 1.5c4.08 0 7.42 3.2 7.43 7.14.02 4.43-5.59 11.3-7.45 13.45-1.85-2.15-7.42-9.01-7.42-13.45,0-3.94 3.34-7.14 7.43-7.14z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='24' viewBox='0 0 18 24'%3E%3Cpath fill='%23fff' d='M12.13 8.62c0-1.65-1.4-3-3.13-3s-3.13 1.35-3.13 3 1.4 3 3.13 3 3.13-1.35 3.13-3zm-4.7 0c0-.83.7-1.5 1.57-1.5s1.57.67 1.57 1.5-.7 1.5-1.57 1.5-1.57-.67-1.57-1.5zM8.99 24c.22 0 .44-.09.59-.25.35-.38 8.45-9.26 8.43-15.11-.02-4.76-4.06-8.63-9-8.63S0 3.87 0 8.64c0 5.85 8.05 14.73 8.4 15.11.15.16.35.25.59.26zM9 1.5c4.08 0 7.42 3.2 7.43 7.14.02 4.43-5.59 11.3-7.45 13.45-1.85-2.15-7.42-9.01-7.42-13.45,0-3.94 3.34-7.14 7.43-7.14z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.p-footer__social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.125rem;
  margin-block-start: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__social-row {
    justify-content: center;
    margin-block-start: 0.875rem;
  }
}

.p-footer__inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100vmax;
  background-color: #ebebeb;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.p-footer__inquiry-icon {
  display: flex;
  line-height: 0;
  width: 1.0625rem;
  height: auto;
  aspect-ratio: 17/12;
}

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

.p-footer__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.p-footer__instagram img {
  display: block;
  width: 1.625rem;
  height: auto;
}

.p-footer__cta-wrap {
  width: min(100%, 37.1875rem);
}

.p-footer__cta-panel {
  display: flex;
  align-items: flex-start;
  gap: 2.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-panel {
    flex-direction: column;
    align-items: center;
    gap: 1.1875rem;
  }
}

.p-footer__cta-lead {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-lead {
    font-size: 0.875rem;
  }
}

.p-footer__tel {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-block-start: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__tel {
    margin-block-start: 0;
  }
}

.p-footer__tel-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: auto;
  aspect-ratio: 28/28;
}
@media screen and (max-width: 1023px) {
  .p-footer__tel-icon {
    width: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__tel-icon {
    width: 1.6875rem;
  }
}
.p-footer__tel-icon img {
  object-fit: contain;
}

.p-footer__tel-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-footer__tel-number {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.p-footer__tel-hours {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-footer__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-block-start: 0.25rem;
  padding: 0.875rem 2.6875rem;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #66d9ef 0%, #f28282 100%);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-footer__reserve {
    margin-block-start: 0;
    width: min(100%, 13.75rem);
    justify-content: center;
    padding: 0.875rem 1.75rem;
  }
}

.p-footer__reserve-icon {
  display: block;
  flex-shrink: 0;
  width: 1.8125rem;
  height: 1.8125rem;
  background-color: var(--color-white);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath fill='%23fff' d='M1.37 22.68c.15 1.1 1.11 1.63 2.12 1.7 3.17.21 6.55-.16 9.74 0 .84.18.75 1.31-.12 1.36-3.23-.2-6.79.27-9.98 0-1.42-.12-2.65-1.08-3.01-2.47C-.12 17.22.09 11.14.01 5.08c.09-1.36 1.03-2.58 2.33-2.97.75-.22 1.52-.12 2.29-.14.06-2.62 3.89-2.63 3.94 0h7.18c.25-2.61 3.79-2.63 4.05 0 .55.04 1.13-.04 1.67.02 1.44.16 2.66 1.37 2.88 2.8-.17 2.58.24 5.48 0 8.02-.05.52-.55.76-1.01.51-.09-.05-.35-.38-.35-.46v-4.29H1.37v14.11zM6.47 1.36c-.2.04-.44.25-.47.45-.05.25-.04 1.34 0 1.6.09.66 1.08.67 1.22.11.05-.2.04-1.62-.02-1.8-.09-.27-.45-.41-.72-.36zm11.22 0c-.24.03-.46.24-.51.48-.06.27-.06 1.47.03 1.71.22.56 1.04.5 1.19-.11.09-.33.09-1.42-.05-1.72-.12-.25-.39-.4-.66-.36zM1.37 5.02c-.08.68.06 1.5 0 2.19h21.63v-2.32c0-.1-.19-.49-.26-.61-.66-1.13-1.79-.99-2.94-.96-.22 2.61-3.85 2.62-4.01 0h-7.21c-.07 2.62-3.88 2.63-3.94 0-.94.03-1.9-.18-2.65.52-.28.26-.57.79-.61 1.17zm19.52 9.5c5.38-.48 9.51 4.55 7.65 9.71-2.11 5.88-10.28 6.47-13.22.96-2.37-4.45.52-10.22 5.57-10.66zm.13 1.36c-3.87.39-6.2 4.59-4.72 8.15s6.18 4.79 9.2 2.26c4.48-3.75 1.39-11.01-4.48-10.41zM4.5 17.11c.5-.07 1.75-.07 2.25 0 .42.06.83.32 1.03.69.25.47.24 2.15.18 2.71-.05.44-.31.88-.7 1.09-.47.25-2.14.24-2.71.18-.76-.09-1.21-.64-1.27-1.38-.04-.52-.06-1.92.09-2.38.16-.5.62-.84 1.13-.91zm2.11 1.34h-1.97v1.98h1.97v-1.98zm.96-3.66c-.24.25-.59.37-.93.4-.54.04-1.7.06-2.22 0-.38-.05-.84-.39-.99-.73-.22-.5-.2-1.92-.16-2.5.05-.63.41-1.29,1.09-1.38.53-.07 1.85-.06 2.4 0 .5.04.91.36 1.09.82.19.5.18 2.52-.02 3.02-.05.11-.17.31-.26.39zm-.96-2.88h-1.97v1.91h1.97v-1.91zm4.3-1.34c.45-.08 2.11-.07 2.57 0s.95.58 1.02 1.02c.07.5.06 1.96,0 2.46-.05.44-.39.89-.8 1.05s-2.13.15-2.62.09c-.64-.07-1.13-.56-1.2-1.2-.05-.49-.06-1.93.02-2.39s.56-.94 1.02-1.02zm2.23 1.34h-1.91v1.91h1.91v-1.91zm-1.91 6.54v1.98h1.57c.06 0 .29.21.33.29.28.54-.08 1.01-.64 1.07-.95.1-2.45.07-2.61-1.15-.06-.44-.06-2.2.05-2.59.09-.32.38-.66.68-.8.46-.21 2.13-.21 2.67-.15.86.1 1.1 1.03.29 1.38l-2.34-.03zm6.6-4.6c-.12.74-1.19.78-1.34.11-.07-.29-.06-2.12,0-2.44.09-.49.64-.93 1.12-.97.55-.05 1.8-.06 2.34 0 .52.06 1.04.52 1.13 1.03.09.56.15 1.76-.68 1.72-.22 0-.66-.29-.66-.5v-.9h-1.91c-.07.59.09 1.38 0 1.94zm3.74 3.94c.39-.08.66.12.8.46l.03 3.18c.29.47 1.41 1.13 1.32 1.71-.09.54-.67.75-1.12.43-.2-.14-1.25-1.19-1.39-1.39-.07-.1-.13-.21-.16-.34-.11-.5-.1-2.88-.02-3.42.04-.31.22-.58.53-.64z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-footer__reserve-label {
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.p-footer__tamahiyo {
  display: flex;
  gap: 0.8125rem;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__tamahiyo {
    flex-direction: column;
    margin-block-start: 2rem;
  }
}

.p-footer__tamahiyo-holder {
  flex-shrink: 0;
  width: min(100%, 19.375rem);
  height: auto;
  aspect-ratio: 364/107;
}
@media screen and (max-width: 1023px) {
  .p-footer__tamahiyo-holder {
    width: min(100%, 17.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__tamahiyo-holder {
    width: 100%;
  }
}
.p-footer__tamahiyo-holder img {
  object-fit: contain;
  border-radius: 0.5rem;
}

.p-footer__tamahiyo-text {
  max-width: 17.1875rem;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-footer__tamahiyo-text {
    max-width: 100%;
  }
}

.p-footer__sitemap {
  margin-block-start: 6.5rem;
  width: min(100%, 55rem);
  margin-inline: auto;
  translate: -0.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__sitemap {
    width: 100%;
    margin-block-start: 1.875rem;
    translate: 0 0;
  }
}

.p-footer__nav-grid {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 0.75rem;
  }
}

.p-footer__nav-grid--top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .p-footer__nav-grid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.p-footer__nav-grid--bottom {
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(0, auto);
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-grid--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block-start: 1.75rem;
  }
}

.p-footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  grid-column: 6;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-links {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-section {
    min-width: 0;
  }
}

.p-footer__nav-heading {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-heading {
    font-size: 0.875rem;
  }
}
.p-footer__nav-heading a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.375rem;
  color: var(--color-primary);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-heading a {
    gap: 0.5rem;
  }
}
.p-footer__nav-heading a::before {
  content: "";
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.625rem;
  aspect-ratio: 7/10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='10' viewBox='0 0 7 10'%3E%3Cpath fill='%23ec6d6f' d='M.34 0l6.66 4.97v.05L.34 10l-.34-.94 5.44-4.03v-.05L0 .94l.34-.94Z'/%3E%3C/svg%3E ");
}
@media (any-hover: hover) {
  .p-footer__nav-heading a:hover {
    text-decoration: underline;
  }
}

.p-footer__access-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: 0.25rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-footer__access-link {
    justify-content: center;
    margin-inline: auto;
    margin-block-start: 0.375rem;
  }
}
@media (any-hover: hover) {
  .p-footer__access-link:hover {
    text-decoration: underline;
  }
}

.p-footer__nav-sub {
  margin-block-start: 0.75rem;
  margin-inline: 0;
  margin-block-end: 0;
  padding-inline-start: 1.375rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sub {
    padding-inline-start: 1rem;
  }
}

.p-footer__nav-sub-item {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-sub-item {
    font-size: 0.75rem;
  }
}
.p-footer__nav-sub-item + .p-footer__nav-sub-item {
  margin-block-start: 0.5rem;
}
.p-footer__nav-sub-item a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--duration), opacity var(--duration);
}
@media (any-hover: hover) {
  .p-footer__nav-sub-item a:hover {
    color: var(--color-primary);
  }
}

.p-footer__bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-start: 3.75rem;
  padding-inline: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    flex-direction: column;
    gap: 1rem;
    margin-block-start: 6rem;
    padding-inline: 0;
  }
}

.p-footer__copyright {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-align: center;
}

.p-footer__pagetop {
  position: fixed;
  z-index: 111;
  inset-inline-end: 1rem;
  inset-block-end: 6rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 0.5rem 1.75rem rgba(13, 41, 54, 0.14);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.35s ease, visibility 0.35s step-end, translate var(--duration);
}
.p-footer__pagetop.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s step-start, translate var(--duration);
}
@media (prefers-reduced-motion: reduce) {
  .p-footer__pagetop.is-visible {
    transition-duration: 0.01ms;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop {
    inset-inline-end: 1rem;
    inset-block-end: 7rem;
    zoom: 0.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-footer__pagetop {
    transition-duration: 0.01ms;
  }
}
@media (any-hover: hover) {
  .p-footer__pagetop:hover {
    translate: 0 -0.3125rem;
  }
}

.p-footer__pagetop-arrow {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  margin-block-end: -0.25rem;
  border-inline-start: 0.1875rem solid var(--color-primary);
  border-block-start: 0.1875rem solid var(--color-primary);
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-footer__pagetop-arrow {
    width: 0.625rem;
    height: 0.625rem;
    margin-block-end: -0.5rem;
    border-inline-start: 0.125rem solid var(--color-primary);
    border-block-start: 0.125rem solid var(--color-primary);
  }
}

.p-form {
  --_form-color-text: var(--color-text);
  --_form-color-bg: var(--color-white);
  --_form-color-badge-text: var(--color-white);
  --_form-color-badge-bg: var(--color-primary);
  --_form-color-accent: var(--color-primary);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
  max-width: 62.5rem;
  margin-inline: auto;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-form {
    margin-block-start: 1.25rem;
  }
}
.p-form > * {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form > * {
    margin-block-start: 2rem;
  }
}
.p-form > *:nth-last-child(2) {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-form > *:nth-last-child(2) {
    margin-block-start: 1.5rem;
  }
}

.p-form.p-form--confirm .p-form__label {
  margin-block-start: 0;
}

.p-form__data .p-form__data-inner + .p-form__data-inner {
  margin-block-start: 0.5rem;
}

.p-form__radio-group + .p-form__data-inner,
.p-form__checkbox-group + .p-form__data-inner {
  margin-block-start: 0.5rem;
}

.p-form__item {
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__item {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.p-form__item:first-child {
  margin-block-start: 0;
}

.p-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
  min-width: 15.625rem;
  margin-block-start: 0.9em;
  color: var(--_form-color-text);
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    gap: 1rem;
    min-width: auto;
  }
}

.p-form__label-note {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--_form-color-text);
}

.p-form__label-required {
  flex-shrink: 0;
  display: inline-block;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  border-radius: 4px;
  background-color: var(--_form-color-badge-bg);
  color: var(--_form-color-badge-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__label-required {
    padding-block: 0.25rem;
    padding-inline: 0.75rem;
  }
}

.p-form__data {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-form__data {
    flex: auto;
    width: 100%;
  }
}

.p-form__data-inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-form__data-inner > * {
  flex: 1;
}

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

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--_form-color-border);
  border-radius: 8px;
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: 0.875rem 1rem;
  }
}
@media (max-width: 370px) {
  .p-form__input[type=text],
  .p-form__select[type=text],
  .p-form__textarea[type=text] {
    font-size: 0.875rem;
  }
}

.p-form__input::placeholder,
.p-form__select::placeholder,
.p-form__textarea::placeholder {
  color: oklch(from var(--_form-color-text) l c h/50%);
}

.p-form__input:focus,
.p-form__select:focus,
.p-form__textarea:focus {
  border-color: var(--_form-color-accent);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__input:hover:not(:focus),
.p-form__select:hover:not(:focus),
.p-form__textarea:hover:not(:focus) {
  border-color: var(--_form-color-accent);
  opacity: 0.7;
}

.p-form__input.is-error,
.p-form__input.wpcf7-not-valid,
.p-form__select.is-error,
.p-form__select.wpcf7-not-valid,
.p-form__textarea.is-error,
.p-form__textarea.wpcf7-not-valid {
  border-color: var(--_form-color-badge-bg);
}

.p-form__select {
  position: relative;
  padding-inline-end: 3rem;
  cursor: pointer;
  appearance: none;
}

.p-form__select--year {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__select--year {
    width: 6.25rem;
  }
}

.p-form__select--month,
.p-form__select--day {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form__select--month,
  .p-form__select--day {
    width: 4.5rem;
  }
}

.p-form__select-wrap--year,
.p-form__select-wrap--month,
.p-form__select-wrap--day {
  flex-shrink: 0;
  width: fit-content;
}

.p-form__date .p-form__select-wrap::after {
  display: none;
}
.p-form__date .p-form__select {
  padding-inline-end: 1.25rem;
}

.p-form__select-wrap {
  position: relative;
}

.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 1.75rem;
  right: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 0.75rem;
  height: 0.5rem;
  border: none;
  background-color: var(--_form-color-primary);
  pointer-events: none;
  translate: 0 -50%;
}

.p-form__textarea {
  min-height: 10rem;
  resize: vertical;
}

.p-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 2rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__radio-group {
    flex-flow: row wrap;
    gap: 0.5rem;
  }
}

.p-form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}

.p-form__radio input[type=radio] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__radio input[type=radio]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}

.p-form__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--_form-color-bg);
  translate: -50% -50%;
}

.p-form__radio input[type=radio]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__radio input[type=radio]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__radio-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  user-select: none;
}

.p-form__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  cursor: pointer;
}

.p-form__checkbox input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__checkbox input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}

.p-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}

.p-form__checkbox input[type=checkbox]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__checkbox input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}

.p-form__checkbox-text {
  color: var(--_form-color-text);
  font-size: 1rem;
  user-select: none;
}

.p-form__acceptance {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance {
    text-align: left;
  }
}

.p-form__acceptance-text {
  margin-block-start: 1rem;
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
}
.p-form__acceptance-text + * {
  display: block;
  margin-block-start: 1rem;
}

.p-form__privacy {
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
}

.p-form__acceptance .p-form__data-checkbox {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__data-checkbox {
    display: flex;
    justify-content: center;
  }
}

.p-form__acceptance input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}

.p-form__acceptance input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}
.p-form__acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}

.p-form__acceptance input[type=checkbox]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__acceptance .p-form__label-required {
  margin-inline-end: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__label-required {
    margin-inline-end: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-form__acceptance .p-form__checkbox-text {
    font-size: 0.875rem;
  }
}

.p-form__link {
  color: var(--_form-color-accent);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-form__link:hover {
    opacity: 0.8;
  }
}

.p-form__submit {
  margin-block-start: 3rem;
  text-align: center;
}
.p-form__submit .c-button {
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-form__submit .c-button:hover {
    opacity: 0.8;
  }
}

.p-form__error {
  display: block;
  color: var(--_form-color-badge-bg);
  font-size: 0.875rem;
}

.p-form__success {
  padding: 1.5rem;
  border: 1px solid var(--_form-color-accent);
  border-radius: 8px;
  background-color: rgba(64, 143, 149, 0.1);
  color: var(--_form-color-accent);
  font-size: 1rem;
  text-align: center;
}

.wpcf7-list-item {
  display: flex;
  margin: 0;
}

.p-form__radio .wpcf7-list-item-label,
.p-form__radio .wpcf7-li label {
  color: var(--_form-color-text);
  font-size: 1rem;
  line-height: 1.5;
  user-select: none;
}

.p-form__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.p-form__checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.p-form__item .wpcf7-list-item {
  display: flex;
  align-items: center;
}

.p-form--postpartum .p-form__item {
  flex-direction: column;
  gap: 1rem;
}
.p-form--postpartum .p-form__label {
  justify-content: flex-start;
  margin-block-start: 0;
}
.p-form--postpartum .p-form__data {
  flex: auto;
  width: 100%;
}
.p-form--postpartum .p-form__radio-group {
  flex-flow: row wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form--postpartum .p-form__radio-group {
    gap: 0.5rem;
  }
}
.p-form--postpartum .p-form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form--postpartum .p-form__checkbox-group {
    gap: 0.5rem;
  }
}
.p-form--postpartum .p-form__checkbox-group .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.p-form--postpartum .p-form__checkbox-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-form--postpartum .p-form__checkbox-group input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}
.p-form--postpartum .p-form__checkbox-group input[type=checkbox]:checked {
  border-color: var(--_form-color-accent);
  background-color: var(--_form-color-accent);
}
.p-form--postpartum .p-form__checkbox-group input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-inline-start: none;
  rotate: 45deg;
}
@media (any-hover: hover) {
  .p-form--postpartum .p-form__checkbox-group input[type=checkbox]:hover:not(:checked) {
    border-color: var(--_form-color-accent);
    opacity: 0.5;
  }
}
.p-form--postpartum .p-form__checkbox-group input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  outline: none;
}
.p-form--postpartum .p-form__checkbox-group .wpcf7-list-item-label {
  color: var(--_form-color-text);
  font-size: 1rem;
  user-select: none;
}
.p-form--postpartum .p-form__data-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.p-form--postpartum .p-form__data-row {
  width: 100%;
}
.p-form--postpartum .p-form__data-rows .p-form__data-inner {
  width: 100%;
}
.p-form--postpartum .p-form__data-inner {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.p-form--postpartum .p-form__data-inner > * {
  flex: none;
}
.p-form--postpartum .p-form__data-inner .p-form__label-note {
  flex-shrink: 0;
  white-space: nowrap;
}
.p-form--postpartum .p-form__data-inner .wpcf7-form-control-wrap {
  flex: 1 1 7.5rem;
  min-width: 6.25rem;
  width: auto;
}
.p-form--postpartum .p-form__data-inner .wpcf7-form-control-wrap:has(.wpcf7-number) {
  flex: 0 0 5rem;
  width: 5rem;
  min-width: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form--postpartum .p-form__data-inner .wpcf7-form-control-wrap:has(.wpcf7-number) {
    flex: 0 0 4.5rem;
    width: 4.5rem;
    min-width: 4.5rem;
  }
}
.p-form--postpartum .p-form__data-inner .p-form__input {
  width: 100%;
}
.p-form--postpartum .p-form__data-inner + .p-form__data-inner {
  margin-block-start: 0.5rem;
}
.p-form--postpartum .p-form__radio-group + .p-form__data-inner,
.p-form--postpartum .p-form__checkbox-group + .p-form__data-inner {
  margin-block-start: 0.5rem;
}
.p-form--postpartum .p-form__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.p-form--postpartum .p-form__date {
  width: 100%;
}
.p-form--postpartum .p-form__date-unit {
  flex-shrink: 0;
  color: var(--_form-color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
.p-form--postpartum .p-form__date .wpcf7-form-control-wrap {
  flex: none;
  width: auto;
  min-width: 0;
}

.p-fuchu-checkup-services {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-services {
    margin-block-start: 1.5rem;
  }
}

.p-fuchu-checkup-services__inner {
  display: flex;
  flex-direction: column;
}

.p-fuchu-checkup-services__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-block-start: 3rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 3.5rem 5rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-services__list-wrap {
    margin-block-start: 2rem;
    padding-block: 2.5rem;
  }
}

.p-fuchu-checkup-services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-fuchu-checkup-services__list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-services__list {
    grid-template-columns: 1fr;
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
    gap: 2rem;
  }
}

.p-fuchu-checkup-services__item {
  min-inline-size: 0;
}

.p-fuchu-checkup-services__card {
  overflow: hidden;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-services__card {
    border-radius: 0.75rem;
  }
}
.p-fuchu-checkup-services__card .c-title-sub {
  margin-block-end: 0;
}

.p-fuchu-checkup-services__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 2.625rem 2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-services__body {
    gap: 1rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}
.p-fuchu-checkup-services__body .c-text-media-deco__check-list {
  margin-block-start: 0;
}

.p-fuchu-checkup-services__note {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-services__note {
    font-size: 0.8125rem;
  }
}

.p-fuchu-checkup-day {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-day {
    margin-block-start: 3.75rem;
  }
}

.p-fuchu-checkup-day__inner {
  display: flex;
  flex-direction: column;
}

.p-fuchu-checkup-day__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5rem;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-day__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1rem;
  }
}

.p-fuchu-checkup-day__lead {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-day__lead {
    margin-block-start: 0.75rem;
    font-size: 1rem;
  }
}

.p-fuchu-checkup-day__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block-start: 1.25rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-day__list {
    margin-block-start: 1rem;
  }
}

.p-fuchu-checkup-day__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-day__item {
    font-size: 0.9375rem;
  }
}
.p-fuchu-checkup-day__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.75em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-fuchu-checkup-day__text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-day__text {
    margin-block-start: 0.75rem;
    font-size: 1rem;
  }
}

.p-fuchu-checkup-official {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-official {
    margin-block-start: 2rem;
    margin-block-end: 3.75rem;
  }
}

.p-fuchu-checkup-official__inner {
  display: flex;
  flex-direction: column;
}

.p-fuchu-checkup-official__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: min(100%, 62.5rem);
  margin-inline: auto;
  padding: 3rem 3rem 3.25rem;
  border: 0.0625rem solid #f9cdce;
  border-radius: 0.5rem;
  background-color: #fff9fc;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-official__box {
    padding: 2.25rem 1.5rem 2.5rem;
  }
}

.p-fuchu-checkup-official__title {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-official__title {
    font-size: 1rem;
  }
}

.p-fuchu-checkup-official__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-block-start: 1.75rem;
  padding: 1.125rem 3rem;
  border-radius: 6.25rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-fuchu-checkup-official__btn {
    margin-block-start: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-fuchu-checkup-official__btn:hover {
    opacity: 0.8;
  }
}

.p-fuchu-checkup-official__btn-arrow {
  font-size: 1.25rem;
  line-height: 1;
}

.p-fujinka-checkup-cards {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cards {
    margin-block-start: 3rem;
  }
}

.p-fujinka-checkup-cards__inner {
  display: flex;
  flex-direction: column;
}

.p-fujinka-checkup-cards__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-fujinka-checkup-cards__list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cards__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-fujinka-checkup-cards__item {
  min-inline-size: 0;
}

.p-fujinka-checkup-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: 0.9375rem;
  background-color: #fff0f0;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-card {
    border-radius: 0.75rem;
  }
}

.p-fujinka-checkup-card__title {
  position: relative;
  margin-block-end: 0;
  padding: 1.25rem 1.5rem;
  border-radius: 0.625rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--ff-zen);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-card__title {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

.p-fujinka-checkup-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 2.625rem 2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-card__body {
    gap: 1rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-fujinka-checkup-card__tag {
  align-self: flex-start;
  padding: 0.375rem 1.125rem;
  border: 0.0625rem solid #999;
  border-radius: 6.25rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-card__tag {
    padding: 0.3125rem 0.875rem;
    font-size: 0.8125rem;
  }
}

.p-fujinka-checkup-card__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-card__text {
    font-size: 1rem;
  }
}

.p-fujinka-checkup-card__link-wrap {
  margin-block-start: auto;
}

.p-fujinka-checkup-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}

.p-fujinka-checkup-card__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-fujinka-checkup-card__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-fujinka-checkup-bridal {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-bridal {
    margin-block-start: 3rem;
  }
}

.p-fujinka-checkup-bridal__inner {
  display: flex;
  flex-direction: column;
}

.p-fujinka-checkup-bridal__lead {
  margin-block-start: 2.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-bridal__lead {
    margin-block-start: 1.75rem;
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
  }
}

.p-fujinka-checkup-exams {
  overflow: hidden;
  width: min(100%, 46.875rem);
  margin-block-start: 3rem;
  margin-inline: auto;
  border-radius: 0.75rem;
  background-color: var(--color-white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-exams {
    margin-block-start: 2rem;
  }
}
.p-fujinka-checkup-exams .c-title-sub {
  margin-block-end: 0;
}

.p-fujinka-checkup-exams__heading {
  display: flex;
  align-items: center;
  min-block-size: 5rem;
  padding: 1.25rem 1.75rem;
  background-color: #f1f1f1;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-exams__heading {
    min-block-size: 4rem;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
  }
}

.p-fujinka-checkup-exams__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.25rem 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-exams__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.75rem 1.25rem 2rem;
  }
}

.p-fujinka-checkup-exams__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-exams__col {
    gap: 0.5rem;
  }
}

.p-fujinka-checkup-exams__col-title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-fujinka-checkup-exams__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0;
  list-style: none;
}

.p-fujinka-checkup-exams__list-item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-exams__list-item {
    font-size: 0.9375rem;
  }
}
.p-fujinka-checkup-exams__list-item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.75em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-fujinka-checkup-bridal__note {
  margin-block-start: 1.75rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-bridal__note {
    margin-block-start: 1.25rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-fujinka-checkup-bridal__note-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-fujinka-checkup-bridal__note-link:hover {
    text-decoration: none;
  }
}

.p-fujinka-checkup-cervix {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cervix {
    margin-block-start: 3rem;
  }
}

.p-fujinka-checkup-cervix__inner {
  display: flex;
  flex-direction: column;
}

.p-fujinka-checkup-cervix__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 44.6666666667%);
  gap: 2.5rem;
  align-items: start;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cervix__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.75rem;
  }
}

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

.p-fujinka-checkup-cervix__lead {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cervix__lead {
    font-size: 1rem;
  }
}

.p-fujinka-checkup-cervix__subheading {
  padding-block-end: 0.75rem;
  border-block-end: 0.0625rem solid #919191;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cervix__subheading {
    padding-block-end: 0.625rem;
    font-size: 1.125rem;
  }
}

.p-fujinka-checkup-cervix__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cervix__text {
    font-size: 1rem;
  }
}

.p-fujinka-checkup-cervix__notice {
  padding: 1.25rem 1.5rem;
  border-radius: 0.625rem;
  background-color: #f8fce8;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cervix__notice {
    padding: 1rem 1.25rem;
  }
}

.p-fujinka-checkup-cervix__notice-title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-fujinka-checkup-cervix__notice-text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cervix__notice-text {
    font-size: 0.9375rem;
  }
}

.p-fujinka-checkup-cervix__visual {
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-cervix__visual {
    order: -1;
  }
}

.p-fujinka-checkup-cervix__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.p-fujinka-checkup-breast {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-breast {
    margin-block: 3rem 3.75rem;
  }
}

.p-fujinka-checkup-breast__inner {
  display: flex;
  flex-direction: column;
}

.p-fujinka-checkup-breast__box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 62.5rem);
  margin-inline: auto;
  padding: 2.25rem 2.5rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid #f9cdce;
  background-color: #fff9fc;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-breast__box {
    flex-direction: column;
    align-items: stretch;
    padding: 1.75rem 1.25rem;
  }
}

.p-fujinka-checkup-breast__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  min-inline-size: min(100%, 32.5rem);
}

.p-fujinka-checkup-breast__title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-breast__title {
    font-size: 1.125rem;
  }
}

.p-fujinka-checkup-breast__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-fujinka-checkup-breast__text {
    font-size: 0.9375rem;
  }
}

.p-fujinka-checkup-breast__action {
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p-fujinka-checkup-breast__cta {
    width: 100%;
    max-width: none;
  }
}

.p-fujinka-intro__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-fujinka-intro__links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-fujinka-intro__links-item {
  display: flex;
  min-width: 0;
}

.p-fujinka-intro__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-fujinka-intro__link {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
.p-fujinka-intro__link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-fujinka-intro__link:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 8px 5px rgba(226, 226, 226, 0.75);
  }
}

.p-fujinka-intro__link-label {
  flex: 1;
  min-width: 0;
}

.p-fujinka-intro__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-fujinka-intro__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-header__mega-section-title-arrow {
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.75rem;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2010%2014'%20fill='none'%3e%3cpath%20d='M2%202L8%207L2%2012'%20stroke='%23000'%20stroke-width='2.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2010%2014'%20fill='none'%3e%3cpath%20d='M2%202L8%207L2%2012'%20stroke='%23000'%20stroke-width='2.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e") no-repeat center/contain;
}

.p-header {
  min-height: var(--header-height);
  height: auto;
  border-radius: 0 0 30px 30px;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-header {
    border-radius: 0 0 25px 25px;
    transition: border-radius var(--duration);
  }
  .p-header:has(.js-hamburger.is-open) {
    border-radius: 0;
  }
}
.p-header.is-mega-open {
  border-radius: 0;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: min(1150px + 6.25rem, 100%);
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: 3.125rem 4.875rem;
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    align-items: center;
    width: 100%;
    padding-inline: 1.3125rem 1.5rem;
  }
}

.p-header__nav-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-self: center;
  min-width: 0;
  margin-block-start: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .p-header__nav-wrapper {
    display: none;
  }
}

.p-header__sp-actions {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 1023px) {
  .p-header__sp-actions {
    display: flex;
  }
}

.p-header__sp-reserve {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #ec6d6f;
  color: var(--color-white);
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .p-header__sp-reserve:hover {
    opacity: 0.85;
  }
}

.p-header__sp-reserve-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.p-header__sp-reserve-icon img {
  display: block;
  width: 1.25rem;
  height: auto;
}

.p-header__sp-reserve-label {
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.p-header__sp-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.p-header__sp-instagram img {
  display: block;
  width: 1.625rem;
  height: auto;
}

.p-header__logo {
  width: auto;
  align-self: center;
  flex-shrink: 0;
  max-width: 12.9375rem;
}
@media screen and (max-width: 1023px) {
  .p-header__logo {
    max-width: 9.375rem;
    margin-inline-end: auto;
  }
}

.p-header__logo a {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header__contact-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .p-header__contact-bar {
    display: none;
  }
}

.p-header__contact-phone {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-self: start;
  min-width: 0;
}

.p-header__contact-phone-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-header__contact-phone-icon img {
  display: block;
  width: 1.75rem;
  height: auto;
}

.p-header__contact-phone-body {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  line-height: 1.3;
  padding-inline-end: 0.1875rem;
}

.p-header__contact-tel {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.p-header__contact-hours {
  margin: 0;
  color: #333;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.p-header__contact-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  justify-self: center;
  padding: 0.4375rem 1.375rem;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #31cfe9 0%, #fe8395 100%);
  color: var(--color-white);
}

.p-header__contact-reserve-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-header__contact-reserve-icon img {
  display: block;
  width: 1.4375rem;
  height: auto;
}

.p-header__contact-reserve-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.p-header__contact-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

.p-header__contact-access {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  color: var(--color-text);
  line-height: 0;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__contact-access:hover {
    opacity: 0.88;
  }
}

.p-header__contact-access-icon img {
  display: block;
  width: 1rem;
  height: auto;
}

.p-header__contact-access-label {
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.p-header__contact-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__contact-instagram:hover {
    opacity: 0.88;
  }
}

.p-header__contact-instagram img {
  display: block;
  width: 1.625rem;
  height: auto;
}

.p-header__nav {
  position: relative;
  container-type: inline-size;
  display: block;
  height: auto;
  min-height: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  justify-content: flex-end;
  gap: clamp(1rem, -0.21rem + 2.53vw, 2.0625rem);
  margin-block-start: 1rem;
}

.p-header__nav-item {
  height: inherit;
  line-height: 1;
}

.p-header__nav-item > a,
.p-header__nav-link {
  display: flex;
  align-items: center;
  height: inherit;
  padding-block: 0;
  color: var(--color-text);
  font-size: clamp(13px, 1.3vw, 16px);
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color var(--duration);
}
@media (any-hover: hover) {
  .p-header__nav-item > a:hover,
  .p-header__nav-link:hover {
    opacity: 1;
    color: var(--color-primary);
  }
}

.p-header__nav-item.is-current > a,
.p-header__nav-item.is-current > .p-header__nav-link,
.p-header__nav-item.is-current > .p-header__nav-trigger {
  color: var(--color-primary);
}

.p-header__nav-item--mega.is-open > .p-header__nav-trigger,
.p-header__nav-item--mega.is-open > .p-header__nav-trigger .p-header__nav-trigger-icon {
  color: var(--color-primary);
}

.p-header__nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: inherit;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-size: clamp(13px, 1.3vw, 16px);
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color var(--duration);
}
@media (any-hover: hover) {
  .p-header__nav-trigger:hover {
    color: var(--color-primary);
  }
}

.p-header__nav-trigger-icon {
  display: block;
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.09375rem solid currentColor;
  border-bottom: 0.09375rem solid currentColor;
  rotate: 45deg;
  translate: 0 -0.0625rem;
  transform-origin: center 75%;
  transition: rotate var(--duration);
}

.p-header__nav-item--mega.is-open .p-header__nav-trigger-icon {
  rotate: 225deg;
}

.p-header__mega {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: calc(var(--z-index-header) - 1);
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.p-header__mega:not([hidden]).is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .p-header__mega {
    transition: none;
  }
}

.p-header__mega-overlay {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.p-header__mega.is-visible .p-header__mega-overlay {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .p-header__mega-overlay {
    transition: none;
  }
  .p-header__mega.is-visible .p-header__mega-overlay {
    opacity: 1;
  }
}

.p-header__mega-panel-wrap {
  position: relative;
  z-index: 1;
  max-height: calc(100svh - var(--header-height));
  overflow-y: auto;
  background-color: var(--color-white);
  opacity: 0;
  transform: translateY(-0.75rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.p-header__mega-panel-wrap::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  height: 1rem;
}
.p-header__mega.is-visible .p-header__mega-panel-wrap {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .p-header__mega-panel-wrap {
    transform: none;
    transition: none;
  }
  .p-header__mega.is-visible .p-header__mega-panel-wrap {
    opacity: 1;
  }
}

.p-header__mega-panel-inner {
  padding-block: 1.5rem 2.5rem;
}

.p-header__mega-section-title {
  margin: 0;
  padding-block-end: 0.5rem;
  border-block-end: 0.0625rem solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.125rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.p-header__mega-section-title a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-header__mega-section-title a:hover {
    opacity: 0.7;
  }
}

.p-header__mega-link-list {
  display: grid;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  list-style: none;
}

.p-header__mega-link-list--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-header__mega-link {
  display: block;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--duration);
}
@media (any-hover: hover) {
  .p-header__mega-link:hover {
    color: var(--color-primary);
  }
}

.p-header__mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2rem;
}

.p-header__mega-col .p-header__mega-link-list {
  grid-template-columns: 1fr;
}

.p-header__mega-col {
  min-width: 0;
}

.p-header__drawer-link--label {
  cursor: default;
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: var(--header-height);
  margin: 0;
  padding: 0;
  margin-inline-start: 1.125rem;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: flex;
  }
}

.p-header__hamburger-bars {
  position: relative;
  display: block;
  width: 2.25rem;
  height: 1.25rem;
}

.p-header__hamburger-bars span {
  position: absolute;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #ec6d6f;
  translate: -50% 0;
  transition: top calc(var(--duration) * 1.67), bottom calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67), rotate calc(var(--duration) * 1.67);
}
.p-header__hamburger-bars span:nth-child(1) {
  top: 0;
}
.p-header__hamburger-bars span:nth-child(2) {
  top: 50%;
  translate: -50% -50%;
}
.p-header__hamburger-bars span:nth-child(3) {
  top: auto;
  bottom: 0;
}

.p-header__hamburger-label {
  display: block;
  margin-block-start: 0.375rem;
  color: #ec6d6f;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: opacity var(--duration);
}

.p-header__hamburger.is-open .p-header__hamburger-bars span:nth-child(1) {
  top: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}
.p-header__hamburger.is-open .p-header__hamburger-bars span:nth-child(2) {
  opacity: 0;
}
.p-header__hamburger.is-open .p-header__hamburger-bars span:nth-child(3) {
  top: 50%;
  bottom: auto;
  translate: -50% -50%;
  rotate: -45deg;
}

.p-header__hamburger.is-open .p-header__hamburger-label {
  display: none;
}

.p-header__drawer {
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 900;
  display: none;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: calc(100svh - var(--header-height));
  padding-block: 0;
  padding-inline: 0;
  background-color: #f3979d;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
@media (min-width: 1024px) {
  .p-header__drawer {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .p-header__drawer {
    display: flex;
  }
  .p-header__drawer.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.p-header__drawer-nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-inline: 0;
  scrollbar-width: none;
}
.p-header__drawer-nav::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-cta {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem 1rem;
  padding: 1.25rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 52%, #e85767 100%);
}

.p-header__drawer-cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.p-header__drawer-cta-phone-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-header__drawer-cta-phone-icon img {
  display: block;
  width: 1.25rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.p-header__drawer-cta-phone-body {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1.3;
}

.p-header__drawer-cta-tel {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-decoration: none;
}

.p-header__drawer-cta-hours {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.p-header__drawer-cta-reserve {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.5rem 1.5rem;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #31cfe9 0%, #fe8395 100%);
  color: var(--color-white);
  text-decoration: none;
}

.p-header__drawer-cta-reserve-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-header__drawer-cta-reserve-icon img {
  display: block;
  width: 1.25rem;
  height: auto;
}

.p-header__drawer-cta-reserve-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-header__drawer-list {
  padding-block-end: 9.375rem;
}

.p-header__drawer-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.p-header__drawer-row {
  display: flex;
  align-items: stretch;
  min-height: 3.25rem;
}

.p-header__drawer-row--solo .p-header__drawer-link--parent {
  flex: 1;
}

.p-header__drawer-link {
  color: var(--color-white);
  text-decoration: none;
}

.p-header__drawer-link--parent {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-family: var(--ff-zen);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-header__drawer-link-text {
  flex: 1;
  min-width: 0;
}

.p-header__drawer-link-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}
.p-header__drawer-link-arrow::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.125rem solid currentColor;
  border-bottom: 0.125rem solid currentColor;
  rotate: -45deg;
  translate: -0.0625rem 0;
}

.p-header__drawer-toggle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.375rem;
  padding: 0;
  border: none;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.p-header__drawer-toggle-icon::before {
  content: "+";
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.p-header__drawer-item.is-open .p-header__drawer-toggle-icon::before {
  content: "−";
}

.p-header__drawer-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-header__drawer-sub--grouped {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.p-header__drawer-sub-section {
  list-style: none;
}

.p-header__drawer-sub-section--no-children + .p-header__drawer-sub-section .p-header__drawer-sub-section-title {
  border-block-start: 1px solid rgba(255, 255, 255, 0.2);
}

.p-header__drawer-sub-section-title {
  display: block;
  margin: 0;
  padding: 0.5rem 1.75rem;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-header__drawer-sub-section-title:hover {
    opacity: 0.85;
  }
}

.p-header__drawer-sub-section-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-header__drawer-sub-item {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  background-color: #ffeaea;
}
.p-header__drawer-sub-item:first-child {
  border-top: none;
}

.p-header__drawer-link--sub {
  display: flex;
  align-items: center;
  padding: 0.875rem 1.25rem 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text);
}

.p-hospitalization-intro__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-hospitalization-intro__links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-hospitalization-intro__links-item {
  display: flex;
  min-width: 0;
}

.p-hospitalization-intro__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-hospitalization-intro__link {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
.p-hospitalization-intro__link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-hospitalization-intro__link:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 8px 5px rgba(226, 226, 226, 0.75);
  }
}

.p-hospitalization-intro__link-label {
  flex: 1;
  min-width: 0;
}

.p-hospitalization-intro__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-hospitalization-intro__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-life-schedule {
  margin-block-start: 5rem;
  padding-block-end: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-life-schedule {
    margin-block-start: 3rem;
  }
}

.p-life-schedule__shell {
  width: min(65.625rem, 100%);
  margin-inline: auto;
  margin-block-start: 2.625rem;
  padding: 3.3125rem 5rem 4.125rem 5.5rem;
  border-radius: 0.75rem;
  background-color: #ffeaea;
}
@media screen and (max-width: 767px) {
  .p-life-schedule__shell {
    margin-block-start: 1.75rem;
    padding: 2rem 1.25rem 2.25rem;
    border-radius: 1.25rem;
  }
}

.p-life-schedule__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6875rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-life-schedule__list {
    gap: 1.375rem;
  }
}
.p-life-schedule__list::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset-block-start: 5rem;
  inset-block-end: 2.25rem;
  inset-inline-start: 1.875rem;
  inline-size: 0.125rem;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 10'%3E%3Cline x1='1' y1='1' x2='1' y2='9' fill='none' stroke='%23ec6d6f' stroke-dasharray='3 2 0' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 0.125rem 0.625rem;
}
@media screen and (max-width: 1439px) {
  .p-life-schedule__list::before {
    inset-block-start: 7.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-life-schedule__list::before {
    inset-block-start: 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-life-schedule__list::before {
    inset-inline-start: 1.1875rem;
    inset-block-start: 8.125rem;
    inset-block-end: 1.875rem;
  }
}
@media (max-width: 540px) {
  .p-life-schedule__list::before {
    inset-block-start: 11.25rem;
  }
}
@media (max-width: 410px) {
  .p-life-schedule__list::before {
    inset-block-start: 12.5rem;
  }
}
@media (max-width: 370px) {
  .p-life-schedule__list::before {
    inset-block-start: 13.75rem;
  }
}

.p-life-schedule__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.p-life-schedule__track {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  inline-size: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-life-schedule__track {
    inline-size: 2.5rem;
  }
}

.p-life-schedule__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  inline-size: 5rem;
  block-size: 5rem;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-life-schedule__badge {
    inline-size: 3.5rem;
    block-size: 3.5rem;
    font-size: 0.8125rem;
  }
}

.p-life-schedule__entries {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-life-schedule__entries {
    gap: 0.75rem;
  }
}

.p-life-schedule__card {
  padding: 1.8125rem 1.875rem 2.0625rem 3.5625rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-life-schedule__card {
    padding: 1.125rem 1rem 1.25rem;
    border-radius: 0.75rem;
  }
}

.p-life-schedule__card-title {
  display: flex;
  align-items: flex-start;
  padding: 0;
  color: #ec6d6f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-life-schedule__card-title {
    font-size: 0.9375rem;
  }
}
.p-life-schedule__card-title::before {
  display: block;
  margin-inline-end: 0.5rem;
  flex-shrink: 0;
  margin-block-start: 0.3125rem;
  inline-size: 0;
  block-size: 0;
  border-block: 0.4375rem solid transparent;
  border-inline-start: 0.6875rem solid #e9a72c;
  content: "";
}

.p-life-schedule__card-text {
  margin-block-start: 0.5rem;
  padding-inline-start: 1.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-life-schedule__card-text {
    margin-block-start: 0.625rem;
    font-size: 0.875rem;
  }
}
.p-life-schedule__card-text + .p-life-schedule__card-title {
  margin-block-start: 1.375rem;
}

.p-life-visiting {
  margin-block: 5.1875rem 6.75rem;
}
@media screen and (max-width: 767px) {
  .p-life-visiting {
    margin-block: 2.5rem 3.5rem;
  }
}

.p-life-visiting__inner {
  display: flex;
  flex-direction: column;
  gap: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__inner {
    gap: 1.5rem;
  }
}

.p-life-visiting__about-grid {
  display: grid;
  align-items: flex-start;
  grid-template-columns: minmax(0, 1fr) 44.1306266549%;
  gap: 3.75rem 3.75rem;
  margin-block-start: 3.5rem;
  margin-inline: 1.6875rem 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-life-visiting__about-grid {
    gap: 2.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-life-visiting__about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
    margin-inline: 0;
  }
}

.p-life-visiting__about-main {
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__about-main {
    order: 2;
  }
}

.p-life-visiting__about-holder {
  position: relative;
}

.p-life-visiting__deco {
  position: absolute;
  z-index: 0;
  inset-block-end: 1.8125rem;
  inset-inline-end: -2.1875rem;
  inline-size: 13.4375rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__deco {
    inset-block-end: 5rem;
    inset-inline-start: auto;
    inset-inline-end: -0.5rem;
    inline-size: 10rem;
  }
}

.p-life-visiting__deco img {
  display: block;
  inline-size: 100%;
  block-size: auto;
}

.p-life-visiting__about-content {
  position: relative;
  z-index: 1;
  margin-block-start: -0.25rem;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__about-content {
    line-height: 1.9;
  }
}

.p-life-visiting__about-content-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__about-content-text {
    font-size: 1rem;
  }
}

.p-life-visiting__hours {
  display: inline-flex;
  gap: 1.3125rem;
  width: min(100%, 24.4375rem);
  margin-block-start: 1.375rem;
  padding: 1.625rem 2.1875rem;
  border-radius: 100vmax;
  background-color: #fff6fa;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__hours {
    gap: 1rem;
    margin-block-start: 1rem;
    padding: 1.125rem 2rem;
  }
}

.p-life-visiting__hours-icon-wrap {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.p-life-visiting__hours-icon-wrap::after {
  content: "";
  inline-size: 2.0625rem;
  block-size: 2.0625rem;
  width: 2.0625rem;
  height: 2.0625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33'%3E%3Cpath fill='%23ec6d6f' d='M16.5 0C12.09 0 7.95 1.72 4.83 4.83 1.72 7.95 0 12.09 0 16.5s1.72 8.55 4.83 11.67c3.12 3.12 7.26 4.83 11.67 4.83s8.55-1.72 11.67-4.83c3.12-3.12 4.83-7.26 4.83-11.67s-1.72-8.55-4.83-11.67C25.05 1.72 20.91 0 16.5 0zm10.21 26.71c-2.73 2.73-6.35 4.23-10.21 4.23s-7.48-1.5-10.21-4.23c-2.73-2.73-4.23-6.35-4.23-10.21s1.5-7.48 4.23-10.21c2.73-2.73 6.35-4.23 10.21-4.23s7.48 1.5 10.21 4.23c2.73 2.73 4.23 6.35 4.23 10.21s-1.5 7.48-4.23 10.21zM24.12 18.65l-6.59-2.83V5.16c0-.57-.46-1.03-1.03-1.03s-1.03.46-1.03 1.03v11.34c0 .41.25.79.63.95l7.22 3.09c.13.06.27.08.41.08.4 0 .78-.23.95-.63.22-.52-.02-1.13-.54-1.35zM6.19 15.47h-1.03c-.57 0-1.03.46-1.03 1.03s.46 1.03 1.03 1.03h1.03c.57 0 1.03-.46 1.03-1.03s-.46-1.03-1.03-1.03zm19.59 1.03c0 .57.46 1.03 1.03 1.03h1.03c.57 0 1.03-.46 1.03-1.03s-.46-1.03-1.03-1.03h-1.03c-.57 0-1.03.46-1.03 1.03zM16.5 25.78c-.57 0-1.03.46-1.03 1.03v1.03c0 .57.46 1.03 1.03 1.03s1.03-.46 1.03-1.03v-1.03c0-.57-.46-1.03-1.03-1.03z'/%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 1023px) {
  .p-life-visiting__hours-icon-wrap::after {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.p-life-visiting__hours-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__hours-body {
    gap: 0;
  }
}

.p-life-visiting__hours-main {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__hours-main {
    font-size: 0.9375rem;
  }
}

.p-life-visiting__hours-main-time {
  margin-inline-start: 1.125rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1023px) {
  .p-life-visiting__hours-main-time {
    margin-block-start: 0.5rem;
    margin-inline-start: 0;
    display: block;
  }
}

.p-life-visiting__hours-sub {
  margin-block-start: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__hours-sub {
    font-size: 0.75rem;
  }
}

.p-life-visiting__about-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 500/375;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__about-visual {
    order: 1;
  }
}

.p-life-visiting__photo {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-life-visiting__rules-title {
  position: relative;
  margin-inline: 1.375rem;
  margin-block-end: 1.75rem;
  padding-block-end: 1.125rem;
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__rules-title {
    margin-inline: 0;
    margin-block-end: 1.25rem;
    padding-block-end: 0.875rem;
    font-size: 1rem;
  }
}
.p-life-visiting__rules-title:after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  block-size: 0.0625rem;
  background-color: #f8a08c;
  box-shadow: 0 0.1875rem 0 #ef9057;
}

.p-life-visiting__rules-list {
  display: flex;
  flex-direction: column;
  width: min(100%, 70.25rem);
  margin-inline: auto;
  margin-block-start: 1.875rem;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.878;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-life-visiting__rules-list {
    margin-block-start: 1.25rem;
    gap: 0.75rem;
    margin-inline: 0;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.p-life-visiting__rules-item {
  position: relative;
  padding-inline-start: 1.25rem;
}
.p-life-visiting__rules-item:before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0.5rem;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 100vmax;
  background-color: #ec6d6f;
}

.p-life-visiting__rules-link {
  color: #2f6fdf;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
@media (any-hover: hover) {
  .p-life-visiting__rules-link:hover {
    text-decoration-thickness: 0.125rem;
  }
}

.p-meals-commitment {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-meals-commitment {
    margin-block: 3rem 0;
  }
}

.p-meals-commitment__inner {
  display: flex;
  flex-direction: column;
}

.p-meals-commitment__content {
  margin-block-start: 2.5rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 3.5rem;
  background-color: #f2fcff;
  border-radius: 2.5rem 2.5rem 0 0;
}

.p-meals-commitment__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.0625rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  margin-block-start: 3rem;
  padding-inline: 3.125rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-meals-commitment__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: min(100%, 33.75rem);
    margin-block-start: 2rem;
    padding-inline: 1.25rem;
  }
}

.p-meals-commitment__item {
  min-inline-size: 0;
}

.p-meals-commitment__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  block-size: 100%;
  padding: 1.875rem 1.5rem 2.25rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-meals-commitment__card {
    padding: 1.75rem 1.5rem;
  }
}

.p-meals-commitment__icon {
  inline-size: 3.0625rem;
  block-size: 3.0625rem;
  background-color: var(--color-primary);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
}

.p-meals-commitment__icon--balance {
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' width='100%25' height='100%25' overflow='visible' style='display: block;' viewBox='0 0 59.6853 70.0001' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Group'%3E%3Cpath id='Vector' d='M45.6864 0C37.9531 0 31.6855 7.73746 31.6855 16.4704C31.6855 21.7853 34.1849 26.4722 37.2397 29.3903C39.9207 31.9538 41.5677 33.9277 41.8968 38.2108V66.4519C41.8968 68.4108 43.4862 70.0001 45.4451 70.0001H45.9258C47.8847 70.0001 49.474 68.4108 49.474 66.4519V38.2107C49.803 33.9276 51.45 31.9536 54.1311 29.3902C57.1859 26.472 59.6853 21.7852 59.6853 16.4702C59.685 7.73746 53.4152 0 45.6864 0Z' fill='var(--fill-0, %234B4B4B)'/%3E%3Cpath id='Vector_2' d='M20.6259 3.35604V18.3096C20.6259 19.2645 19.8526 20.04 18.8976 20.04H18.434C17.4812 20.04 16.7057 19.2645 16.7057 18.3096V3.28768C16.7057 0.824551 15.048 0.0854492 13.4565 0.0854492C11.8671 0.0854492 10.2094 0.824551 10.2094 3.28768V18.3096C10.2094 19.2645 9.43394 20.04 8.4791 20.04H8.01767C7.06283 20.04 6.28941 19.2645 6.28941 18.3096V3.35604C6.28941 -1.05533 0.000349826 -0.905762 0.000349826 3.40512C0.000349826 8.56625 0.000349826 17.6837 0.000349826 17.6837C-0.0295916 25.6134 1.86533 27.6706 4.99277 30.1422C7.51359 32.1333 9.66896 33.2697 9.66896 38.2129V66.4517C9.66896 68.4106 11.2561 70 13.2172 70H13.6979C15.6568 70 17.2462 68.4106 17.2462 66.4517V38.2129C17.2462 33.2697 19.3995 32.1331 21.9203 30.1422C25.05 27.6706 26.9447 25.6134 26.9148 17.6837C26.9148 17.6837 26.9148 8.56625 26.9148 3.40512C26.9149 -0.905762 20.6259 -1.05533 20.6259 3.35604Z' fill='var(--fill-0, %234B4B4B)'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.p-meals-commitment__icon--ingredients {
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' width='100%25' height='100%25' overflow='visible' style='display: block;' viewBox='0 0 68.5546 69.9999' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Group'%3E%3Cpath id='Vector' d='M66.9901 12.4679C66.0923 15.103 65.1364 17.751 64.0903 20.401L60.0667 18.8126C60.5679 17.5417 61.0503 16.2667 61.5154 14.9918C61.946 13.8139 61.9597 12.539 61.5616 11.4283C60.9842 9.81777 60.3787 8.23238 59.7669 6.65301L62.1444 0.600742L60.617 0L58.4056 5.62857C56.7901 6.66709 55.1692 7.68469 53.5422 8.6651C52.5562 9.25791 51.7951 10.1944 51.3915 11.298C50.9554 12.4939 50.5061 13.6806 50.0429 14.8564L46.0193 13.2691C46.9265 10.9685 47.781 8.60699 48.6002 6.2043L47.0359 5.6715C46.2242 8.05506 45.3783 10.3916 44.482 12.6621L44.0889 13.6456C43.7969 14.3657 43.5005 15.0787 43.1975 15.7849C42.6978 16.9516 42.7052 18.2576 43.2135 19.4254C43.7279 20.6062 44.2221 21.801 44.6923 23.0129L40.7598 21.0178C40.2706 21.9823 39.7663 22.9277 39.2446 23.8532C38.6522 24.9058 38.5365 26.1557 38.9166 27.3504C39.3027 28.5573 39.6562 29.7821 39.9757 31.029L36.3361 28.5392C35.7503 29.3975 35.1434 30.2348 34.5164 31.0551C33.8048 31.9864 33.5249 33.1874 33.7328 34.4183C33.946 35.6601 34.1183 36.9199 34.2516 38.1999L31.0188 35.2012C30.3152 35.9604 29.5881 36.7037 28.8379 37.4307C27.9881 38.259 27.5185 39.4246 27.539 40.6835C27.6056 44.5374 27.3131 48.5224 26.7352 52.5545C26.1874 52.9491 25.6365 53.3388 25.0802 53.7213C21.8183 55.9707 18.4237 58.0378 14.9539 59.9788C15.6434 59.2717 16.2358 58.5766 16.7511 57.8936C17.4452 56.9702 17.9985 56.0659 18.4636 55.1694C19.1617 53.8233 19.6604 52.4993 20.1426 51.1294C20.6244 49.7573 21.0891 48.3331 21.678 46.7447C22.0706 45.684 22.4351 44.6245 22.7701 43.5699C21.8958 44.2338 20.9999 44.8819 20.0885 45.5189C16.6744 47.8975 13.9107 50.1348 11.7194 52.2971C10.0738 53.9146 8.74945 55.4801 7.68783 56.9573C6.09342 59.1706 5.09387 61.1848 4.41643 62.7881C4.07736 63.5883 3.8176 64.2854 3.60158 64.8352C3.49453 65.1116 3.39787 65.3501 3.3127 65.5413C3.22766 65.7316 3.15246 65.8748 3.10338 65.9509L3.0182 66.0841L0 67.4874L0.874453 69.4004L3.39979 68.2295L4.22803 68.3277C4.30869 68.3367 4.44377 68.3637 4.61604 68.4068C4.93855 68.4888 5.38467 68.6301 5.92799 68.7973C6.87996 69.0867 8.1323 69.4533 9.69213 69.7047C12.0332 70.0812 15.0798 70.2095 18.887 69.4032C22.6833 68.587 27.2792 66.8604 32.4747 63.2509C33.5993 62.4637 34.7175 61.6535 35.8243 60.8151C34.5274 60.9954 33.2399 61.1446 31.962 61.2668C29.6945 61.4801 27.8178 61.4271 25.996 61.375C24.6308 61.3359 23.2974 61.2948 21.8813 61.352C20.8202 61.3931 19.7135 61.4883 18.5217 61.6715C17.3789 61.8468 16.1581 62.1022 14.8155 62.4586C18.7355 60.3094 22.5798 57.9999 26.2745 55.452C26.8419 55.0616 27.4042 54.664 27.964 54.2612C32.0208 54.9572 36.2191 55.402 40.5732 55.481C41.9918 55.507 43.5091 54.8741 44.6759 53.7384C45.7014 52.7419 46.706 51.7163 47.6839 50.6617L44.4511 47.6621C45.8652 47.562 47.2913 47.4176 48.7256 47.2265C50.1452 47.0411 51.5718 46.1769 52.5695 44.8708C53.4447 43.7251 54.2905 42.5574 55.0998 41.3725L51.4604 38.8828C52.8425 38.5753 54.2296 38.2278 55.6151 37.8392C56.9882 37.4566 58.2617 36.4131 59.0498 35.0129C59.7424 33.7831 60.4025 32.5452 61.0328 31.3033L57.1009 29.3073C58.4218 28.8405 59.7413 28.3437 61.0574 27.8201C62.3608 27.3023 63.4791 26.1706 64.0875 24.7494C64.4565 23.8911 64.8136 23.0318 65.161 22.1735L65.6272 21.0077C66.6854 18.3266 67.6498 15.6555 68.5546 13.0006L66.9901 12.4679ZM53.3671 12.0192C53.5829 11.4283 53.9901 10.9296 54.5144 10.617C55.5029 10.0271 56.4884 9.42621 57.4719 8.81344C57.6341 8.71227 57.8238 8.68711 57.9957 8.74521C58.167 8.80332 58.3032 8.93744 58.3703 9.11777C58.7784 10.2055 59.1779 11.3001 59.567 12.4037C59.7738 12.9886 59.7643 13.6556 59.5405 14.2704C59.0241 15.6856 58.4884 17.0957 57.9275 18.5019C56.7622 19.0006 55.5944 19.4794 54.4266 19.937C53.9865 20.1093 53.5203 19.909 53.336 19.4774C52.8478 18.3276 52.343 17.192 51.8242 16.0681C52.3579 14.7304 52.8708 13.3793 53.3671 12.0192ZM45.13 16.6142L45.3798 16.0263C45.5201 15.6978 45.8947 15.5375 46.2206 15.6728L49.9187 17.2092C50.5377 18.5563 51.1346 19.9213 51.7044 21.3083C51.8066 21.5558 51.7986 21.8462 51.6815 22.1015C51.0661 23.4505 50.423 24.7836 49.7469 26.0995C49.5727 26.44 49.2276 26.6503 48.8722 26.6403C48.5152 26.6282 48.2132 26.3989 48.0951 26.0554C47.2113 23.4835 46.2157 20.9977 45.1386 18.572C44.8647 17.9512 44.8607 17.2411 45.13 16.6142ZM41.0769 24.8857L41.3753 24.3508C41.5421 24.0484 41.9262 23.9382 42.2367 24.1056L45.7941 26.0314C46.2697 27.4125 46.7104 28.8166 47.1115 30.2478C47.1851 30.5043 47.1416 30.7877 46.9983 31.0271C46.7245 31.4768 46.4484 31.9245 46.1651 32.368C45.6553 33.1703 45.13 33.9635 44.5867 34.7447C44.3699 35.0592 44.0003 35.2215 43.6502 35.1623C43.2991 35.1032 43.0298 34.8338 42.9572 34.4803C42.4185 31.8244 41.7208 29.2584 40.9001 26.7766C40.6893 26.1406 40.7539 25.4587 41.0769 24.8857ZM36.1864 32.333L36.5485 31.8544C36.7503 31.5879 37.1403 31.5358 37.4253 31.7442L40.6872 34.1368C40.9776 35.5599 41.221 37.0081 41.4148 38.4803C41.4504 38.7436 41.3673 39.0182 41.1905 39.2335C40.8559 39.638 40.518 40.0407 40.1734 40.4373C39.5519 41.1564 38.916 41.8634 38.264 42.5555C38.0026 42.8329 37.6141 42.941 37.2755 42.83C36.937 42.7189 36.7102 42.4134 36.6912 42.0529C36.5515 39.3478 36.2376 36.7068 35.7643 34.1538C35.6431 33.4988 35.7958 32.8438 36.1864 32.333ZM29.8584 49.5351C29.5364 49.3809 29.3521 49.0473 29.3826 48.6868C29.6104 45.9797 29.6905 43.3047 29.6064 40.6937C29.5859 40.0256 29.8383 39.3917 30.303 38.94L30.7346 38.5164C30.975 38.2791 31.3707 38.2851 31.622 38.5334L34.4958 41.3797C34.571 42.831 34.5975 44.3022 34.5754 45.7894C34.5708 46.054 34.4512 46.3163 34.2444 46.5026C33.8547 46.8561 33.4616 47.2067 33.0645 47.5521C32.347 48.178 31.6173 48.792 30.8772 49.3918C30.5795 49.6323 30.1804 49.6893 29.8584 49.5351ZM43.2106 52.2303C42.6098 52.8142 41.829 53.1486 41.084 53.1467C38.172 53.1426 35.3268 52.9683 32.547 52.6559C32.1759 52.6128 31.8935 52.3573 31.8214 52.0067C31.7494 51.6543 31.898 51.2706 32.203 51.0254C32.9621 50.4104 33.7098 49.7804 34.4468 49.1375C34.8545 48.7821 35.2585 48.4225 35.6593 48.0588C35.871 47.8666 36.1449 47.7624 36.4159 47.7745C37.9271 47.8405 39.4555 47.8576 41.0024 47.8254L44.3304 51.1215L43.2106 52.2303ZM51.3736 42.9662L50.8989 43.5922C50.3861 44.2632 49.656 44.7139 48.9154 44.825C46.0175 45.2566 43.1577 45.5021 40.3519 45.5681C39.9772 45.5771 39.6643 45.3608 39.5471 45.0203C39.4294 44.6819 39.527 44.2822 39.7965 43.9957C40.4685 43.2826 41.1229 42.5536 41.765 41.8124C42.12 41.4028 42.4681 40.9892 42.8136 40.5706C42.9954 40.3493 43.2538 40.209 43.5221 40.18C45.0285 40.0258 46.5467 39.8174 48.072 39.5541L51.3334 41.9476C51.6179 42.156 51.6389 42.6137 51.3736 42.9662ZM57.4056 32.317C57.717 32.4853 57.8022 32.928 57.5925 33.3076L57.2168 33.9806C56.8102 34.7037 56.1578 35.2435 55.4446 35.4519C52.6524 36.273 49.8627 36.9361 47.097 37.4168C46.7279 37.4809 46.3869 37.3136 46.2197 36.994C46.0525 36.6745 46.092 36.267 46.3148 35.9435C46.8742 35.1393 47.4154 34.322 47.9402 33.4957C48.2316 33.04 48.5151 32.5794 48.7966 32.1166C48.9442 31.8702 49.1796 31.695 49.4411 31.6288C50.9078 31.2633 52.3791 30.8487 53.8489 30.3909L57.4056 32.317ZM62.4478 23.2322L62.1549 23.9202C61.8379 24.6585 61.2626 25.2453 60.5831 25.5216C57.9295 26.6033 55.2584 27.5788 52.5889 28.413C52.2339 28.5253 51.8714 28.404 51.6641 28.1116C51.4552 27.8182 51.4396 27.4095 51.6175 27.0599C52.3101 25.7138 52.967 24.3508 53.595 22.9748C53.7142 22.7134 53.9275 22.511 54.1823 22.417C55.6084 21.8951 57.0311 21.3382 58.4514 20.7534L62.1504 22.2898C62.4758 22.425 62.611 22.8467 62.4478 23.2322Z' fill='var(--fill-0, %234B4B4B)'/%3E%3C/g%3E%3C/svg%3E ");
}

.p-meals-commitment__icon--seasonal {
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' width='100%25' height='100%25' overflow='visible' style='display: block;' viewBox='0 0 70 65.6406' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Group'%3E%3Cpath id='Vector' d='M69.7064 22.6347H64.1907C60.8353 9.62418 49.0597 0.00150391 35 0C20.9402 0.00150391 9.16465 9.62418 5.8093 22.6347H0.293516C0.293516 22.6347 -3.70742 42.0127 17.8338 54.9865C19.1969 55.931 20.6486 56.7488 22.1618 57.4621L21.4192 65.6406H48.5808L47.838 57.4621C49.3513 56.7488 50.803 55.931 52.1661 54.9865C73.7074 42.0127 69.7064 22.6347 69.7064 22.6347ZM35 22.6347H12.075C13.2672 19.0068 15.2846 15.7544 17.9282 13.1078C22.3063 8.73264 28.323 6.0375 35 6.036C41.6769 6.0375 47.6936 8.73264 52.0718 13.1078C54.7154 15.7544 56.7328 19.0066 57.925 22.6347H35Z' fill='var(--fill-0, %234B4B4B)'/%3E%3C/g%3E%3C/svg%3E");
}

.p-meals-commitment__title {
  margin-block-start: 1.5rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-meals-commitment__title {
    margin-block-start: 1.25rem;
    font-size: 1rem;
  }
}

.p-meals-commitment__text {
  margin-block-start: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-meals-commitment__text {
    font-size: 0.8125rem;
  }
}

.p-meals-events {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-meals-events {
    margin-block: 3rem 0;
  }
}

.p-meals-events__content {
  margin-block-start: 3rem;
  padding: 3.4375rem 3.75rem;
  border-radius: 0.625rem;
  background-color: rgba(255, 230, 230, 0.5);
}
@media screen and (max-width: 767px) {
  .p-meals-events__content {
    margin-block-start: 2.25rem;
    padding: 1.75rem 1.25rem;
  }
}

.p-meals-events__lead {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-meals-events__lead {
    font-size: 1rem;
    text-align: left;
  }
}

.p-meals-events__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6875rem;
  margin-block-start: 2.25rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-meals-events__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-block-start: 1.5rem;
  }
}

.p-meals-events__item {
  min-inline-size: 0;
}

.p-meals-events__visual {
  overflow: hidden;
  aspect-ratio: 321/222;
  background-color: #eee;
  border-radius: 0.625rem;
}

.p-meals-events__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-meals-events__note {
  margin-block-start: 2.25rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-meals-events__note {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-meals-events__button {
  margin-block-start: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-meals-events__button {
    margin-block-start: 1rem;
  }
}

.p-meals-events__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
  background-color: var(--color-text);
}
.p-meals-events__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-meals-panel {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-meals-panel {
    margin-block: 3rem 0;
  }
}

.p-meals-panel__inner {
  display: flex;
  flex-direction: column;
}

.p-meals-panel__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 43.6597110754%);
  gap: 3.25rem;
  align-items: center;
  margin-block-start: 2.25rem;
  padding: 3.4375rem 3.75rem;
  border-radius: 0.625rem;
  background-color: rgba(255, 230, 230, 0.5);
}
@media screen and (max-width: 767px) {
  .p-meals-panel__card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
    padding: 1.75rem 1.25rem;
  }
}

.p-meals-panel--reverse .p-meals-panel__card {
  grid-template-columns: minmax(0, 43.6597110754%) minmax(0, 1fr);
}
@media screen and (max-width: 767px) {
  .p-meals-panel--reverse .p-meals-panel__card {
    grid-template-columns: 1fr;
  }
}

.p-meals-panel__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-meals-panel__content {
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-meals-panel--reverse .p-meals-panel__content {
    order: 2;
  }
}

.p-meals-panel__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-meals-panel__text {
    font-size: 1rem;
  }
}

.p-meals-panel__text-note {
  margin-block-start: 0.75rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-meals-panel__guide {
  margin-block-start: 1.5rem;
  padding: 1.25rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-meals-panel__guide {
    margin-block-start: 1.25rem;
    padding: 1rem 1.25rem;
  }
}

.p-meals-panel__guide-title {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-meals-panel__guide-list {
  display: flex;
  flex-direction: column;
  margin-block-start: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-meals-panel__guide-item {
  position: relative;
  padding-inline-start: 0.875rem;
}
.p-meals-panel__guide-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-meals-panel__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 544/360;
}
@media screen and (max-width: 767px) {
  .p-meals-panel__visual {
    order: 1;
  }
}

.p-meals-panel__visual--large {
  aspect-ratio: 579/541;
}

@media screen and (max-width: 767px) {
  .p-meals-panel--reverse .p-meals-panel__visual {
    order: 1;
  }
}

.p-meals-panel__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-medical-guide {
  position: relative;
  z-index: 1;
  padding-block: 2.7777777778vw 6.5972222222vw;
}
@media screen and (max-width: 767px) {
  .p-medical-guide {
    z-index: 0;
    padding-block: 2.0512820513vw 17.9487179487vw;
  }
}

.p-medical-guide__bg {
  position: absolute;
  inset: 0;
  top: -1.875vw;
  z-index: -1;
  width: 100vw;
  height: auto;
  aspect-ratio: 1440/765;
  background: url(../images/image_medical_guide_bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__bg {
    top: -82.0512820513vw;
    width: 100vw;
    aspect-ratio: 390/1147;
    background: url(../images/image_medical_guide_bg_sp.webp) no-repeat top center/cover;
  }
}

.p-medical-guide__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 75.625rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__inner {
    width: min(100%, 35rem);
    padding-inline: 1.25rem;
  }
}

.p-medical-guide__head {
  text-align: center;
}

.p-medical-guide__title {
  color: #ffd6d6;
  font-family: var(--ff-zen);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__title {
    font-size: 3.125rem;
    line-height: 0.94;
  }
}

.p-medical-guide__subtitle {
  position: relative;
  z-index: 1;
  margin-block-start: -1.5rem;
  color: var(--color-text);
  font-size: 1.5rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__subtitle {
    margin-block-start: -1.125rem;
    font-size: 1.5rem;
  }
}

.p-medical-guide__arch-list {
  margin-block-start: 2.6388888889vw;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.25rem;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-medical-guide__arch-list {
    gap: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-medical-guide__arch-list {
    margin-block-start: 5.641025641vw;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.4375rem;
  }
}

.p-medical-guide__arch-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 250/320;
  line-height: 0;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-medical-guide__arch-link:hover {
    opacity: 1;
  }
}

.p-medical-guide__arch-image {
  width: 100%;
  height: 100%;
}

.p-medical-guide__arch-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-medical-guide__arch-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-medical-guide__arch-link:hover .p-medical-guide__arch-overlay {
    opacity: 1;
  }
}

.p-medical-guide__arch-overlay img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-medical-guide__arch-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  translate: -50% calc(-50% + 0.5rem);
  text-align: center;
  color: var(--color-white);
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 767px) {
  .p-medical-guide__arch-text {
    translate: -50% calc(-50% + 0.1875rem);
  }
}

.p-medical-guide__arch-label {
  font-size: 2.25rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .p-medical-guide__arch-label {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-medical-guide__arch-label {
    font-size: 1.625rem;
  }
}

.p-medical-guide__arch-label--small {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .p-medical-guide__arch-label--small {
    font-size: 1.5rem;
  }
}

.p-medical-guide__arch-en {
  margin-block-start: 0.375rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .p-medical-guide__arch-en {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-medical-guide__arch-en {
    font-size: 0.75rem;
    margin-block-start: 0.25rem;
    white-space: nowrap;
  }
}

.p-medical-guide__link-rows {
  margin-block-start: 3.75vw;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-rows {
    margin-block-start: 2.5rem;
  }
}

.p-medical-guide__link-rows .p-medical-guide__link-list + .p-medical-guide__link-list {
  margin-block-start: 3.0555555556vw;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-rows .p-medical-guide__link-list + .p-medical-guide__link-list {
    margin-block-start: 1rem;
  }
}

.p-medical-guide__link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.375rem;
  justify-content: center;
  padding: 0;
  container-type: inline-size;
  container-name: medical-guide-link;
}
@media screen and (max-width: 1023px) {
  .p-medical-guide__link-list {
    gap: 6.1538461538vw;
  }
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-list {
    flex-wrap: nowrap;
    gap: 2.5641025641vw 3.5897435897vw;
  }
}

.p-medical-guide__link-item {
  position: relative;
  flex: 0 1 18.875rem;
}
@media screen and (max-width: 1439px) {
  .p-medical-guide__link-item {
    flex: 0 1 16.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-medical-guide__link-item {
    flex: 0 1 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item {
    max-width: none;
    flex: 0 1 6.875rem;
  }
}
.p-medical-guide__link-item:before {
  content: "";
  position: absolute;
  z-index: -1;
}
.p-medical-guide__link-item--1:before {
  top: -1.875rem;
  left: -1.875rem;
  width: 9.5rem;
  height: auto;
  aspect-ratio: 305/261;
  background: url("../images/image_medical_guide_bg_01.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--1:before {
    top: -1.875rem;
    left: 0.9375rem;
    width: 5.5rem;
    opacity: 0.5;
  }
}
.p-medical-guide__link-item--2:before {
  bottom: -1.5625rem;
  left: -1.9375rem;
  width: 8rem;
  height: auto;
  aspect-ratio: 257/185;
  background: url("../images/image_medical_guide_bg_02.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--2:before {
    bottom: -1.5625rem;
    left: auto;
    right: -2.8125rem;
    width: 5rem;
    opacity: 0.6;
  }
}
.p-medical-guide__link-item--3:before {
  top: -1.5625rem;
  left: -1.875rem;
  width: 8.3125rem;
  height: auto;
  aspect-ratio: 267/181;
  background: url("../images/image_medical_guide_bg_03.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--3:before {
    display: none;
  }
}
.p-medical-guide__link-item--4:before {
  bottom: -1.875rem;
  left: -2.3125rem;
  width: 9.75rem;
  height: auto;
  aspect-ratio: 313/253;
  background: url("../images/image_medical_guide_bg_04.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--4:before {
    aspect-ratio: 267/181;
    background: url("../images/image_medical_guide_bg_03.webp") no-repeat center center/cover;
    bottom: -1.25rem;
    left: -2.1875rem;
    width: 5rem;
    opacity: 0.8;
  }
}
.p-medical-guide__link-item--5:before {
  top: -1.25rem;
  right: -2.375rem;
  width: 8.75rem;
  height: auto;
  aspect-ratio: 281/261;
  background: url("../images/image_medical_guide_bg_05.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--5:before {
    aspect-ratio: 313/253;
    background: url("../images/image_medical_guide_bg_04.webp") no-repeat center center/cover;
    top: auto;
    bottom: -0.625rem;
    right: -2.1875rem;
    width: 5rem;
    opacity: 0.8;
  }
}

.p-medical-guide__link-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 6.875rem;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 0 0.3125rem rgba(226, 226, 226, 0.75);
  transition: background-color var(--duration);
}
@media (any-hover: hover) {
  .p-medical-guide__link-card:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-card {
    flex-direction: column;
    gap: 1rem;
    min-height: 8.75rem;
    padding: 0.625rem 0.625rem 0.9375rem 0.625rem;
  }
}

.p-medical-guide__link-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-icon {
    min-height: 2.6875rem;
    margin-block-start: 0.5rem;
  }
}

.p-medical-guide__link-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-medical-guide__link-item--1 .p-medical-guide__link-icon {
  width: 1.625rem;
  height: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--1 .p-medical-guide__link-icon {
    width: 1.4375rem;
    height: 2.5625rem;
  }
}

.p-medical-guide__link-item--2 .p-medical-guide__link-icon {
  width: 2.0625rem;
  height: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--2 .p-medical-guide__link-icon {
    width: 1.625rem;
    height: 1.875rem;
  }
}

.p-medical-guide__link-item--3 .p-medical-guide__link-icon {
  width: 2.625rem;
  height: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--3 .p-medical-guide__link-icon {
    width: 2.3125rem;
    height: 2.0625rem;
  }
}

.p-medical-guide__link-item--4 .p-medical-guide__link-icon {
  width: 2.625rem;
  height: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--4 .p-medical-guide__link-icon {
    width: 2.25rem;
    height: 2.3125rem;
  }
}

.p-medical-guide__link-item--5 .p-medical-guide__link-icon {
  width: 2.5625rem;
  height: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-item--5 .p-medical-guide__link-icon {
    width: 2rem;
    height: 2.125rem;
  }
}

.p-medical-guide__link-label {
  flex: 1;
  margin-inline-start: 1.5625rem;
  color: var(--color-text);
  font-size: 1.3125rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-label {
    flex: 0 1 100%;
    margin-inline-start: 0;
    padding-inline-end: 0;
    font-size: 1.25rem;
    line-height: 0.9;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-label--long {
    margin-block-start: -0.5rem;
  }
}

.p-medical-guide__link-arrow {
  position: absolute;
  inset-inline-end: 1.125rem;
  inset-block-end: 0.875rem;
  width: 1.25rem;
  height: 0.9375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='15' viewBox='0 0 20 15'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0' y1='7.5' x2='20' y2='7.5' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ffa957'/%3E%3Cstop offset='1' stop-color='%23ec6d80'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23grad)' d='M16.8,6.54H.83s-.31.1-.35.12c-.64.33-.64,1.36,0,1.68.04.02.33.12.35.12h15.97s-4.76,4.93-4.76,4.93c-.76,1.02.53,2.17,1.4,1.27l6.23-6.42c.29-.36.44-.69.23-1.16-2.08-2.37-4.38-4.55-6.55-6.84-.91-.77-2.07.35-1.34,1.33l4.79,4.95Z'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .p-medical-guide__link-arrow {
    inset-inline-end: 0.75rem;
    inset-block-end: 0.875rem;
    width: 1.0625rem;
    height: 0.8125rem;
  }
}

.p-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: max(31.25rem, 100%);
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: 166.6666666667vw;
  }
}

.p-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.p-mv__title-wrap {
  display: flex;
  position: absolute;
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  container-type: inline-size;
  inset-block: 0;
  inset-inline-start: 0;
  width: 49.2361111111vw;
  margin-block-start: 14.5833333333vw;
  padding-inline: 5.5555555556vw 0;
  color: var(--color-text);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    inset-inline: 0;
    width: 100%;
    max-width: none;
    margin-block-start: 29.4871794872vw;
    margin-inline: auto;
    padding-inline: 1.25rem;
    pointer-events: none;
  }
}

.p-mv__catch {
  width: 24.375vw;
  height: auto;
  aspect-ratio: 351/60;
  margin-inline-start: 4.5138888889vw;
}
@media screen and (max-width: 767px) {
  .p-mv__catch {
    width: 48.2051282051vw;
    margin-inline-start: 0vw;
  }
}
.p-mv__catch img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-mv__main-title {
  margin-block-start: 0.8333333333vw;
  margin-inline-start: 4.375vw;
  font-size: 1.8055555556vw;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-mv__main-title {
    margin-block-start: 0.2564102564vw;
    margin-inline-start: 0vw;
    font-size: 4.1025641026vw;
    line-height: 1.4;
  }
}

.p-mv__button-wrap {
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-mv__button-wrap {
    max-width: none;
  }
}

.p-mv__button-list {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__button-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    overflow: hidden;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    min-height: 102.5641025641vw;
  }
}

.p-mv__button-item {
  position: absolute;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__button-item {
    pointer-events: auto;
  }
}
.p-mv__button-item:nth-child(1) {
  top: 0.6944444444vw;
  left: 0.4861111111vw;
  width: 17.7833333333vw;
  aspect-ratio: 256.08/238.08;
}
@media screen and (max-width: 767px) {
  .p-mv__button-item:nth-child(1) {
    top: 13.0769230769vw;
    left: -2.0512820513vw;
    width: 56.6666666667vw;
  }
}
.p-mv__button-item:nth-child(2) {
  top: 4.8611111111vw;
  left: 15.2777777778vw;
  width: 18.35vw;
  aspect-ratio: 264.24/266.16;
}
@media screen and (max-width: 767px) {
  .p-mv__button-item:nth-child(2) {
    top: 9.2307692308vw;
    left: 43.5897435897vw;
    width: 59.2307692308vw;
  }
}
.p-mv__button-item:nth-child(3) {
  top: -0.2083333333vw;
  left: 29.7916666667vw;
  width: 20.55vw;
  aspect-ratio: 295.92/278.88;
}
@media screen and (max-width: 767px) {
  .p-mv__button-item:nth-child(3) {
    top: 47.6923076923vw;
    left: 17.4358974359vw;
    width: 65.1282051282vw;
  }
}

.p-mv__button-link {
  position: absolute;
  display: block;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 3;
  line-height: 0;
  text-decoration: none;
  transition: transform var(--duration);
}

.p-mv__button-link + picture img {
  transition: opacity var(--duration);
}

@media (any-hover: hover) {
  .p-mv__button-link:hover + picture img {
    opacity: 0.7;
  }
}
.p-mv__button-link:focus-visible + picture img {
  opacity: 0.7;
}

.p-mv__swiper {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-mv__swiper .swiper-wrapper {
  height: 100%;
}

.p-mv__swiper .swiper-slide {
  height: 100%;
}

.p-mv__swiper .p-mv__slide-image {
  width: 100%;
  height: 100%;
}

.p-mv__swiper .p-mv__slide-image picture,
.p-mv__swiper .p-mv__slide-image img {
  display: block;
  width: 100vw;
  height: auto;
  aspect-ratio: 1440/765;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__swiper .p-mv__slide-image picture,
  .p-mv__swiper .p-mv__slide-image img {
    width: 100vw;
    height: auto;
    aspect-ratio: 390/346;
    object-fit: cover;
  }
}

.p-mv__slider-controls {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9027777778vw;
  inset-block-end: 4.7916666667vw;
  inset-inline-end: 1.3888888889vw;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-controls {
    gap: 0.8125rem;
    inset-block-end: 3.6875rem;
    inset-inline-end: 1.375rem;
  }
}

.p-mv__swiper .swiper-pagination {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1111111111vw;
  width: auto;
  transform: none;
}
@media screen and (max-width: 767px) {
  .p-mv__swiper .swiper-pagination {
    gap: 1rem;
  }
}

.p-mv__swiper .swiper-pagination-bullet {
  display: block;
  width: 0.7638888889vw;
  height: 0.7638888889vw;
  margin: 0;
  border-radius: 50%;
  background: #babbbc;
  opacity: 1;
  transition: background var(--duration);
}
@media screen and (max-width: 767px) {
  .p-mv__swiper .swiper-pagination-bullet {
    width: 2.8205128205vw;
    height: 2.8205128205vw;
  }
}

.p-mv__swiper .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #ef9057 0%, #ec6d80 100%);
}

.p-mv__slider-play {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  padding: 0;
  border: 1px solid #babbbc;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: border-color var(--duration), background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-mv__slider-play {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
}
@media (any-hover: hover) {
  .p-mv__slider-play:hover {
    border-color: #babbbc;
    background-color: rgba(255, 255, 255, 0.08);
  }
}

.p-mv__slider-play::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: 100%;
  padding: 0.375rem 0.625rem;
  border-radius: 0.25rem;
  background-color: #333;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  translate: -50% -0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

@media (any-hover: hover) {
  .p-mv__slider-play:hover::after {
    opacity: 1;
    visibility: visible;
  }
}
.p-mv__slider-play:focus-visible::after {
  opacity: 1;
  visibility: visible;
}

.p-mv__slider-play-pause {
  position: relative;
  display: flex;
  gap: 0.2083333333vw;
  align-items: center;
  justify-content: center;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-play-pause {
    gap: 0.1875rem;
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-mv__slider-play-pause::before,
.p-mv__slider-play-pause::after {
  content: "";
  display: block;
  flex: none;
  width: 0.0694444444vw;
  height: 0.4861111111vw;
  border-radius: 1px;
  background-color: #babbbc;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-play-pause::before,
  .p-mv__slider-play-pause::after {
    width: 0.0625rem;
    height: 0.4375rem;
  }
}

.p-mv__slider-play-play {
  display: none;
  width: 0;
  height: 0;
  margin-inline-start: 0.1388888889vw;
  border-style: solid;
  border-width: 0.2777777778vw 0 0.2777777778vw 0.4166666667vw;
  border-color: transparent transparent transparent #b0b0b0;
}
@media screen and (max-width: 767px) {
  .p-mv__slider-play-play {
    margin-inline-start: 0.125rem;
    border-width: 1.0256410256vw 0 1.0256410256vw 1.5384615385vw;
  }
}

.p-mv__slider-play.is-paused .p-mv__slider-play-pause {
  display: none;
}

.p-mv__slider-play.is-paused .p-mv__slider-play-play {
  display: block;
}

.p-naika-intro {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-naika-intro {
    margin-block-start: 3rem;
  }
}

.p-naika-intro__text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-intro__text {
    font-size: 0.9375rem;
  }
}

.p-naika-treatment {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-naika-treatment {
    margin-block-start: 3.75rem;
  }
}

.p-naika-treatment__inner {
  display: flex;
  flex-direction: column;
}

.p-naika-treatment__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-block-start: 2rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 3.5rem 5rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-naika-treatment__list-wrap {
    margin-block-start: 1.5rem;
    padding-block: 2.5rem;
  }
}

.p-naika-treatment__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-naika-treatment__list {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
    gap: 2rem;
  }
}

.p-naika-treatment__item {
  min-inline-size: 0;
}

.p-naika-treatment__card {
  overflow: hidden;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-naika-treatment__card {
    border-radius: 0.75rem;
  }
}
.p-naika-treatment__card .c-title-sub {
  margin-block-end: 0;
}

.p-naika-treatment__body {
  padding: 2.25rem 2.625rem 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-naika-treatment__body {
    gap: 1rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-naika-treatment__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-treatment__text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.p-naika-treatment__sub {
  margin-block-start: 1.5rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-treatment__sub {
    font-size: 1rem;
  }
}
.p-naika-treatment__sub + .p-naika-treatment__text {
  margin-block-start: 0.5rem;
}

.p-naika-treatment__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
  margin-block-start: 1rem;
}

.p-naika-treatment__tag {
  padding: 0.375rem 1.125rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid #999;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-treatment__tag {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.875rem;
  }
}

.p-naika-vaccination {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination {
    margin-block-start: 3.75rem;
  }
}

.p-naika-vaccination__inner {
  display: flex;
  flex-direction: column;
}

.p-naika-vaccination__lead {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__lead {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-naika-vaccination__box {
  display: flex;
  flex-direction: column;
  margin-block-start: 2.5rem;
  padding: 2.5rem 3rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 8px 5px rgba(234, 185, 211, 0.5);
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__box {
    margin-block-start: 1.75rem;
    padding: 1.75rem 1.5rem;
  }
}

.p-naika-vaccination__box-heading {
  padding-block-end: 1.25rem;
  border-block-end: 0.0625rem solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__box-heading {
    padding-block-end: 1rem;
    font-size: 1rem;
  }
}

.p-naika-vaccination__columns {
  display: flex;
  gap: 0rem;
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__columns {
    flex-direction: column;
    gap: 1.75rem;
    margin-block-start: 1.25rem;
  }
}

.p-naika-vaccination__col {
  flex: 1;
  padding-inline-end: 3rem;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__col {
    padding-inline-end: 0;
  }
}
.p-naika-vaccination__col + .p-naika-vaccination__col {
  padding-inline-start: 3rem;
  padding-inline-end: 0;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__col + .p-naika-vaccination__col {
    padding-inline-start: 0;
    border-inline-start: none;
    padding-block-start: 1.75rem;
  }
}

.p-naika-vaccination__col-note {
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__col-note {
    font-size: 0.75rem;
  }
}

.p-naika-vaccination__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block-start: 0.75rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__list {
    margin-block-start: 0.5rem;
  }
}

.p-naika-vaccination__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__item {
    font-size: 0.9375rem;
  }
}
.p-naika-vaccination__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-naika-vaccination__note {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__note {
    margin-block-start: 1rem;
  }
}

.p-naika-vaccination__note-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-naika-vaccination__note-text {
    font-size: 0.9375rem;
  }
}

.p-naika-nutrition {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-naika-nutrition {
    margin-block-start: 3.75rem;
  }
}

.p-naika-nutrition__inner {
  display: flex;
  flex-direction: column;
}

.p-naika-nutrition__lead {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-naika-nutrition__lead {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-naika-nutrition__box {
  display: flex;
  flex-direction: column;
  margin-block-start: 2.5rem;
  padding: 2.5rem 3rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  box-shadow: 0 0 8px 5px rgba(234, 185, 211, 0.5);
}
@media screen and (max-width: 767px) {
  .p-naika-nutrition__box {
    margin-block-start: 1.75rem;
    padding: 1.75rem 1.5rem;
  }
}

.p-naika-nutrition__box-heading {
  padding-block-end: 1.25rem;
  border-block-end: 0.0625rem solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-nutrition__box-heading {
    padding-block-end: 1rem;
    font-size: 1rem;
  }
}

.p-naika-nutrition__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block-start: 1.75rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-naika-nutrition__list {
    margin-block-start: 1.25rem;
  }
}

.p-naika-nutrition__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-nutrition__item {
    font-size: 0.9375rem;
  }
}
.p-naika-nutrition__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-naika-links {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-naika-links {
    margin-block-start: 3.75rem;
    margin-block-end: 3.75rem;
  }
}

.p-naika-links__shell {
  width: 100%;
  padding-block: 3.75rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-naika-links__shell {
    border-radius: 1.875rem 1.875rem 0 0;
  }
}

.p-naika-links__board {
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-naika-links__board {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.p-naika-linkbox__box-heading {
  align-self: stretch;
  padding-block-end: 1.25rem;
  border-block-end: 0.0625rem solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-naika-linkbox__box-heading {
    max-width: 33.75rem;
    padding: 2.5rem 1.25rem 3rem;
    border-radius: 1.875rem 1.875rem 0 0;
  }
}

.p-naika-links__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-naika-links__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-naika-links__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.875rem 1.25rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-naika-links__card {
    padding: 1.5rem 1.25rem;
  }
}

.p-naika-links__card-title {
  align-self: stretch;
  padding-block-end: 1rem;
  padding-inline-start: 1.25rem;
  border-block-end: 0.0625rem solid #ec6d6f;
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-naika-links__card-title {
    padding-block-end: 1.125rem;
    font-size: 1.125rem;
  }
}

.p-naika-links__text {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-naika-links__text {
    margin-block-start: 1.125rem;
    font-size: 0.9375rem;
  }
}

.p-naika-links__btn-wrap {
  margin-block-start: 1.5rem;
  text-align: center;
}

.p-newborn-photo-gallery {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-newborn-photo-gallery {
    margin-block-start: 3rem;
    margin-block-end: 3rem;
  }
}

.p-newborn-photo-gallery__inner {
  display: flex;
  flex-direction: column;
}

.p-newborn-photo-gallery__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.875rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-newborn-photo-gallery__list {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-newborn-photo-gallery__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.p-newborn-photo-gallery__item {
  min-inline-size: 0;
}

.p-newborn-photo-gallery__card {
  display: flex;
  flex-direction: column;
}

.p-newborn-photo-gallery__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.p-newborn-photo-gallery__trigger:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-newborn-photo-gallery__trigger:hover .p-newborn-photo-gallery__image {
    transform: scale(1.05);
  }
}
@media (any-hover: hover) and (prefers-reduced-motion: reduce) {
  .p-newborn-photo-gallery__trigger:hover .p-newborn-photo-gallery__image {
    transform: none;
  }
}

.p-newborn-photo-gallery__visual {
  display: block;
  overflow: hidden;
  aspect-ratio: 310/222;
  background-color: #d6d6d6;
  border-radius: 0.625rem;
}

.p-newborn-photo-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration);
}
@media (prefers-reduced-motion: reduce) {
  .p-newborn-photo-gallery__image {
    transition: none;
  }
}

.p-newborn-photo-gallery__date {
  display: block;
  margin-block-start: 0.5rem;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
}
@media screen and (max-width: 767px) {
  .p-newborn-photo-gallery__date {
    font-size: 0.9375rem;
  }
}

.p-newborn-photo-gallery__text {
  margin-block-start: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
}
@media screen and (max-width: 767px) {
  .p-newborn-photo-gallery__text {
    font-size: 0.9375rem;
  }
}

.p-newborn-photo-gallery__pagination {
  margin-block-start: 3rem;
  --_pagination-bg: var(--color-white);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-black);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-gray);
  --_pagination-border-hover: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-newborn-photo-gallery__pagination {
    margin-block-start: 2rem;
  }
}

.p-newborn-photo-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: var(--z-index-modal);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
}

.p-newborn-photo-modal.is-open {
  pointer-events: auto;
}

.p-newborn-photo-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background-color: oklch(0 0 0/60%);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease-in;
}
.p-newborn-photo-modal.is-open .p-newborn-photo-modal__backdrop {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .p-newborn-photo-modal__backdrop {
    transition: none;
  }
}

.p-newborn-photo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 60rem);
  max-height: calc(100dvh - 3rem);
  padding: 3rem 1rem 1rem;
  opacity: 0;
  transform: scale(0.94) translateY(0.5rem);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .p-newborn-photo-modal__dialog {
    padding: 3rem 0 3rem;
  }
}
.p-newborn-photo-modal.is-open .p-newborn-photo-modal__dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .p-newborn-photo-modal__dialog {
    transition: none;
    transform: none;
  }
}

.p-newborn-photo-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.p-newborn-photo-modal__close:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}

.p-newborn-photo-modal__figure {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(100dvh - 7.5rem);
  margin: 0;
}

.p-newborn-photo-modal__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 7.5rem);
  height: auto;
  object-fit: contain;
}

.p-news-list {
  padding-block: 7.5rem 6.25rem;
  background-color: var(--color-base);
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: 3.75rem 3.75rem;
  }
}

.p-news-list__inner {
  width: min(100%, 68.75rem);
}
@media screen and (max-width: 767px) {
  .p-news-list__inner {
    width: min(100%, 37.5rem);
  }
}

.p-news-list__tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-news-list__tab-list {
    gap: 0.5rem;
  }
}

.p-news-list__tab-item {
  margin: 0;
}

.p-news-list__tab {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--color-text);
  border-radius: 0.5rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--duration), background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-news-list__tab {
    padding: 0.25rem 0.5rem;
    font-size: 0.8125rem;
  }
}
@media (any-hover: hover) {
  .p-news-list__tab:hover {
    border-color: var(--color-text);
    background-color: oklch(from var(--color-gray) l c h/50%);
    color: var(--color-text);
  }
}

.p-news-list__tab.is-active {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  cursor: default;
}
@media (any-hover: hover) {
  .p-news-list__tab.is-active:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
  }
}

.p-news-list__container {
  margin-block-start: 5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-news-list__container {
    margin-block-start: 5rem;
  }
}

.p-news-list__item {
  position: relative;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-text);
  text-decoration: none;
}
.p-news-list__item:first-child .p-news-list__card {
  padding-block-start: 0;
}
@media (any-hover: hover) {
  .p-news-list__item:hover .p-news-list__arrow {
    translate: 0.3125rem -50%;
  }
}

.p-news-list__card {
  position: relative;
  display: block;
  padding-block: 1.5rem 1.5rem;
  padding-inline: 0.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__card {
    padding-block: 1.8125rem 1.8125rem;
    padding-inline-end: 0;
  }
}

.p-news-list__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__meta {
    gap: 0.5rem 1rem;
  }
}

.p-news-list__date {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--ff-en);
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    font-size: 0.875rem;
  }
}

.p-news-list__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.p-news-list__category {
  display: inline-block;
  min-width: 6.625rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-primary);
  border-radius: 100vmax;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__category {
    min-width: 5rem;
    padding: 0.0625rem 1.25rem;
  }
}

.p-news-list__title {
  margin: 0;
  margin-block-start: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.p-news-list__arrow {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 0.5rem;
  height: 0.875rem;
  translate: 0 -50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14' width='8' height='14'%3E%3Cpath d='M1 13l6-6-6-6' fill='none' stroke='%23008ad2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color-primary);
  transition: translate var(--duration);
}
@media screen and (max-width: 767px) {
  .p-news-list__arrow {
    display: none;
  }
}

.p-news-list__empty {
  margin-block-start: 2rem;
  padding: 3.75rem;
  border-radius: 0.625rem;
  box-shadow: 0 1px 3px oklch(from var(--color-black) l c h/10%), 0 1px 2px oklch(from var(--color-black) l c h/10%);
  background-color: var(--color-white);
  color: #999999;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-list__empty {
    margin-block-start: 1.5rem;
  }
}

.p-news-list__empty p {
  margin: 0;
}

.p-news-list__pagination {
  margin-block-start: 3rem;
  --_pagination-bg: var(--color-white);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-black);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-gray);
  --_pagination-border-hover: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-news-list__pagination {
    margin-block-start: 2.5rem;
  }
}

.p-outpatient-schedule {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-schedule {
    margin-block-start: 3.75rem;
    margin-block-end: 3.75rem;
  }
}

.p-outpatient-schedule__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-schedule__inner {
    gap: 3.75rem;
  }
}

.p-outpatient-division {
  display: flex;
  flex-direction: column;
}

.p-outpatient-division__content {
  width: min(100%, 67.5rem);
  margin-inline: auto;
  margin-block-start: 2rem;
}
.p-outpatient-division__content h1:not(.p-single__title) {
  margin-block-start: 3rem;
  padding-block-end: 1rem;
  color: var(--color-text);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content h1:not(.p-single__title) {
    margin-block-start: 4rem;
    font-size: 2.25rem;
  }
}
.p-outpatient-division__content h2:not(.p-single__title) {
  position: relative;
  margin-block-start: 2.5rem;
  padding-inline: 1.25rem;
  padding-block-end: 1.84375rem;
  border-block-end: 1px solid #acacac;
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.18;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content h2:not(.p-single__title) {
    padding-inline: 0.9375rem;
    padding-block-end: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.p-outpatient-division__content h2:not(.p-single__title)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 15.625rem;
  height: 0.0625rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content h2:not(.p-single__title)::before {
    width: 0.625rem;
  }
}
.p-outpatient-division__content h3 {
  position: relative;
  margin-block-start: 2.1875rem;
  padding-inline: 1.25rem;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content h3 {
    padding-inline: 0.9375rem;
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
.p-outpatient-division__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.1875rem;
  height: 2.625rem;
  border-radius: 100vmax;
  background-color: var(--color-primary);
}
.p-outpatient-division__content h4 {
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 2.67;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content h4 {
    font-size: max(1rem, 8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.p-outpatient-division__content p {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content p {
    margin-block-start: 0.5rem;
  }
}
.p-outpatient-division__content ul,
.p-outpatient-division__content ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content ul,
  .p-outpatient-division__content ol {
    margin-block-start: 1.25rem;
    padding-inline-start: 2rem;
  }
}
.p-outpatient-division__content ul {
  list-style-type: disc;
}
.p-outpatient-division__content ol {
  list-style-type: decimal;
}
.p-outpatient-division__content li {
  margin-block-start: 0.5rem;
  line-height: 1.8;
}
.p-outpatient-division__content a:not(.wp-block-button__link):not(.wp-element-button) {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-outpatient-division__content a:not(.wp-block-button__link):not(.wp-element-button):hover {
    opacity: 0.8;
  }
}
.p-outpatient-division__content img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content img {
    margin-block-start: 2rem;
  }
}
.p-outpatient-division__content figcaption {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content figcaption {
    font-size: 0.75rem;
  }
}
.p-outpatient-division__content blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content blockquote {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 2rem;
  }
}
.p-outpatient-division__content blockquote p {
  margin-block-start: 0;
}
.p-outpatient-division__content code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: 0.875rem;
}
.p-outpatient-division__content pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content pre {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}
.p-outpatient-division__content pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}
.p-outpatient-division__content table {
  width: 100%;
  border: 0.0625rem solid var(--color-border-gray);
  border-collapse: collapse;
}
.p-outpatient-division__content th,
.p-outpatient-division__content td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content th,
  .p-outpatient-division__content td {
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}
.p-outpatient-division__content th {
  background-color: #fdeeee;
  color: var(--color-text);
}
.p-outpatient-division__content td {
  color: var(--color-text);
}
.p-outpatient-division__content hr {
  margin-block-start: 2rem;
  border: none;
  border-block-start: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content hr {
    margin-block-start: 3rem;
  }
}
.p-outpatient-division__content strong {
  color: var(--color-text);
  font-weight: 700;
}
.p-outpatient-division__content em {
  font-style: italic;
}
.p-outpatient-division__content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-block-start: 1.5rem;
  text-align: center;
}
.p-outpatient-division__content .wp-block-buttons .wp-block-button {
  margin: 0;
}
.p-outpatient-division__content .wp-block-button__link,
.p-outpatient-division__content .wp-block-buttons .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
  padding: 0.9375rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #f5a86a 0%, #f06b9a 100%);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__content .wp-block-button__link,
  .p-outpatient-division__content .wp-block-buttons .wp-element-button {
    min-width: min(100%, 12.5rem);
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-outpatient-division__content .wp-block-button__link:hover,
  .p-outpatient-division__content .wp-block-buttons .wp-element-button:hover {
    color: var(--color-white);
    opacity: 0.8;
  }
}
.p-outpatient-division__content .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-outpatient-division__content .wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: var(--color-primary);
  }
}
.p-outpatient-division__content .wp-block-table {
  margin-block-start: 0;
}
.p-outpatient-division__content table:not(.c-consultation-hours__table) {
  margin-block-start: 0;
}

.p-outpatient-division__table-scroll {
  margin-block-start: 0;
}
.p-outpatient-division__table-scroll .scroll-hint-text {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__table-scroll .c-consultation-hours__table {
    min-width: 53.75rem;
    border-collapse: separate;
    border-spacing: 0;
  }
}
.p-outpatient-division__table-scroll .c-consultation-hours__col--corner {
  width: 5.4375rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__table-scroll .c-consultation-hours__col--corner {
    width: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__table-scroll .c-consultation-hours__th {
    font-size: 0.9375rem;
    padding: 1rem 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__table-scroll .c-consultation-hours__th--corner {
    position: sticky;
    left: 0;
    z-index: 3;
    background-color: #fdeeee;
    box-shadow: 0.25rem 0 0.5rem rgba(13, 41, 54, 0.08);
  }
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__table-scroll .c-consultation-hours__row-head {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: var(--color-white);
    box-shadow: 0.25rem 0 0.5rem rgba(13, 41, 54, 0.08);
    font-size: 0.9375rem;
    line-height: 1.3;
  }
}
.p-outpatient-division__table-scroll .c-consultation-hours__row-head-note {
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-outpatient-division__table-scroll .c-consultation-hours__cell {
    padding: 0.5rem 0.25rem;
    font-size: 0.9375rem;
    line-height: 1.3;
  }
}

.p-painless-delivery {
  margin-block: 5.4375rem 0;
}
@media screen and (max-width: 767px) {
  .p-painless-delivery {
    margin-block: 2.5rem 0;
  }
}

.p-painless-delivery__sub-title {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-painless-delivery__sub-title {
    margin-block-start: 1.5rem;
  }
}

.p-painless-delivery__layout {
  margin-block-start: 2.9375rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44.1696113074%;
  gap: 3.25rem;
  margin-inline: 1.625rem 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-painless-delivery__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
    margin-inline: 1.25rem;
  }
}

.p-painless-delivery__content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-painless-delivery__content {
    order: 2;
    gap: 2rem;
  }
}

.p-painless-delivery__content-text {
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-painless-delivery__content-text {
    font-size: 1rem;
  }
}

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

.p-painless-delivery__image-wrap {
  aspect-ratio: 500/375;
  overflow: hidden;
  border-radius: 0.625rem;
  margin-block-start: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-painless-delivery__image-wrap {
    order: 1;
    margin-block-start: 0;
  }
}

.p-painless-flow {
  margin-block: 5.6875rem 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-painless-flow {
    margin-block: 2.5rem 2.5rem;
  }
}

.p-painless-flow__inner {
  display: flex;
  flex-direction: column;
}

.p-painless-flow__layout {
  max-inline-size: 65.625rem;
  margin-inline: auto;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__layout {
    margin-block-start: 1.75rem;
  }
}
.p-painless-flow__layout > .c-pdf-downloads {
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__layout > .c-pdf-downloads {
    margin-block-start: 2rem;
  }
}

.p-painless-flow__list {
  position: relative;
  counter-reset: painless-flow;
  margin: 0;
  padding-inline-start: 0;
  list-style: none;
}
.p-painless-flow__list::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset-block: 2rem;
  inset-inline-start: 3.25rem;
  inline-size: 0.375rem;
  background-color: #e9e9e9;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__list::before {
    content: none;
    display: none;
  }
}

.p-painless-flow__item {
  counter-increment: painless-flow;
  position: relative;
  z-index: 1;
}
.p-painless-flow__item:not(:first-child) {
  margin-block-start: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__item:not(:first-child) {
    margin-block-start: 1.25rem;
  }
}

.p-painless-flow__card {
  display: flex;
  align-items: center;
  padding: 1rem 2.25rem 1rem 1.375rem;
  border-radius: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-painless-flow__card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
    border-radius: 0.625rem;
  }
}

.p-painless-flow__meta {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  inline-size: 4.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__meta {
    flex-direction: row;
    inline-size: auto;
    justify-content: flex-start;
    gap: 0.75rem;
  }
}

.p-painless-flow__label {
  color: #ec6d6f;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__label {
    font-size: 0.875rem;
  }
}

.p-painless-flow__step {
  display: block;
  margin-block-start: 0.25rem;
  color: #ec6d6f;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__step {
    margin-block-start: 0;
    font-size: 2.25rem;
  }
}
.p-painless-flow__step::before {
  content: counter(painless-flow, decimal-leading-zero);
}

.p-painless-flow__divider {
  flex-shrink: 0;
  align-self: stretch;
  inline-size: 0.0625rem;
  margin-block: 0.5rem;
  margin-inline: 1.125rem 2.25rem;
  background-color: #ec6d6f;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__divider {
    align-self: stretch;
    inline-size: auto;
    block-size: 0.0625rem;
    margin-block: 1rem 1.25rem;
    margin-inline: 0;
  }
}

.p-painless-flow__body {
  flex: 1;
  min-inline-size: 0;
  padding-block: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__body {
    padding-block-start: 0;
  }
}

.p-painless-flow__title {
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__title {
    font-size: 1rem;
  }
}

.p-painless-flow__text {
  margin-block: 0.9375rem 1.125rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-painless-flow__text {
    margin-block-start: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.p-painless-merit {
  margin-block: 8.6875rem 0;
}
@media screen and (max-width: 767px) {
  .p-painless-merit {
    margin-block: 3rem 0;
  }
}

.p-painless-merit__inner {
  display: flex;
  flex-direction: column;
}

.p-painless-merit__text {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__text {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-painless-merit__layout {
  margin-block-start: 2.375rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 3.75rem 4.125rem;
  padding-inline: 3.125rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f8fce8;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__layout {
    margin-block-start: 1.75rem;
    padding-block: 2.5rem 3rem;
    padding-inline: 1.25rem;
  }
}

.p-painless-merit__box-wrap {
  display: flex;
  flex-direction: column;
  max-inline-size: 65.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__box-wrap {
    max-inline-size: min(100%, 33.75rem);
  }
}

.p-painless-merit__box {
  padding: 2.25rem 4.125rem 3rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__box {
    padding: 1.75rem 1.5rem;
    border-radius: 0.625rem;
  }
}

.p-painless-merit__box:not(:first-child) {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__box:not(:first-child) {
    margin-block-start: 1.25rem;
  }
}

.p-painless-merit__box--merit {
  border-color: #f9cdce;
  background-color: #fff9fc;
}

.p-painless-merit__box--demerit {
  border-color: #add7ee;
  background-color: #f5fdff;
}

.p-painless-merit__box-title {
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__box-title {
    font-size: 1.125rem;
  }
}
.p-painless-merit__box-title::after {
  content: "";
  display: block;
  inline-size: 3.3125rem;
  block-size: 0.125rem;
  margin-block-start: 1rem;
  background-color: #e87a89;
}

.p-painless-merit__box--demerit .p-painless-merit__box-title {
  color: #2c98d2;
}

.p-painless-merit__box--demerit .p-painless-merit__box-title::after {
  background-color: #2c98d2;
}

.p-painless-merit__list {
  margin-block-start: 2rem;
  padding-inline-start: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__list {
    margin-block-start: 1.25rem;
  }
}

.p-painless-merit__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__item {
    gap: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.p-painless-merit__item:not(:first-child) {
  margin-block-start: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__item:not(:first-child) {
    margin-block-start: 0.75rem;
  }
}

.p-painless-merit__item::before {
  content: "";
  flex-shrink: 0;
  inline-size: 1.125rem;
  block-size: 1.125rem;
  margin-block-start: 0.3em;
  border-radius: 50%;
  background-color: #ec6d6f;
}
@media screen and (max-width: 767px) {
  .p-painless-merit__item::before {
    inline-size: 0.875rem;
    block-size: 0.875rem;
  }
}

.p-painless-merit__box--demerit .p-painless-merit__item::before {
  background-color: #8cc7e7;
}

.p-pdf-list {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-pdf-list {
    margin-block-start: 3rem;
    margin-block-end: 3rem;
  }
}

.p-pdf-list__inner {
  display: flex;
  flex-direction: column;
}

.p-pdf-list__items {
  width: min(100%, 56.25rem);
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.p-pdf-list__item {
  border-block-end: 0.0625rem solid #d9d9d9;
}
.p-pdf-list__item:first-child {
  border-block-start: 0.0625rem solid #d9d9d9;
}

.p-pdf-list__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-pdf-list__link {
    gap: 0.5rem;
    padding-block: 0.875rem;
  }
}
.p-pdf-list__link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-pdf-list__link:hover {
    color: var(--color-primary);
  }
}

.p-pdf-list__title {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .p-pdf-list__title {
    font-size: 1rem;
  }
}

.p-pdf-list__pagination {
  margin-block-start: 3rem;
  --_pagination-bg: var(--color-white);
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-text);
  --_pagination-bg-hover: oklch(from var(--color-gray) l c h / 50%);
  --_pagination-active-bg: var(--color-black);
  --_pagination-active-text: var(--color-white);
  --_pagination-border: var(--color-gray);
  --_pagination-border-hover: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-pdf-list__pagination {
    margin-block-start: 2rem;
  }
}

.p-postpartum-care-features {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-features {
    margin-block-start: 3rem;
  }
}

.p-postpartum-care-features__inner {
  display: flex;
  flex-direction: column;
}

.p-postpartum-care-features__heading {
  margin-block-end: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-features__heading {
    margin-block-end: 2rem;
  }
}

.p-postpartum-care-features__panel {
  position: relative;
  margin-block-start: 3rem;
  padding: 3.5rem 1.25rem 3.75rem;
  border-radius: 1rem;
  background-color: var(--color-white);
  box-shadow: 0 0.125rem 1.25rem rgba(13, 41, 54, 0.08);
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-features__panel {
    padding: 2.5rem 1.25rem 2.75rem;
    border-radius: 0.75rem;
  }
}
.p-postpartum-care-features__panel::before, .p-postpartum-care-features__panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-features__panel::before, .p-postpartum-care-features__panel::after {
    zoom: 0.8;
  }
}
.p-postpartum-care-features__panel::before {
  inset-block-start: -2.5625rem;
  inset-inline-start: 0.625rem;
  inline-size: 5.9375rem;
  block-size: 6.25rem;
  background: url("../images/image_postpartum_care_features_deco_tl.webp") no-repeat center center/contain;
}
.p-postpartum-care-features__panel::after {
  inset-block-end: -5.5rem;
  inset-inline-end: 1.25rem;
  inline-size: 8.375rem;
  block-size: 8rem;
  background: url("../images/image_postpartum_care_features_deco_br.webp") no-repeat center center/contain;
}

.p-postpartum-care-features__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-postpartum-care-features__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-features__list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.p-postpartum-care-features__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-inline-size: 0;
  padding-inline: 1.5rem;
  text-align: center;
}
.p-postpartum-care-features__item:not(:first-child)::before {
  content: "";
  position: absolute;
  inset-block: 1.5rem;
  inset-inline-start: 0;
  inline-size: 0.0625rem;
  background-color: #e0e0e0;
}
@media screen and (max-width: 1023px) {
  .p-postpartum-care-features__item:not(:first-child)::before {
    content: none;
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .p-postpartum-care-features__item {
    padding-inline: 1.5rem;
  }
  .p-postpartum-care-features__item:nth-child(odd)::after {
    content: "";
    position: absolute;
    inset-block: 1.5rem;
    inset-inline-end: 0;
    inline-size: 0.0625rem;
    background-color: #e0e0e0;
  }
  .p-postpartum-care-features__item:nth-child(2)::after, .p-postpartum-care-features__item:nth-child(4)::after {
    content: none;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-features__item {
    padding-inline: 0;
  }
  .p-postpartum-care-features__item:nth-child(odd)::after {
    content: none;
    display: none;
  }
  .p-postpartum-care-features__item:not(:first-child) {
    padding-block-start: 1.75rem;
    border-block-start: 0.0625rem solid #e0e0e0;
  }
  .p-postpartum-care-features__item:not(:first-child)::before {
    content: none;
    display: none;
  }
}

.p-postpartum-care-features__icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  inline-size: 5rem;
  block-size: 5rem;
}

.p-postpartum-care-features__icon {
  display: block;
  inline-size: 4.375rem;
  block-size: 4.375rem;
  background: linear-gradient(135deg, #ef9057 0%, #ec6d80 100%);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
}

.p-postpartum-care-features__icon--rest {
  inline-size: 3.75rem;
  block-size: 2.9375rem;
  mask-image: url("../images/icon_postpartum_care_rest.svg");
}

.p-postpartum-care-features__icon--breastfeeding {
  inline-size: 3.4375rem;
  block-size: 3.4375rem;
  mask-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='55'%20height='55'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2055%2055'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20url(%23_新規グラデーションスウォッチ_2-2);%20}%20.cls-2%20{%20fill:%20url(%23_新規グラデーションスウォッチ_2-3);%20}%20.cls-3%20{%20fill:%20url(%23_新規グラデーションスウォッチ_2);%20}%20%3c/style%3e%3clinearGradient%20id='_新規グラデーションスウォッチ_2'%20data-name='新規グラデーションスウォッチ%202'%20x1='0'%20y1='23.71'%20x2='31.07'%20y2='23.71'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0'%20stop-color='%23ef9057'/%3e%3cstop%20offset='1'%20stop-color='%23ec6d80'/%3e%3c/linearGradient%3e%3clinearGradient%20id='_新規グラデーションスウォッチ_2-2'%20data-name='新規グラデーションスウォッチ%202'%20x1='26.56'%20y1='40.76'%20x2='55'%20y2='40.76'%20xlink:href='%23_新規グラデーションスウォッチ_2'/%3e%3clinearGradient%20id='_新規グラデーションスウォッチ_2-3'%20data-name='新規グラデーションスウォッチ%202'%20x1='35.5'%20y1='40.75'%20x2='45.98'%20y2='40.75'%20xlink:href='%23_新規グラデーションスウォッチ_2'/%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cg%3e%3cpath%20class='cls-3'%20d='M.66,47.41c-.16-.05-.65-.64-.54-.88.32-5.72-.41-11.88,0-17.55s4.96-11.09,10.51-12.38c-3.33-2.59-4.85-6.58-3.39-10.69C9.6-.74,18.51-2.09,22.85,3.47c3.27,4.18,2.1,10.07-2.06,13.14,4.09,1,7.62,4.04,9.31,7.9.28.64,1.11,2.81.94,3.39-.03.1-1.22,1.19-1.39,1.33-.12.09-.15.23-.35.18-.26-4.99-3.96-9.5-8.74-10.84-3.4-.95-8.62-.78-11.81.82-4.16,2.09-6.72,6.55-6.72,11.2l1.23-1.78c3.11-3.02,8.29-2.13,10.1,1.84,4.19.03,9.16,2.61,11.05,6.45.8,1.63.28,2.02.28,3.62,0,.44.17.83.14,1.31-.07,1.15-1.45,2.39-2.41,2.92l-1.26.57h4.37l.59,1.9H.66ZM15.46,1.95c-9.81.35-8.36,15.71,1.47,14.04,8.51-1.45,7.21-14.35-1.47-14.04ZM7.55,28.96c-5.46.16-5.28,8.54.18,8.49s5.45-8.66-.18-8.49ZM13.83,32.72c.21,2.22-.78,4.16-2.49,5.5-.8.63-1.27.28-.51,1.36,1.33,1.9,4.88,3.96,7.19,4.16,6.06.52,6.55-4.82,2.66-8.23-1.72-1.51-4.54-2.85-6.85-2.78ZM2.02,35.8v9.71h14.4l-1.77-.65c-1.66-.71-3.86-2.22-5.02-3.61-.26-.31-1.14-1.78-1.24-1.84-.27-.16-1.09-.02-1.47-.06-1.41-.15-2.63-.85-3.67-1.77l-1.23-1.78Z'/%3e%3cpath%20class='cls-1'%20d='M39.07,26.59c11.52-1.11,19.71,10.76,14.14,21.06-5.58,10.3-20.79,9.63-25.47-1.11-3.76-8.65,1.89-19.04,11.33-19.95ZM40.37,28.49c-8.86.24-14.55,9.81-10.59,17.78,4.27,8.59,16.43,9.1,21.4.89,5.06-8.35-1.15-18.94-10.82-18.67Z'/%3e%3cpath%20class='cls-2'%20d='M39.77,31.33c1.36-.25,3.17-.06,3.43,1.6.06.38-.15,1.06-.04,1.22.08.11,1.35.56,1.84,1.24s.31,1.02.5,1.63c.07.22.36.31.42.52.08.27.09,3.19.02,3.53-.07.35-.41.35-.48.83-.3,2.28.31,5.31.01,7.59-.05.36-.26.56-.56.74l-8.13.03c-.34,0-.57-.3-.74-.56l-.02-7.8c.03-.39-.41-.47-.48-.83-.08-.4-.08-3.03,0-3.43.06-.32.37-.38.45-.62.19-.62,0-.94.5-1.63s1.76-1.13,1.84-1.24c.13-.18-.09-.77-.06-1.12.08-.76.73-1.56,1.5-1.7ZM37.91,36.99h5.67c-.27-1.06-1.15-.79-1.92-.97-1.17-.27-.45-2.03-.44-2.82h-.88c-.31.04.79,2.42-.41,2.79-.75.23-1.75-.11-2.01,1ZM44.05,38.88h-6.61v.95h6.61v-.95ZM43.58,41.72h-5.67v.95c2.59-.5,2.59,2.39,0,1.89v.95c2.59-.5,2.59,2.39,0,1.89v.95h5.67v-6.63Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

.p-postpartum-care-features__icon--childcare {
  inline-size: 3.375rem;
  block-size: 3.3125rem;
  mask-image: url("../images/icon_postpartum_care_childcare.svg");
}

.p-postpartum-care-features__icon--meal {
  inline-size: 2.875rem;
  block-size: 3.5rem;
  mask-image: url("../images/icon_postpartum_care_meal.svg");
}

.p-postpartum-care-features__icon--class {
  inline-size: 3.5rem;
  block-size: 3.5rem;
  mask-image: url("../images/icon_postpartum_care_class.svg");
}

.p-postpartum-care-features__title {
  margin-block-start: 1.25rem;
  color: var(--color-primary);
  font-family: var(--ff-zen);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-features__title {
    margin-block-start: 1rem;
    font-size: 1rem;
  }
}

.p-postpartum-care-features__text {
  margin-block-start: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-features__text {
    font-size: 0.8125rem;
  }
}

.p-postpartum-care-flow {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow {
    margin-block: 3.75rem;
  }
}

.p-postpartum-care-flow__inner {
  display: flex;
  flex-direction: column;
}

.p-postpartum-care-flow__layout {
  max-inline-size: 65.625rem;
  margin-inline: auto;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__layout {
    margin-block-start: 1.75rem;
  }
}

.p-postpartum-care-flow__list {
  position: relative;
  counter-reset: postpartum-care-flow;
  margin: 0;
  padding-inline-start: 0;
  list-style: none;
}
.p-postpartum-care-flow__list::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset-block: 2rem;
  inset-inline-start: 3.25rem;
  inline-size: 0.375rem;
  background-color: #e9e9e9;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__list::before {
    content: none;
    display: none;
  }
}

.p-postpartum-care-flow__item {
  counter-increment: postpartum-care-flow;
  position: relative;
  z-index: 1;
}
.p-postpartum-care-flow__item:not(:first-child) {
  margin-block-start: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__item:not(:first-child) {
    margin-block-start: 1.25rem;
  }
}

.p-postpartum-care-flow__card {
  display: flex;
  align-items: center;
  padding: 1rem 2.25rem 1rem 1.375rem;
  border-radius: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
    border-radius: 0.625rem;
  }
}

.p-postpartum-care-flow__meta {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  inline-size: 4.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__meta {
    flex-direction: row;
    inline-size: auto;
    justify-content: flex-start;
    gap: 0.75rem;
  }
}

.p-postpartum-care-flow__label {
  color: #ec6d6f;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__label {
    font-size: 0.875rem;
  }
}

.p-postpartum-care-flow__step {
  display: block;
  margin-block-start: 0.25rem;
  color: #ec6d6f;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__step {
    margin-block-start: 0;
    font-size: 2.25rem;
  }
}
.p-postpartum-care-flow__step::before {
  content: counter(postpartum-care-flow, decimal-leading-zero);
}

.p-postpartum-care-flow__divider {
  flex-shrink: 0;
  align-self: stretch;
  inline-size: 0.0625rem;
  margin-block: 0.5rem;
  margin-inline: 1.125rem 2.25rem;
  background-color: #ec6d6f;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__divider {
    align-self: stretch;
    inline-size: auto;
    block-size: 0.0625rem;
    margin-block: 1rem 1.25rem;
    margin-inline: 0;
  }
}

.p-postpartum-care-flow__body {
  flex: 1;
  min-inline-size: 0;
  padding-block: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__body {
    padding-block-start: 0;
  }
}

.p-postpartum-care-flow__title {
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__title {
    font-size: 1rem;
  }
}

.p-postpartum-care-flow__text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-block: 0.9375rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__text-wrap {
    margin-block: 0.625rem 1.125rem;
  }
}
.p-postpartum-care-flow__text-wrap .p-postpartum-care-flow__text {
  margin-block: 0;
}

.p-postpartum-care-flow__text {
  margin-block: 0.9375rem 1.125rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-flow__text {
    margin-block-start: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.p-postpartum-care-flow__link {
  color: var(--color-text);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-postpartum-care-flow__link:hover {
    text-decoration: none;
  }
}

.p-postpartum-care-note {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-note {
    margin-block: 2rem 0;
    font-size: 0.9375rem;
  }
}

.p-postpartum-care-plans {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-plans {
    margin-block-start: 3rem;
  }
}

.p-postpartum-care-plans__inner {
  display: flex;
  flex-direction: column;
}

.p-postpartum-care-plans__heading {
  margin-block-end: 3rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-plans__heading {
    margin-block-end: 2rem;
  }
}

.p-postpartum-care-plans__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-block-start: 3rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-plans__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-postpartum-care-plans__item {
  min-inline-size: 0;
}

.p-postpartum-care-plans__card {
  overflow: hidden;
  border: 0.0625rem solid #eee;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.02);
}
.p-postpartum-care-plans__card .c-title-sub {
  margin-block-end: 0;
}

.p-postpartum-care-plans__title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-plans__title {
    font-size: 1.125rem;
  }
}

.p-postpartum-care-plans__body {
  padding: 1.75rem 1.875rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-plans__body {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-postpartum-care-plans__lead {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-plans__lead {
    font-size: 1rem;
  }
}

.p-postpartum-care-plans__detail-list {
  margin-block-start: 1rem;
  padding: 0;
  list-style: none;
}

.p-postpartum-care-plans__detail-item {
  position: relative;
  display: flex;
  gap: 0.5rem;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-plans__detail-item {
    font-size: 0.9375rem;
  }
}
.p-postpartum-care-plans__detail-item::before {
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  content: "";
}

.p-postpartum-care-plans__detail-label {
  flex-shrink: 0;
}

.p-postpartum-care-plans__detail-note {
  padding-inline-start: 1.25rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-postpartum-care-reserve-notice {
  padding-block: 4.5rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-reserve-notice {
    padding-block: 3rem 5rem;
  }
}

.p-postpartum-care-reserve-notice__inner {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.p-postpartum-care-reserve-notice__scroll-holder {
  width: min(100%, 50rem);
  margin-inline: auto;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-postpartum-care-reserve-notice__scroll-holder:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.p-postpartum-care-reserve-notice__scroll {
  overflow-y: auto;
  max-block-size: 17.625rem;
}

.p-postpartum-care-reserve-notice__body {
  padding: 1.75rem 0.9375rem 1.5rem;
}

.p-postpartum-care-reserve-notice__block {
  margin-block-start: 1.5rem;
}
.p-postpartum-care-reserve-notice__block:first-child {
  margin-block-start: 0;
}

.p-postpartum-care-reserve-notice__heading {
  font-size: max(0.875rem, 8px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
}

.p-postpartum-care-reserve-notice__text {
  font-size: max(0.875rem, 8px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
}
.p-postpartum-care-reserve-notice__heading + .p-postpartum-care-reserve-notice__text {
  margin-block-start: 0.25rem;
}

.p-postpartum-care-reserve-notice__table-wrap {
  margin-block-start: 1rem;
  overflow-x: auto;
}

.p-postpartum-care-reserve-notice__table {
  width: 100%;
  min-width: 37.5rem;
  border-collapse: collapse;
  font-size: max(1rem, 8px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0em;
}
.p-postpartum-care-reserve-notice__table th,
.p-postpartum-care-reserve-notice__table td {
  padding: 0.4375rem 0.375rem;
  border: 1px solid #000;
  text-align: start;
  vertical-align: top;
}
.p-postpartum-care-reserve-notice__table th {
  font-weight: 700;
}

.p-postpartum-care-reserve-notice__list {
  margin-block-start: 0.25rem;
}

.p-postpartum-care-reserve-notice__list-item {
  padding-inline-start: 1em;
  font-size: max(0.875rem, 8px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
}
.p-postpartum-care-reserve-notice__list-item::before {
  content: "・";
  margin-inline-start: -1em;
}

.p-postpartum-care-reserve-notice__end {
  margin-block-start: 1.5rem;
  text-align: center;
  font-size: max(0.875rem, 8px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0em;
}

.p-postpartum-care-reserve-notice__agreement {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  width: min(100%, 50rem);
  margin-inline: auto;
  padding: 1rem;
  background-color: #f8fce8;
}

.p-postpartum-care-reserve-notice__hint {
  text-align: center;
  color: var(--color-primary);
  font-size: max(0.875rem, 8px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
}

.p-postpartum-care-reserve-notice__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  cursor: not-allowed;
}
.p-postpartum-care-reserve-notice.is-scrolled .p-postpartum-care-reserve-notice__label {
  cursor: pointer;
}

.p-postpartum-care-reserve-notice__checkbox {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  cursor: not-allowed;
  appearance: none;
  transition: border-color 0.2s ease;
}
.p-postpartum-care-reserve-notice.is-scrolled .p-postpartum-care-reserve-notice__checkbox:not(:disabled) {
  cursor: pointer;
}
.p-postpartum-care-reserve-notice__checkbox:checked {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.p-postpartum-care-reserve-notice__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--color-white);
  border-block-start: none;
  border-inline-start: none;
  rotate: 45deg;
}
@media (any-hover: hover) {
  .p-postpartum-care-reserve-notice__checkbox:hover:not(:checked):not(:disabled) {
    border-color: var(--color-primary);
    opacity: 0.5;
  }
}
.p-postpartum-care-reserve-notice__checkbox:focus {
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h/10%);
  outline: none;
}
.p-postpartum-care-reserve-notice__checkbox:disabled {
  opacity: 0.5;
}

.p-postpartum-care-reserve-notice__label-text {
  color: var(--color-text);
  user-select: none;
  font-size: max(1rem, 8px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
}

.p-postpartum-care-reserve {
  padding-block: 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-postpartum-care-reserve {
    padding-block-end: 0 2.5rem;
  }
}
.p-postpartum-care-reserve[hidden] {
  display: none;
}

.p-prenatal-consider {
  margin-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-consider {
    margin-block: 3rem 5rem;
  }
}

.p-prenatal-consider__inner {
  display: flex;
  flex-direction: column;
}

.p-prenatal-consider__box {
  margin-block-start: 3rem;
  padding: 3rem 3.5rem;
  border: 1px solid #add7ee;
  border-radius: 0.5rem;
  background-color: #f5fdff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-prenatal-consider__box {
    margin-block-start: 2rem;
    padding: 2rem 1.25rem;
    text-align: start;
  }
}

.p-prenatal-consider__title {
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-prenatal-consider__title {
    font-size: 1.125rem;
  }
}

.p-prenatal-consider__text {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-prenatal-consider__text {
    margin-block-start: 1.25rem;
    font-size: 1rem;
  }
}

.p-prenatal-consider__text + .p-prenatal-consider__text {
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-consider__text + .p-prenatal-consider__text {
    margin-block-start: 0.75rem;
  }
}

.p-prenatal-tests {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests {
    margin-block: 3rem 0;
  }
}

.p-prenatal-tests__inner {
  display: flex;
  flex-direction: column;
}

.p-prenatal-tests__lead {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__lead {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: start;
  }
}

.p-prenatal-tests__container {
  margin-block-start: 3rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 3.75rem 5rem;
  background-color: #f2fcff;
  border-radius: 2.5rem 2.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__container {
    margin-block-start: 2.5rem;
    padding-block: 2.5rem;
  }
}

.p-prenatal-tests__list {
  display: flex;
  flex-direction: column;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__list {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.p-prenatal-tests__card + .p-prenatal-tests__card {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__card + .p-prenatal-tests__card {
    margin-block-start: 1.5rem;
  }
}

.p-prenatal-tests__card--styled {
  padding: 0;
  border-radius: 0.75rem;
  background-color: var(--color-white);
  overflow: hidden;
}

.p-prenatal-tests__styled-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-head {
    padding: 1rem 1.25rem;
  }
}

.p-prenatal-tests__styled-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dcefe7 0%, #dcefe7 52%, #ffbcbc 72%, #ffbabd 100%);
}

.p-prenatal-tests__styled-head::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0.75rem;
  z-index: 1;
  width: calc(100% - 1.5rem);
  height: 0.0625rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-head::after {
    left: 0.625rem;
    width: calc(100% - 1.25rem);
  }
}

.p-prenatal-tests__styled-title {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-title {
    font-size: 1rem;
  }
}

.p-prenatal-tests__styled-tag {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 0.5rem 0.9375rem;
  border-radius: 1.25rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-tag {
    margin-inline-start: auto;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: normal;
  }
}

@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-tag--wide {
    max-inline-size: 100%;
  }
}

.p-prenatal-tests__styled-body {
  padding: 3rem 3.5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-body {
    padding: 2rem 1.25rem 2.5rem;
  }
}

.p-prenatal-tests__styled-block + .p-prenatal-tests__styled-block {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-block + .p-prenatal-tests__styled-block {
    margin-block-start: 2rem;
  }
}

.p-prenatal-tests__styled-text {
  margin-block-start: 1.25rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-text {
    margin-block-start: 1rem;
    font-size: 1rem;
  }
}

.p-prenatal-tests__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.p-prenatal-tests__card--styled .p-prenatal-tests__points {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.25rem;
  list-style: none;
  padding-inline-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__card--styled .p-prenatal-tests__points {
    margin-block-start: 1rem;
  }
}

.p-prenatal-tests__card--styled .p-prenatal-tests__point {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__card--styled .p-prenatal-tests__point {
    font-size: 0.9375rem;
  }
}

.p-prenatal-tests__card--styled .p-prenatal-tests__point::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-prenatal-tests__card--styled .p-prenatal-tests__point + .p-prenatal-tests__point {
  margin-block-start: 0.25rem;
}

.p-prenatal-tests__styled-detail {
  max-inline-size: 56.25rem;
  margin-block-start: 3rem;
  margin-inline: auto;
  padding: 1.75rem 2rem;
  border-radius: 0.5rem;
  background-color: #f8fce8;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-detail {
    margin-block-start: 2rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-prenatal-tests__styled-detail-row + .p-prenatal-tests__styled-detail-row {
  margin-block-start: 0.5rem;
}

.p-prenatal-tests__styled-detail-label {
  color: #e57373;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-detail-label {
    font-size: 0.9375rem;
  }
}

.p-prenatal-tests__styled-detail-value {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-prenatal-tests__styled-detail-value {
    font-size: 0.9375rem;
  }
}

.p-prenatal-timeline {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-prenatal-timeline {
    margin-block: 3rem 0;
  }
}

.p-prenatal-timeline__inner {
  display: flex;
  flex-direction: column;
}

.p-prenatal-timeline__scroll-holder {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-timeline__scroll-holder {
    margin-block-start: 2rem;
  }
}

.p-prenatal-timeline__scroll .scroll-hint-text {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .p-prenatal-timeline__table {
    min-width: 48.75rem;
    border-collapse: separate;
    border-spacing: 0;
  }
}

.p-prenatal-timeline__scroll .c-consultation-hours__col--corner {
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-timeline__scroll .c-consultation-hours__col--corner {
    width: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-prenatal-timeline__scroll .c-consultation-hours__th--corner {
    position: sticky;
    left: 0;
    z-index: 3;
    background-color: #fdeeee;
    box-shadow: 0.25rem 0 0.5rem rgba(13, 41, 54, 0.08);
  }
}
@media screen and (max-width: 767px) {
  .p-prenatal-timeline__scroll .c-consultation-hours__row-head {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: var(--color-white);
    box-shadow: 0.25rem 0 0.5rem rgba(13, 41, 54, 0.08);
  }
}

@media screen and (max-width: 767px) {
  .p-prenatal-timeline__th {
    font-size: 0.8125rem;
    padding: 1rem 0.25rem;
  }
}

.p-prenatal-timeline__row-head {
  font-size: 1rem;
  line-height: 1.45;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .p-prenatal-timeline__row-head {
    padding: 0.5rem 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.35;
  }
}

.p-prenatal-timeline__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-block-size: 3.125rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-prenatal-timeline__bar {
    min-block-size: 2.75rem;
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
  }
}

.p-prenatal-timeline__bar--compact {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-prenatal-timeline__bar--compact {
    font-size: 0.6875rem;
  }
}

.p-privacy-policy {
  padding-block: 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    padding-block: 2.5rem 2.5rem;
  }
}

.p-privacy-policy__intro-text {
  font-size: max(1.125rem, 8px);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__intro-text {
    font-size: max(1rem, 8px);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.p-privacy-policy__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__content {
    margin-block-start: 3rem;
    gap: 1.875rem;
  }
}

.p-privacy-policy__content-item {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.p-privacy-policy__item-title {
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-privacy-policy__item-title + * {
  margin-block-start: 0.5rem;
}

.p-privacy-policy__item-text {
  font-size: max(1.125rem, 8px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__item-text {
    font-size: max(1rem, 8px);
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}
.p-privacy-policy__item-text--disc {
  position: relative;
  padding-inline-start: 1.75rem;
}
.p-privacy-policy__item-text--disc::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--color-text);
}

.p-privacy-policy__list-item {
  position: relative;
  padding-inline-start: 1.25rem;
}
.p-privacy-policy__list-item::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0.5rem;
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-privacy-policy__num-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: item-list;
  list-style: none;
  margin-block-start: 1rem;
}

.p-privacy-policy__num-list-item {
  position: relative;
  padding-left: 1.5rem;
}
.p-privacy-policy__num-list-item::before {
  content: counter(item-list) ".";
  counter-increment: item-list;
  position: absolute;
  left: 0;
  font-weight: 500;
}

.p-privacy-policy__item--analytics {
  padding: 3rem;
  border-radius: 0.75rem;
  background-color: #f8fce8;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__item--analytics {
    padding: 2rem;
  }
}
.p-privacy-policy__item--analytics a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-privacy-policy__item--analytics a:hover {
    color: var(--color-primary);
  }
}

.p-privacy-policy__item-address {
  margin-block-start: 1rem;
}

.p-privacy-policy__signature {
  text-align: end;
}

.p-privacy-policy__button {
  margin-block-start: 3rem;
  text-align: center;
}

.p-recruit-list__text {
  width: min(100%, 56.25rem);
  margin-inline: auto;
  margin-block-end: 2.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-list__text {
    margin-block-end: 2rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-reservation-about {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-reservation-about {
    margin-block: 3rem 0;
  }
}

.p-reservation-about__inner {
  display: flex;
  flex-direction: column;
}

.p-reservation-about__block {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-about__block {
    margin-block-start: 2rem;
  }
}

.p-reservation-about__content {
  padding-inline: 1.25rem;
}

.p-reservation-about__lead {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-about__lead {
    margin-block-start: 1.25rem;
    font-size: 1rem;
  }
}

.p-reservation-about__list {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.5rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-reservation-about__list {
    margin-block-start: 1.25rem;
  }
}

.p-reservation-about__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-about__item {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
.p-reservation-about__item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-reservation-about__required {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-about__required {
    margin-block-start: 1.5rem;
  }
}

.p-reservation-about__required-title {
  color: var(--color-primary);
  font-family: var(--ff-zen);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-about__required-title {
    font-size: 1rem;
  }
}

.p-reservation-about__required-text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-about__required-text {
    margin-block-start: 0.75rem;
    font-size: 0.9375rem;
  }
}

.p-reservation-cost {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-cost {
    margin-block: 3rem;
  }
}

.p-reservation-cost__inner {
  display: flex;
  flex-direction: column;
  width: min(100%, 71.875rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-reservation-cost__inner {
    width: min(100%, 33.75rem);
  }
}

.p-reservation-cost__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  padding: 1.875rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid #f9cdce;
  background-color: #fff9fc;
}
@media screen and (max-width: 767px) {
  .p-reservation-cost__box {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-reservation-cost__content {
  flex: 1;
  min-inline-size: 0;
}

.p-reservation-cost__title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-cost__title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.p-reservation-cost__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-cost__text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-reservation-cost__link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-block-size: 3.3125rem;
  padding: 0.875rem 1.875rem;
  border-radius: 1.875rem;
  background-color: #808080;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-reservation-cost__link {
    inline-size: 100%;
    min-block-size: 3rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-reservation-cost__link:hover {
    opacity: 0.85;
  }
}

.p-reservation-echo {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo {
    margin-block: 3rem 0;
  }
}
.p-reservation-echo .c-title-main + .c-title-sub {
  margin-block-start: 2.25rem;
}

.p-reservation-echo__inner {
  display: flex;
  flex-direction: column;
}

.p-reservation-echo__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 41.6666666667%);
  gap: 3.25rem;
  align-items: start;
  margin-block-start: 1.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 2rem;
  }
}

.p-reservation-echo__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo__content {
    order: 2;
  }
}

.p-reservation-echo__notice {
  padding: 1.25rem;
  border-radius: 0.25rem;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo__notice {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
  }
}

.p-reservation-echo__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo__text {
    margin-block-start: 1.25rem;
    font-size: 1rem;
  }
}

.p-reservation-echo__list {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.5rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo__list {
    margin-block-start: 1.25rem;
  }
}

.p-reservation-echo__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo__item {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
.p-reservation-echo__item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-reservation-echo__note {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo__note {
    margin-block-start: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-reservation-echo__visual {
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 500/375;
}
@media screen and (max-width: 767px) {
  .p-reservation-echo__visual {
    order: 1;
  }
}

.p-reservation-echo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-reservation-return {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-reservation-return {
    margin-block: 3rem 0;
  }
}

.p-reservation-return__inner {
  display: flex;
  flex-direction: column;
}

.p-reservation-return__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 41.6666666667%);
  gap: 3.25rem;
  align-items: start;
  margin-block-start: 1.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 2rem;
  }
}

.p-reservation-return__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__content {
    margin-block-start: 1.25rem;
  }
}

.p-reservation-return__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__text {
    font-size: 1rem;
  }
}

.p-reservation-return__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__visual {
    order: 1;
  }
}

.p-reservation-return__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-reservation-return__flow {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow {
    margin-block-start: 2rem;
  }
}

.p-reservation-return__flow-list {
  display: flex;
  flex-direction: column;
  width: min(100%, 65.625rem);
  margin-inline: auto;
  margin-block-start: 3rem;
  padding-inline-start: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-list {
    margin-block-start: 1.25rem;
  }
}

.p-reservation-return__flow-item:not(:first-child) {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-item:not(:first-child) {
    margin-block-start: 1.25rem;
  }
}

.p-reservation-return__flow-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-card {
    flex-direction: column;
    border-radius: 0.625rem;
  }
}

.p-reservation-return__flow-aside {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  inline-size: 11.875rem;
  padding: 1.5rem 1rem;
  background-color: #f3979d;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-aside {
    inline-size: 100%;
    gap: 0.25rem;
    min-block-size: 7.5rem;
    padding: 1.25rem 1rem;
  }
}

.p-reservation-return__flow-aside-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  inline-size: 100%;
}

.p-reservation-return__flow-step-label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-step-label {
    font-size: 0.8125rem;
  }
}

.p-reservation-return__flow-step-num {
  margin-block-start: 0.25rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-step-num {
    margin-block-start: 0.25rem;
    font-size: 2.25rem;
  }
}

.p-reservation-return__flow-step-period {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-step-period {
    font-size: 0.8125rem;
  }
}

.p-reservation-return__flow-body {
  flex: 1;
  min-inline-size: 0;
  padding: 2rem 3.125rem 2rem 3.125rem;
  background-color: #ffeaea;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-body {
    padding: 1.5rem 1.25rem;
  }
}

.p-reservation-return__flow-title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-title {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.p-reservation-return__flow-block:not(:first-of-type) {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-block:not(:first-of-type) {
    margin-block-start: 1.25rem;
  }
}

.p-reservation-return__flow-card--step01 .p-reservation-return__flow-block:first-of-type {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-card--step01 .p-reservation-return__flow-block:first-of-type {
    margin-block-start: 1.25rem;
  }
}

.p-reservation-return__flow-lead {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-lead {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-reservation-return__flow-lead-label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-lead-label {
    font-size: 1rem;
  }
}

.p-reservation-return__flow-note {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-note {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.p-reservation-return__flow-subtitle {
  margin-block-start: 2rem;
  padding-block-end: 0.75rem;
  border-block-end: 0.0625rem solid var(--color-primary);
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-subtitle {
    margin-block-start: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.p-reservation-return__flow-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-panels {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 1.25rem;
  }
}

.p-reservation-return__flow-panel {
  padding: 1.25rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
}

.p-reservation-return__flow-panel-title {
  padding-block-end: 0.75rem;
  border-block-end: 0.0625rem solid #ccc;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-panel-title {
    font-size: 0.9375rem;
  }
}

.p-reservation-return__flow-panel-list {
  display: flex;
  flex-direction: column;
  margin-block-start: 1rem;
  padding-inline-start: 0;
  list-style: none;
}

.p-reservation-return__flow-panel-item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-panel-item {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
.p-reservation-return__flow-panel-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-reservation-return__flow-panel-item:not(:first-child) {
  margin-block-start: 0.5rem;
}
.p-reservation-return__flow-panel-item strong {
  font-weight: 700;
}

.p-reservation-return__flow-panel-note {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-panel-note {
    font-size: 0.75rem;
  }
}

.p-reservation-return__flow-panel-list + .p-reservation-return__flow-panel-note + .p-reservation-return__flow-panel-list {
  margin-block-start: 1rem;
}

.p-reservation-return__flow-text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-text {
    margin-block-start: 0.75rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-reservation-return__flow-text strong {
  font-weight: 700;
}

.p-reservation-return__flow-notice {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-notice {
    margin-block-start: 1.25rem;
  }
}

.p-reservation-return__flow-notice-title {
  padding-block-end: 0.75rem;
  border-block-end: 0.0625rem solid var(--color-primary);
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-notice-title {
    font-size: 1rem;
  }
}

.p-reservation-return__flow-notice-text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reservation-return__flow-notice-text {
    margin-block-start: 0.75rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-room-intro {
  margin-block: 0.75rem 0;
}
@media screen and (max-width: 1023px) {
  .p-room-intro {
    margin-block: 6.25rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-room-intro {
    margin-block: 1.25rem 0;
  }
}

.p-room-intro__text {
  display: block;
  margin-block-start: 2.1875rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-room-intro__text {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-room-intro__text-small {
  display: block;
  margin-block-start: 0.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-room-intro__text-small {
    text-align: left;
  }
}

.p-room-intro__list {
  margin-block-start: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-room-intro__list {
    margin-block-start: 2rem;
  }
}

.p-room-intro__item-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem 3rem;
  padding: 2.25rem 2.625rem 3rem 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-room-intro__item-content {
    gap: 2rem 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-room-intro__item-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.25rem 2rem 1.25rem;
  }
}

.p-room-intro__item:nth-child(even) .p-room-intro__item-content {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-room-intro__item:nth-child(even) .p-room-intro__item-content {
    flex-direction: column;
  }
}

.p-room-intro__item-body {
  flex: 1 1 0;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-room-intro__item-body {
    flex: none;
    align-self: stretch;
    order: 2;
  }
}

.p-room-intro__item-desc {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-room-intro__item-desc {
    font-size: 1rem;
    line-height: 1.85;
  }
}

.p-room-intro__item-note {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-room-intro__item-note {
    font-size: 0.75rem;
  }
}

.p-room-intro__item-tag-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-block-start: 1.875rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-room-intro__item-tag-list {
    margin-block-start: 1.5rem;
  }
}

.p-room-intro__item-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.6875rem 1rem 0.6875rem 1rem;
  border-radius: 100vmax;
  background-color: #fff6fa;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-room-intro__item-tag {
    font-size: 0.8125rem;
  }
}
.p-room-intro__item-tag:before {
  content: "・ ";
  color: var(--color-primary);
}

.p-room-intro__item-visual {
  position: relative;
  flex: 0 0 44%;
  max-inline-size: 44%;
  min-inline-size: 0;
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
  margin-block-start: 0.25rem;
}
@media screen and (max-width: 1023px) {
  .p-room-intro__item-visual {
    flex: 0 0 48%;
    max-inline-size: 48%;
  }
}
@media screen and (max-width: 767px) {
  .p-room-intro__item-visual {
    flex: none;
    align-self: stretch;
    order: 1;
    max-inline-size: none;
    inline-size: 100%;
  }
}

.p-room-intro__item-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-sample {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-sample {
    padding-block: 3.75rem;
  }
}

.p-sample__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sample__inner {
    gap: 1rem;
  }
}

.p-sample__title {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-sample__title {
    margin-block-start: 1.5rem;
  }
}

.p-sample__button-wrap {
  width: min(15rem, 100%);
}
.p-sample__button-wrap > * {
  width: 100%;
}

.p-sample__divider {
  width: 100%;
  height: 1px;
  max-width: 37.5rem;
  margin: 0;
  border: 0;
  background-color: var(--color-gray);
}

.p-sample__bg {
  width: 100%;
  height: 25rem;
  max-width: 37.5rem;
  border-radius: 8px;
  background-image: url("../images/bg_sample.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-sample__bg {
    height: 18.75rem;
  }
}

.p-sample__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 32rem;
  border-radius: 8px;
}

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

.p-sample p {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sample p {
    font-size: 0.875rem;
  }
}

.p-sanka-checkup-intro {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-sanka-checkup-intro {
    margin-block: 3rem 0;
  }
}

.p-sanka-checkup-intro__inner {
  display: flex;
  flex-direction: column;
}

.p-sanka-checkup-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 41.6666666667%);
  gap: 3.75rem 3.25rem;
  align-items: start;
  margin-block-start: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-sanka-checkup-intro__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-sanka-checkup-intro__content {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-sanka-checkup-intro__content {
    order: 2;
  }
}

.p-sanka-checkup-intro__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-sanka-checkup-intro__text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.p-sanka-checkup-intro__content .c-text-media-deco__check-list {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sanka-checkup-intro__content .c-text-media-deco__check-list {
    margin-block-start: 1.25rem;
  }
}

.p-sanka-checkup-intro__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
}
@media screen and (max-width: 767px) {
  .p-sanka-checkup-intro__visual {
    order: 1;
  }
}

.p-sanka-checkup-intro__image {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-sanka-intro__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-sanka-intro__links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-sanka-intro__links-item {
  display: flex;
  min-width: 0;
}

.p-sanka-intro__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-sanka-intro__link {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
.p-sanka-intro__link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-sanka-intro__link:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 8px 5px rgba(226, 226, 226, 0.75);
  }
}

.p-sanka-intro__link-label {
  flex: 1;
  min-width: 0;
}

.p-sanka-intro__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-sanka-intro__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-shounika-checkup-schedule {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule {
    margin-block-start: 3.75rem;
  }
}

.p-shounika-checkup-schedule__inner {
  display: flex;
  flex-direction: column;
}

.p-shounika-checkup-schedule__group {
  margin-block-start: 1.5rem;
  width: min(100%, 62.5rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__group {
    margin-block-start: 2rem;
  }
}
.p-shounika-checkup-schedule__group + .p-shounika-checkup-schedule__group {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__group + .p-shounika-checkup-schedule__group {
    margin-block-start: 1.75rem;
  }
}

.p-shounika-checkup-schedule__group-title {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__group-title {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}

.p-shounika-checkup-schedule__group-lead {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__group-lead {
    font-size: 0.8125rem;
  }
}

.p-shounika-checkup-schedule__table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block-start: 0.75rem;
}

.p-shounika-checkup-schedule__row {
  display: flex;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 0.0625rem solid rgba(236, 109, 111, 0.2);
  min-block-size: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__row {
    flex-direction: column;
    border-radius: 0.625rem;
    min-block-size: 0;
  }
}

.p-shounika-checkup-schedule__term {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  inline-size: 12.5rem;
  padding: 1rem 1.25rem;
  background-color: rgba(236, 109, 111, 0.05);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__term {
    flex-direction: row;
    inline-size: auto;
    padding: 0.875rem 1.25rem;
    gap: 0.5rem;
    text-align: left;
    justify-content: flex-start;
  }
}

.p-shounika-checkup-schedule__term-note {
  display: block;
  margin-block-start: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__term-note {
    margin-block-start: 0;
    font-size: 0.6875rem;
  }
}

.p-shounika-checkup-schedule__detail {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin: 0;
  padding: 1.25rem 1.75rem;
  background-color: rgba(236, 109, 111, 0.05);
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__detail {
    padding: 0 1.25rem 1.25rem;
  }
}

.p-shounika-checkup-schedule__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding: 0;
  list-style: none;
}

.p-shounika-checkup-schedule__tag {
  padding: 0.375rem 1rem;
  border-radius: 0.375rem;
  border: 0.0625rem solid #ddd;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__tag {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.75rem;
  }
}

.p-shounika-checkup-schedule__note {
  margin-block-start: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-schedule__note {
    font-size: 0.8125rem;
  }
}

.p-shounika-checkup-flow {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow {
    margin-block-start: 3.75rem;
  }
}

.p-shounika-checkup-flow__inner {
  display: flex;
  flex-direction: column;
}

.p-shounika-checkup-flow__layout {
  max-inline-size: 65.625rem;
  margin-inline: auto;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__layout {
    margin-block-start: 1.75rem;
  }
}

.p-shounika-checkup-flow__list {
  position: relative;
  counter-reset: shounika-checkup-flow;
  margin: 0;
  padding-inline-start: 0;
  list-style: none;
}
.p-shounika-checkup-flow__list::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset-block: 2rem;
  inset-inline-start: 3.25rem;
  inline-size: 0.375rem;
  background-color: #e9e9e9;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__list::before {
    content: none;
    display: none;
  }
}

.p-shounika-checkup-flow__item {
  counter-increment: shounika-checkup-flow;
  position: relative;
  z-index: 1;
}
.p-shounika-checkup-flow__item:not(:first-child) {
  margin-block-start: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__item:not(:first-child) {
    margin-block-start: 1.25rem;
  }
}

.p-shounika-checkup-flow__card {
  display: flex;
  align-items: center;
  padding: 1rem 2.25rem 1rem 1.375rem;
  border-radius: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
    border-radius: 0.625rem;
  }
}

.p-shounika-checkup-flow__meta {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  inline-size: 4.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__meta {
    flex-direction: row;
    inline-size: auto;
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.p-shounika-checkup-flow__label {
  color: #ec6d6f;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__label {
    font-size: 0.875rem;
  }
}

.p-shounika-checkup-flow__step {
  display: block;
  margin-block-start: 0.25rem;
  color: #ec6d6f;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__step {
    margin-block-start: 0;
    font-size: 2.25rem;
  }
}
.p-shounika-checkup-flow__step::before {
  content: counter(shounika-checkup-flow, decimal-leading-zero);
}

.p-shounika-checkup-flow__divider {
  flex-shrink: 0;
  align-self: stretch;
  inline-size: 0.0625rem;
  margin-block: 0.5rem;
  margin-inline: 1.125rem 2.25rem;
  background-color: #ec6d6f;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__divider {
    align-self: stretch;
    inline-size: auto;
    block-size: 0.0625rem;
    margin-block: 1rem 1.25rem;
    margin-inline: 0;
  }
}

.p-shounika-checkup-flow__body {
  flex: 1;
  min-inline-size: 0;
  padding-block: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__body {
    padding-block-start: 0;
  }
}

.p-shounika-checkup-flow__title {
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__title {
    font-size: 1rem;
  }
}

.p-shounika-checkup-flow__text {
  margin-block: 0.9375rem 1.125rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__text {
    margin-block: 0.625rem 0;
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.p-shounika-checkup-flow__notes {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block-start: 1.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__notes {
    margin-block-start: 1.25rem;
  }
}

.p-shounika-checkup-flow__note {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-flow__note {
    font-size: 0.8125rem;
  }
}
.p-shounika-checkup-flow__note::before {
  content: "※";
}

.p-shounika-checkup-items {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-items {
    margin-block-start: 3.75rem;
  }
}

.p-shounika-checkup-items__inner {
  display: flex;
  flex-direction: column;
}

.p-shounika-checkup-items__box {
  width: min(100%, 50rem);
  margin-inline: auto;
  margin-block-start: 3rem;
  padding: 2.5rem 3rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 1.25rem rgba(236, 109, 111, 0.25);
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-items__box {
    margin-block-start: 2rem;
    padding: 1.75rem 1.5rem;
  }
}

.p-shounika-checkup-items__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-items__list {
    gap: 1rem;
  }
}

.p-shounika-checkup-items__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-shounika-checkup-items__item-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.p-shounika-checkup-items__marker {
  color: var(--color-primary);
  font-size: 0.625rem;
  flex-shrink: 0;
}

.p-shounika-checkup-items__name {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-items__name {
    font-size: 1rem;
  }
}

.p-shounika-checkup-items__note {
  padding-inline-start: 1.125rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-items__note {
    font-size: 0.8125rem;
  }
}

.p-shounika-checkup-items__link {
  color: var(--color-primary);
  text-decoration: underline;
}
.p-shounika-checkup-items__link:hover {
  text-decoration: none;
}

.p-shounika-checkup-items__footer-note {
  margin-block-start: 1.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-items__footer-note {
    margin-block-start: 1.25rem;
    font-size: 0.8125rem;
  }
}

.p-shounika-checkup-reservation {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-reservation {
    margin-block-start: 3.75rem;
    margin-block-end: 3.75rem;
  }
}

.p-shounika-checkup-reservation__inner {
  display: flex;
  flex-direction: column;
}

.p-shounika-checkup-reservation__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 62.5rem);
  margin-inline: auto;
  margin-block-start: 3rem;
  padding: 3rem 3rem 3.25rem;
  border: 0.0625rem solid #f9cdce;
  border-radius: 0.75rem;
  background-color: #fff9fc;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-reservation__box {
    margin-block-start: 2rem;
    padding: 2.25rem 1.5rem 2.5rem;
  }
}

.p-shounika-checkup-reservation__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-reservation__text {
    font-size: 1rem;
  }
}

.p-shounika-checkup-reservation__box .p-footer__reserve {
  margin-block-start: 1.75rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-shounika-checkup-reservation__box .p-footer__reserve {
    margin-block-start: 1.5rem;
  }
}

.p-shounika-intro__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-shounika-intro__links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-shounika-intro__links-item {
  display: flex;
  min-width: 0;
}

.p-shounika-intro__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-shounika-intro__link {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
.p-shounika-intro__link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-shounika-intro__link:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 8px 5px rgba(226, 226, 226, 0.75);
  }
}

.p-shounika-intro__link-label {
  flex: 1;
  min-width: 0;
}

.p-shounika-intro__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-shounika-intro__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-shounika-outpatient-treatment {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-treatment {
    margin-block-start: 3.75rem;
  }
}

.p-shounika-outpatient-treatment__inner {
  display: flex;
  flex-direction: column;
}

.p-shounika-outpatient-treatment__inner {
  display: flex;
  flex-direction: column;
}

.p-shounika-outpatient-treatment__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-block-start: 3rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 3.5rem 5rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-treatment__list-wrap {
    margin-block-start: 1rem;
    padding-block: 2rem 2.5rem;
  }
}

.p-shounika-outpatient-treatment__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: min(100%, 68.75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-treatment__list {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
    gap: 2rem;
  }
}

.p-shounika-outpatient-treatment__item {
  min-inline-size: 0;
}

.p-shounika-outpatient-treatment__card {
  overflow: hidden;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-treatment__card {
    border-radius: 0.75rem;
  }
}
.p-shounika-outpatient-treatment__card .c-title-sub {
  margin-block-end: 0;
}

.p-shounika-outpatient-treatment__body {
  padding: 2.25rem 2.625rem 2.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-treatment__body {
    gap: 1rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-shounika-outpatient-treatment__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-treatment__text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.p-shounika-outpatient-treatment__sub-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin-block-start: 1rem;
}

.p-shounika-outpatient-treatment__sub-item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-treatment__sub-item {
    font-size: 0.9375rem;
  }
}
.p-shounika-outpatient-treatment__sub-item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-shounika-outpatient-treatment__note-wrap {
  margin-block-start: 1rem;
}

.p-shounika-outpatient-treatment__note {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-treatment__note {
    font-size: 0.8125rem;
  }
}

.p-shounika-outpatient-test {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-test {
    margin-block-start: 2.5rem;
    margin-block-end: 3.75rem;
  }
}

.p-shounika-outpatient-test__inner {
  display: flex;
  flex-direction: column;
}

.p-shounika-outpatient-test__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  width: min(100%, 62.5rem);
  margin-inline: auto;
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-test__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-shounika-outpatient-test__card {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.25rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  box-shadow: 0 0.25rem 1.25rem rgba(236, 109, 111, 0.25);
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-test__card {
    padding: 1.5rem 1.25rem;
  }
}

.p-shounika-outpatient-test__card-title {
  padding-block-end: 1rem;
  padding-inline-start: 1.25rem;
  border-block-end: 0.0625rem solid #ec6d6f;
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-test__card-title {
    padding-block-end: 1.125rem;
    font-size: 1.125rem;
  }
}

.p-shounika-outpatient-test__list {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.5rem;
  padding-inline: 1.25rem 3.125rem;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-shounika-outpatient-test__list {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-test__list {
    margin-block-start: 1.125rem;
  }
}

.p-shounika-outpatient-test__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-shounika-outpatient-test__item {
    font-size: 0.9375rem;
  }
}
.p-shounika-outpatient-test__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-single {
  padding-block: 2.5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-block: 2.5rem 7.5rem;
  }
}

.p-single__inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
}

.p-single__header {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-single__header {
    margin-block-start: 3rem;
  }
}

.p-single__subtitle {
  margin-block-end: 0.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-single__subtitle {
    margin-block-end: 0.75rem;
    font-size: 1rem;
  }
}

.p-single__title {
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.375rem;
  }
}

.p-single__summary {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__summary {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 1.5rem;
    font-size: 1rem;
  }
}

.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-block-start: 1rem;
  color: var(--color-border-gray);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__meta {
    margin-block-start: 1.5rem;
  }
}

.p-single__author {
  display: inline-block;
  color: var(--color-text);
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__author {
    font-size: 1rem;
  }
}

.p-single__date {
  display: inline-block;
}

.p-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.p-single__category {
  display: inline-block;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__category:hover {
    opacity: 0.8;
  }
}

.p-single--information .p-single__inner {
  width: min(100%, 68.75rem);
}
@media screen and (max-width: 767px) {
  .p-single--information .p-single__inner {
    width: min(100%, 37.5rem);
  }
}

.p-single--information .p-single__header {
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-single--information .p-single__header {
    margin-block-start: 2.5rem;
  }
}

.p-single--information .p-single__meta {
  gap: 1.25rem;
  margin-block-start: 0;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .p-single--information .p-single__meta {
    gap: 1rem;
  }
}

.p-single--information .p-single__date {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--ff-en);
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-single--information .p-single__date {
    font-size: 0.875rem;
  }
}

.p-single--information .p-single__categories {
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single--information .p-single__categories {
    gap: 1rem;
  }
}

.p-single--information .p-single__category {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-primary);
  border-radius: 100vmax;
  background-color: transparent;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-single--information .p-single__category {
    padding: 0.25rem 1rem;
  }
}
@media (any-hover: hover) {
  .p-single--information .p-single__category:hover {
    opacity: 0.8;
  }
}

.p-single--information .p-single__title {
  margin-block-start: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single--information .p-single__title {
    font-size: 1.375rem;
  }
}

.p-single__thumbnail {
  overflow: hidden;
  margin-block-start: 2rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail {
    margin-block-start: 3rem;
  }
}

.p-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: scale 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail img {
    border-radius: 12px;
  }
}

.p-single__featured-image {
  overflow: hidden;
  margin-block-start: 2rem;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image {
    margin-block-start: 3rem;
  }
}

.p-single__featured-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-single__featured-image img {
    border-radius: 12px;
  }
}

.p-single__content {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-block-start: 4rem;
  }
}
.p-single__content h1:not(.p-single__title) {
  margin-block-start: 3rem;
  padding-block-end: 1rem;
  color: var(--color-text);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content h1:not(.p-single__title) {
    margin-block-start: 4rem;
    font-size: 2.25rem;
  }
}
.p-single__content h2:not(.p-single__title) {
  position: relative;
  margin-block-start: 2.5rem;
  padding-inline: 1.25rem;
  padding-block-end: 1.84375rem;
  border-block-end: 1px solid #acacac;
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.18;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h2:not(.p-single__title) {
    padding-inline: 0.9375rem;
    padding-block-end: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.p-single__content h2:not(.p-single__title)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 15.625rem;
  height: 0.0625rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-single__content h2:not(.p-single__title)::before {
    width: 0.625rem;
  }
}
.p-single__content h3 {
  position: relative;
  margin-block-start: 2.1875rem;
  padding-inline: 1.25rem;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h3 {
    padding-inline: 0.9375rem;
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
.p-single__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.1875rem;
  height: 2.625rem;
  border-radius: 100vmax;
  background-color: var(--color-primary);
}
.p-single__content h4 {
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 2.67;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-single__content h4 {
    font-size: max(1rem, 8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.p-single__content p {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-single__content p {
    margin-block-start: 0.5rem;
  }
}
.p-single__content ul,
.p-single__content ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-single__content ul,
  .p-single__content ol {
    margin-block-start: 1.25rem;
    padding-inline-start: 2rem;
  }
}
.p-single__content ul {
  list-style-type: disc;
}
.p-single__content ol {
  list-style-type: decimal;
}
.p-single__content li {
  margin-block-start: 0.5rem;
  line-height: 1.8;
}
.p-single__content a:not(.wp-block-button__link):not(.wp-element-button) {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .p-single__content a:not(.wp-block-button__link):not(.wp-element-button):hover {
    opacity: 0.8;
  }
}
.p-single__content img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content img {
    margin-block-start: 2rem;
  }
}
.p-single__content figcaption {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-single__content figcaption {
    font-size: 0.75rem;
  }
}
.p-single__content blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .p-single__content blockquote {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 2rem;
  }
}
.p-single__content blockquote p {
  margin-block-start: 0;
}
.p-single__content code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: 0.875rem;
}
.p-single__content pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single__content pre {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}
.p-single__content pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}
.p-single__content table {
  width: 100%;
  border: 0.0625rem solid var(--color-border-gray);
  border-collapse: collapse;
}
.p-single__content th,
.p-single__content td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-single__content th,
  .p-single__content td {
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}
.p-single__content th {
  background-color: #fdeeee;
  color: var(--color-text);
}
.p-single__content td {
  color: var(--color-text);
}
.p-single__content hr {
  margin-block-start: 2rem;
  border: none;
  border-block-start: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__content hr {
    margin-block-start: 3rem;
  }
}
.p-single__content strong {
  color: var(--color-text);
  font-weight: 700;
}
.p-single__content em {
  font-style: italic;
}
.p-single__content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-block-start: 1.5rem;
  text-align: center;
}
.p-single__content .wp-block-buttons .wp-block-button {
  margin: 0;
}
.p-single__content .wp-block-button__link,
.p-single__content .wp-block-buttons .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
  padding: 0.9375rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #f5a86a 0%, #f06b9a 100%);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-button__link,
  .p-single__content .wp-block-buttons .wp-element-button {
    min-width: min(100%, 12.5rem);
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-single__content .wp-block-button__link:hover,
  .p-single__content .wp-block-buttons .wp-element-button:hover {
    color: var(--color-white);
    opacity: 0.8;
  }
}
.p-single__content .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-single__content .wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: var(--color-primary);
  }
}

.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 3rem;
  padding-block: 1.5rem;
  border-block-start: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single__tags {
    margin-block-start: 4rem;
    padding-block: 2rem;
  }
}

.p-single__tag {
  display: inline-block;
  padding-block: 0.25rem;
  padding-inline: 0.75rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-accent);
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-single__tag {
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .p-single__tag:hover {
    opacity: 0.8;
  }
}

.p-single__tag--custom {
  color: var(--color-text);
  cursor: default;
}

.p-single__content-pagination {
  margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination {
    margin-block-start: 3rem;
  }
}

.p-single__content-pagination-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-inner {
    gap: 0.625rem;
  }
}

.p-single__content-pagination-prev {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-prev {
    text-align: center;
  }
}

.p-single__content-pagination-center {
  justify-self: center;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-center .c-button02 {
    gap: 0.625rem;
  }
  .p-single__content-pagination-center .c-button02__text {
    font-size: max(0.75rem, 8px);
    font-weight: 500;
    line-height: 18.07;
    letter-spacing: 0.4em;
  }
  .p-single__content-pagination-center .c-button02__arrow {
    width: 0.625rem;
    height: 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-center {
    justify-self: center;
  }
}

.p-single__content-pagination-next {
  min-width: 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-next {
    text-align: center;
  }
}

.p-single__content-pagination-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-link {
    font-size: max(0.75rem, 8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
@media (any-hover: hover) {
  .p-single__content-pagination-link:hover {
    opacity: 0.7;
  }
}

.p-single__content-pagination-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.9375rem;
  padding: 0.625rem 1.4375rem;
  border: 1px solid var(--color-text);
  background-color: var(--color-base);
  transition: background-color var(--duration) ease, color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-button {
    gap: 1.25rem;
    padding: 0.625rem 1rem;
  }
}
@media (any-hover: hover) {
  .p-single__content-pagination-button:hover .p-single__content-pagination-button-arrow {
    transform: translateX(0.625rem);
  }
}

.p-single__content-pagination-button-text {
  font-size: max(1rem, 8px);
  font-weight: 500;
  line-height: 1.63;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-single__content-pagination-button-text {
    font-size: max(0.875rem, 8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

.p-single__content-pagination-button-arrow {
  width: 0.5rem;
  height: 0.875rem;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14' width='8' height='14'%3E%3Cpath d='M1 13l6-6-6-6' fill='none' stroke='%23008ad2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color-primary);
  transition: transform var(--duration) ease, filter var(--duration) ease;
}

.p-single--post .p-single__related {
  margin-block-start: 3rem;
  padding-block-start: 2rem;
  border-block-start: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related {
    margin-block-start: 4rem;
    padding-block-start: 3rem;
  }
}

.p-single--post .p-single__related-title {
  margin-block-end: 1.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-title {
    margin-block-end: 2rem;
    align-items: start;
  }
}
@media (any-hover: hover) {
  .p-single--post .p-single__related-title:hover {
    opacity: 0.7;
  }
}

.p-single--post .p-single__related-thumbnail {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 600px) {
  .p-single--post .p-single__related-thumbnail {
    aspect-ratio: 4/3;
  }
}

.p-single--post .p-single__related-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-single--post .p-single__related-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-single--post .p-single__related-date {
  color: var(--color-text);
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-date {
    font-size: 0.875rem;
  }
}

.p-single--post .p-single__related-item-title {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-single--post .p-single__related-item-title {
    font-size: 1rem;
  }
}

.p-studio-card {
  padding: 3.125rem 3rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  box-shadow: 0 0 1.25rem rgba(236, 109, 111, 0.22);
}
@media screen and (max-width: 767px) {
  .p-studio-card {
    padding: 1.5rem 1.25rem;
  }
}

.p-studio-card__body {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}

.p-studio-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.875rem;
  padding-block-end: 1.25rem;
  border-block-end: 0.0625rem solid #f0d4d8;
}
@media screen and (max-width: 767px) {
  .p-studio-card__head {
    gap: 1rem;
    padding-block-end: 1rem;
  }
}

.p-studio-card__title {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-card__title {
    font-size: 1.25rem;
  }
}

.p-studio-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.375rem;
  border-radius: 100vmax;
  background-color: #fff6fa;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-card__tag {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
  }
}

.p-studio-card__text {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-card__text {
    font-size: 1rem;
  }
}

.p-studio-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block-start: 1.25rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background-color: #f5f5f5;
}

.p-studio-card__meta-row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-studio-card__meta-row {
    grid-template-columns: 3.75rem minmax(0, 1fr);
    align-items: start;
    gap: 0.5rem;
  }
}

.p-studio-card__meta-term {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-card__meta-term {
    font-size: 0.875rem;
  }
}
.p-studio-card__meta-term::before {
  content: "";
  flex-shrink: 0;
  inline-size: 0.75rem;
  block-size: 0.75rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-studio-card__meta-term::before {
    inline-size: 0.375rem;
    block-size: 0.375rem;
  }
}

.p-studio-card__meta-detail {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-card__meta-detail {
    font-size: 0.875rem;
  }
}

.p-studio-card__intensity {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.p-studio-card__stars {
  display: inline-flex;
  gap: 0.125rem;
}

.p-studio-card__star {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1;
}
.p-studio-card__star:not(.is-on) {
  color: #b0b0b0;
}

.p-studio-card__intensity-note {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-studio-card__notes {
  margin-block-start: 1rem;
}

.p-studio-card__note {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-card__note {
    font-size: 0.875rem;
  }
}
.p-studio-card__note:not(:first-child) {
  margin-block-start: 0.25rem;
}
.p-studio-card__note a {
  color: #1a6fb0;
}
@media (any-hover: hover) {
  .p-studio-card__note a:hover {
    opacity: 0.8;
    text-decoration: underline;
    text-underline-offset: 0.125rem;
  }
}

.p-studio-details {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-studio-details {
    margin-block: 3rem 0;
  }
}

.p-studio-details__inner {
  display: flex;
  flex-direction: column;
}

.p-studio-details__shell {
  width: 100%;
  margin-block-start: 2.625rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-studio-details__shell {
    margin-block-start: 2rem;
  }
}

.p-studio-details__board {
  width: min(70.625rem, 100%);
  margin-inline: auto;
  padding: 3.125rem 3.125rem 3.75rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
}
@media screen and (max-width: 767px) {
  .p-studio-details__board {
    border-radius: 1.875rem 1.875rem 0 0;
    padding: 3.125rem 1.25rem;
  }
}

.p-studio-details__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-studio-details__grid {
    max-width: 33.75rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}

.p-studio-details__stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.p-studio-details__card {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.25rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-studio-details__card {
    padding: 1.5rem 1.25rem;
  }
}

.p-studio-details__card-title {
  padding-block-end: 1rem;
  padding-inline-start: 1.25rem;
  border-block-end: 0.0625rem solid #ec6d6f;
  color: #ec6d6f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-details__card-title {
    padding-block-end: 1.125rem;
    font-size: 1.125rem;
  }
}

.p-studio-details__card-body {
  display: flex;
  flex-direction: column;
}

.p-studio-details__subheading {
  margin-block-start: 1.5rem;
  padding-inline-start: 1.25rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-details__subheading {
    margin-block-start: 1rem;
    font-size: 1rem;
  }
}

.p-studio-details__card-body .p-studio-details__subheading:first-child {
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-studio-details__card-body .p-studio-details__subheading:first-child {
    margin-block-start: 0.5rem;
  }
}

.p-studio-details__card-list {
  display: flex;
  flex-direction: column;
  margin-block-start: 2rem;
  padding-inline: 1.25rem 3.125rem;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-studio-details__card-list {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-studio-details__card-list {
    margin-block-start: 1.125rem;
  }
}

.p-studio-details__card-body .p-studio-details__card-list {
  margin-block-start: 0.75rem;
}

.p-studio-details__card-item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-details__card-item {
    font-size: 0.9375rem;
  }
}
.p-studio-details__card-item::before {
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
  content: "";
}

.p-studio-details__card-item-label {
  font-weight: 500;
}

.p-studio-details__card-note {
  margin-block-start: 1rem;
  padding-inline: 1.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-details__card-note {
    font-size: 0.8125rem;
  }
}

.p-studio-details__card-title + .p-studio-details__card-list {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-studio-details__card-title + .p-studio-details__card-list {
    margin-block-start: 1.125rem;
  }
}

.p-studio-details__card-title + .p-studio-details__card-note {
  margin-block-start: 1rem;
  padding-inline: 1.25rem;
}

.p-studio-programs {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-studio-programs {
    margin-block: 3rem 0;
  }
}

.p-studio-programs__inner {
  display: flex;
  flex-direction: column;
}

.p-studio-programs__list {
  display: flex;
  flex-direction: column;
  width: min(100%, 65.625rem);
  margin-block-start: 3rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-studio-programs__list {
    margin-block-start: 2rem;
  }
}

.p-studio-programs__item:not(:first-child) {
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-studio-programs__item:not(:first-child) {
    margin-block-start: 2rem;
  }
}

.p-studio-reservation {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-studio-reservation {
    margin-block: 3rem;
  }
}

.p-studio-reservation__inner {
  display: flex;
  flex-direction: column;
}

.p-studio-reservation__block {
  margin-block-start: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-studio-reservation__block {
    margin-block-start: 2rem;
  }
}

.p-studio-reservation__list {
  display: flex;
  flex-direction: column;
}

.p-studio-reservation__term {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-reservation__term {
    font-size: 0.9375rem;
  }
}

.p-studio-reservation__value {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-reservation__value {
    font-size: 1rem;
  }
}

.p-studio-reservation__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-block-start: 1.5rem;
  padding: 0.75rem 3rem;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #31cfe9 0%, #fe8395 100%);
  color: var(--color-white);
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-studio-reservation__reserve {
    margin-block-start: 1.1875rem;
  }
}
@media (any-hover: hover) {
  .p-studio-reservation__reserve:hover {
    opacity: 0.85;
  }
}

.p-studio-reservation__reserve-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.p-studio-reservation__reserve-icon img {
  display: block;
  width: 1.75rem;
  height: auto;
}

.p-studio-reservation__reserve-text {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.7894736842;
  letter-spacing: 0.04em;
}

.p-studio-reservation__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  width: min(100%, 65.625rem);
  margin-inline: auto;
  margin-block-start: 3rem;
  padding: 1.875rem;
  border: 0.0625rem solid #f9cdce;
  border-radius: 0.625rem;
  background-color: #fff9fc;
}
@media screen and (max-width: 767px) {
  .p-studio-reservation__box {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    margin-block-start: 2rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-studio-reservation__content {
  flex: 1;
  min-inline-size: 0;
}

.p-studio-reservation__box-title {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-reservation__box-title {
    font-size: 1.125rem;
  }
}

.p-studio-reservation__box-text {
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-studio-reservation__box-text {
    margin-block-start: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.p-studio-reservation__box .c-button {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-studio-reservation__box .c-button {
    inline-size: 100%;
  }
}

.p-style-features {
  margin-block: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-style-features {
    margin-block: 3rem 0;
  }
}

.p-style-features__inner {
  display: flex;
  flex-direction: column;
}

.p-style-features__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-block-start: 3rem;
  padding-block: 3.5rem 5rem;
  list-style: none;
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #f0faff;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-style-features__list-wrap {
    margin-block-start: 2rem;
    padding-block: 2.5rem 2.5rem;
  }
}

.p-style-features__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  list-style: none;
  width: min(100%, 81.25rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-style-features__list {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-style-features__list {
    gap: 2rem;
  }
}

.p-style-features__item {
  min-inline-size: 0;
}

.p-style-features__card {
  overflow: hidden;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-style-features__card {
    border-radius: 0.75rem;
  }
}
.p-style-features__card .c-title-sub {
  margin-block-end: 0;
}

.p-style-features__layout {
  display: grid;
  grid-template-columns: minmax(0, 31.25rem) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: flex-start;
  padding: 2.25rem 2.625rem 2.5rem 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-style-features__layout {
    grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
    gap: 2rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-style-features__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-style-features__visual {
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 500/375;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-style-features__visual {
    order: 1;
  }
}

.p-style-features__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-style-features__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-style-features__content {
    order: 2;
    gap: 1rem;
  }
}

.p-style-features__item:nth-child(even) .p-style-features__layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 31.25rem);
}
@media screen and (max-width: 1023px) {
  .p-style-features__item:nth-child(even) .p-style-features__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 44%);
  }
}
@media screen and (max-width: 767px) {
  .p-style-features__item:nth-child(even) .p-style-features__layout {
    grid-template-columns: 1fr;
  }
}

.p-style-features__item:nth-child(even) .p-style-features__visual {
  grid-column: 2;
  grid-row: 1;
}

.p-style-features__item:nth-child(even) .p-style-features__content {
  grid-column: 1;
  grid-row: 1;
}

@media screen and (max-width: 767px) {
  .p-style-features__item:nth-child(even) .p-style-features__visual,
  .p-style-features__item:nth-child(even) .p-style-features__content {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-style-features__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-style-features__text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

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

.p-style-features__sub-title {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-style-features__sub-title {
    font-size: 1rem;
  }
}
.p-style-features__sub-title::before {
  content: "・";
}

.p-style-features__sub-text {
  padding-inline-start: 0.875rem;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-style-features__sub-text {
    font-size: 0.8125rem;
  }
}

.p-style-features__point-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.p-style-features__point-item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-style-features__point-item {
    font-size: 0.8125rem;
  }
}
.p-style-features__point-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.p-style-features__note-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.p-style-features__note-item {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-style-features__note-item {
    font-size: 0.8125rem;
  }
}

.p-style-intro__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-block-start: 3rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-style-intro__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 2rem;
  }
}

.p-style-intro__item {
  min-inline-size: 0;
}

.p-style-intro__body {
  padding: 1.5rem 1.25rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-style-intro__body {
    padding: 0 1rem 0;
  }
}

.p-style-intro__desc {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-style-intro__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.p-style-intro__button-wrap {
  display: flex;
  justify-content: flex-start;
  margin-block-start: 1.5rem;
  padding-inline-start: 1em;
}
@media screen and (max-width: 767px) {
  .p-style-intro__button-wrap {
    margin-block-start: 1.25rem;
  }
}

.p-style-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}

.p-style-intro__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-style-intro__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-support-after {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-support-after {
    margin-block: 3rem;
  }
}

.p-support-after__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.0625rem;
  margin-block-start: 3rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-support-after__list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block-start: 2rem;
  }
}

.p-support-after__item {
  display: flex;
  min-inline-size: 0;
}

.p-support-after__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  flex: 1;
  min-inline-size: 0;
  block-size: 100%;
  padding: 1.9375rem 2.375rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  text-align: center;
  box-shadow: 0 0 8px 5px rgba(13, 41, 54, 0.05);
}
@media screen and (max-width: 767px) {
  .p-support-after__card {
    padding: 1.75rem 1.5rem;
  }
}

.p-support-after__title {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-support-after__text {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-support-after__text {
    font-size: 0.8125rem;
  }
}

.p-support-after__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: center;
  margin-block-start: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-support-after__link {
    font-size: 1rem;
  }
}

.p-support-after__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-support-after__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-support-amenities {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-support-amenities {
    margin-block-start: 3rem;
  }
}

.p-support-amenities__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 28rem);
  gap: 2.5rem 3.3125rem;
  align-items: flex-start;
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-support-amenities__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-support-amenities__grid {
    grid-template-columns: 1fr;
    margin-block-start: 1.5rem;
  }
}

.p-support-amenities__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-support-amenities__text {
    font-size: 1rem;
  }
}

.p-support-amenities__button {
  margin-block-start: 1rem;
}

.p-support-amenities__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-support-amenities__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-support-amenities__highlight {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-support-amenities__highlight {
    margin-block-start: 1.5rem;
    font-size: 1rem;
  }
}

.p-support-amenities__highlight-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-support-amenities__highlight-title {
    font-size: 1.125rem;
  }
}

.p-support-amenities__visual {
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 448/277;
  min-inline-size: 0;
}
@media screen and (max-width: 767px) {
  .p-support-amenities__visual {
    order: -1;
  }
}

.p-support-amenities__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-support-intro__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin-block-start: 2rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-support-intro__links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-support-intro__links-item {
  display: flex;
  min-width: 0;
}

.p-support-intro__link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6875rem;
  padding: 1rem 1.125rem 1rem 1.625rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.625rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-support-intro__link {
    min-height: 3.75rem;
    padding: 0.75rem 1.125rem;
    font-size: 0.9375rem;
  }
}
.p-support-intro__link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-support-intro__link:hover {
    opacity: 1;
    background-color: #ffeaea;
    box-shadow: 0 0 8px 5px rgba(226, 226, 226, 0.75);
  }
}

.p-support-intro__link-label {
  flex: 1;
  min-width: 0;
}

.p-support-intro__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-support-intro__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-support-services {
  margin-block-start: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-support-services {
    margin-block-start: 2.5rem;
  }
}

.p-support-services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.875rem 2.0625rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-support-services__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-support-services__item {
  min-inline-size: 0;
}

.p-support-services__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  block-size: 100%;
  padding: 1.9375rem 2.375rem;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  box-shadow: 0 0 8px 5px rgba(234, 185, 211, 0.5);
}
@media screen and (max-width: 767px) {
  .p-support-services__card {
    padding: 1.5rem 1.25rem;
  }
}

.p-support-services__visual {
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 562/277;
  min-inline-size: 0;
}

.p-support-services__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-support-services__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-inline-size: 0;
}

.p-support-services__title {
  color: var(--color-primary);
  font-family: var(--ff-zen);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-support-services__title {
    font-size: 1.125rem;
  }
}

.p-support-services__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-support-services__text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-thanks {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    margin-block: 3.75rem;
  }
}

.p-thanks__title {
  text-align: center;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.p-thanks__title + .p-thanks__text {
  margin-block-start: 1.5rem;
}

.p-thanks__text {
  text-align: center;
  font-size: max(1.125rem, 8px);
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: max(1rem, 8px);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.04em;
  }
}

.p-thanks__button {
  margin-block-start: 2.5rem;
  text-align: center;
}

.p-top-access {
  position: relative;
  padding-block: 3.5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-access {
    padding-block: 2.75rem 0;
    overflow: hidden;
  }
}

.p-top-access__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 68.75rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-access__inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.p-top-access__deco {
  position: absolute;
  top: 4.5rem;
  right: -10.125rem;
  z-index: -1;
  width: 9.5rem;
  height: auto;
  aspect-ratio: 152/170;
  pointer-events: none;
}
@media screen and (max-width: 1439px) {
  .p-top-access__deco {
    right: -3.125rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-access__deco {
    right: -1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__deco {
    display: none;
  }
}

.p-top-access__deco-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 184, 179, 0.65) 0%, rgba(255, 214, 210, 0.35) 45%, rgba(255, 255, 255, 0) 72%);
  filter: blur(2px);
}

.p-top-access__deco-icon {
  position: absolute;
  inset-block-start: 24%;
  inset-inline-end: 20%;
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
}
.p-top-access__deco-icon svg {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-access__deco-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-top-access__head {
  text-align: center;
}

.p-top-access__title-en {
  color: #ffe3e1;
  font-family: var(--ff-zen);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-access__title-en {
    font-size: 3.125rem;
    line-height: 0.94;
  }
}

.p-top-access__title {
  position: relative;
  z-index: 1;
  margin-block-start: -1.5rem;
  color: var(--color-text);
  font-size: 1.5rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-access__title {
    margin-block-start: -1.125rem;
    font-size: 1.5rem;
  }
}

.p-top-access__layout {
  margin-block-start: 3.25rem;
}
@media screen and (max-width: 1023px) {
  .p-top-access__layout {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-block-start: 1.5rem;
  }
}

.p-top-access__brand-logo {
  width: min(100%, 12.9375rem);
  height: auto;
  aspect-ratio: 207/50;
  margin-block-start: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-access__brand-logo {
    margin-inline: auto;
    margin-block-start: 0;
  }
}

.p-top-access__brand-name {
  margin-block-start: 1.25rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-access__brand-name {
    text-align: center;
  }
}

.p-top-access__address {
  color: var(--color-text);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-access__address {
    display: block;
    margin-block-start: 0.375rem;
    text-align: center;
  }
}

.p-top-access__tel {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-top-access__tel {
    gap: 0.625rem;
    justify-content: center;
    margin-block-start: 0.875rem;
  }
}

.p-top-access__tel-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5625rem;
  height: auto;
  aspect-ratio: 25/35;
}
@media screen and (max-width: 1023px) {
  .p-top-access__tel-icon {
    width: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__tel-icon {
    width: 1.5625rem;
  }
}
.p-top-access__tel-icon img {
  object-fit: contain;
}

.p-top-access__tel-body {
  display: flex;
  flex-direction: column;
}

.p-top-access__tel-number {
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.p-top-access__tel-hours {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.p-top-access__location {
  margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-access__location {
    margin-block-start: 1.5rem;
  }
}

.p-top-access__location-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 0.875rem;
}

.p-top-access__location-icon {
  display: flex;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.625rem;
}
.p-top-access__location-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-top-access__location-title {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.p-top-access__location-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-top-access__location-address {
  color: var(--color-text);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-access__location-address {
    font-size: 0.75rem;
  }
}

.p-top-access__location-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-top-access__location-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-top-access__location-item-icon {
  display: flex;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.p-top-access__location-item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-top-access__location-text {
  margin: 0;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-access__location-text {
    font-size: 0.75rem;
  }
}

.p-top-access__map-wrap {
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-access__map-wrap {
    margin-block-start: 1rem;
  }
}

.p-top-access__map-inner {
  width: 100%;
  max-width: none;
}
.p-top-access__map-inner iframe {
  display: block;
  width: 100%;
  height: 25rem;
  border: 0;
}
@media screen and (max-width: 767px) {
  .p-top-access__map-inner iframe {
    height: 11.25rem;
  }
}

.p-top-introduction {
  position: relative;
  padding-block: 4.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-introduction {
    padding-block: 2.75rem 0;
  }
}

.p-top-introduction__inner {
  width: min(100%, 75.625rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.p-top-introduction__top-layout {
  position: relative;
}

.p-top-introduction__deco {
  position: absolute;
  top: 1.5625rem;
  left: -9.75rem;
  z-index: -1;
  width: 14.3125rem;
  height: auto;
  aspect-ratio: 229/260;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__deco {
    display: none;
  }
}

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

.p-top-introduction__head {
  text-align: center;
}

.p-top-introduction__title {
  color: #ffe3e1;
  font-family: var(--ff-zen);
  font-size: clamp(2.25rem, 5vw, 4.125rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__title {
    font-size: 3.125rem;
    line-height: 0.94;
  }
}

.p-top-introduction__subtitle {
  position: relative;
  z-index: 1;
  margin-block-start: -1.5rem;
  color: var(--color-text);
  font-size: 1.5rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__subtitle {
    margin-block-start: -1.125rem;
    font-size: 1.5rem;
  }
}

.p-top-introduction__top-content {
  margin-block-start: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__top-content {
    margin-block-start: 2.125rem;
  }
}

.p-top-introduction__top-content-text {
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__top-content-text {
    font-size: 0.875rem;
  }
}

.p-top-introduction__button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-block-start: 2.25rem;
}

.p-top-introduction__button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem 0.875rem 2rem;
  border: 1px solid #ec6d80;
  border-radius: 100vmax;
  background-color: #ec6d80;
  color: var(--color-white);
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (any-hover: hover) {
  .p-top-introduction__button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

.p-top-introduction__button-text {
  font-weight: 500;
}

.p-top-introduction__button-arrow {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.p-top-introduction__button-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.35' height='8.61' viewBox='0 0 4.35 8.61'%3E%3Cpath fill='%23ec6d6f' d='M4.35,4.33L.27,8.61l-.27-.99,3.16-3.29v-.04L0,.99l.27-.99,4.09,4.28v.04Z'/%3E%3C/svg%3E%0A") no-repeat center center/contain;
  width: 0.271875rem;
  height: 0.538125rem;
}

.p-top-introduction__bottom {
  margin-block-start: 4rem;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-top-introduction__bottom {
    margin-block-start: 3.5rem;
  }
}

.p-top-introduction__bottom-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-block-end: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__bottom-inner {
    padding-block-end: 4.5rem;
  }
}
.p-top-introduction__bottom-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/460;
  background: url(../images/image_top_introduction_bottom_bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__bottom-inner::before {
    aspect-ratio: 780/920;
    background: url(../images/image_top_introduction_bottom_bg_sp.webp) no-repeat center center/cover;
  }
}

.p-top-introduction__interviews-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  position: relative;
}

.p-top-introduction__interviews-title {
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__interviews-title {
    font-size: 1.375rem;
  }
}

.p-top-introduction__interviews-line {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  translate: -50% calc(-50% + 0.9375rem);
  display: block;
  width: min(100%, 19.375rem);
  height: auto;
  aspect-ratio: 310/25;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__interviews-line {
    translate: -50% calc(-50% + 2.375rem);
    width: min(100%, 9.375rem);
    aspect-ratio: 150/6.5;
  }
}

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

.p-top-introduction__swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-top-introduction__swiper {
  position: relative;
  padding-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__swiper {
    padding-block-start: 4.375rem;
  }
}

.p-top-introduction__swiper-wrapper {
  align-items: flex-end;
}

.swiper-slide.p-top-introduction__swiper-slide {
  position: relative;
  flex-basis: 18.75rem;
  width: 18.75rem;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.swiper-slide.p-top-introduction__swiper-slide.swiper-slide-active .p-top-introduction__related-card {
  scale: 1;
}
.swiper-slide.p-top-introduction__swiper-slide.swiper-slide-active .p-top-introduction__related-card .p-top-introduction__related-card-deco {
  opacity: 1;
}

.p-top-introduction__swiper-slide .p-top-introduction__related-card {
  height: 100%;
  margin-block-start: auto;
  transform-origin: bottom center;
  scale: 0.83;
}

.p-top-introduction__related-card {
  position: relative;
  border-radius: 1rem;
  aspect-ratio: 415/582;
  margin-block-start: auto;
  transition: scale 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__related-card {
    border-radius: 1.75rem;
    aspect-ratio: 318/446;
  }
}

.p-top-introduction__related-card-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.p-top-introduction__related-card-image {
  display: block;
  position: absolute;
  inset: 0 0 4.625rem 0;
  aspect-ratio: 300/350;
  z-index: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.p-top-introduction__related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-introduction__related-card-interview {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  z-index: 3;
  width: 4.375rem;
  height: auto;
  aspect-ratio: 70/24;
  pointer-events: none;
}

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

.p-top-introduction__related-card-arrow-btn {
  position: absolute;
  top: 1.8125rem;
  right: 1.1875rem;
  z-index: 3;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-text);
  pointer-events: none;
}

.p-top-introduction__related-card-arrow-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 0.4375rem;
  height: 0.4375rem;
  border-block-start: 2px solid var(--color-white);
  border-inline-end: 2px solid var(--color-white);
  translate: -50% -50%;
  rotate: 45deg;
}

.p-top-introduction__related-card-deco {
  position: absolute;
  bottom: 2.5rem;
  left: -2.5rem;
  z-index: 2;
  width: 8.5rem;
  height: auto;
  aspect-ratio: 136/104;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__related-card-deco {
    bottom: 4.25rem;
    left: -1.875rem;
  }
}

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

.p-top-introduction__related-card-footer {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 1.125rem);
  max-width: 17.5rem;
  padding: 0.875rem 1.375rem 1rem;
  translate: -50% 0;
  color: var(--color-white);
  text-align: center;
}
.p-top-introduction__related-card-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #ef9057 0%, #ec6d80 100%);
  opacity: 0.85;
  filter: blur(3px);
}
@media screen and (max-width: 767px) {
  .p-top-introduction__related-card-footer {
    bottom: 0.625rem;
    width: calc(100% - 1.25rem);
    max-width: 16.25rem;
    padding: 0.625rem 1rem 0.75rem;
  }
}

.p-top-introduction__related-card-department,
.p-top-introduction__related-card-role {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__related-card-department,
  .p-top-introduction__related-card-role {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

.p-top-introduction__related-card-role {
  margin-block-start: 0.125rem;
}

.p-top-introduction__related-card-name {
  margin-block-start: 0.125rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__related-card-name {
    font-size: 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-top-introduction__related-card-link:hover .p-top-introduction__related-card-arrow-btn {
    background-color: color-mix(in srgb, var(--color-black) 72%, var(--color-white));
  }
}
.p-top-introduction__swiper-button-prev::after,
.p-top-introduction__swiper-button-next::after {
  content: "";
  display: none;
}

.p-top-introduction__swiper-button-prev,
.p-top-introduction__swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  background-color: var(--color-white);
  cursor: pointer;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-introduction__swiper-button-prev,
  .p-top-introduction__swiper-button-next {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
@media (any-hover: hover) {
  .p-top-introduction__swiper-button-prev:hover,
  .p-top-introduction__swiper-button-next:hover {
    opacity: 0.9;
  }
}

.p-top-introduction__swiper-button-prev {
  left: calc(50% - 12rem);
  translate: -50% -50%;
}
@media screen and (max-width: 1023px) {
  .p-top-introduction__swiper-button-prev {
    left: calc(50% - 11.875rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-introduction__swiper-button-prev {
    left: calc(50% - 9.375rem);
  }
}
.p-top-introduction__swiper-button-prev::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.41 7.41L14 6l-6 6l6 6l1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-top-introduction__swiper-button-next {
  left: calc(50% + 12rem);
  translate: -50% -50%;
}
@media screen and (max-width: 1023px) {
  .p-top-introduction__swiper-button-next {
    left: calc(50% + 11.875rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-introduction__swiper-button-next {
    left: calc(50% + 9.375rem);
  }
}
.p-top-introduction__swiper-button-next::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.41 7.41L14 6l-6 6l6 6l1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.p-top-newborn-photo {
  display: block;
  position: relative;
  padding-block: 4.75rem 10.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo {
    padding-block: 3rem 8.3125rem;
  }
}
.p-top-newborn-photo::before {
  content: "";
  position: absolute;
  bottom: 5.75rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 32.5rem;
  aspect-ratio: 1440/520;
  aspect-ratio: auto;
  background: url(../images/image_newborn_photo_bg.webp) no-repeat center center/100% 100%;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo::before {
    bottom: 3.4375rem;
    aspect-ratio: 390/430;
    background-image: url(../images/image_newborn_photo_bg_sp.webp);
  }
}
.p-top-newborn-photo::after {
  content: "";
  position: absolute;
  bottom: 3.25rem;
  left: 1.125rem;
  z-index: -1;
  width: 13.875rem;
  height: auto;
  aspect-ratio: 222/130;
  background: url(../images/image_newborn_photo_deco.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo::after {
    display: none;
  }
}

.p-top-newborn-photo__inner {
  position: relative;
  width: min(100%, 75.625rem);
  margin-inline: auto;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo__inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.p-top-newborn-photo__head {
  text-align: center;
}

.p-top-newborn-photo__title-en {
  color: #ffe3e1;
  font-family: var(--ff-zen);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo__title-en {
    font-size: 3.125rem;
    line-height: 1.05;
  }
}

.p-top-newborn-photo__title {
  position: relative;
  z-index: 1;
  margin-block-start: -4.375rem;
  color: var(--color-text);
  font-size: 1.5rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo__title {
    margin-block-start: -4.125rem;
    font-size: 1.5rem;
  }
}

.p-top-newborn-photo__swiper-container {
  position: relative;
  margin-block-start: 5.875rem;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo__swiper-container {
    margin-block-start: 4.875rem;
  }
}

.p-top-newborn-photo__swiper {
  position: relative;
  padding-block: 0.5rem 0.75rem;
}

.p-top-newborn-photo__swiper-wrapper {
  align-items: center;
}

.swiper-slide.p-top-newborn-photo__swiper-slide {
  position: relative;
  flex-shrink: 0;
  flex-basis: 13.125rem;
  width: 13.125rem;
  max-width: 100%;
  height: auto;
}

.p-top-newborn-photo__card {
  display: block;
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo__card {
    border-radius: 0.875rem;
  }
}

.p-top-newborn-photo__card-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  transition: opacity var(--duration);
}
.p-top-newborn-photo__card-link:focus-visible {
  outline: 0.125rem solid var(--color-primary);
  outline-offset: 0.125rem;
}
@media (any-hover: hover) {
  .p-top-newborn-photo__card-link:hover {
    opacity: 0.8;
  }
}

.p-top-newborn-photo__card-image {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-newborn-photo__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-newborn-photo__swiper-button-prev::after,
.p-top-newborn-photo__swiper-button-next::after {
  content: "";
  display: none;
}

.p-top-newborn-photo__swiper-button-prev,
.p-top-newborn-photo__swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-primary);
  cursor: pointer;
  translate: 0 -50%;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-top-newborn-photo__swiper-button-prev:hover,
  .p-top-newborn-photo__swiper-button-next:hover {
    opacity: 0.92;
  }
}

.p-top-newborn-photo__swiper-button-prev {
  left: calc(50% - 9.0625rem);
  translate: -50% -50%;
}
@media screen and (max-width: 1023px) {
  .p-top-newborn-photo__swiper-button-prev {
    left: calc(50% - 8.125rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo__swiper-button-prev {
    left: calc(50% - 9.0625rem);
  }
}
.p-top-newborn-photo__swiper-button-prev::before {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M15.41 7.41L14 6l-6 6l6 6l1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-top-newborn-photo__swiper-button-next {
  left: calc(50% + 9.0625rem);
  translate: -50% -50%;
}
@media screen and (max-width: 1023px) {
  .p-top-newborn-photo__swiper-button-next {
    left: calc(50% + 8.125rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo__swiper-button-next {
    left: calc(50% + 9.0625rem);
  }
}
.p-top-newborn-photo__swiper-button-next::before {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M15.41 7.41L14 6l-6 6l6 6l1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.p-top-newborn-photo__cta-wrap {
  display: flex;
  justify-content: center;
  margin-block-start: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-newborn-photo__cta-wrap {
    margin-block-start: 2.75rem;
  }
}

.p-top-news {
  background-color: #fafdef;
  padding-block: 3.375rem 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-block: 1.5rem 3.75rem;
  }
}

.p-top-news__inner {
  width: min(100%, 75.875rem);
  margin-inline: auto;
  padding-inline: 4.5625rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    width: min(100%, 33.75rem);
    padding-inline: 1.25rem;
  }
}

.p-top-news__layout {
  display: grid;
  grid-template-columns: minmax(11.25rem, 12.1875rem) minmax(0, 1fr);
  gap: 5.125rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .p-top-news__layout {
    gap: 3rem;
    grid-template-columns: minmax(8.75rem, 10rem) minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}

.p-top-news__lead {
  text-align: center;
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__lead {
    display: contents;
  }
}

.p-top-news__title-holder {
  position: relative;
  display: grid;
  place-items: center;
  height: 12.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__title-holder {
    order: 1;
    width: 12.1875rem;
  }
}

.p-top-news__title-bg {
  position: absolute;
  width: 12.1875rem;
  height: 12.25rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-news__title-bg {
    width: 12.1875rem;
    height: 12.3125rem;
  }
}

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

.p-top-news__title-group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.p-top-news__title-en {
  color: rgba(44, 152, 210, 0.6);
  font-family: var(--ff-zen);
  font-weight: 400;
  font-size: 2.625rem;
  line-height: 1;
}

.p-top-news__title-ja {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-family: var(--ff-zen);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.p-top-news__button-wrap {
  margin-block-start: 6.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__button-wrap {
    order: 3;
    margin-block-start: 2.3125rem;
  }
}

.p-top-news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 2.375rem;
  border-radius: 62.4375rem;
  background: linear-gradient(90deg, #bff5c1 0%, #6eb8e0 100%);
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.p-top-news__content {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news__content {
    order: 2;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-top-news__tabs {
    min-width: 0;
    margin-block-start: 1.5rem;
    margin-inline: calc(50% - 50vw);
    overflow-x: scroll;
    overflow-y: hidden;
    padding-inline: 1.25rem;
  }
}

.p-top-news__tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  margin: 0;
  list-style: none;
  padding-inline: 1rem;
  border-block-end: 1px solid #babbbc;
}
@media screen and (max-width: 767px) {
  .p-top-news__tab-list {
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: fit-content;
  }
}

@media screen and (max-width: 767px) {
  .p-top-news__tab-list > li {
    flex-shrink: 0;
  }
}

.p-top-news__tab {
  padding: 0.875rem 0.75rem;
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-top-news__tab {
    white-space: nowrap;
    padding: 0.875rem 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-top-news__tab:hover {
    color: #2c98d2;
  }
}

.p-top-news__tab.is-active {
  color: #2c98d2;
  pointer-events: none;
  position: relative;
}
.p-top-news__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, #bff5c1 0%, #6eb8e0 100%);
}

.p-top-news__panels {
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__panels {
    margin-block-start: 0.375rem;
  }
}

.p-top-news__list {
  list-style: none;
}

.p-top-news__empty {
  padding-block: 1.375rem;
  padding-inline: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
}

.p-top-news__item-link {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-block: 1.375rem;
  padding-inline: 0.5rem;
  border-block-start: none;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-top-news__item-link:hover .p-top-news__item-title {
    color: #2c98d2;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__item-link {
    padding-block: 1.375rem;
  }
}

.p-top-news__item + .p-top-news__item .p-top-news__item-link {
  border-block-start: 1px dashed #d9d9d9;
}

.p-top-news__item:last-child .p-top-news__item-link {
  border-block-end: 1px dashed #d9d9d9;
}

.p-top-news__item-meta {
  display: inline-flex;
  align-items: flex-start;
}

.p-top-news__item-body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .p-top-news__item-body {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.p-top-news__item-category {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  border: 1px solid #2c98d2;
  border-radius: 62.4375rem;
  background-color: var(--color-white);
  color: #2c98d2;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-category {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

.p-top-news__item-date {
  color: #2c98d2;
  font-variant-numeric: tabular-nums;
  font-size: 0.875rem;
}

.p-top-news__item-title {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--duration);
}

.p-treatment-content {
  margin-block-start: 5rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-content {
    margin-block-start: 3.75rem;
    margin-block-end: 3.75rem;
  }
}

.p-treatment-content__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-content__inner {
    gap: 3.75rem;
  }
}

.p-treatment-block {
  display: flex;
  flex-direction: column;
}
.p-treatment-block .c-title-main {
  margin-block-end: 0;
}

.p-treatment-block__subheading {
  margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__subheading {
    margin-block-start: 2rem;
  }
}

.p-treatment-block__body {
  margin-block-start: 1.5rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__body {
    margin-block-start: 1rem;
  }
}

.p-treatment-block__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__text {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.p-treatment-block__text + .c-title-small {
  margin-block-start: 1.5rem;
}

.p-treatment-block__text--small {
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__text--small {
    font-size: 0.8125rem;
  }
}

.p-treatment-block__body .c-text-media-deco__check-list {
  margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__body .c-text-media-deco__check-list {
    margin-block-start: 1rem;
  }
}

.p-treatment-block__body .c-text-media-deco__check-item + .c-text-media-deco__check-item {
  margin-block-start: 0.25rem;
}

.p-treatment-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0;
  list-style: none;
}
.p-treatment-block__list + .p-treatment-block__text {
  margin-block-start: 1rem;
}

.p-treatment-block__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__item {
    font-size: 1rem;
  }
}
.p-treatment-block__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-treatment-block__steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-inline-start: 1.5rem;
  list-style: decimal;
}

.p-treatment-block__step {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__step {
    font-size: 1rem;
  }
}

.p-treatment-block__note {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__note {
    font-size: 0.8125rem;
  }
}

.p-treatment-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 44.6666666667%);
  gap: 2.5rem;
  align-items: start;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-block-start: 1.5rem;
  }
}

.p-treatment-block__visual {
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-treatment-block__visual {
    order: -1;
  }
}

.p-treatment-block__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.p-under-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 23.125rem;
  background: url(../images/image_under_mv_bg.webp) no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-under-mv {
    height: 16.875rem;
    background: url(data:image/webp;base64,UklGRnAOAABXRUJQVlA4WAoAAAAQAAAACwMAGwIAQUxQSF0BAAABgCBJsmnr2fi2bdu27f3vp39PRUT+4T/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+4z/+B6q/UviRwrcUvqTwKYUPKbxL4c0WXmzhWQqPtvAghXtbuJXCjRSubeFKCpdSuLCFcymcSeFUCidSOJbCkS0cSuFACvtS2LOFXSnsSGFbClu2sCmFDVtYl8KaFFalsGILy1JYsoVFKSzYwrwU5mxh1hambWHKFialMGEL41IYC5FGbGHYFoZsYVAKA7bQbwt9ttBrCz220G0LXVLoDJE6bKHdFtpsodUWWkKkZltosoXGEKnBFuq2UMOFaohUkUIZF0ohUtEWCuicD5Fy6JwNkTLonMb//6kpdE7if6ydwH/8D1QBAFZQOCDsDAAA8I4AnQEqDAMcAj5tNphJpCKiISAYCCCADYlpbuEnV4aWT7/Q+vm4p3lo224+5S884dOgv//VBsO/708uBf+qX/r6d/AAnxUI7+kqu05+DHEL6G9bVFWkK3qIgqZAeOCqEQmnORUAWz4ZrNReR5GplZ7njg8cGnsNXzAff3/CT6l/bknjsdfEwlXsRDIKXlGLqh7QpK/OtTWHUsQ5yX5rGxM8Pvh714iyVrFlT+DiqK0GNY5umbzFSikIoBmz1HW3Jx1myzB/gsCp/fCikFsmeEWX1Zo2PkqMALHxdPZws+fOlkmcKwBOCiA/UhXqseei4lvCqPkK1XNHSxnBc5Q4JK45ZGNBybi1uM/Gq2gK/Ci5uFnTEpRA6bdEmo18NDV1sZGy+kjQp7GrYF3HiQNeVrc901JY2PVtwJ2rqzR7Gex0nxWQTu6/PWRT7/qmn5wUjnSMZN3mV7kPCFFpCwFR50/s0BKyACQMQugfsh2QakOnQ1QZtzs8DNYc+SGeiVTZXJateqQkEm+TEc/yGhkaTGAfTTIZzd1fn/cIY6OUozcFiQBV/Pp8/u3KR4QmibDHZoxbggcLjj2LL4WiaGSX6UjmbhGcjqCTJlKX2mx2mURufY8aBuCJc8Ck5ydZrMqs19hU62c8eud33VNtcwMhVbau/tF79VW6ZJIUSxBAANFaJqtGBRk8BCkZhHDFL7RNEJJ/8CRF9F9M2kiB+kR/LIqF5/QJJw+bjRAVMAxSN8qceCrv5f6QOnoEZyQrdnFuzQl73WBEHLsri0fcXsA/qnnthKf9EsSz8Q/Uddd/ruN4iPPa+GsmJnEAgFyT6k59mF56w7A/jN4DbiBKmXopepdTEhXubq/JmoWtPMSIEMp1XiiYzcfXL9ElILDakmFFQyjxiuzfBcQQOUBB8cSr/yRfjJBKUwEz7vd/1yq9Br0fZ9n03zPCFPLBSWdPhq5Uz//iZKv/cTgMDLDDWXmjksxkm/iE0FT5H1XtqqUwgBADMtx4CJKlexegglZVH2LszQxD5lgaFvjXr7dcaAsuUOn7Sh+ZFQHLG4HlHcH1nfyhayZZLpFk/qOc1Jlgk+KCLoDjHPNO5DoUCIZnWYZG7YpKio+FScDStf7oRZHSQZkzJUt9/jxeHKEKM1TxPscyYyya1YiAhO2JiR3ovuGcfLVs+2jMvp3LQJQuVeVKuOOUJYWSmSLXzo8/VU4xH3Yc8JOBVHx6AzkyCqMQzEFx6s8O3T1NAakAcvFxOQuoTFwQIVDWQhv69VVJN1KmGotGKW54f8HJBl2irax9EK3lb49mpf/89DCsArdSS2A6BJWqt/hDDKEBHymVSGaAJPQ7wPvqWA0CdQxBUCWH9EP4FPZ4sh4ksw9NzESzP+T/8//fxm3fcHRPnVtYXy6eU0cCczWVPZ8PR/vQRCf6Mf0EQkK9JU8q3d1SVX5jnCNSEAC5DZ3tc/A47/oNJnb483+0Fjaf9a3Me8HWvGvGvHwGvGvGvGvG/68X7rxrxrxv+/37v+/7/fu//AX7rxrxrx7+AP7v8I6HSJv/qJ/mt/mt6+5D6wmQ5eArYt30POriONB5pFy62sgomGxjDE6Y4mVQaMSI1IEjpH7s2lLiB7WupV9NUWNr4ei63xXS67uTOgsUwnoN1kxXmkdnQlEIVwqfVFwh28ydEroqNo14K82+BAWS6evDhA8jb5wPO6WVppl0t1wI3IYV9AmciDNp+I4Fc6XUA+DcQ8CnsepMNtY7eIa0W1fVgGr5s3LqXHphmYqhcacpXTE3wM9eT7PtoYiuBW+SaBRLaLn05skIAb5guszDk/5AY2RKDpZynifDgGmd577utsB5UNkhduiMJU4MkhAuQ4wVTtRdcCp8Dudmh3RBvkL7nh5AUhpNAaxomBki1UNvR0LPcPtmivcZpH7gCq7s9mrDO+0d7JYrdthiSLVbikAopBrY9kDOGO+Sm6EsIA7S3Yh+Kkc1sSbBF9oj1g/I+bIi/ls4aPgKsX3dIr3/FgjkHwQVBhwXiqp3aQzFSXmj2AKpwG2/QyVZlHu9do2sohd/KFLgD5NAhcKGVLIem7RuPWGhzkq5MHyAiiL7831EGKUWRoqFkz/aAjK/OZiVuhral/KGxEJ9r9K8rkhg2P3wtFWaaopRNADydvEEnXp3QnE157QeY3MmX0eajr7ZK+fHbO3juJeiPobdAGcOHZg5DBMB3qOnVi8zJg95m4zvFYBcBXnh3IqLnptpF2b18RTeU4pW6paHC4WZCf02Qc2mMRWLwhw4qKNEpr3Wn8y0HLlqdY496/FoLtvGkLIYOObzpl6IkUXNgFJCFy4/9ZSceLglp/h8rLu8/AsXO8WPiXp0SAyJPHo+uTpPcoZ2ZhMy0wLa30UUHc0+hDVu7VRqrv6T/jXCeGkZiWwQ/zy7J8hrVY5us+4m9KuKvgXBby9xWY39qmn7CP+6mumpQy+tYToUlSDJmf3l8f93N5vQgMDtbzdnpfhHReLq2EKJNdKpMW85444khOFUsNgQ2k7zPfGCQHbDp+k8041/YvXE8HTe8SFsJAT/ytPELBO7ROZdAfCGzC9Sx0r7K5gOHDF9lImZzrgL2NYhulB4xVIAkCpY3B3ijH0rUTlCWE210WvAubI+PwoJM8T/it6hYTTMqIu64NZIVXGR04xQw9apr4aYs5/46Mqa521L50VE8imju32S8i14lIvNgCj06LPsGso6mUq8+IeW58LhMkWzIV2hD8FIXjFReu84VHi9Tor5oL1x06grkC72Eh4q2UrDjjBCwXT7cyL5NAQNcF7sbcxw93tnkCAwo6jBEqe1FrBQpiAxNu5x086Qq+34CXtZk1Kq4qztflYFv4jqqw8mHbUobVVumjlc55bNtDealhjnEtDyF9E2FMP3nEomBol/ZNg58PSElllgRtTRqvxvNaBjA37ASuaI8R9V6Rq4f2f2iARzMMBwqsNeGso8EhiijYPpUU1bLSiuaK0tuA5WVozsbWRCt2HF5tXCE8R5oHiLqD7Rz6t2zM67cr7fGcd1D1tvqUZOuBsSIm3s3SFG2xzPYdMOzib4FhEHfYHsFZ9SIRRTEHByRl1LmIdmhZ4QLamXfQunR5TP45hzgJOD4nL1Grak1cxKXtmf/XWMU6ss/FQwCnpzP/obyAWuB/lWEHf/G39uquEeYLu+0lW2PX9+EFMKnazA8Z5xkgZ3wfBiuJvj7Fk8EsvwB5UtWBUvXyOJvt+nTgFAGgJfjz1Qr6F+eLUU/u9rwg5/nms8IcBtnPIT6UKXHnR/ERoWORQ5p9HjAxkbPPlXKmk5xYVJ1X9Lli8NCFmtAf7vZT0N2aaVYlZc6/kwZryP958QkRpaRryclfjLKOBv6X1MYA8RCdAnTMFmJ+dvl4qE8FQ03CFrfa6G2N+5h+x6DiYzkIQ7Y8977UEeOSc6x9rppWJmbFc0mw0PoVBC2/84JgH9ckhXIbc6mJZ8vIKi5akezGS1/Yt/maY2gf+SRduQmHW3gfNkSWPhOkwSwIvbP+/XamR3eKHnEN81gdVXy0ncK9S/7Mndqpda9GNtMGHDZA/8Dg6hucqHx1mL7ElVJepCPr3ZwZAT9dqdNIvPOlC3IGuhnzdwqFmHxmbCxdoy3S6Y+cuGMcJ7UUxAvge9njA7XdOWzc/U2GXwa3gxKRxqv/tpkkXpsL1Z0wnjJLxTrlKcEE/fDidxLSjZgbPcW7oProHlMJycUvAvAIkiTIdt7LYECkgGxj0rIDUTbOUD8s5mW3gD4NRLV6WDrtcAp0q8hARJCMEEECLUf0YOKPz4k74dyAq7Pz1YNiKRl1Lq+xmGA7Z+Q1SZQN9KRc2CKVUfoz08VQSCqYwpS0+XzvTQ/q+P0D1YtpVD/LL58Uc4oTRGVIWiAXClMmEMa9Dmepu4DUzd7jhvoq7oxjqVrVpPyMXoFnzZZVeSqBS6JPdHybmWedRibpzA6OtyTEwvJWgphJn+nEAWhm3MphlSBsEvbg4U9bsSv6nFFnf9UjGcShjdKRasBMO8Q4HOj/NSq0WLcI1eRydKdjjkNlksJovG8lvQScBnzzutu/L4N4K8hNTYkzBG4fLQz30hukFEzVlAc3eNedmFvms7vH2HN05gaDoRENi12mnWD7fH3lEizCxmPgz1ZYRiMPL3H2dX8Fr7hbmr/uiHRVdYRJAcB5CrwVR/Gb7woEjI/ipJ9Wu60RLZU832jdzHwgQWGjd5ZwXDqtjAQfzkxgHWaZfzBxtg5cMTrowG2c8lgylErfQbxsHw9J3m6fg5gopDWrtSmHeRREnegEWHAS7wLzC4gLjGoXD1EymRqKuR/sNXhwrghox1ozGABCb6eGICyoqfT3L/L3VhLTf4pKucAJx81K0UHrpLYOC/AAAAAAAAAAAAAAAAAAAAAAAAAAA=) no-repeat center center/cover;
  }
}

.p-under-mv__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: min(100%, 89.375rem);
  height: 100%;
  margin-inline: auto;
  padding-block-start: var(--header-height);
  padding-inline: 13.4375rem 6.25rem;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-under-mv__inner {
    width: min(100%, 24.375rem);
    padding-inline: 2.1875rem;
  }
}
.p-under-mv__inner::before {
  content: "";
  position: absolute;
  top: 8.125rem;
  left: -2rem;
  width: 21.25rem;
  height: auto;
  aspect-ratio: 340/190;
  background: url(../images/image_under_mv_title_deco.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-under-mv__inner::before {
    top: 4.875rem;
    left: -1.75rem;
    width: 11.875rem;
  }
}

.p-under-mv__title {
  font-size: 2.125rem;
  font-family: var(--ff-zen);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text);
  translate: 0 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-under-mv__title {
    font-size: 1.5rem;
  }
}

.p-vaccination-scheduled {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled {
    margin-block-start: 3.75rem;
  }
}

.p-vaccination-scheduled__inner {
  display: flex;
  flex-direction: column;
}

.p-vaccination-scheduled__lead {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__lead {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-vaccination-scheduled__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(100%, 59.625rem);
  margin-block-start: 2.5rem;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__list {
    margin-block-start: 1.75rem;
    gap: 0.75rem;
  }
}

.p-vaccination-scheduled__item {
  min-inline-size: 0;
}

.p-vaccination-scheduled__card {
  display: flex;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 0.0625rem solid rgba(236, 109, 111, 0.2);
  min-block-size: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__card {
    flex-direction: column;
    border-radius: 0.625rem;
    min-block-size: 0;
  }
}

.p-vaccination-scheduled__card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-shrink: 0;
  inline-size: 14.0625rem;
  padding: 1.5rem 1rem;
  background-color: #f3979d;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__card-label {
    flex-direction: row;
    inline-size: auto;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
}

.p-vaccination-scheduled__card-icon {
  display: block;
  flex-shrink: 0;
  inline-size: 2.75rem;
  block-size: 2.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__card-icon {
    inline-size: 2rem;
    block-size: 2rem;
  }
}

.p-vaccination-scheduled__card-icon--baby {
  width: 2.5rem;
  height: 2.875rem;
  background-image: url("../images/icon_vaccination_scheduled_baby.svg");
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__card-icon--baby {
    width: 2rem;
    height: 2rem;
  }
}

.p-vaccination-scheduled__card-icon--child {
  width: 5.5rem;
  height: 2.9375rem;
  background-image: url("../images/icon_vaccination_scheduled_child.svg");
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__card-icon--child {
    width: 4.375rem;
    height: 2.25rem;
  }
}

.p-vaccination-scheduled__card-icon--school {
  width: 6.25rem;
  height: 3rem;
  background-image: url("../images/icon_vaccination_scheduled_school.svg");
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__card-icon--school {
    width: 5rem;
    height: 2.375rem;
  }
}

.p-vaccination-scheduled__card-age {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__card-age {
    font-size: 1rem;
  }
}

.p-vaccination-scheduled__card-body {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 1.5rem 2rem;
  background-color: #ffeaea;
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__card-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

.p-vaccination-scheduled__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding: 0;
  list-style: none;
}

.p-vaccination-scheduled__tag {
  padding: 0.375rem 1rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-vaccination-scheduled__tag {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.75rem;
  }
}

.p-vaccination-optional {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-vaccination-optional {
    margin-block-start: 3.75rem;
  }
}

.p-vaccination-optional__inner {
  display: flex;
  flex-direction: column;
}

.p-vaccination-optional__lead {
  margin-block-start: 2rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-vaccination-optional__lead {
    margin-block-start: 1.5rem;
    font-size: 1rem;
    text-align: left;
  }
}

.p-vaccination-optional__box {
  width: fit-content;
  margin-inline: auto;
  margin-block-start: 2.5rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-vaccination-optional__box {
    margin-block-start: 1.75rem;
  }
}

.p-vaccination-optional__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 3rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-vaccination-optional__list {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

.p-vaccination-optional__item {
  position: relative;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-vaccination-optional__item {
    font-size: 1rem;
  }
}
.p-vaccination-optional__item::before {
  content: "";
  position: absolute;
  inset-block-start: 0.8em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-vaccination-optional__note {
  width: min(100%, 50rem);
  margin-inline: auto;
  margin-block-start: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-vaccination-optional__note {
    margin-block-start: 1.5rem;
    font-size: 0.8125rem;
  }
}

.p-vaccination-items {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-vaccination-items {
    margin-block-start: 3.75rem;
  }
}

.p-vaccination-items__inner {
  display: flex;
  flex-direction: column;
}

.p-vaccination-items__box {
  width: min(100%, 50rem);
  margin-inline: auto;
  margin-block-start: 3rem;
  padding: 2.5rem 3rem;
  border-radius: 0.9375rem;
  background-color: var(--color-white);
  box-shadow: 0 0.25rem 1.25rem rgba(236, 109, 111, 0.25);
}
@media screen and (max-width: 767px) {
  .p-vaccination-items__box {
    margin-block-start: 2rem;
    padding: 1.75rem 1.5rem;
  }
}

.p-vaccination-items__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-vaccination-items__list {
    gap: 1rem;
  }
}

.p-vaccination-items__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-vaccination-items__item-head {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.375rem;
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-vaccination-items__item-head {
    font-size: 1rem;
  }
}
.p-vaccination-items__item-head::before {
  content: "";
  position: absolute;
  inset-block-start: 0.65em;
  inset-inline-start: 0;
  inline-size: 0.25rem;
  block-size: 0.25rem;
  border-radius: 50%;
  background-color: #ec6d6f;
}

.p-vaccination-items__name {
  color: inherit;
  font-size: 1.125rem;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 767px) {
  .p-vaccination-items__name {
    font-size: 1rem;
  }
}

.p-vaccination-items__note {
  padding-inline-start: 0.875rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-indent: hanging 1em;
}
@media screen and (max-width: 767px) {
  .p-vaccination-items__note {
    font-size: 0.8125rem;
  }
}

.p-vaccination-reservation {
  margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-vaccination-reservation {
    margin-block-start: 3.75rem;
  }
}

.p-vaccination-reservation__inner {
  display: flex;
  flex-direction: column;
}

.p-vaccination-reservation__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 62.5rem);
  margin-inline: auto;
  margin-block-start: 3rem;
  padding: 3rem 3rem 3.25rem;
  border-radius: 0.75rem;
  background-color: #f0faff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-vaccination-reservation__box {
    margin-block-start: 2rem;
    padding: 2.25rem 1.5rem 2.5rem;
  }
}

.p-vaccination-reservation__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-vaccination-reservation__text {
    text-align: start;
    font-size: 1rem;
  }
}

.p-vaccination-reservation__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin-block-start: 2rem;
}
@media screen and (max-width: 767px) {
  .p-vaccination-reservation__btns {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-block-start: 1.5rem;
  }
}

.p-vaccination-reservation__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}

.p-vaccination-reservation__link-arrow {
  position: relative;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.p-vaccination-reservation__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.5rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20width='12.06'%20height='9.23'%20viewBox='0%200%2012.06%209.23'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20%23fff;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='OGP_ログイン_など'%20data-name='OGP/ログイン/ｈ１など'%3e%3cpath%20class='cls-1'%20d='M10.13,4.02H.5s-.19.06-.21.08c-.38.2-.38.84,0,1.04.03.01.2.08.21.08h9.64s-2.87,3.03-2.87,3.03c-.46.63.32,1.33.85.78l3.76-3.95c.17-.22.26-.43.14-.71-1.26-1.46-2.64-2.8-3.95-4.21-.55-.47-1.25.21-.81.82l2.89,3.05Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.p-vaccination-adult {
  margin-block-start: 3rem;
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-vaccination-adult {
    margin-block-start: 2rem;
    margin-block-end: 3.75rem;
  }
}

.p-vaccination-adult__inner {
  display: flex;
  flex-direction: column;
}

.p-vaccination-adult__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 62.5rem);
  margin-inline: auto;
  padding: 2rem 2.5rem;
  border: 0.0625rem solid #f9cdce;
  border-radius: 0.625rem;
  background-color: #fff9fc;
}
@media screen and (max-width: 1023px) {
  .p-vaccination-adult__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-vaccination-adult__box {
    padding: 1.5rem 1.25rem;
  }
}

.p-vaccination-adult__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-vaccination-adult__title {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-vaccination-adult__title {
    font-size: 1rem;
  }
}

.p-vaccination-adult__text {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-vaccination-adult__text {
    font-size: 1rem;
  }
}

.p-vaccination-adult__button-wrap {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .p-vaccination-adult__button-wrap {
    inline-size: 100%;
    justify-content: center;
  }
}

@keyframes u-fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.u-fadeup {
  opacity: 0;
  transform: translateY(30px);
}
.u-fadeup.is-inview {
  animation: u-fadeup 0.5s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) {
  .u-fadeup {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

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

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

@media (width <= 767px) {
  .u-pc-hidden {
    display: block;
  }
}
@media (width >= 768px) {
  .u-pc-hidden {
    display: none;
  }
}

@media (width >= 768px) {
  .u-sp-hidden {
    display: block;
  }
}
@media (width <= 767px) {
  .u-sp-hidden {
    display: none;
  }
}

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

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}

.editor-styles-wrapper,
.editor-visual-editor,
.block-editor-writing-flow {
  color: var(--color-text);
  font-family: var(--ff-base);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.editor-styles-wrapper h1:not(.p-single__title),
.editor-visual-editor h1:not(.p-single__title),
.block-editor-writing-flow h1:not(.p-single__title) {
  margin-block-start: 3rem;
  padding-block-end: 1rem;
  color: var(--color-text);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper h1:not(.p-single__title),
  .editor-visual-editor h1:not(.p-single__title),
  .block-editor-writing-flow h1:not(.p-single__title) {
    margin-block-start: 4rem;
    font-size: 2.25rem;
  }
}
.editor-styles-wrapper h2:not(.p-single__title),
.editor-visual-editor h2:not(.p-single__title),
.block-editor-writing-flow h2:not(.p-single__title) {
  position: relative;
  margin-block-start: 2.5rem;
  padding-inline: 1.25rem;
  padding-block-end: 1.84375rem;
  border-block-end: 1px solid #acacac;
  color: var(--color-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.18;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper h2:not(.p-single__title),
  .editor-visual-editor h2:not(.p-single__title),
  .block-editor-writing-flow h2:not(.p-single__title) {
    padding-inline: 0.9375rem;
    padding-block-end: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.editor-styles-wrapper h2:not(.p-single__title)::before,
.editor-visual-editor h2:not(.p-single__title)::before,
.block-editor-writing-flow h2:not(.p-single__title)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 15.625rem;
  height: 0.0625rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper h2:not(.p-single__title)::before,
  .editor-visual-editor h2:not(.p-single__title)::before,
  .block-editor-writing-flow h2:not(.p-single__title)::before {
    width: 0.625rem;
  }
}
.editor-styles-wrapper h3,
.editor-visual-editor h3,
.block-editor-writing-flow h3 {
  position: relative;
  margin-block-start: 2.1875rem;
  padding-inline: 1.25rem;
  font-size: max(1.25rem, 8px);
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper h3,
  .editor-visual-editor h3,
  .block-editor-writing-flow h3 {
    padding-inline: 0.9375rem;
    font-size: max(1.125rem, 8px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
.editor-styles-wrapper h3::before,
.editor-visual-editor h3::before,
.block-editor-writing-flow h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.1875rem;
  height: 2.625rem;
  border-radius: 100vmax;
  background-color: var(--color-primary);
}
.editor-styles-wrapper h4,
.editor-visual-editor h4,
.block-editor-writing-flow h4 {
  font-size: max(1.125rem, 8px);
  font-weight: 700;
  line-height: 2.67;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper h4,
  .editor-visual-editor h4,
  .block-editor-writing-flow h4 {
    font-size: max(1rem, 8px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.editor-styles-wrapper p,
.editor-visual-editor p,
.block-editor-writing-flow p {
  margin-block-start: 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper p,
  .editor-visual-editor p,
  .block-editor-writing-flow p {
    margin-block-start: 0.5rem;
  }
}
.editor-styles-wrapper ul,
.editor-styles-wrapper ol,
.editor-visual-editor ul,
.editor-visual-editor ol,
.block-editor-writing-flow ul,
.block-editor-writing-flow ol {
  margin-block-start: 1rem;
  padding-inline-start: 1.5rem;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper ul,
  .editor-styles-wrapper ol,
  .editor-visual-editor ul,
  .editor-visual-editor ol,
  .block-editor-writing-flow ul,
  .block-editor-writing-flow ol {
    margin-block-start: 1.25rem;
    padding-inline-start: 2rem;
  }
}
.editor-styles-wrapper ul,
.editor-visual-editor ul,
.block-editor-writing-flow ul {
  list-style-type: disc;
}
.editor-styles-wrapper ol,
.editor-visual-editor ol,
.block-editor-writing-flow ol {
  list-style-type: decimal;
}
.editor-styles-wrapper li,
.editor-visual-editor li,
.block-editor-writing-flow li {
  margin-block-start: 0.5rem;
  line-height: 1.8;
}
.editor-styles-wrapper a:not(.wp-block-button__link):not(.wp-element-button),
.editor-visual-editor a:not(.wp-block-button__link):not(.wp-element-button),
.block-editor-writing-flow a:not(.wp-block-button__link):not(.wp-element-button) {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .editor-styles-wrapper a:not(.wp-block-button__link):not(.wp-element-button):hover,
  .editor-visual-editor a:not(.wp-block-button__link):not(.wp-element-button):hover,
  .block-editor-writing-flow a:not(.wp-block-button__link):not(.wp-element-button):hover {
    opacity: 0.8;
  }
}
.editor-styles-wrapper img,
.editor-visual-editor img,
.block-editor-writing-flow img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper img,
  .editor-visual-editor img,
  .block-editor-writing-flow img {
    margin-block-start: 2rem;
  }
}
.editor-styles-wrapper figcaption,
.editor-visual-editor figcaption,
.block-editor-writing-flow figcaption {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper figcaption,
  .editor-visual-editor figcaption,
  .block-editor-writing-flow figcaption {
    font-size: 0.75rem;
  }
}
.editor-styles-wrapper blockquote,
.editor-visual-editor blockquote,
.block-editor-writing-flow blockquote {
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper blockquote,
  .editor-visual-editor blockquote,
  .block-editor-writing-flow blockquote {
    margin-block-start: 2rem;
    padding-block: 1.25rem;
    padding-inline: 2rem;
  }
}
.editor-styles-wrapper blockquote p,
.editor-visual-editor blockquote p,
.block-editor-writing-flow blockquote p {
  margin-block-start: 0;
}
.editor-styles-wrapper code,
.editor-visual-editor code,
.block-editor-writing-flow code {
  padding-block: 0.125rem;
  padding-inline: 0.375rem;
  border-radius: 4px;
  background-color: var(--color-gray);
  color: var(--color-primary);
  font-family: monospace;
  font-size: 0.875rem;
}
.editor-styles-wrapper pre,
.editor-visual-editor pre,
.block-editor-writing-flow pre {
  overflow-x: auto;
  margin-block-start: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1rem;
  border-radius: 8px;
  background-color: var(--color-gray);
  color: var(--color-text);
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper pre,
  .editor-visual-editor pre,
  .block-editor-writing-flow pre {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}
.editor-styles-wrapper pre code,
.editor-visual-editor pre code,
.block-editor-writing-flow pre code {
  padding-block: 0;
  padding-inline: 0;
  background-color: transparent;
}
.editor-styles-wrapper table,
.editor-visual-editor table,
.block-editor-writing-flow table {
  width: 100%;
  border: 0.0625rem solid var(--color-border-gray);
  border-collapse: collapse;
}
.editor-styles-wrapper th,
.editor-styles-wrapper td,
.editor-visual-editor th,
.editor-visual-editor td,
.block-editor-writing-flow th,
.block-editor-writing-flow td {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  line-height: 1.6;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper th,
  .editor-styles-wrapper td,
  .editor-visual-editor th,
  .editor-visual-editor td,
  .block-editor-writing-flow th,
  .block-editor-writing-flow td {
    padding-block: 1rem;
    padding-inline: 1.25rem;
  }
}
.editor-styles-wrapper th,
.editor-visual-editor th,
.block-editor-writing-flow th {
  background-color: #fdeeee;
  color: var(--color-text);
}
.editor-styles-wrapper td,
.editor-visual-editor td,
.block-editor-writing-flow td {
  color: var(--color-text);
}
.editor-styles-wrapper hr,
.editor-visual-editor hr,
.block-editor-writing-flow hr {
  margin-block-start: 2rem;
  border: none;
  border-block-start: 0.0625rem solid var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper hr,
  .editor-visual-editor hr,
  .block-editor-writing-flow hr {
    margin-block-start: 3rem;
  }
}
.editor-styles-wrapper strong,
.editor-visual-editor strong,
.block-editor-writing-flow strong {
  color: var(--color-text);
  font-weight: 700;
}
.editor-styles-wrapper em,
.editor-visual-editor em,
.block-editor-writing-flow em {
  font-style: italic;
}
.editor-styles-wrapper .wp-block-buttons,
.editor-visual-editor .wp-block-buttons,
.block-editor-writing-flow .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-block-start: 1.5rem;
  text-align: center;
}
.editor-styles-wrapper .wp-block-buttons .wp-block-button,
.editor-visual-editor .wp-block-buttons .wp-block-button,
.block-editor-writing-flow .wp-block-buttons .wp-block-button {
  margin: 0;
}
.editor-styles-wrapper .wp-block-button__link,
.editor-styles-wrapper .wp-block-buttons .wp-element-button,
.editor-visual-editor .wp-block-button__link,
.editor-visual-editor .wp-block-buttons .wp-element-button,
.block-editor-writing-flow .wp-block-button__link,
.block-editor-writing-flow .wp-block-buttons .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
  padding: 0.9375rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 100vmax;
  background: linear-gradient(90deg, #f5a86a 0%, #f06b9a 100%);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .editor-styles-wrapper .wp-block-button__link,
  .editor-styles-wrapper .wp-block-buttons .wp-element-button,
  .editor-visual-editor .wp-block-button__link,
  .editor-visual-editor .wp-block-buttons .wp-element-button,
  .block-editor-writing-flow .wp-block-button__link,
  .block-editor-writing-flow .wp-block-buttons .wp-element-button {
    min-width: min(100%, 12.5rem);
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .editor-styles-wrapper .wp-block-button__link:hover,
  .editor-styles-wrapper .wp-block-buttons .wp-element-button:hover,
  .editor-visual-editor .wp-block-button__link:hover,
  .editor-visual-editor .wp-block-buttons .wp-element-button:hover,
  .block-editor-writing-flow .wp-block-button__link:hover,
  .block-editor-writing-flow .wp-block-buttons .wp-element-button:hover {
    color: var(--color-white);
    opacity: 0.8;
  }
}
.editor-styles-wrapper .wp-block-button.is-style-outline .wp-block-button__link,
.editor-visual-editor .wp-block-button.is-style-outline .wp-block-button__link,
.block-editor-writing-flow .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}
@media (any-hover: hover) {
  .editor-styles-wrapper .wp-block-button.is-style-outline .wp-block-button__link:hover,
  .editor-visual-editor .wp-block-button.is-style-outline .wp-block-button__link:hover,
  .block-editor-writing-flow .wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: var(--color-primary);
  }
}