@charset "UTF-8";
/*! 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;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default padding */
ul,
ol {
  padding: 0;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  hyphens: auto;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* 文字折り返しの基本設定 */
p,
a,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6,
li,
td,
th {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  hyphens: auto;
}
/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type=checkbox],
input[type=radio] {
  display: none;
}
input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/* モバイルでのフォントサイズ調整を防ぐ */
@media (max-width: 767px) {
  html {
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }
  body {
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }
  input,
  textarea,
  select,
  button {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }
}
/* リキッドレイアウト対応 */
@font-face {
  font-family: "Chillax";
  src: url("../../fonts/Chillax-Variable.woff2") format("woff2"), url("../../fonts/Chillax-Variable.woff") format("woff"), url("../../fonts/Chillax-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
/* Chillax Extralight */
@font-face {
  font-family: "Chillax";
  src: url("../../fonts/Chillax-Extralight.woff2") format("woff2"), url("../../fonts/Chillax-Extralight.woff") format("woff"), url("../../fonts/Chillax-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
/* Chillax Light */
@font-face {
  font-family: "Chillax";
  src: url("../../fonts/Chillax-Light.woff2") format("woff2"), url("../../fonts/Chillax-Light.woff") format("woff"), url("../../fonts/Chillax-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Chillax Regular */
@font-face {
  font-family: "Chillax";
  src: url("../../fonts/Chillax-Regular.woff2") format("woff2"), url("../../fonts/Chillax-Regular.woff") format("woff"), url("../../fonts/Chillax-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Chillax Medium */
@font-face {
  font-family: "Chillax";
  src: url("../../fonts/Chillax-Medium.woff2") format("woff2"), url("../../fonts/Chillax-Medium.woff") format("woff"), url("../../fonts/Chillax-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Chillax Semibold */
@font-face {
  font-family: "Chillax";
  src: url("../../fonts/Chillax-Semibold.woff2") format("woff2"), url("../../fonts/Chillax-Semibold.woff") format("woff"), url("../../fonts/Chillax-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Chillax Bold */
@font-face {
  font-family: "Chillax";
  src: url("../../fonts/Chillax-Bold.woff2") format("woff2"), url("../../fonts/Chillax-Bold.woff") format("woff"), url("../../fonts/Chillax-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@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 */
  --inner: min(1080px, 100%);
  --inner-sp: min(500px, 100%);
  --padding-inner: 20px;
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #fff;
  --color-text: #0d2936;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #234f5e;
  --color-secondary: #00f;
  --color-orange: #de8430;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;
  /* font-family */
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --title-font-family: "Lato", sans-serif;
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 64px;
  /* Relize: color */
  --color-relize-dark: #302404;
  --color-relize-dark-blue: #2a2c33;
  --color-relize-gray-blue: #d4d4d5;
  --color-relize-gray: #808080;
  --color-relize-bg: #f8f8f8;
  --color-relize-bg-cream: #f7f7ed;
  --color-relize-primary: #1c1c1c;
  --color-relize-primary-green: #76a685;
  --color-relize-accent-yellow: #fed900;
  /* Relize: font */
  --relize-base-font: dnp-shuei-gothic-gin-std, sans-serif;
  --relize-european-font: "Chillax", Helvetica, Arial, sans-serif;
  /* Relize: inner */
  --relize-inner: 1140px;
  --relize-padding-pc: 25px;
  --relize-padding-sp: 20px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 80px;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 16px;
  }
}
body {
  font-family: var(--relize-base-font);
  overflow-x: hidden;
  color: #302404;
  font-feature-settings: "palt" 1;
}
body br.sbr {
  display: inline;
}
@media screen and (min-width: 768px) {
  body br.sbr {
    display: none;
  }
}
body br.pbr {
  display: none;
}
@media screen and (min-width: 768px) {
  body br.pbr {
    display: inline;
  }
}
/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}
img {
  width: 100%;
  height: auto;
}
html {
  background: #F7F7ED;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
dl,
dt,
dd,
ul,
li,
ol {
  letter-spacing: 0.05em;
  line-height: 1.825;
}
/* Lenis用スタイル調整 */
/* html要素にスムーススクロールを適用 */
html.lenis {
  height: auto;
}
/* Lenisがスタイルを適用するため、本来のスクロールを無効化 */
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
/* スムーススクロール中のスクロールバーを見えるように */
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
/* スクロールのスナップを防止 */
.lenis.lenis-stopped {
  overflow: hidden;
}
/* スクロールバーのカスタム表示（オプション） */
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
/* モバイルでの慣性スクロール調整（必要に応じて） */
@media (max-width: 767px) {
  html.lenis {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/**
 * アニメーション用CSS - よりゆっくりなバージョン
 */
/* アニメーション共通の基本スタイル */
.js-animate {
  opacity: 0;
  visibility: hidden;
  /* トランジション時間を1.2秒に延長（0.8秒から変更） */
  transition-duration: 1.2s;
  /* よりなめらかなイージング */
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform, filter;
}
/* アニメーション実行時の共通スタイル */
.js-animate.is-animated {
  opacity: 1;
  visibility: visible;
}
/* ふわっとその場で表示 */
.js-animate--fade {
  transition-property: opacity, visibility;
}
/* ふわっと表示される＋ブラー効果 */
.js-animate--blur {
  transition-property: opacity, visibility, filter;
  /* より強いブラー効果 */
  filter: blur(15px);
  /* アニメーション時間を1.6秒に延長 */
  transition-duration: 1.6s;
  /* ゆっくりとしたイージング */
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.js-animate--blur.is-animated {
  filter: blur(0);
}
/* 下からふわっと表示（追加機能） */
.js-animate--up {
  transition-property: opacity, visibility, transform;
  transform: translateY(25px);
  /* トランジション時間を1.4秒に延長 */
  transition-duration: 1.4s;
}
.js-animate--up.is-animated {
  transform: translateY(0);
}
/* 上からふわっと表示（追加機能） */
.js-animate--down {
  transition-property: opacity, visibility, transform;
  transform: translateY(-25px);
  /* トランジション時間を1.4秒に延長 */
  transition-duration: 1.4s;
}
.js-animate--down.is-animated {
  transform: translateY(0);
}
/* 左からふわっと表示（追加機能） */
.js-animate--left {
  transition-property: opacity, visibility, transform;
  transform: translateX(-25px);
  /* トランジション時間を1.4秒に延長 */
  transition-duration: 1.4s;
}
.js-animate--left.is-animated {
  transform: translateX(0);
}
/* 右からふわっと表示（追加機能） */
.js-animate--right {
  transition-property: opacity, visibility, transform;
  transform: translateX(25px);
  /* トランジション時間を1.4秒に延長 */
  transition-duration: 1.4s;
}
.js-animate--right.is-animated {
  transform: translateX(0);
}
/* 拡大して表示（追加機能） */
.js-animate--zoom {
  transition-property: opacity, visibility, transform;
  transform: scale(0.8);
  /* トランジション時間を1.5秒に延長 */
  transition-duration: 1.5s;
}
.js-animate--zoom.is-animated {
  transform: scale(1);
}
/* もっと強いブラー効果が必要な場合（オプション） */
.js-animate--heavy-blur {
  transition-property: opacity, visibility, filter;
  /* さらに強いブラー効果 */
  filter: blur(25px);
  /* アニメーション時間を2秒に延長 */
  transition-duration: 2s;
  /* よりゆっくりなイージング */
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.js-animate--heavy-blur.is-animated {
  filter: blur(0);
}
/* アニメーション遅延クラス */
.js-animate-delay--100 {
  transition-delay: 0.1s;
}
.js-animate-delay--200 {
  transition-delay: 0.2s;
}
.js-animate-delay--300 {
  transition-delay: 0.3s;
}
.js-animate-delay--400 {
  transition-delay: 0.4s;
}
.js-animate-delay--500 {
  transition-delay: 0.5s;
}
.js-animate-delay--600 {
  transition-delay: 0.6s;
}
.js-animate-delay--700 {
  transition-delay: 0.7s;
}
.js-animate-delay--800 {
  transition-delay: 0.8s;
}
.js-animate-delay--900 {
  transition-delay: 0.9s;
}
.js-animate-delay--1000 {
  transition-delay: 1s;
}
/* より長い遅延が必要な場合の追加クラス */
.js-animate-delay--1500 {
  transition-delay: 1.5s;
}
.js-animate-delay--2000 {
  transition-delay: 2s;
}
.animated__blurRise .char {
  display: inline-block;
  white-space: pre;
  will-change: transform, filter, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .animated__blurRise .char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
.js-reveal {
  will-change: transform, opacity, filter, clip-path;
}
.js-reveal[data-reveal=clip-up],
.js-reveal[data-reveal=clip-left] {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}
.body__fixed {
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  overscroll-behavior: none;
}
.l-archive {
  position: relative;
  z-index: 4;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .l-archive {
    padding-top: 2.5rem;
    padding-bottom: 9.375rem;
  }
}
.body {
  position: relative;
}
.body__fixed {
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  overscroll-behavior: none;
}
.l-footer {
  padding: 3.125rem 0 4rem;
  background: linear-gradient(140deg, rgb(56, 114, 57) 11%, rgb(132, 108, 41) 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 6.25rem 0 7.5rem;
  }
}
.l-footer:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3.75rem;
  background: url(../images/footer-text_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-footer:after {
    background: url(../images/footer-text.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 6.8125rem;
  }
}
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s;
}
.l-header__inner {
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0.75rem 3rem;
  }
}
.l-inner {
  width: 100%;
  padding-right: var(--relize-padding-sp);
  padding-left: var(--relize-padding-sp);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(var(--relize-inner) + var(--relize-padding-pc) * 2);
    padding-right: var(--relize-padding-pc);
    padding-left: var(--relize-padding-pc);
  }
}
.l-main {
  overflow-x: hidden;
}
.l-sidebar {
  width: 100%;
  min-width: 0;
}
.l-sidebar h2 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #1c5548;
  background: #eef6ee;
  border-left: 0.25rem solid #99CE9A;
  border-radius: 0 0.25rem 0.25rem 0;
}
@media screen and (min-width: 768px) {
  .l-sidebar h2 {
    font-size: 1rem;
  }
}
.l-sidebar li {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .l-sidebar li {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .l-sidebar .sidebar__inner {
    position: sticky;
    top: 6.25rem;
  }
}
.l-sidebar .sidebar__inner a {
  text-decoration: underline;
  color: #333;
  transition: color 0.2s ease;
}
.l-sidebar .sidebar__inner a:hover {
  color: #1c5548;
}
.l-sidebar .sidebar__inner > * + * {
  margin-top: 0.75rem;
}
.l-sidebar .sidebar__inner h2 {
  margin-top: 1.5rem;
  padding: 0.375rem 0.75rem;
}
.l-sidebar .sidebar__inner h2:first-child {
  margin-top: 0;
}
.l-single {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  gap: 2.5rem;
  max-width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-single {
    grid-template-columns: minmax(0, 1fr) 17.5rem;
    padding-top: 2.5rem;
    padding-bottom: 9.375rem;
    min-height: 31.25rem;
    gap: 3rem;
    overflow: visible;
  }
}
.c-accordion {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-accordion {
    margin-top: 4rem;
  }
}
.c-accordion__container {
  width: 100%;
  margin: 0 auto;
}
.c-accordion__container > * + * {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-accordion__container > * + * {
    margin-top: 1.5rem;
  }
}
.c-accordion__question {
  padding: 16px 40px 16px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  border-radius: 15px;
  background: #F7FCFD;
}
@media screen and (min-width: 768px) {
  .c-accordion__question {
    -ms-grid-row-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.25rem 5rem 1.25rem 2.0625rem;
  }
}
.c-accordion__question:hover {
  cursor: pointer;
}
.c-accordion__question span {
  font-size: 14px;
  color: #fff;
  background: #007585;
  font-family: var(--relize-european-font);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  margin-right: 8px;
  margin-right: 0.5rem;
  border-radius: 999px;
  padding: 6px 8px;
}
@media screen and (min-width: 768px) {
  .c-accordion__question span {
    margin-right: 1rem;
    font-size: 18px;
    padding: 6px 8px;
  }
}
.c-accordion__title {
  font-size: 13px;
  font-size: 0.8125rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #092F35;
}
@media screen and (min-width: 768px) {
  .c-accordion__title {
    font-size: 1.25rem;
  }
}
.c-accordion__question::after {
  content: "";
  display: block;
  position: absolute;
  top: 25%;
  width: 20px;
  height: 20px;
  right: 12px;
  background: url(../images/common/faq_open.svg);
  background-size: contain;
  z-index: 2;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .c-accordion__question::after {
    width: 24px;
    height: 24px;
    top: 30%;
    right: 25px;
  }
}
.c-accordion__question.is-active::after {
  width: 20px;
  height: 20px;
  background: url(../images/common/faq_close.svg);
  background-size: contain;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .c-accordion__question.is-active::after {
    width: 24px;
    height: 24px;
  }
}
.c-accordion__content {
  padding: 2rem 0.875rem 1rem 0;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-accordion__content {
    grid-template-columns: 2.5rem 1fr;
  }
}
.c-accordion__content > span {
  display: inline-block;
  background: #F7FCFD;
  color: #007585;
  font-family: var(--relize-european-font);
  font-weight: bold;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-accordion__content > span {
    font-size: 1.125rem;
  }
}
.c-accordion__content > p {
  margin-top: 0.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
  line-height: 1.6153846154;
}
@media screen and (min-width: 768px) {
  .c-accordion__content > p {
    letter-spacing: 0.8px;
    margin-right: -0.8px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .c-accordion__content {
    padding: 1.75rem 1.25rem 2rem 1.75rem;
  }
}
.c-accordion__head {
  padding: 1.5rem 1rem 2.5rem 1.25rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-accordion__head {
    padding: 3rem 2.5rem 4rem;
  }
}
.c-accordion__wrapper {
  margin-top: 28px;
  margin-top: 1.75rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .c-accordion__wrapper {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
    gap: 0.75rem;
  }
}
.c-accordion__text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
  line-height: 1.6153846154;
}
@media screen and (min-width: 768px) {
  .c-accordion__text {
    letter-spacing: 0.8px;
    margin-right: -0.8px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-accordion__link a {
  width: 100%;
  height: 100%;
  display: block;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .c-accordion__link a {
    max-width: 34.0625rem;
    margin: 1.875rem auto 0;
  }
}
.c-accordion__link a:hover {
  opacity: 1;
}
.c-accordion__link a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.c-animation01 img {
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(1.2) translateY(24px);
}
.fade-in-scale-animation img {
  animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(1.2) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.c-animation-text {
  opacity: 0;
  transform: translate(0px, 110%);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-animation-text.animate {
  opacity: 1;
  transform: translate(0px, 0px);
}
.c-animation-text.animate.delay-1 {
  transition-delay: 0.1s;
}
.c-animation-text.animate.delay-2 {
  transition-delay: 0.2s;
}
.c-animation-text.animate.delay-3 {
  transition-delay: 0.3s;
}
.c-animation-text.animate.delay-4 {
  transition-delay: 0.4s;
}
.c-animation-text.animate.delay-5 {
  transition-delay: 0.5s;
}
.c-animation-text.animate.delay-6 {
  transition-delay: 0.6s;
}
.c-animation-text.animate.delay-7 {
  transition-delay: 0.7s;
}
.c-animation-text.animate.delay-8 {
  transition-delay: 0.8s;
}
.c-animation-text.animate.delay-9 {
  transition-delay: 0.9s;
}
.c-animation-text.animate.delay-10 {
  transition-delay: 1s;
}
.c-animation-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.c-animation-fade.animate {
  opacity: 1;
  transform: translateY(0);
}
.c-animation-fade.animate.delay-1 {
  transition-delay: 0.1s;
}
.c-animation-fade.animate.delay-2 {
  transition-delay: 0.2s;
}
.c-animation-fade.animate.delay-3 {
  transition-delay: 0.3s;
}
.c-animation-fade.animate.delay-4 {
  transition-delay: 0.4s;
}
.c-animation-fade.animate.delay-5 {
  transition-delay: 0.5s;
}
.c-animation-fade.animate.delay-6 {
  transition-delay: 0.6s;
}
.c-animation-fade.animate.delay-7 {
  transition-delay: 0.7s;
}
.c-animation-fade.animate.delay-8 {
  transition-delay: 0.8s;
}
.c-animation-fade.animate.delay-9 {
  transition-delay: 0.9s;
}
.c-animation-fade.animate.delay-10 {
  transition-delay: 1s;
}
.c-banner {
  padding: 3.125rem 0;
}
.c-banner.--page {
  padding: 3.125rem 0 6.25rem;
}
@media screen and (min-width: 768px) {
  .c-banner.--page {
    padding: 5rem 0 9.375rem;
  }
}
.c-banner.--column {
  padding: 1.5625rem 0;
}
.c-banner.--column .l-inner {
  padding-inline: 0;
}
.c-banner.--column a:before {
  display: none !important;
}
.c-banner .l-inner {
  max-width: 50rem;
}
.c-banner a {
  display: block;
}
.c-breadcrumbs {
  background: #f7f7ed;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  color: #302404;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs {
    padding: 1rem 0;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .c-breadcrumbs .l-inner {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .c-breadcrumbs .l-inner::-webkit-scrollbar {
    height: 4px;
  }
  .c-breadcrumbs .l-inner::-webkit-scrollbar-thumb {
    background: rgba(48, 36, 4, 0.3);
    border-radius: 2px;
  }
}
.c-breadcrumbs a {
  color: #302404;
  text-decoration: none;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
}
.c-breadcrumbs a:hover {
  opacity: 0.7;
}
.c-breadcrumbs span[property=itemListElement] {
  display: inline-flex;
  align-items: center;
}
.c-breadcrumbs .breadcrumb_last,
.c-breadcrumbs .current-item {
  color: #302404;
  font-weight: 500;
}
.c-button__primary {
  padding: 0.75rem 4rem;
  background: #76a685;
  color: #fff;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08px;
  margin-right: -0.08px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-button__primary {
    line-height: 1.75;
    padding: 0.75rem 4rem;
    font-size: 1.125rem;
    min-width: 17.5rem;
  }
}
.c-button__primary:hover {
  opacity: 1;
}
.c-button__archive {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
  border: solid 2px #1c5548;
  background: #1c5548;
  border-radius: 999px;
}
.c-button__send {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  max-width: 10.9375rem;
  height: 2.5rem;
  margin: auto;
  border-radius: 4px;
  background: #fed900;
  border: solid 2px #fed900;
  color: #000;
  transition: 0.3s all;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .c-button__send {
    font-size: 1.25rem;
    width: 15rem;
    max-width: 100%;
    height: 3rem;
    margin-left: 0;
  }
}
.c-button__send:hover {
  opacity: 0.8;
}
.c-button__send.center {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-button__send.center {
    margin-left: 15.625rem;
  }
}
.c-button__back {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  width: 100%;
  max-width: 5.8125rem;
  height: 3.25rem;
  margin: auto;
  border-radius: 4px;
  background: #c9c9c9;
  border: solid 2px #c9c9c9;
  color: #fff;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .c-button__back {
    font-size: 1.5rem;
    width: 7rem;
    max-width: 100%;
    height: 3.5rem;
    margin-right: 0;
  }
}
.c-button__back:hover {
  background: #fff;
  color: #c9c9c9;
}
.c-card__head {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .c-card__head {
    height: 13.4375rem;
  }
}
.c-card__head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card__head--noimage {
  width: 100%;
  height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .c-card__head--noimage {
    height: 13.4375rem;
  }
}
.c-card__head--event {
  border-radius: 8px 8px 0 0;
}
.c-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.c-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
.c-card__tag {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  border: solid 1px #76a685;
  background-color: #76a685;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
}
@media screen and (min-width: 768px) {
  .c-card__tag {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0.6px;
    margin-right: -0.6px;
  }
}
.c-card__foot {
  margin-top: 0.75rem;
}
.c-card__textarea {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card__textarea {
    margin-top: 0.75rem;
  }
}
.c-card__textarea p {
  color: #4D4D4D;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
}
@media screen and (min-width: 768px) {
  .c-card__textarea p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.8571428571;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
  }
}
.c-card__date {
  color: #6c6c6c;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
}
@media screen and (min-width: 768px) {
  .c-card__date {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.8571428571;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
  }
}
.c-card__title {
  color: #4D4D4D;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8571428571;
  letter-spacing: 0.7px;
  margin-right: -0.7px;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
  }
}
.c-card__title--event {
  color: #092F35;
}
.c-contact {
  background: url(../images/common/contact_bg_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.c-contact .l-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .c-contact .l-inner {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }
}
.c-contact__head {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .c-contact__head {
    margin-bottom: 3.5rem;
  }
}
.c-contact__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-right: -1px;
  font-family: var(--relize-european-font);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-contact__title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-right: -2px;
  }
}
.c-contact__sub-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-right: -1px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-contact__sub-title {
    gap: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.125;
    letter-spacing: 3.6px;
    margin-right: -3.6px;
  }
}
.c-contact__text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-contact__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
  }
}
.c-contact__icon {
  width: 1.75rem;
  height: 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-contact__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-contact__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-contact__btn {
  text-align: center;
}
@media (max-width: 767px) {
  .c-fnav {
    margin-top: 3rem;
    padding-left: 1.25rem;
  }
}
.c-fnav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-fnav__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    max-width: 31.25rem;
  }
}
.c-fnav__item a {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-fnav__item a {
    font-size: 1rem;
  }
}
.c-footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 1.5rem;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-footer__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
}
.c-footer__logo {
  width: 7.5rem;
  margin-bottom: 1rem;
}
.c-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .c-footer__link .c-fnav {
    margin-left: auto;
  }
}
.c-footer__text {
  font-weight: 500;
}
.c-footer__address {
  font-style: normal;
}
.c-footer__copyright {
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  text-align: center;
  margin-top: 2.5rem;
}
.c-footer__sns-list {
  display: flex;
}
.c-footer__sns-item {
  margin-right: 1.5rem;
  margin-top: 1.5rem;
}
.c-footer__sns-item:last-child {
  margin-right: 0;
}
.c-footer__sns-item a {
  background: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 62.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-footer__sns-item a {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-hamburger__btn {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  z-index: 9999;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
}
.c-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2rem;
  height: 0.125rem;
  background: #000000;
  visibility: hidden;
}
.c-hamburger__line:before {
  visibility: visible;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  transition: transform 0.2s ease-in-out;
  top: -0.25rem;
}
.c-hamburger__line:after {
  visibility: visible;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  transition: transform 0.2s ease-in-out;
  bottom: -0.25rem;
}
.c-hamburger__menu {
  margin-top: 3.75rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .c-hamburger__menu {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-bottom: 0;
  }
}
.c-hamburger__wrapper {
  max-width: var(--relize-inner);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding-top: 6.25rem;
  padding-bottom: 3rem;
}
.c-hamburger__logo {
  width: 3.1875rem;
  height: 4rem;
  position: absolute;
  top: 0.9375rem;
  left: 1rem;
}
.c-hamburger__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-hamburger__nav {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.c-hamburger__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 1.75rem;
  padding-left: 0.625rem;
}
.c-hamburger__item {
  overflow: hidden;
  text-align: left;
}
.c-hamburger__item a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3e3939;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
.c-hamburger__parent {
  font-size: 1.125rem;
  font-weight: 700;
  color: #092f35;
  letter-spacing: 1.2px;
  margin-right: -1.2px;
  display: block;
  position: relative;
}
.c-hamburger__parent:after {
  content: "";
  position: absolute;
  top: 0.375rem;
  right: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/common/menu_close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-hamburger__parent.is-open:after {
  content: "";
  position: absolute;
  top: 0.375rem;
  right: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/common/menu_open.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-hamburger__item-line {
  display: block;
  width: calc(100% - 2px);
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  border-top: solid 1px #e6e6e6;
  position: relative;
  margin-top: 1.25rem;
  margin-bottom: 1.125rem;
}
.c-hamburger__sub-list {
  display: none;
  margin-top: 0.875rem;
}
.c-hamburger__sub-list > * + * {
  margin-top: 0.625rem;
}
.c-hamburger__sub-item a {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.8px;
  margin-right: -0.8px;
  font-weight: 700;
  color: #092f35;
  display: block;
  position: relative;
}
.c-hamburger__sub-item a:after {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 0.375rem;
  height: 0.875rem;
  background: url(../images/common/menu_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-hamburger__btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 22.375rem;
  width: 100%;
  margin: 0.75rem auto;
}
.c-hamburger__cv-btn {
  display: block;
  width: 100%;
}
.c-hamburger__cv-btn img {
  width: 100%;
  height: auto;
}
.c-hamburger__btn[aria-expanded=true] .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger__btn[aria-expanded=true] .c-hamburger__line:before {
  top: 0;
  background-color: #000000;
  transition: transform 0.3s ease-in-out;
  transform: rotate(20deg);
  border-radius: 20px;
}
.c-hamburger__btn[aria-expanded=true] .c-hamburger__line:after {
  top: 0;
  background-color: #000000;
  transition: transform 0.3s ease-in-out;
  transform: rotate(-20deg);
  border-radius: 20px;
}
.c-map__gmap {
  width: 100%;
  height: 18.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-map__gmap {
    height: 25rem;
  }
}
.c-map__gmap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}
.c-news__item:last-child a {
  border-bottom: solid 1px #E2E2E2;
}
.c-news__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: solid 1px #E2E2E2;
  gap: 1.625rem;
  padding: 1.375rem 0;
}
@media screen and (min-width: 768px) {
  .c-news__item a {
    flex-direction: row;
    gap: 1.5625rem;
    padding: 2.375rem 0;
  }
}
.c-news__item a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 1.5rem;
  width: 0.625rem;
  height: 1.25rem;
  background: url(../images/common/arrow-sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .c-news__item a:after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 1.5rem;
    background: url("data:image/svg+xml,%3csvg%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='14'%20cy='14'%20r='13.5'%20stroke='%2376A685'/%3e%3cpath%20d='M11.375%208.75l5.25%205.25-5.25%205.25'%20stroke='%2376A685'%20stroke-width='1.5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}
.c-news__item a > div {
  display: flex;
  gap: 1.5625rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-news__item a > div {
    padding-right: 0;
  }
}
.c-news__time {
  color: #4d4d4d;
  font-family: var(--relize-european-font);
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  font-size: 1rem;
  font-weight: 400;
}
.c-news__cat {
  color: #4d4d4d;
  font-family: var(--relize-european-font);
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-news__cat {
    min-width: 9.5625rem;
  }
}
.c-news__title {
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  font-size: 1rem;
  color: #4d4d4d;
  font-weight: 400;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .c-news__title {
    padding-right: 1.5rem;
  }
}
.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  /* is-hiddenクラスを初期状態では適用しない */
  opacity: 0;
}
/* is-hiddenクラスをここに定義 */
.is-hidden {
  display: none;
}
.opening__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2a2c33;
}
.opening__logo {
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 12.5rem;
}
@media (min-width: 1600px) {
  .opening__logo {
    max-width: 18.75rem;
  }
}
.opening__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    gap: 1.25rem;
  }
}
.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #1c5548;
  background: #fff;
  color: #1c5548;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-pagination__item {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]):not([data-state=dots]):not([data-state=disabled]) {
    background: #1c5548;
    color: #fff;
    opacity: 1;
  }
}
.c-pagination__item[data-state=current] {
  background: #1c5548;
  border-color: #1c5548;
  color: #fff;
  cursor: default;
}
.c-pagination__item[data-state=dots] {
  border-color: transparent;
  background: transparent;
  cursor: default;
  width: auto;
  min-width: 1.5rem;
}
.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  font-size: 0.75rem;
  width: auto;
  padding: 0 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-pagination__item[data-state=prev],
  .c-pagination__item[data-state=next] {
    font-size: 0.875rem;
    padding: 0 1.125rem;
  }
}
.c-pagination__item[data-state=disabled] {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.c-result-card__head {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .c-result-card__head {
    height: 13.4375rem;
  }
}
.c-result-card__head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-result-card__head--noimage {
  width: 100%;
  height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .c-result-card__head--noimage {
    height: 13.4375rem;
  }
}
.c-result-card__head--event {
  border-radius: 8px 8px 0 0;
}
.c-result-card__area {
  margin-bottom: 0.5rem;
}
.c-result-card__tag {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  border: solid 1px #E6E6E6;
  color: #092F35;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
}
@media screen and (min-width: 768px) {
  .c-result-card__tag {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3333333333;
    letter-spacing: 0.6px;
    margin-right: -0.6px;
  }
}
.c-result-card__foot {
  margin-top: 0.75rem;
}
.c-result-card__foot--event {
  margin-top: 0;
  background: #F7FCFD;
  padding: 1rem;
  min-height: 6.25rem;
  border-radius: 0 0 8px 8px;
}
@media screen and (min-width: 768px) {
  .c-result-card__foot--event {
    min-height: 7.5rem;
  }
}
.c-result-card__textarea {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-result-card__textarea {
    margin-top: 0.75rem;
  }
}
.c-result-card__textarea p {
  color: #4D4D4D;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
}
@media screen and (min-width: 768px) {
  .c-result-card__textarea p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.8571428571;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
  }
}
.c-result-card__date {
  color: #9B9B9B;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
}
@media screen and (min-width: 768px) {
  .c-result-card__date {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.8571428571;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
  }
}
.c-result-card__title {
  color: #4D4D4D;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8571428571;
  letter-spacing: 0.7px;
  margin-right: -0.7px;
}
@media screen and (min-width: 768px) {
  .c-result-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
  }
}
.c-result-card__title--event {
  color: #092F35;
}
.c-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  color: #302404;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.c-section-title.--small {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .c-section-title.--small {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.c-section-title.--en {
  text-transform: uppercase;
  font-family: var(--relize-european-font);
  font-weight: 500 !important;
}
.c-sub-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 12.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-sub-header {
    height: 28.125rem;
  }
}
.c-sub-header.company {
  background-image: url(../images/sub-header/company_sp.jpg.webp);
}
@media screen and (min-width: 768px) {
  .c-sub-header.company {
    background-image: url(../images/sub-header/company_pc.jpg.webp);
  }
}
.c-sub-header.news {
  background-image: url(../images/sub-header/news_sp.jpg.webp);
}
@media screen and (min-width: 768px) {
  .c-sub-header.news {
    background-image: url(../images/sub-header/news_pc.jpg.webp);
  }
}
.c-sub-header.faq {
  background-image: url(../images/sub-header/faq_sp.jpg.webp);
}
@media screen and (min-width: 768px) {
  .c-sub-header.faq {
    background-image: url(../images/sub-header/faq_pc.jpg.webp);
  }
}
.c-sub-header.new-experience {
  background-image: url(../images/sub-header/new-experience_sp.jpg.webp);
}
@media screen and (min-width: 768px) {
  .c-sub-header.new-experience {
    background-image: url(../images/sub-header/new-experience_pc.jpg.webp);
  }
}
.c-sub-header.service {
  background-image: url(../images/sub-header/service_sp.jpg.webp);
}
@media screen and (min-width: 768px) {
  .c-sub-header.service {
    background-image: url(../images/sub-header/service_pc.jpg.webp);
  }
}
.c-sub-header.voice {
  background-image: url(../images/sub-header/voice_sp.jpg.webp);
}
@media screen and (min-width: 768px) {
  .c-sub-header.voice {
    background-image: url(../images/sub-header/voice_pc.jpg.webp);
  }
}
.c-sub-header__inner {
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .c-sub-header__inner {
    padding-top: 9.25rem;
  }
}
.c-sub-header__title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 1.2px;
  margin-right: -1.2px;
  color: #231815;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .c-sub-header__title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2857142857;
    letter-spacing: 2.8px;
    margin-right: -2.8px;
  }
}
.c-sub-header__sub-title {
  font-family: var(--relize-european-font);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8571428571;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
  color: #76a685;
  position: relative;
  z-index: 3;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-sub-header__sub-title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.72px;
    margin-right: -0.72px;
  }
}
.c-sub-header__text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0.4px;
  margin-right: -0.4px;
  color: #fff;
  position: relative;
  z-index: 3;
  font-family: var(--relize-european-font);
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-sub-header__text {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.48px;
    margin-right: -0.48px;
  }
}
.c-tab {
  /* タブメニュー */
  /* is-activeがついている時のスタイル */
  /* タブパネル */
  /* is-showがついている時のスタイル */
  /* simplebar用 */
}
.c-tab__menu {
  overflow: auto;
  display: flex;
  gap: 0.25rem;
  padding-bottom: 0.625rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-tab__menu {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: 0.625rem;
    margin-bottom: 1.875rem;
    gap: 1.5rem;
  }
}
.c-tab__menu-item {
  list-style: none;
  min-width: 9.375rem;
  padding: 0.25rem 0.375rem;
  /* メニューに高さを付ける */
  text-align: center;
  margin-right: 6px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  /* アニメーション */
  color: #707070;
  border: solid 1px #707070;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-tab__menu-item {
    min-width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
  }
}
.c-tab__menu-item:last-of-type {
  margin-right: 0px;
}
.c-tab__menu-item.is-active {
  background-color: #1c5548;
  color: #fff;
}
.c-tab__panel {
  width: 100%;
}
.c-tab__panel-box01 {
  display: none;
}
.c-tab__panel-box02 {
  display: none;
}
.c-tab__panel-box03 {
  display: none;
}
.c-tab__panel-box04 {
  display: none;
}
.c-tab__panel-box05 {
  display: none;
}
.c-tab__panel-box.is-show {
  display: block;
}
.c-tab__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 31.5rem;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .c-tab__container {
    grid-template-columns: 1fr 1fr 1fr;
    max-height: 57.375rem;
  }
}
.c-tab__item {
  position: relative;
  transition: 0.3s ease;
  height: 33.6vw;
}
@media screen and (min-width: 768px) {
  .c-tab__item {
    height: 20.703125vw;
    max-height: 25.3125rem;
  }
}
.c-tab__item:hover {
  cursor: pointer;
  opacity: 1;
}
.c-tab__item:hover .c-tab__panel-desc {
  display: block;
}
.c-tab__item:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #9f9f9f;
  mix-blend-mode: multiply;
  z-index: 2;
  inset: 0;
  margin: auto;
}
.c-tab__panel-desc {
  position: absolute;
  z-index: 3;
  bottom: 1.25rem;
  left: 0.75rem;
  display: none;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-tab__panel-desc {
    left: 1.625rem;
  }
}
.c-tab__panel-title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  color: #fff;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-tab__panel-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.875;
    letter-spacing: 0.1em;
    margin-right: -0.1em;
  }
}
.c-tab__panel-cat {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-tab__panel-cat {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-right: -0.1em;
  }
}
.c-tab__heading h2 {
  padding-left: 0.8125rem;
  position: relative;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-tab__heading h2 {
    padding-left: 1rem;
    margin-bottom: 0.9375rem;
  }
}
.c-tab__heading h2:after {
  width: 0.375rem;
  height: 1.3125rem;
  border-radius: 999px;
  background: #fed900;
  position: absolute;
  content: "";
  left: 0;
  top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-tab__heading h2:after {
    width: 0.5rem;
    height: 1.75rem;
  }
}
.c-tab__lead {
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .c-tab__lead {
    margin-bottom: 1.625rem;
  }
}
.c-tab__lead p {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  color: #3e3939;
}
@media screen and (min-width: 768px) {
  .c-tab__lead p {
    color: #707070;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.625;
    letter-spacing: 0.1em;
    margin-right: -0.1em;
  }
}
.c-tab__panel-image {
  width: 100%;
  height: 100%;
}
.c-tab__panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-tab .simplebar-track {
  background: #ddd;
  /* バーの背景色を設定できます*/
  border-radius: 20px;
  /* バーに丸みをもたせる*/
  border: none;
  height: 6px !important;
}
.c-tab .simplebar-placeholder {
  margin-bottom: 0.625rem;
}
.c-tab .simplebar-content {
  display: flex;
  gap: 0.25rem;
}
.c-tab .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
  /* デフォルトだと薄くなっています。*/
}
.c-tab .simplebar-track .simplebar-scrollbar::before {
  background: #ffef8e;
  height: 6px;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}
.c-triangle {
  display: inline-block;
  width: calc(64 * var(--to-rem));
  aspect-ratio: 1/1;
  background-color: var(--color-black);
}
.c-triangle[data-direction=top] {
  clip-path: var(--clip-triangle-top);
}
.c-triangle[data-direction=bottom] {
  clip-path: var(--clip-triangle-bottom);
}
.c-triangle[data-direction=left] {
  clip-path: var(--clip-triangle-left);
}
.c-triangle[data-direction=right] {
  clip-path: var(--clip-triangle-right);
}
.c-triangle[data-direction=lower-left] {
  clip-path: var(--clip-triangle-lower-left);
}
.c-triangle[data-direction=upper-left] {
  clip-path: var(--clip-triangle-upper-left);
}
.c-triangle[data-direction=lower-right] {
  clip-path: var(--clip-triangle-lower-right);
}
.c-triangle[data-direction=upper-right] {
  clip-path: var(--clip-triangle-upper-right);
}
.p-about-intro {
  padding: 2.5rem 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-intro {
    padding: 0 0 3.125rem;
  }
}
.p-about-intro__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-about-intro__heading {
    margin-bottom: 3.5rem;
  }
}
.p-about-intro__image {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-about-intro__image {
    margin-bottom: 3rem;
  }
}
.p-about-intro__container {
  grid-template-columns: 1fr;
  gap: 2rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-about-intro__container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}
.p-about-intro__title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-about-intro__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-about-intro__text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-about-intro__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-about-intro__textarea > * + * {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-about-intro__textarea > * + * {
    margin-top: 1.25rem;
  }
}
.p-about-reason {
  padding: 2.5rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about-reason {
    padding: 5rem 0 6.25rem;
  }
}
.p-about-reason:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/front-page/bg_04.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 84rem;
  height: 78.9375rem;
  left: 0;
  top: -21.875rem;
}
.p-about-reason__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-about-reason__heading {
    margin-bottom: 3.5rem;
  }
}
.p-about-reason__image {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-about-reason__image {
    margin-bottom: 1rem;
  }
}
.p-about-reason__container {
  grid-template-columns: 1fr;
  gap: 2rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-about-reason__container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.8125rem;
  }
}
.p-about-reason__title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-about-reason__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-about-reason__text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.9230769231;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-about-reason__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-about {
  padding: 0 0 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 12.5rem 0 11.875rem;
  }
}
.p-about:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 62.75rem;
  background: url(../images/about-bg_sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.2;
}
@media screen and (min-width: 768px) {
  .p-about:before {
    height: 37.5rem;
    background: url(../images/front-page/about-bg.png.webp);
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 6.25rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.p-about__bg {
  position: relative;
}
.p-about__bg:after {
  content: "";
  position: absolute;
  z-index: -2;
  background: url(../images/front-page/bg_02.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 73.5rem;
  height: 78.875rem;
  left: 0;
  top: -25rem;
}
.p-about__bg:before {
  content: "";
  position: absolute;
  z-index: -2;
  background: url(../images/front-page/bg_03.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80.5rem;
  height: 78.875rem;
  right: 0;
  bottom: -50rem;
}
.p-about__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-about__heading {
    margin-bottom: 3.5rem;
  }
}
.p-about__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-about__container {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
  }
}
.p-about__title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-about__text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-about__textarea > * + * {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-about__textarea > * + * {
    margin-top: 1.25rem;
  }
}
.p-archive {
  padding-top: 2rem;
  min-width: 0;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-archive {
    padding-top: 2.5rem;
  }
}
.p-archive .not-post {
  min-height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-archive .p-archivearea p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .p-archive .p-archivearea p {
    height: 3.375rem;
  }
}
.p-archive__categories {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-archive__categories {
    margin-bottom: 3rem;
  }
}
.p-archive__categories ul {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .p-archive__categories ul {
    gap: 1.5rem;
    flex-wrap: wrap;
    overflow-x: initial;
  }
}
.p-archive__categories li.current-cat {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  border: solid 1px #1c5548;
  font-weight: 700;
  background: #1c5548;
  color: #FFFFFF;
  font-size: 0.9375rem;
  letter-spacing: 0.7px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-archive__categories li.current-cat {
    padding: 0.375rem 1.5rem;
    font-size: 1.125rem;
    letter-spacing: 0.8px;
    white-space: auto;
    transition: 0.3s all;
  }
}
.p-archive__categories li a {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  border: solid 1px #1c5548;
  font-weight: 700;
  color: #231815;
  font-size: 0.9375rem;
  letter-spacing: 0.7px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-archive__categories li a {
    padding: 0.375rem 1.5rem;
    font-size: 1.125rem;
    letter-spacing: 0.8px;
    white-space: auto;
    transition: 0.3s all;
  }
}
@media screen and (min-width: 768px) {
  .p-archive__categories li a:hover {
    background: #1c5548;
    color: #FFFFFF;
    opacity: 1;
  }
}
.p-archive__categories li a.current {
  background: #092F35;
  color: #fff;
  pointer-events: none;
}
.p-archive__foot {
  margin-top: 4rem;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-archive__foot {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.p-archive__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-archive__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.75rem;
  }
}
.p-archive__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-right: -1px;
  color: #092F35;
}
@media screen and (min-width: 768px) {
  .p-archive__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2857142857;
    letter-spacing: 1.2px;
    margin-right: -1.2px;
  }
}
.p-archive__text {
  color: #333333;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
}
@media screen and (min-width: 768px) {
  .p-archive__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
  }
}
.p-archive__image {
  width: 100%;
  height: auto;
}
.p-archive__image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}
.p-archive__empty {
  min-height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-archive__empty p {
  font-size: 0.875rem;
  color: #888;
}
@media screen and (min-width: 768px) {
  .p-archive__empty p {
    font-size: 1rem;
  }
}
.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 (min-width: 768px) {
  .p-card-list {
    gap: calc(32 * var(--to-rem));
  }
}
.p-contact__complete {
  padding-block: calc(80 * var(--to-rem));
  text-align: center;
}
.p-contact__complete-title {
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
}
@media screen and (min-width: 768px) {
  .p-contact__complete-title {
    font-size: calc(40 * var(--to-rem));
  }
}
.p-contact__complete-text {
  margin-block-start: calc(30 * var(--to-rem));
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-contact__complete-text {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-contact__complete-button {
  margin-block-start: calc(50 * var(--to-rem));
  margin-inline: auto;
}
.p-contact {
  position: relative;
  z-index: 4;
}
.p-contact .l-inner {
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact .l-inner {
    max-width: 100%;
    padding-bottom: 9.375rem;
    max-width: 62.5rem;
  }
}
.p-contact__heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact__heading {
    margin-bottom: 3.5rem;
  }
}
.p-contact__info {
  text-align: left;
  max-width: 59.375rem;
  margin-inline: auto;
}
.p-contact--lg {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-contact--lg {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.p-contact__head {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head {
    text-align: center;
    margin-bottom: 3rem;
  }
}
.p-contact__body {
  display: flex;
  flex-direction: column;
}
.p-contact__foot {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__foot {
    margin-top: 2.5rem;
  }
}
.p-contact__info {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__info {
    margin-top: 0;
  }
}
.p-contact__select {
  display: block;
  color: #000000 !important;
  background: #fff;
  border: solid 0.0625rem #E6E6E6;
  font-size: 1rem;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1.875rem 0.75rem 0.625rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  appearance: none !important;
}
@media screen and (min-width: 768px) {
  .p-contact__select {
    padding: 0.75rem 1.875rem 0.75rem 0.875rem;
    max-width: 15.625rem;
  }
}
.p-contact__input {
  border: solid 0.0625rem #E6E6E6;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 0.375rem 0.75rem;
  letter-spacing: 0.07em;
  margin-right: -0.07em;
  background: #fff;
  transition: 0.2s ease;
  color: #092F35;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-contact__input {
    max-width: 100%;
    padding: 0.6875rem 0.75rem;
  }
}
.p-contact__input::placeholder {
  color: #c2c2c2;
}
.p-contact__input:focus::placeholder {
  color: transparent;
}
.p-contact__input--lg {
  border: solid 0.0625rem #E6E6E6;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  height: 5rem;
  padding: 0.75rem 0.875rem;
  letter-spacing: 0.07em;
  margin-right: -0.07em;
  background: #fff;
  color: #092F35;
}
@media screen and (min-width: 600px) {
  .p-contact__input--lg {
    max-width: 23.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__input--lg {
    max-width: 100%;
    padding: 0.75rem 1.25rem;
  }
}
.p-contact.area {
  transition: 0.2s ease;
  border-radius: 4px;
}
.p-contact.area::placeholder {
  color: #c2c2c2;
}
.p-contact.area:focus::placeholder {
  color: transparent;
}
.p-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.3125rem;
  }
}
.p-contact__radio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__radio {
    flex-direction: row;
    gap: 0.75rem;
  }
}
.p-contact__textarea {
  border: solid 1px #E6E6E6;
  background: #fff;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    padding: 0.5rem 1rem;
  }
}
.p-contact__textarea::placeholder {
  color: #c2c2c2;
}
.p-contact__textarea:focus::placeholder {
  color: transparent;
}
.p-contact__wrapper {
  margin-top: 3rem;
  border-radius: 15px;
  padding: 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__wrapper {
    border-radius: 25px;
    margin-top: 1.5rem;
    max-width: 59.375rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__radio {
    display: flex;
    flex-wrap: wrap;
    gap: 3.375rem;
  }
}
.p-contact__checkbox {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox {
    grid-template-columns: 12.5rem 12.5rem;
  }
}
.p-contact__checkbox input {
  display: none;
}
.p-contact__checkbox input:checked + .c-button__checkmark:after {
  opacity: 1;
}
.p-contact__checkbox span.wpcf7-list-item {
  margin-right: 0;
}
.p-contact__title {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-right: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 1rem;
  }
}
.p-contact__title--sm {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-right: -0.01em;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title--sm {
    font-size: 0.875rem;
  }
}
.p-contact {
  font-size: 0.875rem;
  letter-spacing: 0.6px;
  margin-right: -0.6px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-contact {
    font-size: 1rem;
    letter-spacing: 0.8px;
    margin-right: -0.8px;
    line-height: 1.75;
  }
}
.p-contact--medium {
  font-weight: 500;
}
.p-contact--red {
  color: #f16b6b;
  font-size: 0.625rem;
}
.p-contact--primary {
  color: #D6432F;
  display: inline-block;
  padding: 0;
  font-size: 0.625rem;
  margin-left: 0.25rem;
  position: relative;
  top: -0.375rem;
}
@media screen and (min-width: 768px) {
  .p-contact--primary {
    font-size: 0.625rem;
  }
}
.p-contact--secondary {
  color: #fff;
  display: inline-block;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  margin-left: 0.75rem;
  border-radius: 0.25rem;
}
.p-contact__day {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__day {
    grid-template-columns: 5rem 1fr;
    gap: 1.5rem;
    align-items: center;
  }
}
.p-contact dd .p-contact__day {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact dd .p-contact__day {
    margin-bottom: 1rem;
  }
}
.p-contact dd .p-contact__day:last-child {
  margin-bottom: 0;
}
.p-contact dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #9a9a9a;
}
.p-contact__pp {
  max-width: 100%;
  padding: 1rem 0.25rem 0.75rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  border-radius: 4px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__pp {
    font-size: 1rem;
  }
}
.p-contact__pp a {
  font-size: 0.875rem;
  color: #001F5B;
  text-decoration: underline;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contact__pp a {
    font-size: 1rem;
  }
}
.p-contact__pp .wpcf7-list-item label {
  line-height: 1.4 !important;
}
.p-dev-notice {
  padding-block: calc(24 * var(--to-rem));
  background-color: #fff3cd;
}
@media screen and (min-width: 768px) {
  .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 (min-width: 768px) {
  .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: var(--fw-bold);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .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 (min-width: 768px) {
  .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 (min-width: 768px) {
  .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: var(--fw-bold);
}
.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 (min-width: 768px) {
  .p-dev-notice__item code {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-error__inner {
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-error__inner {
    padding-top: 8.75rem;
    padding-bottom: 5rem;
  }
}
.p-error__wrapper {
  height: calc(100vh - 28.125rem);
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-error__wrapper {
    height: calc(100vh - 28.125rem);
    min-height: 33.75rem;
  }
}
.p-error__heading {
  font-size: 2rem;
  font-family: var(--relize-european-font);
  color: var(--color-relize-primary-green);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-error__heading {
    font-size: 4.0625rem;
  }
}
.p-error__head {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-error__head {
    margin-bottom: 2.5rem;
  }
}
.p-error__body {
  text-align: center;
}
.p-error__body p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  line-height: 1.75;
  font-weight: 400;
  color: #4d4d4d;
}
@media screen and (min-width: 768px) {
  .p-error__body p {
    font-size: 1rem;
  }
}
.p-error__body p + p {
  margin-top: 0.5rem;
}
.p-error__foot {
  margin-top: 2.5rem;
  text-align: center;
}
.p-error__title {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #808080;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-error__title {
    font-size: 1.625rem;
  }
}
.p-error__text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  line-height: 1.75;
  font-weight: 400;
  color: #4d4d4d;
}
@media screen and (min-width: 768px) {
  .p-error__text {
    font-size: 1rem;
  }
}
.p-faq {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding: 6.25rem 0 5rem;
  }
}
.p-faq.--page {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-faq.--page {
    padding: 6.25rem 0 5rem;
  }
}
.p-faq__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-faq__heading {
    margin-bottom: 3.5rem;
  }
}
.p-faq__heading.--visiblity-hidden {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: -999;
  height: 0;
  width: 0;
  top: -100%;
  left: -100%;
}
.p-faq__lead {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-faq__lead {
    margin-bottom: 3rem;
  }
}
.p-faq__container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-faq__container {
    gap: 1rem;
  }
}
.p-faq__content {
  list-style: none;
}
.p-faq__content::-webkit-details-marker {
  display: none;
}
.p-faq__content[open] .p-faq__question::after {
  transform: translateY(-50%) rotate(180deg);
  content: "−";
}
.p-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem 1.25rem 0;
  cursor: pointer;
  border-bottom: solid 1px #DCDCDC;
  list-style: none;
  /* summaryタグのデフォルトの▼マーカーを非表示にする */
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
.p-faq__question::after {
  position: absolute;
  content: "＋";
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.p-faq__question span:first-child {
  font-family: var(--relize-european-font);
  font-size: 1rem;
  font-weight: 500;
  background: #99CE9A;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  color: #FFFFFF;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-faq__question span:first-child {
    font-size: 1.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    max-width: 2.5rem;
    max-height: 2.5rem;
  }
}
.p-faq__question-text,
.p-faq__question h3 {
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-faq__question-text,
  .p-faq__question h3 {
    font-size: 1.125rem;
  }
}
.p-faq__answer {
  display: flex;
  gap: 1rem;
  padding: 0rem 1.5rem 0rem 0;
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 0;
  opacity: 0;
}
.p-faq__answer.is-open {
  padding: 1.25rem 0 1.5rem 0;
  max-height: 31.25rem;
  opacity: 1;
}
.p-faq__answer span:first-child {
  font-family: var(--relize-european-font);
  font-size: 1rem;
  font-weight: 500;
  background: #E3D2A1;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  color: #FFFFFF;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-faq__answer span:first-child {
    font-size: 1.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    max-width: 2.5rem;
    max-height: 2.5rem;
  }
}
.p-faq__text {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-faq__text {
    font-size: 1rem;
  }
}
.p-faq__text strong {
  font-weight: 700;
  background: linear-gradient(transparent 50%, #d1eed2 50%);
}
.p-faq__text a:not(.c-button__primary) {
  color: #99CE9A;
  font-weight: 400;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-faq__text .c-button__primary {
    padding-inline: 1.25rem;
  }
}
.p-faq__btn {
  margin-top: 0.75rem;
}
.p-faq__text--xl {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-faq__text--xl {
    font-size: 1.125rem;
  }
}
.p-flow {
  padding: 3.125rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding: 5rem 0 6.25rem;
  }
}
.p-flow:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/front-page/bg_08.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 85.1875rem;
  height: 78.9375rem;
  left: 0;
  top: -12.5rem;
}
.p-flow__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-flow__heading {
    margin-bottom: 3.5rem;
  }
}
.p-flow__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  margin-left: 5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__container {
    margin-left: 0;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.875rem;
  }
}
.p-flow__container:before {
  position: absolute;
  width: 1px;
  height: 100%;
  background: #A1B5AF;
  z-index: 1;
  content: "";
  left: -3.75rem;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-flow__container:before {
    width: 100%;
    height: 1px;
    top: 1.25rem;
    transform: rotate(0);
    width: calc(100% - 4px);
    left: 4px;
  }
}
.p-flow__content {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-flow__content {
    margin-top: 4.5rem;
  }
}
.p-flow__content:nth-child(1):after {
  position: absolute;
  top: 0;
  left: -5rem;
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='20'%20cy='20'%20r='20'%20fill='url(%23paint0_linear_161_2231)'/%3e%3cpath%20d='M27.286%2021.014l-.65-3.578a.987.987%200%2000-.675-.764l.485-1.214a.653.653%200%2000-.2-.756l-1.672-1.338-2.578-3.546a1.683%201.683%200%2000-2.81.133l-2.416.866a.656.656%200%2000-.425.73l.035.198-.432.621a.845.845%200%2000.047%201.026l.43.51v1.331l-.98.763-1.356%201.055a2.8%202.8%200%2000-.521%203.889l.248.331a10.084%2010.084%200%20001.442%203.979h-3.242a1.711%201.711%200%2000-1.471.844l-.062.105a1.703%201.703%200%2000.456%202.23%207.397%207.397%200%20002.204%201.123.974.974%200%2000.97.864h2.342c.527%200%201.038-.186%201.442-.524l.005-.003a3.465%203.465%200%20001.831-.604%2012.32%2012.32%200%20004.97%201.363l3.085.172a2.39%202.39%200%20001.948-.822%202.415%202.415%200%2000.387-2.552l-2.837-6.432zm-1.388-3.443l.595%203.275-.998.25-.528-.352a.655.655%200%2001-.25-.774l.261-.51a4.057%204.057%200%2000.447-1.847.238.238%200%2001.473-.042zm-4.126-1.261a2.099%202.099%200%2001-.401%201.782%202.075%202.075%200%2001-1.628.783h-.681l.336-1.347a4.823%204.823%200%2000.777-2.63v-.419L21%2013.105l1.226%201.226a1.775%201.775%200%2000-.454%201.979zm-2.03%203.315a2.821%202.821%200%20002.215-1.064%202.852%202.852%200%2000.536-2.46.378.378%200%2000-.018-.055%201.024%201.024%200%2001.246-1.151l.904%201.205a.378.378%200%2000.075.075l1.158.868a.982.982%200%2000-.183.57c0%20.523-.125%201.039-.364%201.504l-.27.527a1.405%201.405%200%2000.51%201.724l.519.346.174%201.74a10.36%2010.36%200%2000.944%203.405l-3.497-1.166-.239-.478a3.972%203.972%200%2000-2.89-2.135l-.302-.05-.57-.762a1.245%201.245%200%2001-.213-1.052l.375-1.5.023-.09.868-.001zm-3.179-6.83l.52-.748a.375.375%200%2000.062-.278l-.047-.273%201.63-.584-1.553%203.326v-.472a.375.375%200%2000-.088-.242l-.519-.616a.093.093%200%2001-.005-.114zm-.513%203.68l.91-.707a2.73%202.73%200%2000.794-.997l2.034-4.357a.934.934%200%20011.6-.155l2.609%203.586c.02.027.043.052.069.073l1.658%201.326-.465%201.162-1.066-.799L23.1%2014.15l-.004-.005a.407.407%200%2000-.03-.034v-.001h-.001l-.002-.002-1.873-1.873a.376.376%200%2000-.586.072l-1.125%201.875a.375.375%200%2000-.054.193v.523c0%20.808-.238%201.597-.687%202.269a.375.375%200%2000-.051.117l-.492%201.966h-.906a1.239%201.239%200%2001-1.239-1.238v-1.537zm-1.503%204.603a.374.374%200%2000-.072-.178l-.307-.41a2.05%202.05%200%2001.381-2.847l.751-.585v.953A1.99%201.99%200%200017.29%2020h.718l-.2.803-3.208.63a9.684%209.684%200%2001-.052-.355zm.204%201.09l2.939-.578c.014.408.153.802.399%201.128l.433.578-2.47%201.801a9.34%209.34%200%2001-1.301-2.929zm-1.362%206.559l-.054.099a6.65%206.65%200%2001-1.95-.999.953.953%200%2001-.255-1.25l.062-.104a.958.958%200%2001.824-.473h3.762c.163.214.336.423.516.623.394.438.82.848%201.274%201.224a1.206%201.206%200%2000-.583-.076l-1.145.134h-1.06a1.587%201.587%200%2000-1.39.822zm4.189.279a.451.451%200%2001-.162.31c-.27.226-.61.35-.961.35h-2.342a.228.228%200%2001-.2-.337l.133-.24a.837.837%200%2001.734-.434h1.082a.37.37%200%2000.043-.003l1.167-.136a.453.453%200%2001.506.49zm.745.08l.002-.017a1.194%201.194%200%2000-.22-.8c.283.209.575.405.876.59-.209.103-.43.18-.658.226zm10.847.419a1.646%201.646%200%2001-1.34.566l-3.086-.172a11.56%2011.56%200%2001-4.864-1.385l-.002-.001a11.424%2011.424%200%2001-3.027-2.392%209.299%209.299%200%2001-.355-.42l2.648-1.93.294.049a3.22%203.22%200%20012.343%201.73l.309.618a.376.376%200%2000.216.188l4.5%201.5a.374.374%200%2000.454-.524l-.3-.602a9.602%209.602%200%2001-.97-3.35l-.16-1.595.88-.22%202.726%206.184a1.663%201.663%200%2001-.266%201.756z'%20fill='%23fff'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_161_2231'%20x1='7.586'%20y1='4.138'%20x2='31.207'%20y2='38.276'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2399CE9A'/%3e%3cstop%20offset='1'%20stop-color='%23E3D2A1'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-flow__content:nth-child(1):after {
    top: -4.5rem;
    left: 0;
  }
}
.p-flow__content:nth-child(2):after {
  position: absolute;
  top: 0;
  left: -5rem;
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='20'%20cy='20'%20r='20'%20fill='url(%23paint0_linear_161_2232)'/%3e%3cg%20clip-path='url(%23clip0_161_2232)'%20fill='%23fff'%3e%3cpath%20d='M29.375%2012H27.5v-.75a1.5%201.5%200%2010-3%200V12h-3v-.75a1.5%201.5%200%2010-3%200V12h-3v-.75a1.5%201.5%200%2010-3%200V12h-1.875a1.875%201.875%200%2000-1.875%201.875v15a1.875%201.875%200%20001.875%201.875h10.5a.375.375%200%20000-.75h-10.5A1.128%201.128%200%20019.5%2028.875V17.25h21v6.375a.375.375%200%2000.75%200v-9.75A1.875%201.875%200%200029.375%2012zm-4.125-.75a.75.75%200%20111.5%200v2.25a.75.75%200%2011-1.5%200v-2.25zm-6%200a.75.75%200%20111.5%200v2.25a.75.75%200%2011-1.5%200v-2.25zm-6%200a.75.75%200%20111.5%200v2.25a.75.75%200%2011-1.5%200v-2.25zM30.5%2016.5h-21v-2.625a1.128%201.128%200%20011.125-1.125H12.5v.75a1.5%201.5%200%20103%200v-.75h3v.75a1.5%201.5%200%20103%200v-.75h3v.75a1.5%201.5%200%20103%200v-.75h1.875a1.128%201.128%200%20011.125%201.125V16.5z'/%3e%3cpath%20d='M19.25%2019.875a.75.75%200%2000-.75-.75H17a.75.75%200%2000-.75.75V21a.75.75%200%2000.75.75h1.5a.75.75%200%2000.75-.75v-1.125zM17%2021v-1.125h1.5V21H17zm-2.25-1.125a.75.75%200%2000-.75-.75h-1.5a.75.75%200%2000-.75.75V21a.75.75%200%2000.75.75H14a.75.75%200%2000.75-.75v-1.125zM12.5%2021v-1.125H14V21h-1.5zm15%20.75a.75.75%200%2000.75-.75v-1.125a.75.75%200%2000-.75-.75H26a.75.75%200%2000-.75.75V21a.75.75%200%2000.75.75h1.5zM26%2019.875h1.5V21H26v-1.125zm-6.75%203.375a.75.75%200%2000-.75-.75H17a.75.75%200%2000-.75.75v1.125a.75.75%200%2000.75.75h1.5a.75.75%200%2000.75-.75V23.25zM17%2024.375V23.25h1.5v1.125H17zm-2.25-1.125a.75.75%200%2000-.75-.75h-1.5a.75.75%200%2000-.75.75v1.125a.75.75%200%2000.75.75H14a.75.75%200%2000.75-.75V23.25zm-2.25%201.125V23.25H14v1.125h-1.5zm6%201.5H17a.75.75%200%2000-.75.75v1.125a.75.75%200%2000.75.75h1.5a.75.75%200%2000.75-.75v-1.125a.75.75%200%2000-.75-.75zM17%2027.75v-1.125h1.5v1.125H17zm4.5-6H23a.75.75%200%2000.75-.75v-1.125a.75.75%200%2000-.75-.75h-1.5a.75.75%200%2000-.75.75V21a.75.75%200%2000.75.75zm0-1.875H23V21h-1.5v-1.125zm-.75%204.5a.75.75%200%2000.75.75.375.375%200%20000-.75V23.25H23a.375.375%200%20000-.75h-1.5a.75.75%200%2000-.75.75v1.125zm-6.75%201.5h-1.5a.75.75%200%2000-.75.75v1.125a.75.75%200%2000.75.75H14a.75.75%200%2000.75-.75v-1.125a.75.75%200%2000-.75-.75zm-1.5%201.875v-1.125H14v1.125h-1.5z'/%3e%3cpath%20d='M26.375%2022.5a4.875%204.875%200%20100%209.75%204.875%204.875%200%20000-9.75zm0%209a4.125%204.125%200%20110-8.25%204.125%204.125%200%20010%208.25z'/%3e%3cpath%20d='M28.542%2025.802l-2.917%202.917-1.325-1.326a.375.375%200%2000-.53.53l1.59%201.592a.375.375%200%2000.53%200l3.182-3.182a.375.375%200%2000-.53-.53z'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_161_2232'%20x1='7.586'%20y1='4.138'%20x2='31.207'%20y2='38.276'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2399CE9A'/%3e%3cstop%20offset='1'%20stop-color='%23E3D2A1'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_161_2232'%3e%3cpath%20fill='%23fff'%20transform='translate(8%209)'%20d='M0%200h24v24H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-flow__content:nth-child(2):after {
    top: -4.5rem;
    left: 0;
  }
}
.p-flow__content:nth-child(3):after {
  position: absolute;
  top: 0;
  left: -5rem;
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='20'%20cy='20'%20r='20'%20fill='url(%23paint0_linear_161_2233)'/%3e%3cg%20clip-path='url(%23clip0_161_2233)'%20fill-rule='evenodd'%20clip-rule='evenodd'%20fill='%23fff'%3e%3cpath%20d='M28.4%2032H11.6a1.195%201.195%200%2001-1.196-1.195V9.195c0-.66.535-1.195%201.195-1.195h12.963c.183%200%20.324.14.324.323v4.387h4.387c.168%200%20.323.14.323.323v17.772c0%20.66-.534%201.195-1.195%201.195zM11.6%208.66a.519.519%200%2000-.38.155.502.502%200%2000-.169.38v21.61c0%20.295.253.534.548.534h16.802a.534.534%200%2000.534-.534V13.357h-4.372a.33.33%200%2001-.338-.324V8.661H11.599z'/%3e%3cpath%20d='M29.272%2013.356h-4.71a.33.33%200%2001-.337-.323v-4.71c0-.127.084-.253.21-.295a.298.298%200%2001.352.07l4.71%204.71a.298.298%200%2001.07.351.318.318%200%2001-.295.197zm-4.387-.646h3.586l-3.586-3.586v3.586zm-3.317%206.157a.33.33%200%2001-.239-.098c-.127-.127-.127-.323%200-.464l1.982-1.983c.141-.126.338-.126.464%200a.307.307%200%20010%20.464l-1.982%201.983a.3.3%200%2001-.225.098zm-1.251%200a.33.33%200%2001-.24-.098l-1.982-1.983a.331.331%200%20010-.464.331.331%200%2001.464%200l1.983%201.983c.126.14.126.337%200%20.464a.28.28%200%2001-.225.098zm-5.23%200a.28.28%200%2001-.226-.098c-.126-.127-.126-.323%200-.464l1.983-1.983a.331.331%200%2001.464%200%20.331.331%200%20010%20.464l-1.982%201.983a.33.33%200%2001-.24.098z'/%3e%3cpath%20d='M14.468%2020.371a1.2%201.2%200%2001-1.21-1.209c0-.66.535-1.209%201.21-1.209.66%200%201.21.549%201.21%201.21a1.21%201.21%200%2001-1.21%201.208zm0-1.757a.561.561%200%2000-.563.548c0%20.31.254.563.563.563.31%200%20.548-.253.548-.563a.55.55%200%2000-.548-.548zm3.233-1.476a1.21%201.21%200%2001-1.209-1.21c0-.66.549-1.208%201.21-1.208.66%200%201.208.548%201.208%201.209a1.21%201.21%200%2001-1.209%201.209zm0-1.758a.54.54%200%2000-.548.549c0%20.31.239.562.548.562.31%200%20.549-.253.549-.562a.54.54%200%2000-.549-.549zm3.235%204.991a1.21%201.21%200%2001-1.21-1.209c0-.66.549-1.209%201.21-1.209a1.21%201.21%200%20011.209%201.21%201.2%201.2%200%2001-1.21%201.208zm0-1.757a.549.549%200%2000-.549.548c0%20.31.24.563.549.563a.564.564%200%2000.562-.563.561.561%200%2000-.562-.548zm3.234-1.476c-.662%200-1.21-.534-1.21-1.21%200-.66.548-1.208%201.21-1.208.674%200%201.208.548%201.208%201.209a1.2%201.2%200%2001-1.209%201.209zm0-1.758a.549.549%200%2000-.55.549c0%20.31.254.562.55.562a.564.564%200%2000.561-.562.552.552%200%2000-.562-.549zm-7.34%2013.4h-2.377a.318.318%200%2001-.323-.324v-4.4c0-.183.14-.324.323-.324h2.376c.183%200%20.324.141.324.324v4.4c0%20.183-.14.324-.324.324zm-2.053-.647h1.715V24.38h-1.715v3.754z'/%3e%3cpath%20d='M19.206%2028.78H16.83a.33.33%200%2001-.338-.324v-8.14c0-.183.155-.337.338-.337h2.376a.33.33%200%2001.323.337v8.14c0%20.183-.14.324-.323.324zm-2.053-.647h1.715V20.64h-1.715v7.494z'/%3e%3cpath%20d='M21.568%2028.78h-2.362a.33.33%200%2001-.338-.324v-4.4a.33.33%200%2001.338-.324h2.362a.33.33%200%2001.337.324v4.4a.33.33%200%2001-.337.324zm-2.039-.647h1.715V24.38H19.53v3.754z'/%3e%3cpath%20d='M23.944%2028.78h-2.377a.327.327%200%2001-.323-.324v-7.409c0-.183.155-.323.323-.323h2.377a.33.33%200%2001.337.323v7.41a.33.33%200%2001-.337.323zm-2.04-.647h1.716V21.37h-1.715v6.763z'/%3e%3cpath%20d='M26.109%2029.975h-13.82a.318.318%200%2001-.324-.324v-1.195c0-.183.14-.323.323-.323H26.11c.183%200%20.323.14.323.323v1.195c0%20.183-.14.324-.323.324zm-13.483-.647h13.16v-.548h-13.16v.548zM22.3%2010.826h-8.62a.327.327%200%2001-.323-.324.33.33%200%2001.324-.337h8.618a.33.33%200%2001.324.338c0%20.168-.14.323-.324.323zm0%201.28h-8.62a.318.318%200%2001-.323-.324c0-.182.141-.323.324-.323h8.618c.183%200%20.324.14.324.323s-.14.324-.324.324z'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_161_2233'%20x1='7.586'%20y1='4.138'%20x2='31.207'%20y2='38.276'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2399CE9A'/%3e%3cstop%20offset='1'%20stop-color='%23E3D2A1'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_161_2233'%3e%3cpath%20fill='%23fff'%20transform='translate(8%208)'%20d='M0%200h24v24H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-flow__content:nth-child(3):after {
    top: -4.5rem;
    left: 0;
  }
}
.p-flow__title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-flow__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-flow__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-footer {
  background: #fed900;
  overflow: hidden;
}
.p-footer .l-inner {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-footer .l-inner {
    padding-bottom: 1.875rem;
    padding-top: 2.125rem;
    max-width: 100%;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}
.p-footer__head {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__head {
    flex-direction: row;
    justify-content: space-between;
  }
}
.p-footer__logo {
  width: 5.9375rem;
  height: 7.5rem;
  margin-bottom: 2rem;
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}
.p-footer__text {
  font-size: 0.875rem;
  color: #fff;
  font-family: var(--relize-base-font);
  font-style: normal;
}
.p-footer__copyright {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 400;
  text-align: right;
  margin-top: 5rem;
  font-family: var(--relize-european-font);
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 6.25rem;
    font-size: 0.875rem;
  }
}
.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-orange);
  --_form-color-accent: var(--color-accent);
  --_form-color-border: var(--color-border);
  --_form-color-primary: var(--color-primary);
  max-width: calc(800 * var(--to-rem));
  margin-inline: auto;
}
.p-form > * {
  margin-block-start: calc(40 * var(--to-rem));
}
.p-form > *:nth-last-child(2) {
  margin-block-start: calc(20 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-form > * {
    margin-block-start: calc(48 * var(--to-rem));
  }
  .p-form > *:nth-last-child(2) {
    margin-block-start: calc(24 * var(--to-rem));
  }
}
.p-form__item {
  display: grid;
  gap: calc(8 * var(--to-rem));
}
.p-form__label {
  display: block;
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
}
.p-form__label--required {
  position: relative;
  padding-inline-end: calc(50 * var(--to-rem));
}
.p-form__label--required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 0;
  padding-block: calc(8 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--_form-color-badge-bg);
  color: var(--_form-color-badge-text);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 1;
  translate: 0 -50%;
}
.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: calc(14 * var(--to-rem)) calc(16 * var(--to-rem));
  border: 1px solid var(--_form-color-border);
  border-radius: 8px;
  background-color: var(--_form-color-bg);
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.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__select.is-error,
.p-form__textarea.is-error {
  border-color: var(--_form-color-badge-bg);
}
@media screen and (min-width: 768px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: calc(16 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}
.p-form__select {
  position: relative;
  padding-inline-end: calc(48 * var(--to-rem));
  cursor: pointer;
  appearance: none;
}
.p-form__select-wrap {
  position: relative;
}
.p-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(16 * var(--to-rem));
  clip-path: var(--clip-triangle-bottom);
  width: calc(12 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  border: none;
  background-color: var(--_form-color-primary);
  pointer-events: none;
  translate: 0 -50%;
}
.p-form__textarea {
  min-height: calc(160 * var(--to-rem));
}
.p-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-form__radio-group {
    flex-flow: row wrap;
    gap: calc(32 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}
.p-form__radio {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(8 * var(--to-rem));
  align-items: center;
  cursor: pointer;
}
.p-form__radio input[type=radio] {
  position: relative;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  margin: 0;
  margin-inline-end: calc(16 * var(--to-rem));
  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: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  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: calc(16 * var(--to-rem));
  user-select: none;
}
.p-form__checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-form__checkbox input[type=checkbox] {
  position: relative;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  margin: 0;
  margin-inline-end: calc(8 * var(--to-rem));
  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: calc(2 * var(--to-rem));
  left: calc(5 * var(--to-rem));
  width: calc(6 * var(--to-rem));
  height: calc(10 * var(--to-rem));
  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: calc(16 * var(--to-rem));
  user-select: none;
}
.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__button-wrap {
  text-align: center;
}
.p-form__error {
  display: block;
  color: var(--_form-color-badge-bg);
  font-size: calc(14 * var(--to-rem));
}
.p-form__success {
  padding: calc(24 * var(--to-rem));
  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: calc(16 * var(--to-rem));
  text-align: center;
}
.p-form__radio .wpcf7-list-item-label,
.p-form__radio .wpcf7-li label {
  color: var(--_form-color-text);
  font-size: calc(16 * var(--to-rem));
  line-height: 1.5;
  user-select: none;
}
.p-form__checkbox .wpcf7-form-control-wrap,
.p-form__checkbox .wpcf7-form-control {
  display: flex;
  align-items: center;
}
.p-form__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.p-form__item .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.p-google-voice {
  padding: 2.5rem 0;
  background: #fafaf7;
}
@media screen and (min-width: 768px) {
  .p-google-voice {
    padding: 5rem 0;
  }
}
.p-google-voice .l-inner {
  max-width: 60rem;
}
.p-google-voice__heading {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-google-voice__heading {
    margin-bottom: 2rem;
  }
}
.p-google-voice__lead {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-google-voice__lead {
    margin-bottom: 3rem;
  }
}
.p-google-voice__text--xl {
  font-size: 0.875rem;
  line-height: 2;
  color: #444;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-google-voice__text--xl {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}
.p-google-voice__text--xl:last-child {
  margin-bottom: 0;
}
.p-header__wrapper {
  display: flex;
  align-items: center;
}
.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-header__menu-parent {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .p-header__list {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-header__sub-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding-top: 0.75rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
}
@media screen and (min-width: 768px) {
  .p-header__bg {
    background: #fef8e0;
    border-radius: 1rem;
    padding: 0.875rem 1rem;
    min-width: 11.875rem;
    box-shadow: 0 0.25rem 1rem rgba(48, 36, 4, 0.1);
  }
  .p-header__bg > * + * {
    margin-top: 0.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-header__item {
    margin-right: 3rem;
    position: relative;
  }
}
.p-header__item:last-child {
  margin-right: 0;
}
.p-header__item img {
  width: 9.75rem;
  height: auto;
}
.p-header__item img img {
  width: 100%;
  height: auto;
}
.p-header__item a {
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-header__item a {
    font-size: 0.875rem;
    font-weight: bold;
  }
}
.p-header__item a:hover {
  cursor: pointer;
}
.p-header__item a.current {
  color: #fff;
  position: relative;
}
.p-header__item a.current:after {
  content: "";
  position: absolute;
  bottom: -1rem;
  width: 100%;
  height: 0.0625rem;
  background: #fff;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-header__sub-item a {
    display: block;
    padding: 0.625rem 1rem;
    color: #302404;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 0.625rem;
    white-space: nowrap;
    transition: background-color 0.2s ease;
  }
  .p-header__sub-item a:hover {
    background-color: rgba(254, 217, 0, 0.2);
  }
}
.p-header__logo {
  width: 2.25rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 3rem;
    height: auto;
  }
}
.p-header__logo a {
  display: inline-block;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-header__item--has-dropdown > .p-header__menu-parent {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
  }
  .p-header__item--has-dropdown > .p-header__menu-parent::after {
    content: "";
    flex-shrink: 0;
    width: 0.3125rem;
    height: 0.3125rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -0.125rem;
    transition: transform 0.3s ease, margin-top 0.3s ease;
  }
  .p-header__item--has-dropdown:hover > .p-header__menu-parent::after {
    transform: rotate(-135deg);
    margin-top: 0.125rem;
  }
  .p-header__item--has-dropdown:hover > .p-header__sub-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.p-header__mobile-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  background: linear-gradient(1300deg, rgb(253, 219, 146), rgb(209, 253, 254));
  visibility: hidden;
  display: block;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.p-header__mobile-menu.visible {
  visibility: visible;
  animation: fade-in 0.3s ease-in-out;
}
@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 0.5;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.p-information {
  padding: 2.5rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-information {
    padding: 6.25rem 0 3.125rem;
  }
}
.p-information:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/front-page/bg_09.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 78.6875rem;
  height: 74.375rem;
  right: 0;
  top: -25rem;
}
.p-information__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-information__heading {
    margin-bottom: 3.5rem;
  }
}
.p-information__container {
  background: #FAFAFA;
  padding: 1.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-information__container {
    padding: 2.5rem;
  }
}
.p-information__title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  color: #99CE9A;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-information__title {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-information__title:before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3csvg%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cmask%20id='a'%20style='mask-type:alpha'%20maskUnits='userSpaceOnUse'%20x='0'%20y='0'%20width='28'%20height='28'%3e%3cpath%20fill='%23D9D9D9'%20d='M0%200h28v28H0z'/%3e%3c/mask%3e%3cg%20mask='url(%23a)'%3e%3cpath%20d='M14.006%2020.111v-7.333m-.057-4.055h.011M14%2025a11%2011%200%20100-22%2011%2011%200%20000%2022z'%20stroke='%2399CE9A'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.5rem;
}
.p-information__list > * + * {
  margin-top: 1.25rem;
}
.p-information__item {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-information__item {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-information__item:before {
  position: absolute;
  content: "";
  min-width: 0.625rem;
  min-height: 0.625rem;
  max-width: 0.625rem;
  max-height: 0.625rem;
  background: #99CE9A;
  border-radius: 99999px;
  display: inline-block;
  left: 0;
  top: 0.625rem;
}
.p-information__item span {
  font-weight: 700;
  display: inline;
  background: linear-gradient(transparent 60%, rgba(153, 206, 154, 0.3) 60%);
}
.p-information__container + .p-information__container {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-information__container + .p-information__container {
    margin-top: 2rem;
  }
}
.p-information__definition {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-information__definition {
    grid-template-columns: 10rem 1fr;
    font-size: 0.9375rem;
  }
}
.p-information__definition dt {
  padding: 0.75rem 0.75rem 0.75rem 0;
  font-weight: 700;
  color: #1c5548;
  border-bottom: 1px solid #eee;
}
.p-information__definition dt dfn {
  font-style: normal;
}
.p-information__definition dd {
  padding: 0.75rem 0;
  color: #333;
  border-bottom: 1px solid #eee;
}
.p-information__definition dd a {
  color: #1c5548;
  text-decoration: underline;
}
.p-intro-images {
  position: relative;
  padding: 0 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-intro-images {
    padding: 0 0 6.25rem;
  }
}
.p-intro-images:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/front-page/bg_05.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 76.4375rem;
  height: 78.9375rem;
  right: 0;
  top: -31.25rem;
}
.p-intro-images:after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/front-page/bg_06.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 85.1875rem;
  height: 78.9375rem;
  left: 0;
  top: 43.75rem;
}
.p-intro-images .l-inner {
  position: relative;
  z-index: 2;
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .p-intro-images .l-inner {
    padding-inline: 1.5625rem;
  }
}
.p-intro-images__white-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: overlay;
  width: 100%;
  max-width: 85.3333333333vw;
  height: auto;
  z-index: 3;
  margin-top: -13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-intro-images__white-logo {
    margin-top: 5rem;
    max-width: 42.5rem;
    height: auto;
  }
}
.p-intro-images__logo-text {
  z-index: 1;
  position: absolute;
  width: 74.6666666667vw;
  top: 0;
  right: -10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-intro-images__logo-text {
    width: 42.5rem;
    height: auto;
    right: 0;
  }
}
.p-intro-images__container--first {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-intro-images__container--first {
    margin-bottom: 6.25rem;
  }
}
.p-intro-images__container--second {
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-intro-images__container--second {
    gap: 4.75rem;
  }
}
.p-intro-images__container--third {
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-intro-images__container--third {
    margin-bottom: 5.875rem;
    gap: 10.3125rem;
  }
}
.p-intro-images__image {
  width: 100%;
  height: auto;
}
.p-intro-images__image--01 {
  margin-left: 3rem;
  max-width: 64vw;
}
@media screen and (min-width: 768px) {
  .p-intro-images__image--01 {
    margin-left: 4.5625rem;
    max-width: 47.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-intro-images__image--02 {
    max-width: 21.5625rem;
    margin-top: 2.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-intro-images__image--03 {
    max-width: 40.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-intro-images__image--04 {
    max-width: 32.25rem;
    margin-top: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-intro-images__image--05 {
    max-width: 21.5625rem;
  }
}
.p-intro-images__image--06 {
  max-width: 74.6666666667vw;
  margin-left: auto;
  margin-right: 2rem;
}
@media screen and (min-width: 768px) {
  .p-intro-images__image--06 {
    max-width: 44.5625rem;
    margin-right: 6rem;
  }
}
.p-intro {
  padding: 2.5rem 0 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-intro {
    padding: 5rem 0 8.125rem;
  }
}
.p-intro__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-intro__heading {
    margin-bottom: 3.5rem;
  }
}
.p-intro__image {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-intro__image {
    margin-bottom: 1rem;
  }
}
.p-intro__container {
  grid-template-columns: 1fr;
  gap: 2rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-intro__container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 66.625rem;
    margin-inline: auto;
  }
}
.p-intro__content {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-intro__content:nth-child(2) {
    margin-top: 6.25rem;
  }
}
.p-intro__text-image {
  margin-top: -1.25rem;
  position: relative;
  z-index: 3;
}
.p-intro__text-image img {
  width: 100%;
  height: auto;
}
.p-intro__text--btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.p-intro__text--btn:after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M10.667%2012.667c0-.495.488-1.234.983-1.854a8.738%208.738%200%20012.267-2.03C14.571%208.383%2015.363%208%2016%208m0%200c-.637%200-1.43-.383-2.083-.783a8.772%208.772%200%2001-2.267-2.03c-.495-.62-.983-1.36-.983-1.854M16%208H0'%20stroke='%23302404'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 0.75rem;
}
.p-intro__title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-intro__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-intro__text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.9230769231;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-intro__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-mainview {
  position: relative;
  height: 100svh;
  max-height: 41.6875rem;
}
@media screen and (min-width: 768px) {
  .p-mainview {
    padding-top: 10rem;
    max-height: 100%;
    height: auto;
  }
}
.p-mainview:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/front-page/bg_01.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 74.9375rem;
  height: 91.8125rem;
  right: 0;
  top: 0;
}
.p-mainview__copy {
  position: absolute;
  top: 7.5rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  max-width: 93.6vw;
  height: auto;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-mainview__copy {
    max-width: 55rem;
    top: 7.5rem;
    right: 0.625rem;
    left: auto;
  }
}
@media (min-width: 1920px) {
  .p-mainview__copy {
    max-width: 71.3888888889vw;
  }
}
.p-mainview__copy img {
  width: 100%;
  height: auto;
}
.p-mainview__sub-copy {
  position: absolute;
  left: 0;
  top: 31.75rem;
  width: 100%;
  height: auto;
  max-width: 98.1333333333vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-mainview__sub-copy {
    top: auto;
    left: auto;
    bottom: 1rem;
    max-width: 51.75rem;
  }
}
.p-mainview__sub-copy img {
  width: 100%;
  height: auto;
}
.p-mainview .l-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mainview .l-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 100%;
  }
}
.p-mainview__image {
  width: 100%;
  height: 33rem;
  z-index: 1;
}
@media (min-width: 1920px) {
  .p-mainview__image {
    height: 36.6666666667vw;
  }
}
.p-mainview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .p-mainview__image:nth-child(1) {
    width: 100%;
    max-width: 53.3333333333vw;
    height: auto;
    top: 12.5rem;
    right: -1.25rem;
    position: absolute;
  }
}
.p-mainview__image:nth-child(2) {
  margin-top: 6.625rem;
}
@media (max-width: 767px) {
  .p-mainview__image:nth-child(2) {
    width: 100%;
    max-width: 42.9333333333vw;
    height: auto;
    margin-top: 0;
    top: 23.3125rem;
    right: 1.25rem;
    position: absolute;
  }
}
.p-mainview__image:nth-child(3) {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .p-mainview__image:nth-child(3) {
    width: 100%;
    max-width: 42.6666666667vw;
    height: auto;
    margin-top: 0;
    top: 15.1875rem;
    left: 1.0625rem;
    position: absolute;
  }
}
.p-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: max(100svh, 450 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: max(500 * var(--to-rem), 100%);
  }
}
.p-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.p-mv__title-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  gap: calc(24 * var(--to-rem));
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  padding-inline: var(--padding-inner);
  color: var(--color-white);
  text-align: center;
}
.p-mv__main-title {
  font-size: calc(32 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px oklch(from var(--color-black) l c h/30%);
}
@media screen and (min-width: 768px) {
  .p-mv__main-title {
    font-size: clamp(32 * var(--to-rem), 5cqi, 64 * var(--to-rem));
  }
}
.p-mv__sub-title {
  font-size: calc(18 * var(--to-rem));
  line-height: 1.6;
  text-shadow: 0 1px 2px oklch(from var(--color-black) l c h/30%);
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title {
    font-size: clamp(18 * var(--to-rem), 3cqi, 24 * var(--to-rem));
  }
}
.p-mv__splide {
  width: 100%;
  height: 100%;
}
.p-mv__splide .splide__track {
  height: 100%;
}
.p-mv__splide .splide__list {
  height: 100%;
}
.p-mv__splide .splide__slide {
  height: 100%;
}
.p-mv__splide .splide__slide-image {
  width: 100%;
  height: 100%;
}
.p-mv__splide .splide__slide-image picture,
.p-mv__splide .splide__slide-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-new-experience-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.p-new-experience-modal.is-active {
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: hidden;
}
.p-new-experience-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.p-new-experience-modal__content {
  position: relative;
  max-width: 31.25rem;
  width: 92%;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 3rem 1.25rem 2rem;
  transform: translateY(1.875rem) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  max-height: 90vh;
  max-height: 90dvh;
  -webkit-overflow-scrolling: touch;
}
.is-active .p-new-experience-modal__content {
  transform: translateY(0) scale(1);
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__content {
    width: 85%;
    max-width: 34.375rem;
    padding: 3.125rem 3.125rem;
    max-height: 80vh;
  }
}
.p-new-experience-modal__close {
  position: sticky;
  top: 0;
  float: right;
  width: 2rem;
  height: 2rem;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
  margin-top: -2.5rem;
  margin-right: -0.25rem;
  margin-bottom: 0.5rem;
}
.p-new-experience-modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
}
.p-new-experience-modal__close::before, .p-new-experience-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  height: 0.0625rem;
  background-color: #333;
  transition: background-color 0.3s ease;
}
.p-new-experience-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-new-experience-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-new-experience-modal__inner {
  text-align: center;
}
.p-new-experience-modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__title {
    font-size: 2rem;
    margin-bottom: 1.5625rem;
  }
}
.p-new-experience-modal__text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__text {
    font-size: 1rem;
    margin-bottom: 1.5625rem;
    line-height: 1.6;
  }
}
.p-new-experience-modal__text--xl {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__text--xl {
    font-size: 1.125rem;
  }
}
.p-new-experience-modal__offer {
  background: linear-gradient(135deg, #E6FCED, #F5EACE);
  padding: 1.5625rem 1.25rem;
  border-radius: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.03);
  border: 0.0625rem solid rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__offer {
    padding: 1.875rem 1.5625rem;
    margin-bottom: 2.1875rem;
  }
}
.p-new-experience-modal__price {
  display: block;
  font-size: 1.375rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__price {
    font-size: 1.75rem;
  }
}
.p-new-experience-modal__price span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__price span {
    font-size: 1.5rem;
  }
}
.p-new-experience-modal__special {
  display: block;
  font-size: 1rem;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__special {
    font-size: 1.125rem;
  }
}
.p-new-experience-modal__special em {
  font-style: normal;
  font-weight: 600;
  color: #06c;
  position: relative;
}
.p-new-experience-modal__special em::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: rgba(0, 102, 204, 0.4);
}
.p-new-experience-modal__button {
  display: inline-block;
  background-color: #06c;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 0.75rem 2.8125rem;
  border-radius: 3.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1.125rem;
  letter-spacing: -0.01em;
}
.p-new-experience-modal__button:hover {
  background-color: #0055b3;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 102, 204, 0.2);
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__button {
    font-size: 1.125rem;
    padding: 0.875rem 3.75rem;
  }
}
.p-new-experience-modal__note {
  font-size: 0.75rem;
  color: #777;
  font-weight: 400;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience-modal__note {
    font-size: 0.875rem;
  }
}
.p-new-experience {
  padding: 2.5rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-new-experience {
    padding: 5rem 0;
  }
}
.p-new-experience__heading {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience__heading {
    margin-bottom: 2.5rem;
  }
}
.p-new-experience__lead {
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience__lead {
    margin-bottom: 4.375rem;
    text-align: center;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-new-experience__text--xl {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience__text--xl {
    font-size: 1.0625rem;
    line-height: 2;
    margin-bottom: 1.25rem;
  }
}
.p-new-experience__text--xl:last-child {
  margin-bottom: 0;
}
.p-new-experience__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience__container {
    gap: 3.125rem;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.p-new-experience__item {
  width: 100%;
}
.p-new-experience__card {
  background-color: #f9f9f9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.04);
  position: relative;
}
.p-new-experience__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.375rem;
  height: 100%;
  background: linear-gradient(to bottom, #E6FCED, #F5EACE);
}
.p-new-experience__card-inner {
  padding: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience__card-inner {
    padding: 2.1875rem;
  }
}
.p-new-experience__user-info {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience__user-info {
    gap: 1.5625rem;
  }
}
.p-new-experience__avatar {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 0.1875rem solid #fff;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-new-experience__avatar {
    width: 5.625rem;
    height: 5.625rem;
  }
}
.p-new-experience__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-new-experience__details {
  flex: 1;
}
.p-new-experience__name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience__name {
    font-size: 1.125rem;
  }
}
.p-new-experience__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-new-experience__meta {
    flex-direction: row;
    gap: 0.9375rem;
    margin-bottom: 0.75rem;
  }
}
.p-new-experience__age-gender {
  font-size: 0.875rem;
  color: #555;
}
@media screen and (min-width: 768px) {
  .p-new-experience__age-gender {
    position: relative;
    padding-right: 0.9375rem;
  }
  .p-new-experience__age-gender::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.0625rem;
    height: 0.875rem;
    background-color: #ddd;
  }
}
.p-new-experience__date {
  font-size: 0.875rem;
  color: #555;
}
.p-new-experience__status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 3.125rem;
}
.p-new-experience__status--member {
  background-color: rgba(106, 154, 181, 0.15);
  color: #6a9ab5;
}
.p-new-experience__status--trial {
  background-color: rgba(169, 169, 169, 0.15);
  color: #888;
}
.p-new-experience__title {
  font-size: 1rem;
  font-weight: bold;
  color: #6a9ab5;
  margin-bottom: 0.9375rem;
  line-height: 1.5;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem dashed #ddd;
}
@media screen and (min-width: 768px) {
  .p-new-experience__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-new-experience__content {
  padding-top: 0.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-new-experience__content::after {
    display: none;
  }
}
.p-new-experience__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #444;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-new-experience__text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 9em;
    transition: max-height 0.4s ease;
  }
  .is-open .p-new-experience__text {
    display: block;
    max-height: 125rem;
    -webkit-line-clamp: initial;
  }
}
@media screen and (min-width: 768px) {
  .p-new-experience__text {
    font-size: 1rem;
    line-height: 1.9;
    max-height: none;
  }
}
@media screen and (max-width: 767px) {
  .p-new-experience__content::after {
    content: "";
    position: absolute;
    bottom: 3.3125rem;
    left: 0;
    width: 100%;
    height: 2.5rem;
    background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 0%, rgb(249, 249, 249) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .p-new-experience__content.is-open::after {
    opacity: 0;
    visibility: hidden;
  }
}
.p-new-experience__more-btn {
  display: none;
  text-align: center;
  font-size: 0.875rem;
  color: #6a9ab5;
  font-weight: bold;
  background: #fff;
  border: 1px solid #6a9ab5;
  border-radius: 3.125rem;
  padding: 0.5rem 0.9375rem;
  cursor: pointer;
  position: relative;
  z-index: 3;
  margin: 0.9375rem auto 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-new-experience__more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* 開いた状態では非表示 */
  }
  .is-open .p-new-experience__more-btn {
    display: none;
  }
  .p-new-experience__more-btn:hover {
    background-color: #6a9ab5;
    color: #fff;
  }
}
.p-new-experience__more-btn::after {
  content: "続きを読む";
  display: inline-block;
}
.p-new-experience__more-btn::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.3125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='8' fill='none' stroke='%236a9ab5' stroke-width='1.5'/%3E%3Cpath d='M9,5 L9,13' stroke='%236a9ab5' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M5,9 L13,9' stroke='%236a9ab5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
.p-new-experience__more-btn:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='8' fill='none' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M9,5 L9,13' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M5,9 L13,9' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.p-news-list {
  padding-block: calc(48 * var(--to-rem)) calc(40 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-news-list {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.p-news-list__inner {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--to-rem));
}
.p-news-list__inner > .p-news-list__title {
  margin-block-end: 0;
}
.p-news-list__container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  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);
}
.p-news-list__item {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.p-news-list__item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray);
}
@media (any-hover: hover) {
  .p-news-list__item:hover {
    background-color: oklch(from var(--color-gray) l c h/50%);
  }
}
.p-news-list__card {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
  padding: calc(24 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-news-list__card {
    gap: calc(12 * var(--to-rem));
    padding: calc(32 * var(--to-rem));
  }
}
.p-news-list__meta {
  display: flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  color: var(--color-border-gray);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-news-list__meta {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-news-list__separator {
  color: var(--color-border-gray);
}
.p-news-list__content {
  display: flex;
  gap: calc(16 * var(--to-rem));
  justify-content: space-between;
  align-items: center;
}
.p-news-list__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: calc(8 * var(--to-rem));
}
.p-news-list__card .p-news-list__title {
  margin: 0;
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-news-list__card .p-news-list__title {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-news-list__excerpt {
  color: var(--color-border-gray);
  font-size: calc(13 * var(--to-rem));
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-news-list__excerpt {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-news-list__arrow {
  flex-shrink: 0;
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  color: var(--color-border-gray);
  transition: color 0.2s ease, transform 0.2s ease;
}
.p-news-list__arrow svg {
  width: 100%;
  height: 100%;
}
.p-news-list__item:hover .p-news-list__arrow {
  color: var(--color-text);
  transform: translateX(calc(4 * var(--to-rem)));
}
.p-news-list__empty {
  padding: calc(60 * var(--to-rem));
  border-radius: 10px;
  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: var(--color-border-gray);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
.p-news-list__empty p {
  margin: 0;
}
.p-news-list__pagination {
  --_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);
}
.p-privacy-policy__inner {
  padding-top: 0;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__inner {
    padding-top: 0;
    padding-bottom: 9.375rem;
  }
}
.p-privacy-policy .c-section-heading {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy .c-section-heading {
    margin-bottom: 3.5rem;
  }
}
.p-privacy-policy__section-title {
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__section-title {
    margin-bottom: 5.5rem;
  }
}
.p-privacy-policy__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__wrapper {
    margin-top: 4rem;
    max-width: 57.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-privacy-policy__content {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__content {
    margin-bottom: 3rem;
  }
}
.p-privacy-policy__content:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__title {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  line-height: 1.5;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__title {
    margin-bottom: 0.75rem;
  }
}
.p-privacy-policy__wrap {
  margin-top: 2rem;
}
.p-privacy-policy__text {
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  line-height: 2;
}
.p-rehabilitation {
  overflow: hidden;
}
.p-rehabilitation__heading {
  text-align: center;
  margin-bottom: 2.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__heading {
    margin-bottom: 3.75rem;
  }
}
.p-rehabilitation__heading-en {
  display: block;
  font-family: var(--relize-european-font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #99CE9A;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__heading-en {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
  }
}
.p-rehabilitation__text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8666666667;
  letter-spacing: 0.02em;
  margin-right: -0.02em;
  color: #555;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.02em;
    margin-right: -0.02em;
    margin-bottom: 1.75rem;
  }
}
.p-rehabilitation__text:last-child {
  margin-bottom: 0;
}
.p-rehabilitation__text strong {
  font-weight: 700;
  color: #333;
  background: linear-gradient(transparent 60%, rgba(153, 206, 154, 0.25) 40%);
}
.p-rehabilitation__hero {
  position: relative;
  padding: 5rem 0 3.125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__hero {
    padding: 8.75rem 0 5.625rem;
  }
}
.p-rehabilitation__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-rehabilitation__hero-bg picture,
.p-rehabilitation__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-rehabilitation__hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0.9) 100%);
}
.p-rehabilitation__hero-inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-rehabilitation__hero-catch {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.7272727273;
  letter-spacing: 0.04em;
  margin-right: 0;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__hero-catch {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.625;
    letter-spacing: 0.04em;
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
.p-rehabilitation__hero-catch::after {
  content: "";
  display: block;
  width: 3rem;
  height: 0.1875rem;
  background: linear-gradient(90deg, #99CE9A, #E3D2A1);
  margin: 1.5rem auto 0;
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__hero-catch::after {
    width: 4rem;
    margin-top: 2rem;
  }
}
.p-rehabilitation__hero-body {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__hero-body {
    margin-bottom: 2.5rem;
  }
}
.p-rehabilitation__promise {
  padding: 3.75rem 0;
  background: #fdfbf7;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__promise {
    padding: 6.25rem 0;
  }
}
.p-rehabilitation__promise-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__promise-inner {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
}
.p-rehabilitation__promise-image {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__promise-image {
    flex: 0 0 45%;
    border-radius: 1.5rem;
  }
}
.p-rehabilitation__promise-image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-rehabilitation__promise-body {
  flex: 1;
}
.p-rehabilitation__promise-body .p-rehabilitation__heading-en {
  text-align: left;
}
.p-rehabilitation__promise-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #333;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__promise-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.6923076923;
    letter-spacing: 0.02em;
    margin-right: 0;
    margin-bottom: 1.75rem;
  }
}
.p-rehabilitation__numbers {
  padding: 3rem 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__numbers {
    padding: 4rem 0;
  }
}
.p-rehabilitation__numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 50rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__numbers-grid {
    gap: 2rem;
  }
}
.p-rehabilitation__numbers-item {
  text-align: center;
  padding: 1.25rem 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__numbers-item {
    padding: 1.75rem 1rem;
  }
}
.p-rehabilitation__numbers-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
  height: 60%;
  background: #e8e8e8;
}
.p-rehabilitation__numbers-value {
  display: block;
  font-family: var(--relize-european-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: #99CE9A;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__numbers-value {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
  }
}
.p-rehabilitation__numbers-value small {
  font-size: 0.45em;
  font-weight: 600;
  color: #888;
}
.p-rehabilitation__numbers-label {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4545454545;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #777;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__numbers-label {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5384615385;
    letter-spacing: 0.02em;
    margin-right: 0;
  }
}
.p-rehabilitation__for {
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__for {
    padding: 6.25rem 0;
  }
}
.p-rehabilitation__for-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 56.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__for-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.p-rehabilitation__for-list li {
  background: #fff;
  border: 0.0625rem solid #eee;
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #333;
  box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__for-list li {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7333333333;
    letter-spacing: 0.02em;
    margin-right: 0;
    padding: 1.5rem 1.75rem 1.5rem 4rem;
  }
}
.p-rehabilitation__for-list li:hover {
  box-shadow: 0 0.5rem 2rem rgba(153, 206, 154, 0.15);
  transform: translateY(-0.1875rem);
  border-color: rgba(153, 206, 154, 0.4);
}
.p-rehabilitation__for-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, #99CE9A, #7ab87b);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__for-icon {
    left: 1.375rem;
    width: 2rem;
    height: 2rem;
    border-radius: 0.625rem;
  }
}
.p-rehabilitation__for-icon::after {
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__for-icon::after {
    width: 1rem;
    height: 1rem;
  }
}
.p-rehabilitation__feature {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__feature {
    padding-bottom: 6.25rem;
  }
}
.p-rehabilitation__feature-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: feature;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__feature-container {
    gap: 2rem;
  }
}
.p-rehabilitation__feature-item {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  position: relative;
  border: 0.0625rem solid #f0f0f0;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__feature-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.25rem;
    padding: 2.75rem 3rem;
    border-radius: 1.5rem;
  }
}
.p-rehabilitation__feature-item:hover {
  box-shadow: 0 0.75rem 2.5rem rgba(153, 206, 154, 0.12);
}
.p-rehabilitation__feature-number {
  font-family: var(--relize-european-font);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #99CE9A 0%, #c8e6c9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__feature-number {
    font-size: 4.5rem;
    min-width: 6.25rem;
  }
}
.p-rehabilitation__feature-body {
  flex: 1;
}
.p-rehabilitation__feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #333;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5454545455;
    letter-spacing: 0.02em;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.p-rehabilitation__feature-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #555;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__feature-text {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8666666667;
    letter-spacing: 0.02em;
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
.p-rehabilitation__feature-text strong {
  font-weight: 700;
  color: #333;
}
.p-rehabilitation__feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.p-rehabilitation__feature-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  color: #99CE9A;
  background: rgba(153, 206, 154, 0.1);
  padding: 0.25rem 0.875rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid rgba(153, 206, 154, 0.3);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__feature-tags li {
    font-size: 0.8125rem;
    padding: 0.3125rem 1rem;
  }
}
.p-rehabilitation__anxiety {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__anxiety {
    padding-bottom: 6.25rem;
  }
}
.p-rehabilitation__anxiety-box {
  max-width: 56.25rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #fdfbf7 0%, #f8faf8 100%);
  border-radius: 1.5rem;
  padding: 2.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__anxiety-box {
    padding: 3.5rem 4rem;
    border-radius: 2rem;
  }
}
.p-rehabilitation__anxiety-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, #99CE9A, #E3D2A1, #99CE9A);
}
.p-rehabilitation__anxiety-icon {
  text-align: center;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__anxiety-icon {
    margin-bottom: 1.75rem;
  }
}
.p-rehabilitation__difference {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__difference {
    padding-bottom: 6.25rem;
  }
}
.p-rehabilitation__table-wrap {
  max-width: 56.25rem;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-rehabilitation__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 36.25rem;
}
.p-rehabilitation__table-head {
  padding: 1rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5384615385;
  letter-spacing: 0.04em;
  margin-right: 0;
  color: #888;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table-head {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4666666667;
    letter-spacing: 0.04em;
    margin-right: 0;
  }
}
.p-rehabilitation__table-head--relize {
  background: #99CE9A;
  color: #fff;
  border-radius: 1rem 1rem 0 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.375;
  letter-spacing: 0.06em;
  margin-right: 0;
  font-family: var(--relize-european-font);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table-head--relize {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.06em;
    margin-right: 0;
    border-radius: 1.25rem 1.25rem 0 0;
    padding: 1.5rem 1.5rem;
  }
}
.p-rehabilitation__table-head--other {
  background: #e8e8e8;
  color: #666;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table-head--other {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
.p-rehabilitation__table-label {
  padding: 1rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5384615385;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #555;
  background: #fafafa;
  border-bottom: 0.0625rem solid #eee;
  text-align: left;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table-label {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5714285714;
    letter-spacing: 0.02em;
    margin-right: 0;
    padding: 1.25rem 1.5rem;
  }
}
.p-rehabilitation__table-cell {
  padding: 1rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6923076923;
  letter-spacing: 0.02em;
  margin-right: 0;
  text-align: center;
  border-bottom: 0.0625rem solid #eee;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__table-cell {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7142857143;
    letter-spacing: 0.02em;
    margin-right: 0;
    padding: 1.25rem 1.5rem;
  }
}
.p-rehabilitation__table-cell--relize {
  background: rgba(153, 206, 154, 0.06);
  color: #333;
  font-weight: 600;
  border-left: 0.125rem solid #99CE9A;
  border-right: 0.125rem solid #99CE9A;
}
tr:last-child .p-rehabilitation__table-cell--relize {
  border-bottom: 0.125rem solid #99CE9A;
  border-radius: 0 0 1rem 1rem;
}
@media screen and (min-width: 768px) {
  tr:last-child .p-rehabilitation__table-cell--relize {
    border-radius: 0 0 1.25rem 1.25rem;
  }
}
.p-rehabilitation__table-cell--other {
  background: #fafafa;
  color: #888;
}
.p-rehabilitation__flow {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow {
    padding-bottom: 6.25rem;
  }
}
.p-rehabilitation__flow-list {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.p-rehabilitation__flow-list li {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-list li {
    padding-left: 5rem;
    padding-bottom: 3rem;
  }
}
.p-rehabilitation__flow-list li:last-child {
  padding-bottom: 0;
}
.p-rehabilitation__flow-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.1875rem;
  top: 2.75rem;
  bottom: 0;
  width: 0.125rem;
  background: repeating-linear-gradient(to bottom, #c8e6c9 0, #c8e6c9 0.25rem, transparent 0.25rem, transparent 0.5rem);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-list li:not(:last-child)::before {
    left: 1.4375rem;
    top: 3.25rem;
  }
}
.p-rehabilitation__flow-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #99CE9A, #7ab87b);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0.25rem 0.75rem rgba(153, 206, 154, 0.3);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-list li::after {
    width: 3rem;
    height: 3rem;
  }
}
.p-rehabilitation__flow-list li:nth-child(1) .p-rehabilitation__flow-content::before {
  content: "1";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  font-family: var(--relize-european-font);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-list li:nth-child(1) .p-rehabilitation__flow-content::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }
}
.p-rehabilitation__flow-list li:nth-child(2) .p-rehabilitation__flow-content::before {
  content: "2";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  font-family: var(--relize-european-font);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-list li:nth-child(2) .p-rehabilitation__flow-content::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }
}
.p-rehabilitation__flow-list li:nth-child(3) .p-rehabilitation__flow-content::before {
  content: "3";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  font-family: var(--relize-european-font);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-list li:nth-child(3) .p-rehabilitation__flow-content::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }
}
.p-rehabilitation__flow-list li:nth-child(4) .p-rehabilitation__flow-content::before {
  content: "4";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  font-family: var(--relize-european-font);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-list li:nth-child(4) .p-rehabilitation__flow-content::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }
}
.p-rehabilitation__flow-list li:nth-child(5) .p-rehabilitation__flow-content::before {
  content: "5";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  font-family: var(--relize-european-font);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-list li:nth-child(5) .p-rehabilitation__flow-content::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }
}
.p-rehabilitation__flow-content {
  background: #fff;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.03);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-content {
    padding: 1.75rem 2rem;
    border-radius: 1.25rem;
  }
}
.p-rehabilitation__flow-content strong {
  display: inline;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-content strong {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5555555556;
    letter-spacing: 0.02em;
    margin-right: 0;
  }
}
.p-rehabilitation__flow-content p {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6923076923;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #666;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-content p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7142857143;
    letter-spacing: 0.02em;
    margin-right: 0;
    margin-top: 0.625rem;
  }
}
.p-rehabilitation__flow-sub {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #99CE9A;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-sub {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.5384615385;
    letter-spacing: 0.02em;
    margin-right: 0;
  }
}
.p-rehabilitation__flow-note {
  max-width: 50rem;
  margin: 1.5rem auto 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5384615385;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: #999;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__flow-note {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5714285714;
    letter-spacing: 0.02em;
    margin-right: 0;
    margin-top: 2rem;
  }
}
.p-rehabilitation__faq {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__faq {
    padding-bottom: 6.25rem;
  }
}
.p-rehabilitation__cta {
  margin-bottom: 3.75rem;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta {
    margin-bottom: 6.25rem;
    border-radius: 2rem;
  }
}
.p-rehabilitation__cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-rehabilitation__cta-bg picture,
.p-rehabilitation__cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-rehabilitation__cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.85) 0%, rgba(42, 42, 42, 0.78) 50%, rgba(30, 30, 30, 0.88) 100%);
}
.p-rehabilitation__cta-inner {
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta-inner {
    padding: 5rem 2.5rem;
  }
}
.p-rehabilitation__cta-catch {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6363636364;
  letter-spacing: 0.04em;
  margin-right: 0;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta-catch {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5625;
    letter-spacing: 0.04em;
    margin-right: 0;
    margin-bottom: 1.75rem;
  }
}
.p-rehabilitation__cta-desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.02em;
  margin-right: 0;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.875;
    letter-spacing: 0.02em;
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}
.p-rehabilitation__cta-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem 2rem;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta-price {
    margin-bottom: 2.5rem;
    gap: 0.5rem;
    padding: 1.5rem 3rem;
    border-radius: 1.25rem;
  }
}
.p-rehabilitation__cta-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta-label {
    font-size: 0.875rem;
  }
}
.p-rehabilitation__cta-amount {
  font-family: var(--relize-european-font);
  font-size: 3rem;
  font-weight: 800;
  color: #99CE9A;
  line-height: 1.2;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta-amount {
    font-size: 4rem;
  }
}
.p-rehabilitation__cta-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta-note {
    font-size: 0.8125rem;
  }
}
.p-rehabilitation__cta .c-button__primary {
  background: linear-gradient(135deg, #99CE9A, #7ab87b);
  color: #fff;
  padding: 1.125rem 3.5rem;
  border-radius: 6.25rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(153, 206, 154, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-rehabilitation__cta .c-button__primary {
    font-size: 1.125rem;
    padding: 1.375rem 5rem;
  }
}
.p-rehabilitation__cta .c-button__primary:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 1rem 2.5rem rgba(153, 206, 154, 0.5);
}
.p-sample {
  padding-block: calc(60 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-sample {
    padding-block: calc(80 * var(--to-rem));
  }
}
.p-sample__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(16 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-sample__inner {
    gap: calc(24 * var(--to-rem));
  }
}
.p-sample__title {
  margin-block-start: calc(24 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-sample__title {
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-sample__button-wrap {
  width: min(15rem, 100%);
}
.p-sample__button-wrap > * {
  width: 100%;
}
.p-sample__divider {
  width: 100%;
  height: 1px;
  max-width: calc(600 * var(--to-rem));
  margin: 0;
  border: 0;
  background-color: var(--color-gray);
}
.p-sample__bg {
  width: 100%;
  height: calc(300 * var(--to-rem));
  max-width: calc(600 * var(--to-rem));
  border-radius: 8px;
  background-image: url("../images/bg_sample.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-sample__bg {
    height: calc(400 * var(--to-rem));
  }
}
.p-sample__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: calc(512 * var(--to-rem));
  border-radius: 8px;
}
.p-sample__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100 * var(--to-rem));
  background: linear-gradient(to top, var(--color-white), transparent);
  pointer-events: none;
}
.p-sample__image img {
  display: block;
  width: 100%;
  height: auto;
}
.p-sample p {
  margin: 0;
  color: var(--color-text);
  font-size: calc(14 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-sample p {
    font-size: calc(16 * var(--to-rem));
  }
}
.p-service-information {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-service-information {
    padding: 4rem 0 2.5rem;
  }
}
.p-service-information__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__header {
    margin-bottom: 2.5rem;
  }
}
.p-service-information__notice {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1c5548;
  background: rgba(153, 206, 154, 0.08);
  border: 1px solid rgba(153, 206, 154, 0.4);
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__notice {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
  }
}
.p-service-information__nav {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__nav {
    padding: 1.25rem 2rem;
    margin-bottom: 3.5rem;
  }
}
.p-service-information__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-service-information__nav-list {
    gap: 0.75rem;
  }
}
.p-service-information__nav-item a {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #555;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #e8e8e8;
  transition: all 0.2s ease;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-service-information__nav-item a {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
  }
}
@media (any-hover: hover) {
  .p-service-information__nav-item a:hover {
    background: #1c5548;
    border-color: #1c5548;
    color: #fff;
  }
}
.p-service-information__section {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__section {
    margin-bottom: 4rem;
  }
}
.p-service-information__section-inner {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__section-inner {
    padding: 2.5rem 2.5rem;
  }
}
.p-service-information__heading {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1c5548;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #99CE9A;
}
@media screen and (min-width: 768px) {
  .p-service-information__heading {
    font-size: 1.375rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
  }
}
.p-service-information__heading--center {
  justify-content: center;
  text-align: center;
}
.p-service-information__heading--simple {
  color: #1c1c1c;
  border-bottom-color: #e8e8e8;
}
.p-service-information__heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 0.75rem;
  background: rgba(153, 206, 154, 0.15);
  border-radius: 50%;
}
.p-service-information__heading-icon img {
  width: 1.125rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__heading-icon {
    width: 2.75rem;
    height: 2.75rem;
    margin-right: 1rem;
  }
  .p-service-information__heading-icon img {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.p-service-information__description {
  margin-bottom: 1.5rem;
}
.p-service-information__description p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #444;
}
.p-service-information__description p + p {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__description {
    margin-bottom: 2rem;
  }
  .p-service-information__description p {
    font-size: 0.9375rem;
  }
}
.p-service-information__highlight {
  font-weight: 700;
  background: linear-gradient(transparent 70%, rgba(153, 206, 154, 0.3) 30%);
  padding: 0 0.125rem;
}
.p-service-information__course-note {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  color: #1c5548;
  background: rgba(153, 206, 154, 0.08);
  border-left: 0.1875rem solid #99CE9A;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  margin-top: 1rem !important;
}
@media screen and (min-width: 768px) {
  .p-service-information__course-note {
    font-size: 0.9375rem;
    padding: 0.875rem 1.25rem;
  }
}
.p-service-information__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-service-information__cards--center {
    grid-template-columns: 1fr;
    max-width: 25rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-service-information__card--wide {
    max-width: 25rem;
    margin: 0 auto;
  }
}
.p-service-information__card-inner {
  height: 100%;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (any-hover: hover) {
  .p-service-information__card-inner:hover {
    border-color: #99CE9A;
    box-shadow: 0 0.25rem 1.5rem rgba(153, 206, 154, 0.12);
  }
}
.p-service-information__card-label {
  background: #1c5548;
  color: #fff;
  text-align: center;
  padding: 0.75rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-service-information__card-label {
    font-size: 0.9375rem;
    padding: 0.875rem 0.625rem;
  }
}
.p-service-information__card-label--premium {
  background: linear-gradient(135deg, #1c5548, #2a7a5a);
  position: relative;
}
.p-service-information__card-label--premium::after {
  content: "おすすめ";
  position: absolute;
  top: -0.0625rem;
  right: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  background: #E3D2A1;
  padding: 0.125rem 0.625rem;
  border-radius: 0 0 0.375rem 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__card-label--premium::after {
    font-size: 0.6875rem;
    right: 1rem;
  }
}
.p-service-information__card-content {
  padding: 1.5rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-information__card-content {
    padding: 1.75rem 1.25rem;
  }
}
.p-service-information__time {
  display: inline-block;
  background: rgba(153, 206, 154, 0.1);
  border-radius: 9999px;
  padding: 0.25rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1c5548;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__time {
    font-size: 0.875rem;
  }
}
.p-service-information__price {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1c5548;
  font-family: var(--relize-european-font), sans-serif;
}
@media screen and (min-width: 768px) {
  .p-service-information__price {
    font-size: 2rem;
  }
}
.p-service-information__price-unit {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #888;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__price-unit {
    font-size: 0.875rem;
  }
}
.p-service-information__price-note {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__price-note {
    font-size: 0.8125rem;
  }
}
.p-service-information__price-note strong {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #1c5548;
}
.p-service-information__payment-note {
  margin-top: 1rem;
}
.p-service-information__payment-note p {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #888;
}
.p-service-information__payment-note p + p {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__payment-note {
    margin-top: 1.25rem;
  }
  .p-service-information__payment-note p {
    font-size: 0.75rem;
  }
}
.p-service-information__payment-note--card p {
  display: inline-block;
  background: #fafaf7;
  border-radius: 0.375rem;
  padding: 0.25rem 0.625rem;
  color: #1c5548;
  font-weight: 500;
}
.p-service-information__feature-box {
  background: #fafaf7;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-information__feature-box {
    padding: 1.75rem;
    margin-bottom: 2rem;
  }
}
.p-service-information__feature-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  color: #1c5548;
}
.p-service-information__feature-text + .p-service-information__feature-text {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__feature-text {
    font-size: 0.9375rem;
  }
}
.p-service-information__contact-btn {
  text-align: center;
}
.p-service-information__contact-btn a {
  display: inline-block;
  background: #1c5548;
  color: #fff;
  border-radius: 9999px;
  padding: 0.875rem 2.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-service-information__contact-btn a {
    padding: 1rem 3rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-service-information__contact-btn a:hover {
    background: #2a7a5a;
  }
}
.p-service-information__payment-info .p-service-information__section-inner {
  background: #fafaf7;
  border-color: #e8e8e8;
}
.p-service-information__info-box {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__info-box {
    padding: 1.75rem;
  }
}
.p-service-information__info-content {
  margin-bottom: 1.5rem;
}
.p-service-information__info-content p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #444;
}
.p-service-information__info-content p + p {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__info-content {
    margin-bottom: 1.75rem;
  }
  .p-service-information__info-content p {
    font-size: 0.9375rem;
  }
}
.p-service-information__validity {
  background: rgba(153, 206, 154, 0.06);
  border: 1px solid rgba(153, 206, 154, 0.25);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__validity {
    padding: 1.5rem;
  }
}
.p-service-information__validity-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1c5548;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-service-information__validity-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.p-service-information__validity-list li {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
  padding-left: 1.125rem;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-service-information__validity-list li {
    font-size: 0.875rem;
  }
}
.p-service-information__validity-list li::before {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  background: #99CE9A;
  border-radius: 50%;
  left: 0;
  top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__validity-list li::before {
    top: 0.625rem;
  }
}
.p-service-information__validity-list li + li {
  margin-top: 0.5rem;
}
.p-service-information__recommend .p-service-information__section-inner {
  background: #fafaf7;
  border-color: transparent;
}
.p-service-information__recommend-title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.p-service-information__recommend-title h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1c5548;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-service-information__recommend-title h2 {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-service-information__recommend-title {
    margin-bottom: 2rem;
  }
}
.p-service-information__recommend-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-service-information__recommend-list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.75rem;
  }
}
.p-service-information__recommend-item {
  border: 1px solid rgba(153, 206, 154, 0.4);
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1c5548;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-information__recommend-item {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
}
.p-service-information__goods .p-service-information__section-inner {
  overflow: hidden;
}
.p-service-information__top-pick {
  display: inline-block;
  background: #E3D2A1;
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.125rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__top-pick {
    font-size: 0.75rem;
  }
}
.p-service-information__goods-container {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__goods-container {
    margin-top: 2.25rem;
  }
}
.p-service-information__goods-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__goods-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.p-service-information__goods-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (any-hover: hover) {
  .p-service-information__goods-item:hover {
    border-color: #99CE9A;
    box-shadow: 0 0.25rem 1.5rem rgba(153, 206, 154, 0.12);
  }
}
.p-service-information__goods-image {
  width: 100%;
  height: 11.25rem;
  overflow: hidden;
}
.p-service-information__goods-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-service-information__goods-image {
    height: 12.5rem;
  }
}
.p-service-information__goods-info {
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-information__goods-info {
    padding: 1.25rem;
  }
}
.p-service-information__goods-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__goods-title {
    font-size: 0.9375rem;
  }
}
.p-service-information__goods-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1c5548;
  font-family: var(--relize-european-font), sans-serif;
}
@media screen and (min-width: 768px) {
  .p-service-information__goods-price {
    font-size: 1.25rem;
  }
}
.p-service-information__footer {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__footer {
    margin-top: 4rem;
  }
}
.p-service-information__cta {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-information__cta {
    margin-top: 2rem;
  }
}
.p-service-information__cta-btn {
  display: inline-block;
  background: #1c5548;
  color: #fff;
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-service-information__cta-btn {
    padding: 1.125rem 3.5rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-service-information__cta-btn:hover {
    background: #2a7a5a;
  }
}
.p-service {
  padding: 3rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding: 5rem 0;
  }
}
.p-service__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-service__heading {
    margin-bottom: 3rem;
  }
}
.p-service__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1c1c1c;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    font-size: 1.75rem;
  }
}
.p-service__container--image {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-service__container--image {
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
    gap: 1.5rem;
  }
}
.p-service__container--image img {
  border-radius: 0.75rem;
}
.p-service__content {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-service__content {
    margin-top: 3.5rem;
  }
}
.p-service__content > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__content > div {
    grid-template-columns: 25rem 1fr;
    gap: 5rem;
    align-items: start;
  }
}
.p-service__image--mt {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-service__image--mt {
    margin-top: 0;
  }
}
.p-service__image--mt img {
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__desc {
    max-width: 25rem;
  }
}
.p-service__title--small {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1c1c1c;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-service__title--small {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.p-service__title--xs {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__title--xs {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
  }
}
.p-service__textarea {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__textarea {
    margin-bottom: 2rem;
  }
}
.p-service__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    font-size: 0.9375rem;
  }
}
.p-service__price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fafaf7;
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.p-service__text--small {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
}
@media screen and (min-width: 768px) {
  .p-service__text--small {
    font-size: 0.875rem;
  }
}
.p-service__text--small strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c5548;
  display: inline-block;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__text--small strong {
    font-size: 1.5rem;
  }
}
.p-service__definition {
  margin-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-service__definition {
    font-size: 0.875rem;
  }
}
.p-service__definition dt {
  font-weight: 600;
  color: #1c5548;
  margin-top: 0.75rem;
}
.p-service__definition dt:first-child {
  margin-top: 0;
}
.p-service__definition dt dfn {
  font-style: normal;
}
.p-service__definition dd {
  color: #444;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}
.p-single {
  padding-top: 2rem;
  padding-bottom: 3rem;
  min-width: 0;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-single {
    padding-top: 1.5rem;
    padding-bottom: 6.25rem;
  }
}
.p-single__head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .p-single__head {
    margin-bottom: 2.25rem;
    padding-bottom: 1.75rem;
  }
}
.p-single__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1c1c1c;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-single__title {
    font-size: 1.625rem;
    line-height: 1.55;
  }
}
.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single__meta {
    gap: 0.875rem;
    margin-bottom: 0.875rem;
  }
}
.p-single__date {
  font-size: 0.8125rem;
  color: #999;
  font-family: var(--relize-european-font);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-single__date {
    font-size: 0.875rem;
  }
}
.p-single__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.p-single__category-item {
  display: inline-block;
  padding: 0.125rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  border-radius: 0.25rem;
  background: #99CE9A;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-single__category-item {
    font-size: 0.75rem;
    padding: 0.1875rem 0.875rem;
  }
}
.p-single__category-item:hover {
  opacity: 0.8;
}
.p-single__thumbnail {
  margin-bottom: 1.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-single__thumbnail {
    margin-bottom: 2.25rem;
    border-radius: 0.75rem;
  }
}
.p-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.p-single__featured-image {
  margin-bottom: 1.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-single__featured-image {
    margin-bottom: 2.25rem;
    border-radius: 0.75rem;
  }
}
.p-single__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-single__body {
  margin-bottom: 2.5rem;
  max-width: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-single__body {
    margin-bottom: 4rem;
  }
}
.p-single__content, .p-single__description {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow-x: hidden;
}
.p-single__content #toc_container, .p-single__description #toc_container {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  background: #fafafa;
  border: 1px solid #eee;
}
.p-single__content #toc_container p.toc_title + ul.toc_list,
.p-single__content #toc_container ul ul, .p-single__description #toc_container p.toc_title + ul.toc_list,
.p-single__description #toc_container ul ul {
  box-shadow: none;
}
.p-single__content .wp-block-button__link, .p-single__description .wp-block-button__link {
  font-weight: 700;
  padding: 0.625rem 1.25rem;
}
.p-single__content .wp-block-buttons.has-custom-font-size .wp-block-button__link, .p-single__description .wp-block-buttons.has-custom-font-size .wp-block-button__link {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-single__content .wp-block-buttons.has-custom-font-size .wp-block-button__link, .p-single__description .wp-block-buttons.has-custom-font-size .wp-block-button__link {
    font-size: 0.875rem;
  }
}
.p-single__content a:not(.toc_list a, .wp-block-button__link, .c-banner a), .p-single__description a:not(.toc_list a, .wp-block-button__link, .c-banner a) {
  color: #1c5548;
  text-decoration: underline;
  font-weight: 500;
  text-underline-offset: 0.1875rem;
  display: inline;
  font-size: 0.875rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .p-single__content a:not(.toc_list a, .wp-block-button__link, .c-banner a), .p-single__description a:not(.toc_list a, .wp-block-button__link, .c-banner a) {
    font-size: 0.9375rem;
  }
}
.p-single__content a:not(.toc_list a, .wp-block-button__link, .c-banner a):hover, .p-single__description a:not(.toc_list a, .wp-block-button__link, .c-banner a):hover {
  color: #99CE9A;
}
.p-single__content iframe, .p-single__description iframe {
  width: 100%;
  height: 17.5rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__content iframe, .p-single__description iframe {
    height: 26.25rem;
  }
}
.p-single__content h2, .p-single__description h2 {
  font-size: 1rem;
  line-height: 1.6;
  margin-block-start: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1c5548;
  background: #eef6ee;
  border-left: 0.25rem solid #99CE9A;
  border-radius: 0 0.25rem 0.25rem 0;
  padding: 0.625rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-single__content h2, .p-single__description h2 {
    margin-block-start: 3.25rem;
    font-size: 1.25rem;
    padding: 0.75rem 1.25rem;
  }
}
.p-single__content h3, .p-single__description h3 {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-block-start: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  border-left: 0.1875rem solid #E3D2A1;
  padding: 0.25rem 0.75rem 0.25rem 1rem;
  color: #1c1c1c;
}
@media screen and (min-width: 768px) {
  .p-single__content h3, .p-single__description h3 {
    margin-block-start: 2.5rem;
    font-size: 1.125rem;
  }
}
.p-single__content h4, .p-single__description h4 {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-block-start: 1.5rem;
  margin-bottom: 0.625rem;
  font-weight: 700;
  color: #1c1c1c;
}
@media screen and (min-width: 768px) {
  .p-single__content h4, .p-single__description h4 {
    margin-block-start: 2rem;
    font-size: 1rem;
  }
}
.p-single__content h5, .p-single__description h5 {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-single__content h5, .p-single__description h5 {
    font-size: 0.9375rem;
  }
}
.p-single__content h6, .p-single__description h6 {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #555;
}
@media screen and (min-width: 768px) {
  .p-single__content h6, .p-single__description h6 {
    font-size: 0.875rem;
  }
}
.p-single__content p, .p-single__description p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-size: 0.875rem;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .p-single__content p, .p-single__description p {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.p-single__content p:has(> img:only-child), .p-single__description p:has(> img:only-child) {
  margin-top: 0;
  margin-bottom: 0;
}
.p-single__content strong, .p-single__description strong {
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(153, 206, 154, 0.3) 40%);
}
.p-single__content .wp-block-quote,
.p-single__content blockquote, .p-single__description .wp-block-quote,
.p-single__description blockquote {
  position: relative;
  background: #f9fbf9;
  border-left: 0.1875rem solid #99CE9A;
  border-radius: 0 0.375rem 0.375rem 0;
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__content .wp-block-quote,
  .p-single__content blockquote, .p-single__description .wp-block-quote,
  .p-single__description blockquote {
    padding: 1.5rem 2rem;
  }
}
.p-single__content .wp-block-quote p,
.p-single__content blockquote p, .p-single__description .wp-block-quote p,
.p-single__description blockquote p {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-single__content .wp-block-quote p,
  .p-single__content blockquote p, .p-single__description .wp-block-quote p,
  .p-single__description blockquote p {
    font-size: 0.875rem;
  }
}
.p-single__content .wp-block-quote p:first-child,
.p-single__content blockquote p:first-child, .p-single__description .wp-block-quote p:first-child,
.p-single__description blockquote p:first-child {
  margin-top: 0;
}
.p-single__content .wp-block-quote cite,
.p-single__content blockquote cite, .p-single__description .wp-block-quote cite,
.p-single__description blockquote cite {
  display: block;
  font-size: 0.6875rem;
  text-align: right;
  color: #999;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single__content .wp-block-quote cite,
  .p-single__content blockquote cite, .p-single__description .wp-block-quote cite,
  .p-single__description blockquote cite {
    font-size: 0.75rem;
  }
}
.p-single__content .wp-block-pullquote, .p-single__description .wp-block-pullquote {
  padding: 0;
}
.p-single__content ul:not(#toc_container ul), .p-single__description ul:not(#toc_container ul) {
  margin-block: 1.25rem;
  list-style: none;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__content ul:not(#toc_container ul), .p-single__description ul:not(#toc_container ul) {
    padding: 1.5rem 1.75rem 1.5rem 2rem;
  }
}
.p-single__content ul:not(#toc_container ul) li, .p-single__description ul:not(#toc_container ul) li {
  position: relative;
  padding-left: 1.25rem;
}
.p-single__content ul:not(#toc_container ul) li::before, .p-single__description ul:not(#toc_container ul) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #99CE9A;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-single__content ul:not(#toc_container ul) li::before, .p-single__description ul:not(#toc_container ul) li::before {
    top: 0.6875rem;
  }
}
.p-single__content ol:not(#toc_container ol), .p-single__description ol:not(#toc_container ol) {
  margin-block: 1.25rem;
  list-style: none;
  counter-reset: ol-counter;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__content ol:not(#toc_container ol), .p-single__description ol:not(#toc_container ol) {
    padding: 1.5rem 1.75rem 1.5rem 2rem;
  }
}
.p-single__content ol:not(#toc_container ol) li, .p-single__description ol:not(#toc_container ol) li {
  position: relative;
  padding-left: 1.75rem;
  counter-increment: ol-counter;
}
.p-single__content ol:not(#toc_container ol) li::before, .p-single__description ol:not(#toc_container ol) li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #99CE9A;
  color: #fff;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--relize-european-font);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-single__content ol:not(#toc_container ol) li::before, .p-single__description ol:not(#toc_container ol) li::before {
    top: 0.3125rem;
  }
}
.p-single__content ul:not(#toc_container ul, #toc_container ol),
.p-single__content ol:not(#toc_container ul, #toc_container ol), .p-single__description ul:not(#toc_container ul, #toc_container ol),
.p-single__description ol:not(#toc_container ul, #toc_container ol) {
  background: #fafaf7;
  border-radius: 0.5rem;
  border: 1px solid #eee;
}
.p-single__content li, .p-single__description li {
  line-height: 1.9;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-single__content li, .p-single__description li {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
}
.p-single__content li:last-child, .p-single__description li:last-child {
  margin-bottom: 0;
}
.p-single__content dl, .p-single__description dl {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-single__content dl, .p-single__description dl {
    font-size: 0.875rem;
  }
}
.p-single__content dt, .p-single__description dt {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  color: #1c1c1c;
}
@media screen and (min-width: 768px) {
  .p-single__content dt, .p-single__description dt {
    font-size: 0.875rem;
  }
}
.p-single__content dd, .p-single__description dd {
  margin-bottom: 1rem;
  margin-left: 1rem;
  font-size: 0.8125rem;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-single__content dd, .p-single__description dd {
    font-size: 0.875rem;
  }
}
.p-single__content dd:last-child, .p-single__description dd:last-child {
  margin-bottom: 0;
}
.p-single__content img, .p-single__description img {
  margin-block: 1.25rem;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__content img, .p-single__description img {
    margin-block: 1.75rem;
  }
}
.p-single__content .wp-block-table,
.p-single__content figure:has(table), .p-single__description .wp-block-table,
.p-single__description figure:has(table) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.p-single__content table, .p-single__description table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
@media screen and (min-width: 768px) {
  .p-single__content table, .p-single__description table {
    font-size: 0.8125rem;
  }
}
.p-single__content table th, .p-single__description table th {
  background: #eef6ee;
  padding: 0.625rem 0.875rem;
  border: 1px solid #e0e0e0;
  font-weight: 700;
  text-align: left;
  color: #1c5548;
  word-wrap: break-word;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-single__content table th, .p-single__description table th {
    padding: 0.75rem 1rem;
  }
}
.p-single__content table td, .p-single__description table td {
  padding: 0.625rem 0.875rem;
  border: 1px solid #e8e8e8;
  color: #444;
  word-wrap: break-word;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-single__content table td, .p-single__description table td {
    padding: 0.75rem 1rem;
  }
}
.p-single__content table tbody, .p-single__description table tbody {
  background: #fff;
}
.p-single__content table tbody tr:nth-child(even), .p-single__description table tbody tr:nth-child(even) {
  background: #fafafa;
}
.p-single__content .p-faq__text, .p-single__description .p-faq__text {
  margin-top: 0;
  margin-bottom: 0;
}
.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .p-single__tags {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
  }
}
.p-single__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  padding: 0.25rem 0.875rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-single__tag {
    font-size: 0.8125rem;
    padding: 0.3125rem 1rem;
  }
}
.p-single__tag:hover {
  border-color: #99CE9A;
  color: #1c5548;
}
.p-single__tag--custom {
  background: #f8f8f8;
  cursor: default;
}
.p-single__tag--custom:hover {
  border-color: #ddd;
  color: #666;
}
.p-single__foot {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .p-single__foot {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
  }
}
.p-single__prev {
  width: 27.5%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-single__prev {
    width: 25%;
  }
}
.p-single__prev a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1c5548;
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--relize-european-font);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-single__prev a {
    font-size: 0.875rem;
    padding-left: 1.75rem;
  }
}
.p-single__prev a::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3csvg%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='14'%20cy='14'%20r='13.5'%20transform='rotate(180%2014%2014)'%20stroke='%231C5548'/%3e%3cpath%20d='M16.625%2019.25L11.375%2014l5.25-5.25'%20stroke='%231C5548'%20stroke-width='1.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-single__prev a::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-single__prev a:hover {
  color: #99CE9A;
}
.p-single__archive {
  width: 45%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single__archive {
    width: 50%;
  }
}
.p-single__archive a {
  font-size: 0.8125rem;
  font-family: var(--relize-european-font);
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-single__archive a {
    font-size: 0.875rem;
  }
}
.p-single__next {
  width: 27.5%;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-single__next {
    width: 25%;
  }
}
.p-single__next a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1c5548;
  position: relative;
  padding-right: 1.5rem;
  font-family: var(--relize-european-font);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-single__next a {
    font-size: 0.875rem;
    padding-right: 1.75rem;
  }
}
.p-single__next a::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3csvg%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='14'%20cy='14'%20r='13.5'%20stroke='%231C5548'/%3e%3cpath%20d='M11.375%208.75l5.25%205.25-5.25%205.25'%20stroke='%231C5548'%20stroke-width='1.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-single__next a::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-single__next a:hover {
  color: #99CE9A;
}
.p-single__author {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #fafafa;
  border-radius: 0.75rem;
  border: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .p-single__author {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    padding: 2rem;
  }
}
.p-single__author-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single__author-inner {
    gap: 1.25rem;
  }
}
.p-single__author-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single__author-header {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}
.p-single__author-icon {
  flex-shrink: 0;
}
.p-single__author-icon img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.125rem solid #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .p-single__author-icon img {
    width: 5rem;
    height: 5rem;
  }
}
.p-single__author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-single__author-info {
    align-items: flex-start;
  }
}
.p-single__author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c1c;
}
@media screen and (min-width: 768px) {
  .p-single__author-name {
    font-size: 1.125rem;
  }
}
.p-single__author-position {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.125rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-single__author-position {
    font-size: 0.8125rem;
  }
}
.p-single__author-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c1c;
}
@media screen and (min-width: 768px) {
  .p-single__author-title {
    font-size: 1.125rem;
  }
}
.p-single__author-profile {
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #555;
}
@media screen and (min-width: 768px) {
  .p-single__author-profile {
    font-size: 0.875rem;
  }
}
.p-single__author-booking {
  margin-top: 0.5rem;
  text-align: center;
}
.p-recommend {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #eee;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-recommend {
    margin-top: 4rem;
    padding-top: 3rem;
  }
}
.p-recommend__title {
  font-family: var(--relize-european-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.p-recommend__slider {
  padding-bottom: 1rem;
}
.p-recommend__slider .splide__slide {
  height: auto;
}
.p-recommend__slider .splide__arrow {
  background: #fff;
  border: 1px solid #e0e0e0;
  width: 2.25rem;
  height: 2.25rem;
  opacity: 1;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-recommend__slider .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-recommend__slider .splide__arrow svg {
  fill: #1c5548;
  width: 0.875rem;
  height: 0.875rem;
}
.p-recommend__slider .splide__arrow:hover {
  border-color: #99CE9A;
  background: #f8faf8;
}
.p-recommend__slider .splide__pagination__page {
  width: 0.5rem;
  height: 0.5rem;
  background: #ddd;
  opacity: 1;
  margin: 0 0.25rem;
}
.p-recommend__slider .splide__pagination__page.is-active {
  background: #99CE9A;
  transform: scale(1);
}
.p-thanks__inner {
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-thanks__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-thanks__wrapper {
  height: calc(100vh - 28.125rem);
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-thanks__wrapper {
    height: calc(100vh - 28.125rem);
    min-height: 33.75rem;
  }
}
.p-thanks__wrapper:after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  max-width: 37.5rem;
  height: 3.75rem;
  background-image: url(../images/common/404.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  inset: 0;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-thanks__wrapper:after {
    top: 10%;
    max-width: 58.8125rem;
    height: 11.25rem;
  }
}
.p-thanks__heading {
  font-size: 2rem;
  font-family: var(--relize-european-font);
  color: #808080;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-thanks__heading {
    font-size: 4.0625rem;
  }
}
.p-thanks__head {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-thanks__head {
    margin-bottom: 2.5rem;
  }
}
.p-thanks__body {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-thanks__body {
    text-align: center;
  }
}
.p-thanks__foot {
  margin-top: 2.5rem;
  text-align: center;
}
.p-thanks__foot a {
  border: solid 1px #000000;
  display: inline-block;
  text-align: center;
  padding: 0.75rem 6.25rem;
  font-size: 1rem;
  font-family: var(--relize-european-font);
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-thanks__foot a {
    padding: 1.25rem 8.75rem;
    font-size: 1.25rem;
    transition: 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .p-thanks__foot a:hover {
    background: #000;
    color: #fff;
  }
}
.p-thanks__title {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #808080;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-thanks__title {
    font-size: 1.625rem;
  }
}
.p-thanks__text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  line-height: 1.75;
  font-weight: 400;
  color: #4D4D4D;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    font-size: 1rem;
  }
}
.p-top-news {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding: 5rem 0 9.375rem;
  }
}
.p-top-news .c-section-heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-news .c-section-heading {
    margin-bottom: 3rem;
  }
}
.p-top-news__textarea {
  text-align: center;
}
.p-top-news__btn {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-news__btn {
    margin-top: 3rem;
  }
}
.p-top-news__contents {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__contents {
    padding: 4rem;
  }
}
.p-top-news__content {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EFEFEF;
}
.p-top-news__content:last-child {
  border-bottom: none;
}
.p-top-news__content a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-news__content a {
    gap: 2.125rem;
    grid-template-columns: 13.75rem 1fr;
    padding: 1rem 0;
  }
}
.p-top-news__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-news__meta {
    gap: 2rem;
  }
}
.p-top-news__time {
  font-family: var(--relize-european-font);
  color: #999999;
  font-size: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-top-news__time {
    margin-right: 0;
    width: 5.625rem;
  }
}
.p-top-news__cat {
  display: inline-block;
  padding: 0.1875rem 0.75rem 0.1875rem;
  font-weight: 500;
  color: #fff;
  background: #76a685;
  border-radius: 9999px;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top-news__cat {
    font-size: 0.875rem;
  }
}
.p-top-news__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 1rem;
  font-weight: 700;
  padding-right: 2.5rem;
  position: relative;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-top-news__title {
    padding-right: 3rem;
    -webkit-line-clamp: 1;
  }
}
.p-top-news__title::after {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='14'%20cy='14'%20r='13.5'%20stroke='%2376A685'/%3e%3cpath%20d='M11.375%208.75l5.25%205.25-5.25%205.25'%20stroke='%2376A685'%20stroke-width='1.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-top-news__title::after {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.p-user-voice {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-user-voice {
    padding: 5rem 0;
  }
}
.p-user-voice .l-inner {
  max-width: 60rem;
}
.p-user-voice__heading.--visiblity-hidden {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: -999;
  height: 0;
  width: 0;
  top: -100%;
  left: -100%;
}
.p-user-voice__lead {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-user-voice__lead {
    margin-bottom: 3.5rem;
  }
}
.p-user-voice__text {
  font-size: 0.875rem;
  line-height: 2;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-user-voice__text {
    font-size: 0.9375rem;
  }
}
.p-user-voice__text + .p-user-voice__text {
  margin-top: 0.75rem;
}
.p-user-voice__text--xl {
  font-size: 0.875rem;
  line-height: 2;
  color: #444;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-user-voice__text--xl {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}
.p-user-voice__text--xl:last-child {
  margin-bottom: 0;
}
.p-user-voice__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-user-voice__container {
    gap: 2rem;
  }
}
.p-user-voice__item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.p-user-voice__item:hover {
  box-shadow: 0 0.5rem 2rem rgba(153, 206, 154, 0.12);
}
.p-user-voice__header {
  padding: 1.25rem 1.25rem 1rem;
  background: #fafaf7;
}
@media screen and (min-width: 768px) {
  .p-user-voice__header {
    padding: 1.75rem 2rem 1.5rem;
  }
}
.p-user-voice__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-user-voice__profile {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-user-voice__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 0.125rem solid #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .p-user-voice__avatar {
    width: 5rem;
    height: 5rem;
  }
}
.p-user-voice__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-user-voice__info {
  flex: 1;
  min-width: 0;
}
.p-user-voice__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-user-voice__name {
    font-size: 1rem;
  }
}
.p-user-voice__age-gender {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-user-voice__age-gender {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }
}
.p-user-voice__age {
  font-weight: 600;
  color: #666;
  margin-right: 0.25rem;
}
.p-user-voice__gender {
  color: #888;
}
.p-user-voice__experience {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #1c5548;
  background: rgba(153, 206, 154, 0.15);
  display: inline-block;
  padding: 0.1875rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-user-voice__experience {
    font-size: 0.75rem;
  }
}
.p-user-voice__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1c5548;
  line-height: 1.6;
  position: relative;
  padding-left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-user-voice__title {
    font-size: 1.0625rem;
  }
}
.p-user-voice__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 0.1875rem;
  background: #99CE9A;
  border-radius: 0.125rem;
}
.p-user-voice__body {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-user-voice__body {
    padding: 1.5rem 2rem 1.75rem;
  }
}
.p-voice-page {
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .p-voice-page {
    padding: 6.25rem 0;
  }
}
.p-voice-page__heading {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-voice-page__heading {
    margin-bottom: 3.5rem;
  }
}
.p-voice-page__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  margin-left: 5rem;
}
@media screen and (min-width: 768px) {
  .p-voice-page__container {
    margin-left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.p-voice-page__content {
  background: #FAFAFA;
  padding: 1.5rem 0.9375rem;
}
.p-voice-page__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-voice-page__images {
    margin-top: 1rem;
  }
}
.p-voice-page__list {
  margin-top: 0.75rem;
}
.p-voice-page__list > * + * {
  margin-top: 0.25rem;
}
.p-voice-page__list > div {
  display: grid;
  grid-template-columns: 5.9375rem 1fr;
  gap: 1.5rem;
}
.p-voice-page__term {
  display: inline-block;
  padding: 0.125rem 0.25rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1666666667;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  background: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-voice-page__term {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.1428571429;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-voice-page__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-voice-page__desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-voice-page__title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-voice-page__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-voice-page__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-voice-page__text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}
.p-welfare-benefits {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits {
    padding: 4rem 0;
  }
}
.p-welfare-benefits__text--xl {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  color: #444;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__text--xl {
    font-size: 0.9375rem;
  }
}
.p-welfare-benefits__heading {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1c5548;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #99CE9A;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
  }
}
.p-welfare-benefits__description {
  margin-bottom: 2.25rem;
  line-height: 2;
  color: #444;
  background: #fafaf7;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__description {
    margin-bottom: 3rem;
    padding: 1.75rem 2rem;
  }
}
.p-welfare-benefits__description p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__description p {
    font-size: 0.9375rem;
  }
}
.p-welfare-benefits__section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__section {
    margin-bottom: 3rem;
    padding: 2rem 2.25rem;
  }
}
.p-welfare-benefits__section p:not(.p-welfare-benefits__price, .p-welfare-benefits__text--xl, .p-welfare-benefits__price-note, .p-welfare-benefits__price-unit) {
  line-height: 2;
  margin-bottom: 1rem;
  color: #444;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__section p:not(.p-welfare-benefits__price, .p-welfare-benefits__text--xl, .p-welfare-benefits__price-note, .p-welfare-benefits__price-unit) {
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
  }
}
.p-welfare-benefits__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 0.875rem;
  color: #1c5548;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-left: 1rem;
  }
}
.p-welfare-benefits__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  bottom: 0.125rem;
  width: 0.1875rem;
  background: #99CE9A;
  border-radius: 0.125rem;
}
.p-welfare-benefits__subtitle {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.75rem 0 1rem;
  color: #1c5548;
  position: relative;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__subtitle {
    font-size: 1.0625rem;
    margin: 2rem 0 1.25rem;
  }
}
.p-welfare-benefits__subtitle::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 0.125rem;
  background: #99CE9A;
  margin-top: 0.5rem;
  border-radius: 0.0625rem;
}
.p-welfare-benefits__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__cards--center {
    grid-template-columns: 1fr;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-welfare-benefits__card {
  border: 1px solid #e8e8e8;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (any-hover: hover) {
  .p-welfare-benefits__card:hover {
    border-color: #99CE9A;
    box-shadow: 0 0.25rem 1.5rem rgba(153, 206, 154, 0.12);
  }
}
.p-welfare-benefits__card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.p-welfare-benefits__card-label {
  background: #1c5548;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__card-label {
    font-size: 0.9375rem;
    padding: 0.875rem 1.25rem;
  }
}
.p-welfare-benefits__card-content {
  padding: 1.25rem;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__card-content {
    padding: 1.5rem;
  }
}
.p-welfare-benefits__price {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1c5548;
  font-family: var(--relize-european-font), sans-serif;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__price {
    font-size: 2rem;
    margin-bottom: 0.625rem;
  }
}
.p-welfare-benefits__price-note {
  text-align: center;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  color: #666;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__price-note {
    font-size: 0.875rem;
  }
}
.p-welfare-benefits__price-unit {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.25rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__price-unit {
    font-size: 0.8125rem;
  }
}
.p-welfare-benefits__time-note {
  font-size: 0.8125rem;
  color: #1c5548;
  margin: 1rem 0 0;
  background: rgba(153, 206, 154, 0.06);
  border: 1px solid rgba(153, 206, 154, 0.25);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__time-note {
    font-size: 0.875rem;
    margin: 1.25rem 0 0;
    padding: 0.875rem 1.5rem;
  }
}
.p-welfare-benefits__contract-note {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0.5rem 0 0.75rem;
  text-align: center;
  color: #1c5548;
}
@media screen and (min-width: 768px) {
  .p-welfare-benefits__contract-note {
    font-size: 0.9375rem;
    margin: 0.625rem 0 1rem;
  }
}
.p-works-list {
  padding-block: calc(48 * var(--to-rem)) calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-works-list {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
  }
}
.p-works-list__filter {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
  margin-block-start: calc(32 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-works-list__filter {
    gap: calc(12 * var(--to-rem));
  }
}
.p-works-list__filter-btn {
  padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: transparent;
  color: var(--color-text);
  font-family: inherit;
  font-size: calc(14 * var(--to-rem));
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-works-list__filter-btn {
    padding: calc(10 * var(--to-rem)) calc(24 * var(--to-rem));
    font-size: calc(15 * var(--to-rem));
  }
}
@media (any-hover: hover) {
  .p-works-list__filter-btn:hover:not(.is-active) {
    border-color: var(--color-border);
    background-color: var(--color-gray);
  }
}
.p-works-list__filter-btn.is-active {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-white);
}
.p-works-list__grid {
  --_card-widht: calc(320 * var(--to-rem));
  display: grid;
  gap: calc(24 * var(--to-rem));
  margin-block-start: calc(24 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-works-list__grid {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--_card-widht), 100%), 1fr));
    gap: calc(32 * var(--to-rem));
    margin-block-start: calc(32 * var(--to-rem));
  }
}
.p-works-list__card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (any-hover: hover) {
  .p-works-list__card:hover .p-works-list__thumbnail img {
    scale: 1.05;
  }
}
.p-works-list__link {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
}
.p-works-list__thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-works-list__thumbnail img {
  transition: scale 0.4s ease;
}
.p-works-list__badge {
  position: absolute;
  top: calc(12 * var(--to-rem));
  left: calc(12 * var(--to-rem));
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 4px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: calc(12 * var(--to-rem));
  font-weight: var(--fw-medium);
}
.p-works-list__content {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: calc(8 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
}
.p-works-list__card-title {
  color: var(--color-text);
  font-size: calc(16 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-works-list__card-title {
    font-size: calc(18 * var(--to-rem));
  }
}
.p-works-list__client {
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(12 * var(--to-rem));
}
@media screen and (min-width: 768px) {
  .p-works-list__client {
    font-size: calc(13 * var(--to-rem));
  }
}
.p-works-list__date {
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(12 * var(--to-rem));
}
.p-works-list__empty {
  padding-block: calc(60 * var(--to-rem));
  color: oklch(from var(--color-text) l c h/70%);
  font-size: calc(16 * var(--to-rem));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-works-list__empty {
    padding-block: calc(80 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}
/* エラーメッセージの上部を消去 */
div.screen-reader-response {
  display: none;
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7-form-control-wrap {
  display: block;
}
span.wpcf7-list-item {
  margin: 0 30px 0 0;
  /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-list-item-label {
  cursor: pointer;
  /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px;
  /* 項目のフォントサイズ */
}
input[type=checkbox] {
  opacity: 0;
  /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #cccccc;
  background: #fff;
  content: "";
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  position: relative;
  top: 4px;
  vertical-align: middle;
  width: 20px;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAJeUExURUdwTBwcHB0dHR4eHh4eHh4eHh4eHh0dHR4eHh0dHR4eHh4eHh4eHh0dHRwcHB8fHwAAAB0dHR0dHR4eHh4eHh4eHh8fHx0dHR4eHh0dHSQkJBwcHB0dHR4eHh0dHSEhIR0dHR4eHh4eHh0dHR4eHh4eHhwcHB4eHh4eHhkZGTMzMx4eHh0dHR4eHh0dHR8fHx4eHh4eHh4eHh4eHh0dHR0dHR4eHh8fHxwcHB0dHSQkJB4eHh4eHh0dHR0dHR4eHh0dHR4eHh4eHh4eHh4eHh4eHh4eHh4eHhoaGh4eHh0dHRwcHB0dHR4eHh0dHRsbGx4eHh0dHR0dHRwcHB8fHx4eHhsbGx4eHhwcHB4eHh8fHx4eHh0dHR0dHR4eHh4eHh0dHR0dHR0dHR4eHicnJx0dHR8fHwAAAB4eHhwcHB4eHh0dHR4eHh4eHgAAAB4eHh4eHh0dHR0dHR0dHR4eHh4eHh0dHR4eHh4eHh0dHRwcHB4eHh4eHh4eHioqKh0dHR0dHRwcHBwcHBwcHB0dHR0dHR0dHR8fHx0dHR4eHh8fHx8fHx0dHR0dHR0dHR0dHR8fHx0dHSEhIR0dHR4eHh0dHR0dHR0dHR4eHh4eHh0dHR0dHRoaGh4eHh0dHR4eHh4eHhoaGiAgIB4eHh8fHxwcHB0dHR4eHh0dHRMTEx0dHR4eHh0dHRsbGx0dHR4eHh4eHh0dHR4eHh4eHh4eHh0dHRwcHB4eHh0dHSAgIB8fHx4eHh4eHiIiIh4eHh4eHh0dHR0dHR0dHR4eHh0dHR4eHh4eHh8fHx0dHR4eHti84q4AAADJdFJOUwAS74XMGbuA5baOKkxwNUEB5mif0TMgPLD6B1irkPAXrVTUo4exJLJtCgV/vvbXKN38yaaapcowLPcOmeNn0Ntf841ur6dlhBN2jD/hS5sl0tbPG1KGHP1QbClDRouPncSuTiIN8XMC/lnIicCYA9ljcVaBa1ysw7f7CTLcWwaVT4Q2YaT56lqKwhAI4N9XkUg0JpLT8sbOfFNp6SaXejpCHR/kOUeDO70NPXfIN0WW4nj1IfLFLfTNJ0nu6x5mfbwas0SioZ5K+JpxEE4AAAQpSURBVHja7ZpnWxQxFIUDrEgTUXoRUBAE6QhYUAQbIIgKFpSiAgKCir333nvvvffee8m/ckF9WJbcSTI7c/Nlz9fJyXueTGYmuRlCnHLKKadUKEgtfmgG9Y9TyPei7fJ/qQg/cyr9J/+tCvD1NdRG2ydi8y9n0K6KPozKL5pB7dUTER8XQZXyww+o5cdSpfw7MWr5s1rV8qvS1PLbQtXyBzPwtFbt9Kfu2N8+O93H4/9g8QPw+KtY/LwwNL4Hi3+tDI2fzuK/643Gb2Dxf5ei8fuw+LQ/Gn89kz8fjR/A5G9C459k8j39sPjuTH5KHRY/hMnfMRuLn8Xk0/FY/Els/jQsfj82fxwW343NX1CIxB/D5u/0ReL7sPl0KRLfG+DfQ+LvG8bmZ2FNwMVsfsp0uWE0+AVM6TypXgIHuOjk1wL8wVK9BKfRzwZuQKwaKNXLw/Z1TIwe/jaAn5sq08u8yA7Tbnn+bOABoLtkejm45p9riSy/DHgAaLFML6M7feFy/DDoAUhaJNFLX1unXAlvBMB3lfkELOliPXdUwtoL4NOREp1ctPOOqhe23oD4CyX4N7u5V4tar04B+Nl7xfkFDL+/oDca4KdL7AIXOrCKmwDdAIld0Hegi0EC3hUQ31MYn7gS6kNgKxn4HrA2BYvyh3uCfNp0i2NO2ANZt4jyo1qphjzq9L2BqCVBkB+UTTVlWavrDUQrRAdgAOXoq4b5G+gaIr6OTuYlgPtysUCexxIng2N4AegyyDoEtPQ1YC9no7Ns40jQILcK2xjPTTCT5fONBNsHSwUg3tyJGPqgu2vRbbB5tfSGjjsRSz50M1WDjfOipFeUg7g3YUGinSUcbvtRx5q6hptgbFfD+RLq+EfIRo0DuQkedTHMhRvqqwWnHucm+CT0CqaHdG7sSp9yE3RWuXJCwUb7p+sMIDARqc//thpvjkr9m3svboDkQO4NeGF8fdNWaV86boBGi2ZHAsRN5iaY015ttlBjH8FO/XrFTRChsQq26q2DNZ5K/kQ8FqxxMdPhKhN/ItI+GtcumVVoF9QFAwptQQH6+fneBgQgVfm6A8QaU2xcrpfvUW5QubNAZwDjfkkYq28AehgWoDxA7QAQ0vu50gGwr5fhD4BVxWoHQHvNhzEAhESNUjsAhNw9oXQArGpTOwBWtYgHaDHnCCpaOMA6cwK4TBXkh5h1Cne9QSxAs1kBbE8wNDSl0bQA0FE44q+BEXz+jFlmBhh+ihsgk5iqI5G8AJvNDUA2cPgWYraWaQcoMj0AGadZwXtmfoCE1xoBUP5NyHGFA5zBCECWwltVP5QA5DQUwI0gKQYIEIgVIDGDyZ9M0DTU1eGDCQdVwQpQiBiAPGH8nkBQ9VPhP7od8pvz91DcNTclOyk+c1I/N4KsN76pV1zCiFNOOeWUofoDHTMw9/M0WkEAAAAASUVORK5CYII=) no-repeat center;
  background-size: contain;
  content: "";
  height: 15px;
  left: 2px;
  position: absolute;
  top: 6px;
  width: 15px;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #fff;
}
.wpcf7-form-control.wpcf7-radio.p-contact__radio-button {
  display: grid;
  grid-template-columns: 7.5rem 7.5rem;
  grid-template-rows: 1fr;
  gap: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control.wpcf7-radio.p-contact__radio-button {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 12.5rem;
    width: 100%;
  }
}
.wpcf7-list-item.first {
  margin: 0;
}
.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 1rem;
  }
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-form dl {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 1.5rem;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form dl {
    grid-template-columns: 12.5rem 1fr;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-form dl.textarea {
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-form dl.textarea dt {
    margin-top: 0.75rem;
  }
}
.wpcf7-form dt {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .wpcf7-form dt {
    text-align: left;
  }
}
.wpcf7-form dt > p {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form dt > p {
    justify-content: space-between;
    gap: 0;
  }
}
.wpcf7-form dt span {
  display: inline;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: #fed900;
  color: #000;
  font-weight: 400;
  margin-left: 0.5rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form dt span {
    font-size: 0.8125rem;
  }
}
.wpcf7-form dt span.any {
  background: #9d9d9d;
}
@media screen and (min-width: 768px) {
  .wpcf7-form .p-contact__body.contact dl {
    grid-template-columns: 10.875rem 1fr;
  }
}
.wpcf7-not-valid-tip {
  margin-top: 0.75rem;
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 0.125rem;
  background: #c30000;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 0.875rem;
    margin-left: 0.75rem;
  }
}
/* エラーメッセージ */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #c30000;
  color: #c30000;
}
/* デフォルトのボタン */
input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}
/* チェック前のボタン */
.p-contact__radio-button .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #000;
  border-radius: 100%;
  /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s;
  /* 色をじんわり変化させる */
  width: 1.2em;
}
/* チェック後のボタン */
.p-contact__radio-button input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #1c1c1c;
  /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 3px #fff;
  /* 中心の色のスタイル */
}
.wpcf7-acceptance span.wpcf7-list-item {
  margin: 0 0 0 0;
  /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  cursor: pointer;
  /* labelにhoverした時にカーソルを表示させる */
  font-size: 14px;
  /* 項目のフォントサイズ */
}
@media screen and (min-width: 768px) {
  .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 16px;
    /* 項目のフォントサイズ */
  }
}
.wpcf7-acceptance input[type=checkbox] {
  opacity: 0;
  /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #d9d9d9;
  content: "";
  display: inline-block;
  height: 1.25rem;
  margin-right: 10px;
  position: relative;
  border-radius: 4px;
  top: 0.125rem;
  vertical-align: middle;
  width: 1.25rem;
  background: #fff;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAJeUExURUdwTBwcHB0dHR4eHh4eHh4eHh4eHh0dHR4eHh0dHR4eHh4eHh4eHh0dHRwcHB8fHwAAAB0dHR0dHR4eHh4eHh4eHh8fHx0dHR4eHh0dHSQkJBwcHB0dHR4eHh0dHSEhIR0dHR4eHh4eHh0dHR4eHh4eHhwcHB4eHh4eHhkZGTMzMx4eHh0dHR4eHh0dHR8fHx4eHh4eHh4eHh4eHh0dHR0dHR4eHh8fHxwcHB0dHSQkJB4eHh4eHh0dHR0dHR4eHh0dHR4eHh4eHh4eHh4eHh4eHh4eHh4eHhoaGh4eHh0dHRwcHB0dHR4eHh0dHRsbGx4eHh0dHR0dHRwcHB8fHx4eHhsbGx4eHhwcHB4eHh8fHx4eHh0dHR0dHR4eHh4eHh0dHR0dHR0dHR4eHicnJx0dHR8fHwAAAB4eHhwcHB4eHh0dHR4eHh4eHgAAAB4eHh4eHh0dHR0dHR0dHR4eHh4eHh0dHR4eHh4eHh0dHRwcHB4eHh4eHh4eHioqKh0dHR0dHRwcHBwcHBwcHB0dHR0dHR0dHR8fHx0dHR4eHh8fHx8fHx0dHR0dHR0dHR0dHR8fHx0dHSEhIR0dHR4eHh0dHR0dHR0dHR4eHh4eHh0dHR0dHRoaGh4eHh0dHR4eHh4eHhoaGiAgIB4eHh8fHxwcHB0dHR4eHh0dHRMTEx0dHR4eHh0dHRsbGx0dHR4eHh4eHh0dHR4eHh4eHh4eHh0dHRwcHB4eHh0dHSAgIB8fHx4eHh4eHiIiIh4eHh4eHh0dHR0dHR0dHR4eHh0dHR4eHh4eHh8fHx0dHR4eHti84q4AAADJdFJOUwAS74XMGbuA5baOKkxwNUEB5mif0TMgPLD6B1irkPAXrVTUo4exJLJtCgV/vvbXKN38yaaapcowLPcOmeNn0Ntf841ur6dlhBN2jD/hS5sl0tbPG1KGHP1QbClDRouPncSuTiIN8XMC/lnIicCYA9ljcVaBa1ysw7f7CTLcWwaVT4Q2YaT56lqKwhAI4N9XkUg0JpLT8sbOfFNp6SaXejpCHR/kOUeDO70NPXfIN0WW4nj1IfLFLfTNJ0nu6x5mfbwas0SioZ5K+JpxEE4AAAQpSURBVHja7ZpnWxQxFIUDrEgTUXoRUBAE6QhYUAQbIIgKFpSiAgKCir333nvvvffee8m/ckF9WJbcSTI7c/Nlz9fJyXueTGYmuRlCnHLKKadUKEgtfmgG9Y9TyPei7fJ/qQg/cyr9J/+tCvD1NdRG2ydi8y9n0K6KPozKL5pB7dUTER8XQZXyww+o5cdSpfw7MWr5s1rV8qvS1PLbQtXyBzPwtFbt9Kfu2N8+O93H4/9g8QPw+KtY/LwwNL4Hi3+tDI2fzuK/643Gb2Dxf5ei8fuw+LQ/Gn89kz8fjR/A5G9C459k8j39sPjuTH5KHRY/hMnfMRuLn8Xk0/FY/Els/jQsfj82fxwW343NX1CIxB/D5u/0ReL7sPl0KRLfG+DfQ+LvG8bmZ2FNwMVsfsp0uWE0+AVM6TypXgIHuOjk1wL8wVK9BKfRzwZuQKwaKNXLw/Z1TIwe/jaAn5sq08u8yA7Tbnn+bOABoLtkejm45p9riSy/DHgAaLFML6M7feFy/DDoAUhaJNFLX1unXAlvBMB3lfkELOliPXdUwtoL4NOREp1ctPOOqhe23oD4CyX4N7u5V4tar04B+Nl7xfkFDL+/oDca4KdL7AIXOrCKmwDdAIld0Hegi0EC3hUQ31MYn7gS6kNgKxn4HrA2BYvyh3uCfNp0i2NO2ANZt4jyo1qphjzq9L2BqCVBkB+UTTVlWavrDUQrRAdgAOXoq4b5G+gaIr6OTuYlgPtysUCexxIng2N4AegyyDoEtPQ1YC9no7Ns40jQILcK2xjPTTCT5fONBNsHSwUg3tyJGPqgu2vRbbB5tfSGjjsRSz50M1WDjfOipFeUg7g3YUGinSUcbvtRx5q6hptgbFfD+RLq+EfIRo0DuQkedTHMhRvqqwWnHucm+CT0CqaHdG7sSp9yE3RWuXJCwUb7p+sMIDARqc//thpvjkr9m3svboDkQO4NeGF8fdNWaV86boBGi2ZHAsRN5iaY015ttlBjH8FO/XrFTRChsQq26q2DNZ5K/kQ8FqxxMdPhKhN/ItI+GtcumVVoF9QFAwptQQH6+fneBgQgVfm6A8QaU2xcrpfvUW5QubNAZwDjfkkYq28AehgWoDxA7QAQ0vu50gGwr5fhD4BVxWoHQHvNhzEAhESNUjsAhNw9oXQArGpTOwBWtYgHaDHnCCpaOMA6cwK4TBXkh5h1Cne9QSxAs1kBbE8wNDSl0bQA0FE44q+BEXz+jFlmBhh+ihsgk5iqI5G8AJvNDUA2cPgWYraWaQcoMj0AGadZwXtmfoCE1xoBUP5NyHGFA5zBCECWwltVP5QA5DQUwI0gKQYIEIgVIDGDyZ9M0DTU1eGDCQdVwQpQiBiAPGH8nkBQ9VPhP7od8pvz91DcNTclOyk+c1I/N4KsN76pV1zCiFNOOeWUofoDHTMw9/M0WkEAAAAASUVORK5CYII=) no-repeat center;
  background-size: contain;
  content: "";
  height: 0.75rem;
  left: 0.25rem;
  position: absolute;
  top: 0.3125rem;
  width: 0.75rem;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #fff;
}
/* ラジオボタンの各項目のスタイル */
.wpcf7-list-item {
  margin-bottom: 0.5em;
  /* 項目間のスペース */
}
/* ラジオボタンのラベルスタイル */
.wpcf7-list-item label {
  display: inline-block;
  /* ラベルをブロック要素に */
  cursor: pointer;
  /* ホバー時にカーソルをポインターに */
  position: relative;
  /* ラジオボタンのカスタムスタイルの位置決めに使用 */
  line-height: 1.2;
  /* ラベルの行間 */
}
.p-contact__radio .wpcf7-list-item label {
  padding-left: 1.5em;
}
/* ラジオボタンのデフォルトスタイルを隠す */
.wpcf7-list-item input[type=radio] {
  position: absolute;
  /* 絶対位置 */
  opacity: 0;
  /* 透明にすることで非表示に */
  cursor: pointer;
  /* ホバー時にカーソルをポインターに */
}
/* カスタムラジオボタンのデザイン */
.wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  /* 擬似要素のコンテンツ */
  position: absolute;
  /* 絶対位置 */
  left: 0;
  /* 左から0の位置に */
  top: 50%;
  /* 上から50%の位置に（中央に見えるように調整） */
  transform: translateY(-50%);
  /* Y軸で50%移動して中央に */
  width: 1em;
  /* 擬似要素の幅 */
  height: 1em;
  /* 擬似要素の高さ */
  border: 1px solid #ccc;
  /* 境界線のスタイル */
  border-radius: 50%;
  /* 円形に */
  background-color: #fff;
  /* 背景色 */
}
/* チェックされたときのカスタムラジオボタンのデザイン */
.wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  /* 擬似要素のコンテンツ */
  position: absolute;
  /* 絶対位置 */
  left: 0.25em;
  /* 左からの位置 */
  top: 50%;
  /* 上から50%の位置に */
  transform: translateY(-50%);
  /* Y軸で50%移動して中央に */
  width: 0.5em;
  /* 内側の円の幅 */
  height: 0.5em;
  /* 内側の円の高さ */
  border-radius: 50%;
  /* 円形に */
  background-color: #333;
  /* 内側の円の色 */
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .modal__overlay {
    padding: 2rem;
  }
}
.modal.is-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.modal__container {
  background-color: #fff;
  max-height: 90vh;
  max-width: calc(100vw - 32px);
  width: 100%;
  border-radius: 0.75rem;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal__container {
    max-width: 50rem;
    max-height: 90vh;
    margin: auto;
    border-radius: 1rem;
  }
}
.modal__header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
  padding: 0.75rem 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .modal__header {
    padding: 1rem 1rem 0;
  }
}
.modal__close {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #333;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .modal__close {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.modal__close:hover {
  background-color: #f5f5f5;
  transform: scale(1.08);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
}
.modal__close:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 2px;
}
.modal__close svg {
  width: 1.125rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .modal__close svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.modal__content {
  padding: 0rem 1.25rem 1.75rem;
  line-height: 1.875;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--relize-base-font);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .modal__content {
    padding: 0rem 2.25rem 2.25rem;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes mmslideOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px) scale(0.97);
    filter: blur(4px);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform, opacity, filter;
}
@keyframes modalContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.micromodal-slide[aria-hidden=false] .profile-modal__hero {
  animation: modalContentIn 0.5s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.micromodal-slide[aria-hidden=false] .profile-modal__description {
  animation: modalContentIn 0.5s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.micromodal-slide[aria-hidden=false] .profile-modal__details {
  animation: modalContentIn 0.5s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.micromodal-slide[aria-hidden=false] .profile-modal__message {
  animation: modalContentIn 0.5s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.micromodal-slide[aria-hidden=false] .profile-modal__reservation {
  animation: modalContentIn 0.5s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .micromodal-slide[aria-hidden=false] .modal__overlay,
  .micromodal-slide[aria-hidden=false] .modal__container,
  .micromodal-slide[aria-hidden=false] .profile-modal__hero,
  .micromodal-slide[aria-hidden=false] .profile-modal__description,
  .micromodal-slide[aria-hidden=false] .profile-modal__details,
  .micromodal-slide[aria-hidden=false] .profile-modal__message,
  .micromodal-slide[aria-hidden=false] .profile-modal__reservation,
  .micromodal-slide[aria-hidden=true] .modal__overlay,
  .micromodal-slide[aria-hidden=true] .modal__container,
  .micromodal-slide[aria-hidden=true] .profile-modal__hero,
  .micromodal-slide[aria-hidden=true] .profile-modal__description,
  .micromodal-slide[aria-hidden=true] .profile-modal__details,
  .micromodal-slide[aria-hidden=true] .profile-modal__message,
  .micromodal-slide[aria-hidden=true] .profile-modal__reservation {
    animation: none !important;
  }
}
body.modal-open {
  overflow: hidden;
}
.profile-modal__hero {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .profile-modal__hero {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.25rem;
  }
}
.profile-modal__image {
  border-radius: 0.625rem;
  overflow: hidden;
}
.profile-modal__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
@media screen and (min-width: 768px) {
  .profile-modal__image {
    flex: 0 0 15rem;
    border-radius: 0.75rem;
  }
  .profile-modal__image img {
    aspect-ratio: 3/4;
  }
}
.profile-modal__identity {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.profile-modal__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-relize-primary-green, #76a685);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-relize-primary-green, #76a685);
  border-radius: 1.25rem;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .profile-modal__label {
    font-size: 0.75rem;
  }
}
.profile-modal__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .profile-modal__name {
    font-size: 1.75rem;
  }
}
.profile-modal__position {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .profile-modal__position {
    font-size: 0.875rem;
  }
}
.profile-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .profile-modal__body {
    gap: 1.75rem;
  }
}
.profile-modal__description p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #444;
}
@media screen and (min-width: 768px) {
  .profile-modal__description p {
    font-size: 0.9375rem;
  }
}
.profile-modal__description p + p {
  margin-top: 0.75rem;
}
.profile-modal__description p strong {
  color: #1a1a1a;
  font-weight: 600;
}
.profile-modal__details {
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .profile-modal__details {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.profile-modal__section {
  background: #f9f9f7;
  border-radius: 0.625rem;
  padding: 1.125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .profile-modal__section {
    padding: 1.25rem 1.5rem;
  }
}
.profile-modal__section-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #1a1a1a;
  position: relative;
  padding-left: 0.875rem;
}
.profile-modal__section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 1rem;
  background-color: var(--color-relize-primary-green, #76a685);
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .profile-modal__section-title {
    font-size: 0.9375rem;
  }
}
.profile-modal__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.profile-modal__list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  color: #555;
}
@media screen and (min-width: 768px) {
  .profile-modal__list li {
    font-size: 0.875rem;
  }
}
.profile-modal__list li::before {
  content: "";
  position: absolute;
  left: 0.125rem;
  top: 0.5rem;
  width: 0.3125rem;
  height: 0.3125rem;
  background: var(--color-relize-primary-green, #76a685);
  border-radius: 50%;
}
.profile-modal__list li:last-child {
  margin-bottom: 0;
}
.profile-modal__text {
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  color: #555;
}
@media screen and (min-width: 768px) {
  .profile-modal__text {
    font-size: 0.875rem;
  }
}
.profile-modal__message {
  background: linear-gradient(135deg, rgba(118, 166, 133, 0.08), rgba(153, 206, 154, 0.12));
  border: 1px solid rgba(118, 166, 133, 0.15);
  padding: 1.5rem;
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .profile-modal__message {
    padding: 1.75rem 2rem;
  }
}
.profile-modal__message p {
  font-size: 0.8125rem;
  color: #444;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .profile-modal__message p {
    font-size: 0.9375rem;
  }
}
.profile-modal__message-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: #1a1a1a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .profile-modal__message-title {
    font-size: 1.0625rem;
  }
}
.profile-modal__quote {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-relize-primary-green, #76a685);
  text-align: center;
  margin: 1rem 0;
  padding: 0;
  border: none;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .profile-modal__quote {
    font-size: 1.5rem;
  }
}
.profile-modal__reservation {
  text-align: center;
  padding-top: 0.25rem;
}
.profile-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 15rem;
  padding: 1rem 2.25rem;
  background-color: var(--color-relize-primary-green, #76a685);
  color: #fff;
  border-radius: 3.125rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0.25rem 1.25rem rgba(118, 166, 133, 0.3);
  position: relative;
  overflow: hidden;
}
.profile-modal__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.profile-modal__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.75rem rgba(118, 166, 133, 0.4);
}
.profile-modal__button:hover::before {
  opacity: 1;
}
.profile-modal__button:hover .profile-modal__button-icon {
  transform: translateX(0.25rem);
}
.profile-modal__button:active {
  transform: translateY(0);
}
.profile-modal__button:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .profile-modal__button {
    min-width: 17.5rem;
    font-size: 1rem;
    padding: 1.125rem 2.5rem;
  }
}
.profile-modal__button-text {
  position: relative;
}
.profile-modal__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
@media (max-width: 767px) {
  .profile-modal__button {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}
.c-opening {
  position: fixed;
  inset: 0;
  z-index: 99999999;
  background: radial-gradient(circle at center, #fafaf4 0%, #f0f0e4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
}
.c-opening.is-leaving {
  opacity: 0;
  visibility: hidden;
}
.c-opening__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.c-opening__canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.c-opening__body {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.c-opening__logo {
  display: block;
  width: 12.5rem;
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.c-opening__logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .c-opening__logo {
    width: 17.5rem;
  }
}
.c-opening__subtext {
  font-family: var(--relize-base-font);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  margin: 0;
  color: #76a685;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.c-opening__subtext.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .c-opening__subtext {
    font-size: 0.9375rem;
  }
}
body.is-opening {
  overflow: hidden;
}
body.is-opening .p-mainview .js-animate {
  transition-delay: 0s !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
@media (prefers-reduced-motion: reduce) {
  .c-opening {
    display: none;
  }
}
.p-floor-map .slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.p-floor-map .slider-thumbnail .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-floor-map .swiper-container {
  position: relative;
}
.p-floor-map .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.p-floor-map .slider-thumbnail .swiper-slide {
  pointer-events: auto;
}
.p-floor-map .slider-thumbnail {
  margin-top: 0.75rem !important;
}
@media screen and (min-width: 768px) {
  .p-floor-map .slider-thumbnail {
    margin-top: 1.25rem !important;
  }
}
@media screen and (min-width: 768px) {
  .p-floor-map .main-slider .swiper-slide {
    max-height: 40rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-floor-map .main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-floor-map .swiper-button-prev {
  background: url("../images/common/slider-prev-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  margin-top: -1.5rem;
  z-index: 20;
  border-radius: 9999px;
  left: -1rem;
}
@media screen and (min-width: 768px) {
  .p-floor-map .swiper-button-prev {
    width: 4rem;
    height: 4rem;
    margin-top: -2rem;
    left: -2rem;
  }
}
.p-floor-map .swiper-button-next {
  background: url("../images/common/slider-next-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  margin-top: -1.5rem;
  /* ボタンの高さの半分 */
  z-index: 10;
  border-radius: 9999px;
  right: -1rem;
}
@media screen and (min-width: 768px) {
  .p-floor-map .swiper-button-next {
    width: 4rem;
    height: 4rem;
    margin-top: -2rem;
    right: -2rem;
  }
}
.wp-pagenavi {
  position: relative;
}
.wp-pagenavi span {
  padding: 0.375rem 0.625rem;
  margin: 0.5rem;
  font-family: var(--relize-european-font);
}
.wp-pagenavi a.nextpostslink {
  display: none;
}
.wp-pagenavi a.previouspostslink {
  display: none;
}
.wp-pagenavi {
  display: flex;
  justify-content: center;
  column-gap: 1.25rem;
  border-radius: 9999px;
}
.wp-pagenavi .extend {
  border: none;
}
.wp-pagenavi .current {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  margin-right: 0;
  width: 2rem;
  height: 2rem;
  background-color: #1c5548;
  border-radius: 9999px;
  color: #fff;
  font-family: var(--relize-base-font);
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .current {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.05em;
    margin-right: 0;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.wp-pagenavi .page.larger,
.wp-pagenavi .page.smaller {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  margin-right: 0;
  width: 2rem;
  height: 2rem;
  border: solid 1px #1c5548;
  color: #1c5548;
  transition: all 0.2s ease-in-out;
  border-radius: 9999px;
  font-family: var(--relize-base-font);
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .page.larger,
  .wp-pagenavi .page.smaller {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.05em;
    margin-right: 0;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.wp-pagenavi .page.larger:hover,
.wp-pagenavi .page.smaller:hover {
  background-color: #1c5548;
  color: #FFFFFF;
  opacity: 1;
}
:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}
.u-delay-time1 {
  animation-delay: 0.3s;
}
.u-delay-time2 {
  animation-delay: 0.6s;
}
.u-delay-time3 {
  animation-delay: 0.9s;
}
.u-delay-time4 {
  animation-delay: 1.2s;
}
.u-delay-time5 {
  animation-delay: 1.5s;
}
.u-delay-time6 {
  animation-delay: 1.8s;
}
.u-delay-time7 {
  animation-delay: 2.1s;
}
.u-delay-time8 {
  animation-delay: 2.4s;
}
.u-delay-time9 {
  animation-delay: 2.7s;
}
.u-delay-time10 {
  animation-delay: 3s;
}
.u-block {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-mobile-block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-block {
    display: block;
  }
}
.u-inline-block {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .u-mobile-inline-block {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-inline-block {
    display: inline-block;
  }
}
.u-inline {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-mobile-inline {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-inline {
    display: inline;
  }
}
.u-scroll-fade {
  opacity: 0;
  transition: all 0.7s;
}
.u-scroll-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}
.u-scroll-up {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.7s;
}
.u-scroll-up.done {
  opacity: 1;
  transform: translate(0, 0);
}
.u-load-fade {
  opacity: 0;
  transition: all 0.7s;
}
.u-load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}
.u-load-fadeup {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.7s;
}
.u-load-fadeup.done {
  opacity: 1;
  transform: translate(0, 0);
}
.u-fade-delay1 {
  transition-delay: 0.1s;
}
.u-fade-delay2 {
  transition-delay: 0.2s;
}
.u-fade-delay3 {
  transition-delay: 0.3s;
}
.u-fade-delay4 {
  transition-delay: 0.4s;
}
.u-fade-delay5 {
  transition-delay: 0.5s;
}
.u-fade-delay6 {
  transition-delay: 0.6s;
}
.u-fade-delay7 {
  transition-delay: 0.7s;
}
.u-fade-delay8 {
  transition-delay: 0.8s;
}
.u-fade-delay9 {
  transition-delay: 0.9s;
}
.u-fade-delay10 {
  transition-delay: 1s;
}
.u-fade-delay11 {
  transition-delay: 1.1s;
}
.u-fade-delay12 {
  transition-delay: 1.2s;
}
.u-fade-delay13 {
  transition-delay: 1.3s;
}
.u-fade-delay14 {
  transition-delay: 1.4s;
}
.u-fade-delay15 {
  transition-delay: 1.5s;
}
.u-fade-delay16 {
  transition-delay: 1.6s;
}
.u-fade-delay17 {
  transition-delay: 1.7s;
}
.u-fade-delay18 {
  transition-delay: 1.8s;
}
.u-fade-delay19 {
  transition-delay: 1.9s;
}
.u-fade-delay20 {
  transition-delay: 2s;
}
.u-flex {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-desktop-flex {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-flex {
    display: flex;
  }
}
.u-flex-col {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .u-desktop-flex-col {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-flex-col {
    display: flex;
    flex-direction: column;
  }
}
.u-flex-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.u-flex-center-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.u-text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.u-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.u-text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.u-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.u-text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.u-text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.u-text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.u-text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.u-text-5xl {
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}
.u-text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}
.u-text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}
.u-text-8xl {
  font-size: 6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}
.u-text-9xl {
  font-size: 8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
}
.u-text-bold {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .u-desktop-text-bold {
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-bold {
    font-weight: 700;
  }
}
.u-text-normal {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .u-desktop-text-normal {
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-text-normal {
    font-weight: 400;
  }
}
.u-text-light {
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .u-desktop-text-light {
    font-weight: 300;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-text-light {
    font-weight: 300;
  }
}
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
.u-hidden {
  display: none;
}
.u-lineheight-s {
  line-height: 1.2;
}
.u-lineheight-m {
  line-height: 1.5;
}
.u-lineheight-l {
  line-height: 1.8;
}
.u-lineheight-xl {
  line-height: 2;
}
.u-pt0 {
  padding-top: 0px;
}
.u-pt4 {
  padding-top: 4px;
}
.u-pt5 {
  padding-top: 5px;
}
.u-pt8 {
  padding-top: 8px;
}
.u-pt10 {
  padding-top: 10px;
}
.u-pt12 {
  padding-top: 12px;
}
.u-pt15 {
  padding-top: 15px;
}
.u-pt16 {
  padding-top: 16px;
}
.u-pt20 {
  padding-top: 20px;
}
.u-pt24 {
  padding-top: 24px;
}
.u-pt25 {
  padding-top: 25px;
}
.u-pt28 {
  padding-top: 28px;
}
.u-pt30 {
  padding-top: 30px;
}
.u-pt32 {
  padding-top: 32px;
}
.u-pt35 {
  padding-top: 35px;
}
.u-pt36 {
  padding-top: 36px;
}
.u-pt40 {
  padding-top: 40px;
}
.u-pt44 {
  padding-top: 44px;
}
.u-pt45 {
  padding-top: 45px;
}
.u-pt48 {
  padding-top: 48px;
}
.u-pt50 {
  padding-top: 50px;
}
.u-pt52 {
  padding-top: 52px;
}
.u-pt55 {
  padding-top: 55px;
}
.u-pt56 {
  padding-top: 56px;
}
.u-pt60 {
  padding-top: 60px;
}
.u-pt64 {
  padding-top: 64px;
}
.u-pt65 {
  padding-top: 65px;
}
.u-pt68 {
  padding-top: 68px;
}
.u-pt70 {
  padding-top: 70px;
}
.u-pt72 {
  padding-top: 72px;
}
.u-pt75 {
  padding-top: 75px;
}
.u-pt76 {
  padding-top: 76px;
}
.u-pt80 {
  padding-top: 80px;
}
.u-pt84 {
  padding-top: 84px;
}
.u-pt85 {
  padding-top: 85px;
}
.u-pt88 {
  padding-top: 88px;
}
.u-pt90 {
  padding-top: 90px;
}
.u-pt92 {
  padding-top: 92px;
}
.u-pt95 {
  padding-top: 95px;
}
.u-pt96 {
  padding-top: 96px;
}
.u-pt100 {
  padding-top: 100px;
}
.u-pb0 {
  padding-bottom: 0px;
}
.u-pb4 {
  padding-bottom: 4px;
}
.u-pb5 {
  padding-bottom: 5px;
}
.u-pb8 {
  padding-bottom: 8px;
}
.u-pb10 {
  padding-bottom: 10px;
}
.u-pb12 {
  padding-bottom: 12px;
}
.u-pb15 {
  padding-bottom: 15px;
}
.u-pb16 {
  padding-bottom: 16px;
}
.u-pb20 {
  padding-bottom: 20px;
}
.u-pb24 {
  padding-bottom: 24px;
}
.u-pb25 {
  padding-bottom: 25px;
}
.u-pb28 {
  padding-bottom: 28px;
}
.u-pb30 {
  padding-bottom: 30px;
}
.u-pb32 {
  padding-bottom: 32px;
}
.u-pb35 {
  padding-bottom: 35px;
}
.u-pb36 {
  padding-bottom: 36px;
}
.u-pb40 {
  padding-bottom: 40px;
}
.u-pb44 {
  padding-bottom: 44px;
}
.u-pb45 {
  padding-bottom: 45px;
}
.u-pb48 {
  padding-bottom: 48px;
}
.u-pb50 {
  padding-bottom: 50px;
}
.u-pb52 {
  padding-bottom: 52px;
}
.u-pb55 {
  padding-bottom: 55px;
}
.u-pb56 {
  padding-bottom: 56px;
}
.u-pb60 {
  padding-bottom: 60px;
}
.u-pb64 {
  padding-bottom: 64px;
}
.u-pb65 {
  padding-bottom: 65px;
}
.u-pb68 {
  padding-bottom: 68px;
}
.u-pb70 {
  padding-bottom: 70px;
}
.u-pb72 {
  padding-bottom: 72px;
}
.u-pb75 {
  padding-bottom: 75px;
}
.u-pb76 {
  padding-bottom: 76px;
}
.u-pb80 {
  padding-bottom: 80px;
}
.u-pb84 {
  padding-bottom: 84px;
}
.u-pb85 {
  padding-bottom: 85px;
}
.u-pb88 {
  padding-bottom: 88px;
}
.u-pb90 {
  padding-bottom: 90px;
}
.u-pb92 {
  padding-bottom: 92px;
}
.u-pb95 {
  padding-bottom: 95px;
}
.u-pb96 {
  padding-bottom: 96px;
}
.u-pb100 {
  padding-bottom: 100px;
}
.u-pl0 {
  padding-left: 0px;
}
.u-pl4 {
  padding-left: 4px;
}
.u-pl5 {
  padding-left: 5px;
}
.u-pl8 {
  padding-left: 8px;
}
.u-pl10 {
  padding-left: 10px;
}
.u-pl12 {
  padding-left: 12px;
}
.u-pl15 {
  padding-left: 15px;
}
.u-pl16 {
  padding-left: 16px;
}
.u-pl20 {
  padding-left: 20px;
}
.u-pl24 {
  padding-left: 24px;
}
.u-pl25 {
  padding-left: 25px;
}
.u-pl28 {
  padding-left: 28px;
}
.u-pl30 {
  padding-left: 30px;
}
.u-pl32 {
  padding-left: 32px;
}
.u-pl35 {
  padding-left: 35px;
}
.u-pl36 {
  padding-left: 36px;
}
.u-pl40 {
  padding-left: 40px;
}
.u-pl44 {
  padding-left: 44px;
}
.u-pl45 {
  padding-left: 45px;
}
.u-pl48 {
  padding-left: 48px;
}
.u-pl50 {
  padding-left: 50px;
}
.u-pl52 {
  padding-left: 52px;
}
.u-pl55 {
  padding-left: 55px;
}
.u-pl56 {
  padding-left: 56px;
}
.u-pl60 {
  padding-left: 60px;
}
.u-pl64 {
  padding-left: 64px;
}
.u-pl65 {
  padding-left: 65px;
}
.u-pl68 {
  padding-left: 68px;
}
.u-pl70 {
  padding-left: 70px;
}
.u-pl72 {
  padding-left: 72px;
}
.u-pl75 {
  padding-left: 75px;
}
.u-pl76 {
  padding-left: 76px;
}
.u-pl80 {
  padding-left: 80px;
}
.u-pl84 {
  padding-left: 84px;
}
.u-pl85 {
  padding-left: 85px;
}
.u-pl88 {
  padding-left: 88px;
}
.u-pl90 {
  padding-left: 90px;
}
.u-pl92 {
  padding-left: 92px;
}
.u-pl95 {
  padding-left: 95px;
}
.u-pl96 {
  padding-left: 96px;
}
.u-pl100 {
  padding-left: 100px;
}
.u-pr0 {
  padding-right: 0px;
}
.u-pr4 {
  padding-right: 4px;
}
.u-pr5 {
  padding-right: 5px;
}
.u-pr8 {
  padding-right: 8px;
}
.u-pr10 {
  padding-right: 10px;
}
.u-pr12 {
  padding-right: 12px;
}
.u-pr15 {
  padding-right: 15px;
}
.u-pr16 {
  padding-right: 16px;
}
.u-pr20 {
  padding-right: 20px;
}
.u-pr24 {
  padding-right: 24px;
}
.u-pr25 {
  padding-right: 25px;
}
.u-pr28 {
  padding-right: 28px;
}
.u-pr30 {
  padding-right: 30px;
}
.u-pr32 {
  padding-right: 32px;
}
.u-pr35 {
  padding-right: 35px;
}
.u-pr36 {
  padding-right: 36px;
}
.u-pr40 {
  padding-right: 40px;
}
.u-pr44 {
  padding-right: 44px;
}
.u-pr45 {
  padding-right: 45px;
}
.u-pr48 {
  padding-right: 48px;
}
.u-pr50 {
  padding-right: 50px;
}
.u-pr52 {
  padding-right: 52px;
}
.u-pr55 {
  padding-right: 55px;
}
.u-pr56 {
  padding-right: 56px;
}
.u-pr60 {
  padding-right: 60px;
}
.u-pr64 {
  padding-right: 64px;
}
.u-pr65 {
  padding-right: 65px;
}
.u-pr68 {
  padding-right: 68px;
}
.u-pr70 {
  padding-right: 70px;
}
.u-pr72 {
  padding-right: 72px;
}
.u-pr75 {
  padding-right: 75px;
}
.u-pr76 {
  padding-right: 76px;
}
.u-pr80 {
  padding-right: 80px;
}
.u-pr84 {
  padding-right: 84px;
}
.u-pr85 {
  padding-right: 85px;
}
.u-pr88 {
  padding-right: 88px;
}
.u-pr90 {
  padding-right: 90px;
}
.u-pr92 {
  padding-right: 92px;
}
.u-pr95 {
  padding-right: 95px;
}
.u-pr96 {
  padding-right: 96px;
}
.u-pr100 {
  padding-right: 100px;
}
.u-mt0 {
  margin-top: 0px;
}
.u-mt4 {
  margin-top: 4px;
}
.u-mt5 {
  margin-top: 5px;
}
.u-mt8 {
  margin-top: 8px;
}
.u-mt10 {
  margin-top: 10px;
}
.u-mt12 {
  margin-top: 12px;
}
.u-mt15 {
  margin-top: 15px;
}
.u-mt16 {
  margin-top: 16px;
}
.u-mt20 {
  margin-top: 20px;
}
.u-mt24 {
  margin-top: 24px;
}
.u-mt25 {
  margin-top: 25px;
}
.u-mt28 {
  margin-top: 28px;
}
.u-mt30 {
  margin-top: 30px;
}
.u-mt32 {
  margin-top: 32px;
}
.u-mt35 {
  margin-top: 35px;
}
.u-mt36 {
  margin-top: 36px;
}
.u-mt40 {
  margin-top: 40px;
}
.u-mt44 {
  margin-top: 44px;
}
.u-mt45 {
  margin-top: 45px;
}
.u-mt48 {
  margin-top: 48px;
}
.u-mt50 {
  margin-top: 50px;
}
.u-mt52 {
  margin-top: 52px;
}
.u-mt55 {
  margin-top: 55px;
}
.u-mt56 {
  margin-top: 56px;
}
.u-mt60 {
  margin-top: 60px;
}
.u-mt64 {
  margin-top: 64px;
}
.u-mt65 {
  margin-top: 65px;
}
.u-mt68 {
  margin-top: 68px;
}
.u-mt70 {
  margin-top: 70px;
}
.u-mt72 {
  margin-top: 72px;
}
.u-mt75 {
  margin-top: 75px;
}
.u-mt76 {
  margin-top: 76px;
}
.u-mt80 {
  margin-top: 80px;
}
.u-mt84 {
  margin-top: 84px;
}
.u-mt85 {
  margin-top: 85px;
}
.u-mt88 {
  margin-top: 88px;
}
.u-mt90 {
  margin-top: 90px;
}
.u-mt92 {
  margin-top: 92px;
}
.u-mt95 {
  margin-top: 95px;
}
.u-mt96 {
  margin-top: 96px;
}
.u-mt100 {
  margin-top: 100px;
}
.u-mb0 {
  margin-bottom: 0px;
}
.u-mb4 {
  margin-bottom: 4px;
}
.u-mb5 {
  margin-bottom: 5px;
}
.u-mb8 {
  margin-bottom: 8px;
}
.u-mb10 {
  margin-bottom: 10px;
}
.u-mb12 {
  margin-bottom: 12px;
}
.u-mb15 {
  margin-bottom: 15px;
}
.u-mb16 {
  margin-bottom: 16px;
}
.u-mb20 {
  margin-bottom: 20px;
}
.u-mb24 {
  margin-bottom: 24px;
}
.u-mb25 {
  margin-bottom: 25px;
}
.u-mb28 {
  margin-bottom: 28px;
}
.u-mb30 {
  margin-bottom: 30px;
}
.u-mb32 {
  margin-bottom: 32px;
}
.u-mb35 {
  margin-bottom: 35px;
}
.u-mb36 {
  margin-bottom: 36px;
}
.u-mb40 {
  margin-bottom: 40px;
}
.u-mb44 {
  margin-bottom: 44px;
}
.u-mb45 {
  margin-bottom: 45px;
}
.u-mb48 {
  margin-bottom: 48px;
}
.u-mb50 {
  margin-bottom: 50px;
}
.u-mb52 {
  margin-bottom: 52px;
}
.u-mb55 {
  margin-bottom: 55px;
}
.u-mb56 {
  margin-bottom: 56px;
}
.u-mb60 {
  margin-bottom: 60px;
}
.u-mb64 {
  margin-bottom: 64px;
}
.u-mb65 {
  margin-bottom: 65px;
}
.u-mb68 {
  margin-bottom: 68px;
}
.u-mb70 {
  margin-bottom: 70px;
}
.u-mb72 {
  margin-bottom: 72px;
}
.u-mb75 {
  margin-bottom: 75px;
}
.u-mb76 {
  margin-bottom: 76px;
}
.u-mb80 {
  margin-bottom: 80px;
}
.u-mb84 {
  margin-bottom: 84px;
}
.u-mb85 {
  margin-bottom: 85px;
}
.u-mb88 {
  margin-bottom: 88px;
}
.u-mb90 {
  margin-bottom: 90px;
}
.u-mb92 {
  margin-bottom: 92px;
}
.u-mb95 {
  margin-bottom: 95px;
}
.u-mb96 {
  margin-bottom: 96px;
}
.u-mb100 {
  margin-bottom: 100px;
}
.u-ml0 {
  margin-left: 0px;
}
.u-ml4 {
  margin-left: 4px;
}
.u-ml5 {
  margin-left: 5px;
}
.u-ml8 {
  margin-left: 8px;
}
.u-ml10 {
  margin-left: 10px;
}
.u-ml12 {
  margin-left: 12px;
}
.u-ml15 {
  margin-left: 15px;
}
.u-ml16 {
  margin-left: 16px;
}
.u-ml20 {
  margin-left: 20px;
}
.u-ml24 {
  margin-left: 24px;
}
.u-ml25 {
  margin-left: 25px;
}
.u-ml28 {
  margin-left: 28px;
}
.u-ml30 {
  margin-left: 30px;
}
.u-ml32 {
  margin-left: 32px;
}
.u-ml35 {
  margin-left: 35px;
}
.u-ml36 {
  margin-left: 36px;
}
.u-ml40 {
  margin-left: 40px;
}
.u-ml44 {
  margin-left: 44px;
}
.u-ml45 {
  margin-left: 45px;
}
.u-ml48 {
  margin-left: 48px;
}
.u-ml50 {
  margin-left: 50px;
}
.u-ml52 {
  margin-left: 52px;
}
.u-ml55 {
  margin-left: 55px;
}
.u-ml56 {
  margin-left: 56px;
}
.u-ml60 {
  margin-left: 60px;
}
.u-ml64 {
  margin-left: 64px;
}
.u-ml65 {
  margin-left: 65px;
}
.u-ml68 {
  margin-left: 68px;
}
.u-ml70 {
  margin-left: 70px;
}
.u-ml72 {
  margin-left: 72px;
}
.u-ml75 {
  margin-left: 75px;
}
.u-ml76 {
  margin-left: 76px;
}
.u-ml80 {
  margin-left: 80px;
}
.u-ml84 {
  margin-left: 84px;
}
.u-ml85 {
  margin-left: 85px;
}
.u-ml88 {
  margin-left: 88px;
}
.u-ml90 {
  margin-left: 90px;
}
.u-ml92 {
  margin-left: 92px;
}
.u-ml95 {
  margin-left: 95px;
}
.u-ml96 {
  margin-left: 96px;
}
.u-ml100 {
  margin-left: 100px;
}
.u-mr0 {
  margin-right: 0px;
}
.u-mr4 {
  margin-right: 4px;
}
.u-mr5 {
  margin-right: 5px;
}
.u-mr8 {
  margin-right: 8px;
}
.u-mr10 {
  margin-right: 10px;
}
.u-mr12 {
  margin-right: 12px;
}
.u-mr15 {
  margin-right: 15px;
}
.u-mr16 {
  margin-right: 16px;
}
.u-mr20 {
  margin-right: 20px;
}
.u-mr24 {
  margin-right: 24px;
}
.u-mr25 {
  margin-right: 25px;
}
.u-mr28 {
  margin-right: 28px;
}
.u-mr30 {
  margin-right: 30px;
}
.u-mr32 {
  margin-right: 32px;
}
.u-mr35 {
  margin-right: 35px;
}
.u-mr36 {
  margin-right: 36px;
}
.u-mr40 {
  margin-right: 40px;
}
.u-mr44 {
  margin-right: 44px;
}
.u-mr45 {
  margin-right: 45px;
}
.u-mr48 {
  margin-right: 48px;
}
.u-mr50 {
  margin-right: 50px;
}
.u-mr52 {
  margin-right: 52px;
}
.u-mr55 {
  margin-right: 55px;
}
.u-mr56 {
  margin-right: 56px;
}
.u-mr60 {
  margin-right: 60px;
}
.u-mr64 {
  margin-right: 64px;
}
.u-mr65 {
  margin-right: 65px;
}
.u-mr68 {
  margin-right: 68px;
}
.u-mr70 {
  margin-right: 70px;
}
.u-mr72 {
  margin-right: 72px;
}
.u-mr75 {
  margin-right: 75px;
}
.u-mr76 {
  margin-right: 76px;
}
.u-mr80 {
  margin-right: 80px;
}
.u-mr84 {
  margin-right: 84px;
}
.u-mr85 {
  margin-right: 85px;
}
.u-mr88 {
  margin-right: 88px;
}
.u-mr90 {
  margin-right: 90px;
}
.u-mr92 {
  margin-right: 92px;
}
.u-mr95 {
  margin-right: 95px;
}
.u-mr96 {
  margin-right: 96px;
}
.u-mr100 {
  margin-right: 100px;
}
@media screen and (max-width: 767px) {
  .u-mobile-m-auto {
    margin: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-m0 {
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mt-auto {
    margin-top: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mt0 {
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mb-auto {
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mb0 {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-ml-auto {
    margin-left: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-ml0 {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mr-auto {
    margin-right: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mr0 {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-p0 {
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pt0 {
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pb0 {
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pl0 {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pr0 {
    padding-right: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-m-auto {
    margin: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-m0 {
    margin: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mt-auto {
    margin-top: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mt0 {
    margin-top: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mb-auto {
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mb0 {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-ml-auto {
    margin-left: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-ml0 {
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mr-auto {
    margin-right: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mr0 {
    margin-right: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-p0 {
    padding: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pt0 {
    padding-top: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pb0 {
    padding-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pl0 {
    padding-left: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pr0 {
    padding-right: 0 !important;
  }
}
@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}
@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}
.u-fixed {
  position: fixed;
}
.u-relative {
  position: relative;
}
.u-absolute {
  position: absolute;
}
.u-sr-only,
.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-sr-only--focusable:focus,
.sr-only--focusable:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  padding: 8px 16px;
  background: #fff;
  color: #1c5548;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}
.u-text-bottom {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .u-mobile-text-center {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-text-left {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-text-right {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-text-bottom {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-center {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-left {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-right {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-text-bottom {
    text-align: right;
  }
}
.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}
.u-text__inline-block {
  display: inline-block;
}
.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}