/*! 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;
}

:root {
  --color-text: #333333;
  --color-white: #FFFFFF;
  --color-dark-blue: #0e3267;
  --color-gradient-1: linear-gradient(to right, #006fff 0%, #00d0ff 100%);
  --color-gradient-2: linear-gradient(to right, #3684ef 0%, #0362e4 100%);
  --color-gradient-3: linear-gradient(to right, #bcdeed 0%, #eec9db 100%);
  --color-gradient-4: linear-gradient(to top, #94d8ec 0%,#94d8ec 30%, #d8edf3 40% , #d8edf3 100%);
  --fz-base: 16px;
  --ff-base: "Noto Sans JP", sans-serif;
  --ff-en: "Oswald", sans-serif;
  --inner-width: 1040px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-base);
  color: var(--color-text);
}

body.is-active {
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  color: inherit;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 1024px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 767.9px) {
  .is-pc {
    display: none;
  }
}

.l-wrapper {
  overflow-x: hidden;
  background: var(--color-gradient-1);
  position: relative;
}

.l-wrapper__bg-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.l-inner {
  max-width: calc(1270px + clamp(0.8rem, 1.6666666667vw, 1.25rem) * 2);
  margin-inline: auto;
  padding-inline: clamp(0.8rem, 1.6666666667vw, 1.25rem);
}

@media screen and (max-width: 767.9px) {
  .l-inner {
    max-width: 100%;
    padding-inline: clamp(1rem, 5.3333333333vw, 1.25rem);
  }
}

.l-lower-header {
  width: 248.4626647145%;
  min-width: clamp(135.76rem, 282.8333333333vw, 212.125rem);
  height: clamp(40.84rem, 85.0833333333vw, 63.8125rem);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-top: clamp(-38.9375rem, -51.9166666667vw, -24.92rem);
  left: 50%;
  translate: -50% 0;
  margin-bottom: clamp(1.84rem, 3.8333333333vw, 2.875rem);
}

@media screen and (max-width: 767.9px) {
  .l-lower-header {
    width: 248.2666666667%;
    min-width: clamp(46.55rem, 248.2666666667vw, 58.1875rem);
    height: clamp(14rem, 74.6666666667vw, 17.5rem);
    margin-top: clamp(-4.625rem, -19.7333333333vw, -3.7rem);
    margin-bottom: clamp(1.25rem, 6.6666666667vw, 1.5625rem);
  }
}

.l-lower-header__bg {
  position: absolute;
  width: 56.9239835003%;
  height: auto;
  left: 26.5%;
  top: 33%;
  pointer-events: none;
}

@media screen and (max-width: 767.9px) {
  .l-lower-header__bg {
    left: 27.6%;
    top: 18%;
  }
}

.l-lower-header__bg img {
  width: 100%;
  height: 100%;
}

.l-lower__main {
  position: relative;
  z-index: 10;
  background: url(../images/lower_bg_pc.webp) no-repeat center center/cover;
  padding-bottom: clamp(4.4rem, 9.1666666667vw, 6.875rem);
}

@media screen and (max-width: 767.9px) {
  .l-lower__main {
    padding-bottom: clamp(3.25rem, 17.3333333333vw, 4.0625rem);
    background: url(../images/lower_bg_sp.webp) no-repeat center center/cover;
    background-color: var(--color-white);
  }
}

.l-lower__inner {
  max-width: 1000px;
  margin-inline: auto;
}

.l-header {
  position: fixed;
  top: clamp(1.72rem, 3.5833333333vw, 2.6875rem);
  left: 50%;
  translate: -50% 0;
  width: calc(100% - clamp(0.8rem, 1.6666666667vw, 1.25rem) * 2);
  max-width: 1270px;
  background-color: var(--color-white);
  border-radius: clamp(1.64rem, 3.4166666667vw, 2.5625rem);
  padding-inline: clamp(0.92rem, 1.9166666667vw, 1.4375rem) clamp(0.88rem, 1.8333333333vw, 1.375rem);
  padding-block: clamp(0.34rem, 0.7083333333vw, 0.53125rem) clamp(0.42rem, 0.875vw, 0.65625rem);
  z-index: 100;
}

@media screen and (max-width: 767.9px) {
  .l-header {
    top: clamp(1.35rem, 7.2vw, 1.6875rem);
    width: calc(100% - clamp(1rem, 5.3333333333vw, 1.25rem) * 2);
    border-radius: clamp(1.4rem, 7.4666666667vw, 1.75rem);
    padding-inline: clamp(0.8rem, 4.2666666667vw, 1rem) clamp(0.7rem, 3.7333333333vw, 0.875rem);
    padding-block: clamp(0.3rem, 1.6vw, 0.375rem) clamp(0.35rem, 1.8666666667vw, 0.4375rem);
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
}

.l-header__logo {
  width: clamp(9.4rem, 19.5833333333vw, 14.6875rem);
  display: block;
}

@media screen and (max-width: 767.9px) {
  .l-header__logo {
    width: clamp(8.05rem, 42.9333333333vw, 10.0625rem);
  }
}

.l-header__logo img {
  width: 100%;
  height: auto;
}

.l-header__menu-btn {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .l-header__menu-btn {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-left: auto;
    width: clamp(2rem, 10.6666666667vw, 2.5rem);
    height: clamp(2rem, 10.6666666667vw, 2.5rem);
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-gradient-2);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

.l-header__menu-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 0.4166666667vw, 0.3125rem);
}

.l-header__menu-btn-line {
  display: block;
  width: clamp(0.88rem, 1.8333333333vw, 1.375rem);
  height: 1px;
  background-color: var(--color-white);
  border-radius: clamp(0.04rem, 0.0833333333vw, 0.0625rem);
  transition: translate 0.3s ease, rotate 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.l-header__menu-btn.is-open .l-header__menu-btn-line:nth-child(1) {
  translate: 0 clamp(0.24rem, 0.5vw, 0.375rem);
  rotate: 45deg;
}

.l-header__menu-btn.is-open .l-header__menu-btn-line:nth-child(2) {
  opacity: 0;
}

.l-header__menu-btn.is-open .l-header__menu-btn-line:nth-child(3) {
  translate: 0 clamp(-0.375rem, -0.5vw, -0.24rem);
  rotate: -45deg;
}

.l-header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
}

@media screen and (max-width: 767.9px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(0.96rem, 2vw, 1.5rem);
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.68rem, 3.5vw, 2.625rem);
}

.l-header__nav-contact {
  display: grid;
  grid-template-columns: clamp(0.74rem, 1.5416666667vw, 1.15625rem) 1fr;
  height: clamp(2rem, 4.1666666667vw, 3.125rem);
  align-items: center;
  background: var(--color-gradient-2);
  padding-inline: clamp(0.66rem, 1.375vw, 1.03125rem) clamp(0.832rem, 1.7333333333vw, 1.3rem);
  gap: clamp(0.16rem, 0.3333333333vw, 0.25rem);
  color: var(--color-white);
  border-radius: clamp(1rem, 2.0833333333vw, 1.5625rem);
}

.l-header__drawer {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .l-header__drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99;
    background-color: var(--color-white);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

.l-header__drawer.is-open {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

@media screen and (max-width: 767.9px) {
  .l-header__drawer-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: clamp(5.5rem, 29.3333333333vw, 6.875rem) clamp(2rem, 10.6666666667vw, 2.5rem);
    padding-inline: clamp(1.2rem, 6.4vw, 1.5rem);
  }
}

@media screen and (max-width: 767.9px) {
  .l-header__drawer-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.4rem, 2.1333333333vw, 0.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
  }
}

.l-header__drawer-item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
}

@media screen and (max-width: 767.9px) {
  .l-header__drawer-link {
    display: block;
    padding-block: clamp(0.8rem, 4.2666666667vw, 1rem);
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
    color: var(--color-text);
    text-decoration: none;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header__drawer-contact {
    display: grid;
    grid-template-columns: clamp(0.925rem, 4.9333333333vw, 1.15625rem) 1fr;
    align-items: center;
    justify-content: center;
    min-height: clamp(2.5rem, 13.3333333333vw, 3.125rem);
    margin-top: clamp(1.2rem, 6.4vw, 1.5rem);
    padding-inline: clamp(0.825rem, 4.4vw, 1.03125rem) clamp(1.04rem, 5.5466666667vw, 1.3rem);
    gap: clamp(0.3rem, 1.6vw, 0.375rem);
    background: var(--color-gradient-2);
    color: var(--color-white);
    border-radius: clamp(1.25rem, 6.6666666667vw, 1.5625rem);
    text-decoration: none;
    max-width: 300px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .l-header__drawer {
    transition: none;
  }
  .l-header__menu-btn-line {
    transition: none;
  }
}

.l-footer {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  padding-top: clamp(1.6rem, 3.3333333333vw, 2.5rem);
  padding-bottom: clamp(2.12rem, 4.4166666667vw, 3.3125rem);
}

@media screen and (max-width: 767.9px) {
  .l-footer {
    padding-top: clamp(2.1rem, 11.2vw, 2.625rem);
    padding-bottom: clamp(1.8rem, 9.6vw, 2.25rem);
  }
}

.l-footer__inner {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  max-width: 1200px;
  margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
  .l-footer__inner {
    flex-direction: column;
    gap: clamp(1.65rem, 8.8vw, 2.0625rem);
  }
}

.l-footer__logo {
  width: clamp(11.04rem, 23vw, 17.25rem);
}

@media screen and (max-width: 767.9px) {
  .l-footer__logo {
    width: clamp(13.75rem, 73.3333333333vw, 17.1875rem);
  }
}

.l-footer__nav {
  margin-left: auto;
}

@media screen and (max-width: 767.9px) {
  .l-footer__nav {
    margin-left: 0;
  }
}

.l-footer__nav-items {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.9166666667vw, 2.1875rem);
}

@media screen and (max-width: 767.9px) {
  .l-footer__nav-items {
    flex-direction: column;
    gap: clamp(0.7rem, 3.7333333333vw, 0.875rem);
    justify-content: center;
  }
}

.l-footer__nav-link {
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767.9px) {
  .l-footer__nav-link {
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
  }
}

.l-footer__copyright {
  text-align: right;
  margin-top: clamp(0.72rem, 1.5vw, 1.125rem);
  margin-right: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  font-size: clamp(0.4rem, 0.8333333333vw, 0.625rem);
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767.9px) {
  .l-footer__copyright {
    margin-top: clamp(2.15rem, 11.4666666667vw, 2.6875rem);
    text-align: center;
    margin-right: 0;
    font-size: clamp(0.5rem, 2.6666666667vw, 0.625rem);
    letter-spacing: 0.08em;
  }
}

.c-banners {
  background-color: var(--color-white);
  padding-inline: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  padding-top: clamp(2.64rem, 5.5vw, 4.125rem);
  padding-bottom: clamp(2.72rem, 5.6666666667vw, 4.25rem);
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767.9px) {
  .c-banners {
    padding-top: clamp(2.05rem, 10.9333333333vw, 2.5625rem);
    padding-bottom: clamp(2.3rem, 12.2666666667vw, 2.875rem);
    padding-inline: clamp(1rem, 5.3333333333vw, 1.25rem);
  }
}

.c-banners__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 3.3333333333vw, 2.5rem);
  max-width: 1100px;
  margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
  .c-banners__list {
    flex-direction: column;
    gap: clamp(0.9rem, 4.8vw, 1.125rem);
    max-width: 335px;
  }
}

.c-breadcrumbs {
  display: flex;
  align-items: center;
  gap: clamp(0.28rem, 0.5833333333vw, 0.4375rem);
  font-size: clamp(0.56rem, 1.1666666667vw, 0.875rem);
  margin-left: clamp(1.4rem, 2.9166666667vw, 2.1875rem);
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767.9px) {
  .c-breadcrumbs {
    gap: clamp(0.2rem, 1.0666666667vw, 0.25rem);
    font-size: clamp(0.5rem, 2.6666666667vw, 0.625rem);
    margin-left: 0;
  }
}

.c-lower__title {
  font-size: clamp(1.68rem, 3.5vw, 2.625rem);
  width: fit-content;
  margin-inline: auto;
  margin-top: clamp(3rem, 6.25vw, 4.6875rem);
  margin-bottom: 0;
  font-weight: 300;
  position: relative;
  padding-bottom: clamp(1.36rem, 2.8333333333vw, 2.125rem);
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767.9px) {
  .c-lower__title {
    text-align: center;
    font-size: clamp(1.3rem, 6.9333333333vw, 1.625rem);
    padding-bottom: clamp(1rem, 5.3333333333vw, 1.25rem);
    margin-top: clamp(2.3rem, 12.2666666667vw, 2.875rem);
  }
}

.c-lower__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  scale: 1 1.1;
  width: clamp(4rem, 8.3333333333vw, 6.25rem);
  height: 1px;
  background: var(--color-gradient-3);
}

@media screen and (max-width: 767.9px) {
  .c-lower__title::after {
    width: clamp(3.15rem, 16.8vw, 3.9375rem);
  }
}

.c-lower__top-text {
  margin-top: clamp(1.12rem, 2.3333333333vw, 1.75rem);
  text-align: center;
  font-size: clamp(0.76rem, 1.5833333333vw, 1.1875rem);
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (max-width: 767.9px) {
  .c-lower__top-text {
    margin-top: clamp(0.8rem, 4.2666666667vw, 1rem);
    font-size: clamp(0.8rem, 4.2666666667vw, 1rem);
    line-height: 1.7;
    padding-left: clamp(0.6rem, 3.2vw, 0.75rem);
  }
}

.p-top-fv {
  position: relative;
  z-index: 10;
}

.p-top-fv__inner {
  max-width: 1366px;
  margin-inline: auto;
  padding-top: clamp(9.92rem, 20.6666666667vw, 15.5rem);
  padding-bottom: clamp(6.8rem, 14.1666666667vw, 10.625rem);
  position: relative;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__inner {
    padding-top: clamp(9.8rem, 52.2666666667vw, 12.25rem);
    padding-bottom: clamp(2.7rem, 14.4vw, 3.375rem);
  }
}

.p-top-fv__title {
  display: grid;
  gap: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  color: var(--color-white);
  margin-left: clamp(3.4rem, 7.0833333333vw, 5.3125rem);
  font-style: italic;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__title {
    gap: clamp(0.5rem, 2.6666666667vw, 0.625rem);
    margin-left: 0;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-top-fv__title-sub {
  font-size: clamp(1.32rem, 2.75vw, 2.0625rem);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.196969697;
  margin-left: clamp(0.4rem, 0.8333333333vw, 0.625rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__title-sub {
    font-size: clamp(0.9rem, 4.8vw, 1.125rem);
    margin-left: clamp(0.3rem, 1.6vw, 0.375rem);
    letter-spacing: 0.06em;
  }
}

.p-top-fv__title-main {
  display: grid;
  margin-block: 0;
  font-weight: 200;
  font-size: clamp(2.52rem, 5.25vw, 3.9375rem);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__title-main {
    font-size: clamp(1.45rem, 7.7333333333vw, 1.8125rem);
    letter-spacing: 0;
    letter-spacing: 0.05em;
  }
}

.p-top-fv__title-main .is-narrow {
  letter-spacing: 0;
  margin-left: clamp(-0.25rem, -0.3333333333vw, -0.16rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__title-main .is-narrow {
    letter-spacing: 0.04em;
  }
}

.p-top-fv__title-main .is-left-narrow {
  letter-spacing: -0.1em;
  margin-left: clamp(-1rem, -1.3333333333vw, -0.64rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__title-main .is-left-narrow {
    letter-spacing: -0.06em;
  }
}

.p-top-fv__text-wrapper {
  margin-top: clamp(24rem, 50vw, 37.5rem);
  text-align: center;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__text-wrapper {
    margin-top: clamp(9.75rem, 52vw, 12.1875rem);
    width: fit-content;
    margin-inline: auto;
  }
}

.p-top-fv__text-main {
  color: var(--color-white);
  font-weight: 500;
  font-size: clamp(1.12rem, 2.3333333333vw, 1.75rem);
  letter-spacing: 0.32em;
  line-height: 2.2857142857;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__text-main {
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
    letter-spacing: 0.31em;
    line-height: 2;
    text-align: left;
  }
  .p-top-fv__text-main .is-small-sp {
    font-size: clamp(0.6rem, 3.2vw, 0.75rem);
    letter-spacing: 0.15em;
  }
}

.p-top-fv__text-sub {
  color: var(--color-white);
  font-weight: 400;
  font-size: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  letter-spacing: 0.14em;
  line-height: 1.9;
  margin-top: clamp(1.6rem, 3.3333333333vw, 2.5rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__text-sub {
    font-size: clamp(0.65rem, 3.4666666667vw, 0.8125rem);
    text-align: left;
    margin-top: clamp(1.25rem, 6.6666666667vw, 1.5625rem);
    letter-spacing: 0.13em;
    line-height: 2.0769230769;
  }
}

.p-top-fv__link {
  font-size: clamp(0.64rem, 1.3333333333vw, 1rem);
  letter-spacing: 0.17em;
  font-weight: 500;
  display: grid;
  place-items: center;
  min-height: clamp(2.8rem, 5.8333333333vw, 4.375rem);
  margin-top: clamp(2.64rem, 5.5vw, 4.125rem);
  max-width: clamp(19.44rem, 40.5vw, 30.375rem);
  width: 100%;
  margin-inline: auto;
  background: var(--color-gradient-3);
  border-radius: clamp(1.4rem, 2.9166666667vw, 2.1875rem);
  padding: clamp(0.32rem, 0.6666666667vw, 0.5rem) clamp(2rem, 4.1666666667vw, 3.125rem);
  position: relative;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__link {
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
    letter-spacing: 0.08em;
    margin-top: clamp(1.7rem, 9.0666666667vw, 2.125rem);
    min-height: clamp(2.8rem, 14.9333333333vw, 3.5rem);
    padding-inline: clamp(1rem, 5.3333333333vw, 1.25rem) clamp(1.75rem, 9.3333333333vw, 2.1875rem);
    max-width: initial;
    border-radius: clamp(1.5rem, 8vw, 1.875rem);
  }
}

.p-top-fv__link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: clamp(1rem, 2.0833333333vw, 1.5625rem);
  translate: 0 -50%;
  height: 1px;
  width: clamp(1rem, 2.0833333333vw, 1.5625rem);
  background-color: var(--color-dark-blue);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__link::before {
    width: clamp(0.9rem, 4.8vw, 1.125rem);
    right: clamp(0.85rem, 4.5333333333vw, 1.0625rem);
  }
}

.p-top-fv__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  translate: 0 -50%;
  width: 6px;
  aspect-ratio: 1;
  height: auto;
  background-color: var(--color-dark-blue);
  border-radius: 50%;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__link::after {
    right: clamp(0.75rem, 4vw, 0.9375rem);
    width: clamp(0.2rem, 1.0666666667vw, 0.25rem);
  }
}

.p-top-fv__img1 {
  position: absolute;
  top: clamp(-27.5625rem, -36.75vw, -17.64rem);
  right: clamp(-20.4375rem, -27.25vw, -13.08rem);
  width: clamp(39.4rem, 82.0833333333vw, 61.5625rem);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-gradient-4);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img1 {
    top: clamp(-6.9375rem, -29.6vw, -5.55rem);
    right: clamp(-6.875rem, -29.3333333333vw, -5.5rem);
    width: clamp(15rem, 80vw, 18.75rem);
  }
}

.p-top-fv__img1 img {
  position: absolute;
  width: clamp(51.48rem, 107.25vw, 80.4375rem);
  max-width: none;
  height: auto;
  aspect-ratio: 1287/830;
  bottom: clamp(-9.375rem, -12.5vw, -6rem);
  right: clamp(4.8rem, 10vw, 7.5rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img1 img {
    width: clamp(19.6rem, 104.5333333333vw, 24.5rem);
    bottom: clamp(-2.8125rem, -12vw, -2.25rem);
    right: clamp(1.8rem, 9.6vw, 2.25rem);
  }
}

.p-top-fv__img2 {
  position: absolute;
  top: clamp(16.96rem, 35.3333333333vw, 26.5rem);
  left: clamp(-8.75rem, -11.6666666667vw, -5.6rem);
  width: clamp(18.04rem, 37.5833333333vw, 28.1875rem);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-gradient-4);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img2 {
    top: clamp(15.75rem, 84vw, 19.6875rem);
    left: clamp(-4rem, -17.0666666667vw, -3.2rem);
    width: clamp(7.3rem, 38.9333333333vw, 9.125rem);
  }
}

.p-top-fv__img2 img {
  position: absolute;
  width: clamp(36.64rem, 76.3333333333vw, 57.25rem);
  max-width: none;
  height: auto;
  top: 50%;
  translate: -34% -50%;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img2 img {
    width: clamp(14.8rem, 78.9333333333vw, 18.5rem);
    translate: -33% -50%;
  }
}

.p-top-fv__img3 {
  position: absolute;
  top: clamp(27.52rem, 57.3333333333vw, 43rem);
  right: clamp(15.12rem, 31.5vw, 23.625rem);
  width: clamp(12.68rem, 26.4166666667vw, 19.8125rem);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-gradient-4);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img3 {
    top: clamp(20rem, 106.6666666667vw, 25rem);
    right: clamp(3.25rem, 17.3333333333vw, 4.0625rem);
    width: clamp(5.1rem, 27.2vw, 6.375rem);
  }
}

.p-top-fv__img3 img {
  position: absolute;
  width: clamp(20.44rem, 42.5833333333vw, 31.9375rem);
  max-width: none;
  height: auto;
  top: 50%;
  translate: -30% -50%;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img3 img {
    width: clamp(8.25rem, 44vw, 10.3125rem);
    top: clamp(-0.3125rem, -1.3333333333vw, -0.25rem);
    right: clamp(-0.9375rem, -4vw, -0.75rem);
    translate: 0 0;
  }
}

.p-top-fv__img4 {
  position: absolute;
  top: clamp(44.8rem, 93.3333333333vw, 70rem);
  right: clamp(-1.625rem, -2.1666666667vw, -1.04rem);
  width: clamp(7.6rem, 15.8333333333vw, 11.875rem);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-gradient-4);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img4 {
    top: clamp(32rem, 170.6666666667vw, 40rem);
    right: clamp(-0.9375rem, -4vw, -0.75rem);
    width: clamp(3.4rem, 18.1333333333vw, 4.25rem);
  }
}

.p-top-fv__img4 img {
  position: absolute;
  width: clamp(14.32rem, 29.8333333333vw, 22.375rem);
  max-width: none;
  height: auto;
  top: 50%;
  translate: -6% -50%;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img4 img {
    width: clamp(6.45rem, 34.4vw, 8.0625rem);
  }
}

.p-top-fv__img5 {
  position: absolute;
  bottom: clamp(3.2rem, 6.6666666667vw, 5rem);
  left: clamp(-2.8125rem, -3.75vw, -1.8rem);
  width: clamp(11.88rem, 24.75vw, 18.5625rem);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-gradient-4);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img5 {
    bottom: clamp(3.7rem, 19.7333333333vw, 4.625rem);
    width: clamp(5.3rem, 28.2666666667vw, 6.625rem);
  }
}

.p-top-fv__img5 img {
  position: absolute;
  width: clamp(22.28rem, 46.4166666667vw, 34.8125rem);
  max-width: none;
  height: auto;
  top: 50%;
  left: 50%;
  translate: -47% -50%;
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__img5 img {
    width: clamp(10rem, 53.3333333333vw, 12.5rem);
  }
}

.p-top-fv__scroll-wrapper {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.08rem, 0.1666666667vw, 0.125rem);
  top: clamp(25.04rem, 52.1666666667vw, 39.125rem);
  right: clamp(3.2rem, 6.6666666667vw, 5rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-fv__scroll-wrapper {
    display: none;
  }
}

.p-top-fv__scroll-bar {
  position: relative;
  flex-shrink: 0;
  width: clamp(0.24rem, 0.5vw, 0.375rem);
  height: clamp(13.32rem, 27.75vw, 20.8125rem);
  overflow: hidden;
}

.p-top-fv__scroll-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  translate: -50% 0;
  background-color: var(--color-white);
  pointer-events: none;
}

.p-top-fv__scroll-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(0.24rem, 0.5vw, 0.375rem);
  height: clamp(0.24rem, 0.5vw, 0.375rem);
  margin-left: clamp(-0.1875rem, -0.25vw, -0.12rem);
  border-radius: 50%;
  background-color: var(--color-white);
  animation: p-top-fv-scroll-dot 4s ease-in-out infinite;
  opacity: 0;
  will-change: translate, opacity;
}

@keyframes p-top-fv-scroll-dot {
  0% {
    translate: 0 0;
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  38% {
    translate: 0 clamp(12.8rem, 26.6666666667vw, 20rem);
    opacity: 1;
  }
  46% {
    opacity: 0;
  }
  100% {
    translate: 0 clamp(12.8rem, 26.6666666667vw, 20rem);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-top-fv__scroll-dot {
    animation: none;
    opacity: 1;
    translate: 0 clamp(3.2rem, 6.6666666667vw, 5rem);
  }
}

.p-top-fv__scroll-text {
  color: var(--color-white);
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
  font-family: var(--ff-en);
}

.p-top-news {
  position: relative;
  padding-top: clamp(3.4rem, 7.0833333333vw, 5.3125rem);
  padding-bottom: clamp(3.44rem, 7.1666666667vw, 5.375rem);
  z-index: 10;
}

@media screen and (max-width: 767.9px) {
  .p-top-news {
    padding-top: clamp(2.3rem, 12.2666666667vw, 2.875rem);
    padding-bottom: clamp(2.6rem, 13.8666666667vw, 3.25rem);
  }
}

.p-top-news__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 102%;
  height: 101%;
  z-index: -1;
  pointer-events: none;
}

.p-top-news__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-news__contents {
  display: grid;
  grid-template-columns: fit-content(100%) 1fr;
  column-gap: clamp(2.84rem, 5.9166666667vw, 4.4375rem);
  grid-template-rows: fit-content(100%) 1fr;
  max-width: 1200px;
  margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
  .p-top-news__contents {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

.p-top-news__title {
  font-size: clamp(4.24rem, 8.8333333333vw, 6.625rem);
  font-family: var(--ff-en);
  font-weight: 400;
  order: 1;
  background-image: var(--color-gradient-2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
  margin-top: clamp(-0.25rem, -0.3333333333vw, -0.16rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__title {
    font-size: clamp(4.4rem, 23.4666666667vw, 5.5rem);
    text-align: center;
  }
}

.p-top-news__link {
  order: 3;
  font-family: var(--ff-en);
  width: clamp(8.32rem, 17.3333333333vw, 13rem);
  height: clamp(2.4rem, 5vw, 3.75rem);
  display: grid;
  place-items: center;
  background: var(--color-gradient-2);
  border-radius: clamp(1.2rem, 2.5vw, 1.875rem);
  color: var(--color-white);
  position: relative;
  margin-top: clamp(1.2rem, 2.5vw, 1.875rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__link {
    margin-top: clamp(1.3rem, 6.9333333333vw, 1.625rem);
    margin-inline: auto;
    width: clamp(10.4rem, 55.4666666667vw, 13rem);
    height: clamp(2.8rem, 14.9333333333vw, 3.5rem);
    border-radius: clamp(1.4rem, 7.4666666667vw, 1.75rem);
  }
}

.p-top-news__link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: clamp(0.72rem, 1.5vw, 1.125rem);
  translate: 0 -50%;
  width: clamp(1.12rem, 2.3333333333vw, 1.75rem);
  height: 1px;
  background-color: var(--color-white);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__link::before {
    width: clamp(0.9rem, 4.8vw, 1.125rem);
    right: clamp(0.9rem, 4.8vw, 1.125rem);
  }
}

.p-top-news__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: clamp(0.64rem, 1.3333333333vw, 1rem);
  translate: 0 -50%;
  width: 6px;
  aspect-ratio: 1;
  height: auto;
  background-color: var(--color-white);
  border-radius: 50%;
}

@media screen and (max-width: 767.9px) {
  .p-top-news__link::after {
    right: clamp(0.75rem, 4vw, 0.9375rem);
    width: 4px;
  }
}

.p-top-news__items {
  order: 2;
  grid-row: span 2;
  display: grid;
  gap: clamp(0.48rem, 1vw, 0.75rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__items {
    grid-row: initial;
    gap: clamp(0.5rem, 2.6666666667vw, 0.625rem);
    margin-top: clamp(1.55rem, 8.2666666667vw, 1.9375rem);
  }
}

.p-top-news__item-link {
  border-radius: clamp(0.48rem, 1vw, 0.75rem);
  display: grid;
  grid-template-columns: clamp(6.28rem, 13.0833333333vw, 9.8125rem) 1fr fit-content(100%);
  align-items: center;
  background-color: var(--color-white);
  min-height: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--color-dark-blue);
  padding-inline: clamp(1.8rem, 3.75vw, 2.8125rem) clamp(1.08rem, 2.25vw, 1.6875rem);
  padding-block: clamp(0.32rem, 0.6666666667vw, 0.5rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__item-link {
    grid-template-columns: 1fr fit-content(100%);
    grid-template-rows: fit-content(100%) fit-content(100%);
    align-content: center;
    min-height: clamp(3.6rem, 19.2vw, 4.5rem);
    padding-inline: clamp(1.1rem, 5.8666666667vw, 1.375rem);
  }
}

.p-top-news__item-date {
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__item-date {
    order: 1;
    font-size: clamp(0.6rem, 3.2vw, 0.75rem);
  }
}

.p-top-news__item-title {
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__item-title {
    order: 3;
    font-size: clamp(0.7rem, 3.7333333333vw, 0.875rem);
  }
}

.p-top-news__item-text {
  font-size: clamp(0.56rem, 1.1666666667vw, 0.875rem);
  position: relative;
  padding-right: clamp(1.6rem, 3.3333333333vw, 2.5rem);
  font-family: var(--ff-en);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__item-text {
    order: 2;
    grid-row: span 2;
    font-size: clamp(0.6rem, 3.2vw, 0.75rem);
    padding-right: clamp(1.3rem, 6.9333333333vw, 1.625rem);
  }
}

.p-top-news__item-text::before {
  position: absolute;
  content: "";
  top: 50%;
  right: clamp(0.08rem, 0.1666666667vw, 0.125rem);
  translate: 0 -50%;
  width: clamp(1.12rem, 2.3333333333vw, 1.75rem);
  height: 1px;
  background-color: var(--color-dark-blue);
}

@media screen and (max-width: 767.9px) {
  .p-top-news__item-text::before {
    width: clamp(0.9rem, 4.8vw, 1.125rem);
  }
}

.p-top-news__item-text::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 6px;
  aspect-ratio: 1;
  height: auto;
  background-color: var(--color-dark-blue);
  border-radius: 50%;
}

@media screen and (max-width: 767.9px) {
  .p-top-news__item-text::after {
    width: 4px;
  }
}

.p-news {
  margin-top: clamp(2.4rem, 5vw, 3.75rem);
}

@media screen and (max-width: 767.9px) {
  .p-news {
    margin-top: clamp(2rem, 10.6666666667vw, 2.5rem);
  }
}

.p-news__items {
  display: grid;
  gap: clamp(0.48rem, 1vw, 0.75rem);
}

@media screen and (max-width: 767.9px) {
  .p-news__items {
    gap: clamp(0.5rem, 2.6666666667vw, 0.625rem);
  }
}

.p-news__item-link {
  border-radius: clamp(0.48rem, 1vw, 0.75rem);
  display: grid;
  grid-template-columns: clamp(6.28rem, 13.0833333333vw, 9.8125rem) 1fr fit-content(100%);
  align-items: center;
  background-color: var(--color-white);
  min-height: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--color-dark-blue);
  padding-inline: clamp(1.8rem, 3.75vw, 2.8125rem) clamp(1.08rem, 2.25vw, 1.6875rem);
  padding-block: clamp(0.32rem, 0.6666666667vw, 0.5rem);
  transition: opacity 0.2s;
}

@media screen and (max-width: 767.9px) {
  .p-news__item-link {
    grid-template-columns: 1fr fit-content(100%);
    grid-template-rows: fit-content(100%) fit-content(100%);
    align-content: center;
    min-height: clamp(3.6rem, 19.2vw, 4.5rem);
    padding-inline: clamp(1.1rem, 5.8666666667vw, 1.375rem);
  }
}

.p-news__item-link:hover {
  opacity: 0.7;
}

.p-news__item-date {
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
}

@media screen and (max-width: 767.9px) {
  .p-news__item-date {
    order: 1;
    font-size: clamp(0.6rem, 3.2vw, 0.75rem);
  }
}

.p-news__item-title {
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
}

@media screen and (max-width: 767.9px) {
  .p-news__item-title {
    order: 3;
    font-size: clamp(0.7rem, 3.7333333333vw, 0.875rem);
  }
}

.p-news__item-text {
  font-size: clamp(0.56rem, 1.1666666667vw, 0.875rem);
  position: relative;
  padding-right: clamp(1.6rem, 3.3333333333vw, 2.5rem);
  font-family: var(--ff-en);
}

@media screen and (max-width: 767.9px) {
  .p-news__item-text {
    order: 2;
    grid-row: span 2;
    font-size: clamp(0.6rem, 3.2vw, 0.75rem);
    padding-right: clamp(1.3rem, 6.9333333333vw, 1.625rem);
  }
}

.p-news__item-text::before {
  position: absolute;
  content: "";
  top: 50%;
  right: clamp(0.08rem, 0.1666666667vw, 0.125rem);
  translate: 0 -50%;
  width: clamp(1.12rem, 2.3333333333vw, 1.75rem);
  height: 1px;
  background-color: var(--color-dark-blue);
}

@media screen and (max-width: 767.9px) {
  .p-news__item-text::before {
    width: clamp(0.9rem, 4.8vw, 1.125rem);
  }
}

.p-news__item-text::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 6px;
  aspect-ratio: 1;
  height: auto;
  background-color: var(--color-dark-blue);
  border-radius: 50%;
}

@media screen and (max-width: 767.9px) {
  .p-news__item-text::after {
    width: 4px;
  }
}

.p-practice-contents {
  margin-top: clamp(3.72rem, 7.75vw, 5.8125rem);
  display: grid;
  gap: clamp(2.12rem, 4.4166666667vw, 3.3125rem);
}

@media screen and (max-width: 767.9px) {
  .p-practice-contents {
    margin-top: clamp(3.2rem, 17.0666666667vw, 4rem);
    gap: clamp(2.5rem, 13.3333333333vw, 3.125rem);
  }
}

.p-practice-content {
  display: grid;
  grid-template-columns: 556fr 385fr;
  gap: clamp(2.36rem, 4.9166666667vw, 3.6875rem);
}

@media screen and (max-width: 767.9px) {
  .p-practice-content {
    grid-template-columns: 1fr;
    gap: clamp(1.6rem, 8.5333333333vw, 2rem);
  }
}

.p-practice-content:nth-child(even) {
  grid-template-columns: 385fr 556fr;
}

@media screen and (max-width: 767.9px) {
  .p-practice-content:nth-child(even) {
    grid-template-columns: 1fr;
  }
}

.p-practice-content:nth-child(even) .p-practice-content__text-wrapper {
  order: 2;
}

@media screen and (max-width: 767.9px) {
  .p-practice-content:nth-child(even) .p-practice-content__text-wrapper {
    order: initial;
  }
}

.p-practice-content:nth-child(even) .p-practice-content__img {
  order: 1;
}

@media screen and (max-width: 767.9px) {
  .p-practice-content:nth-child(even) .p-practice-content__img {
    order: initial;
  }
}

.p-practice-content__title {
  padding-top: clamp(0.48rem, 1vw, 0.75rem);
  padding-bottom: clamp(0.72rem, 1.5vw, 1.125rem);
  padding-inline: clamp(1.48rem, 3.0833333333vw, 2.3125rem);
  background-color: var(--color-white);
  border-radius: clamp(0.48rem, 1vw, 0.75rem);
  font-size: clamp(0.88rem, 1.8333333333vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 0.09em;
}

@media screen and (max-width: 767.9px) {
  .p-practice-content__title {
    padding-block: clamp(0.6rem, 3.2vw, 0.75rem) clamp(0.6rem, 3.2vw, 0.75rem);
    padding-inline: clamp(0.95rem, 5.0666666667vw, 1.1875rem);
    font-size: clamp(0.85rem, 4.5333333333vw, 1.0625rem);
    border-radius: clamp(0.3rem, 1.6vw, 0.375rem);
  }
}

.p-practice-content__items {
  display: grid;
  gap: clamp(1.04rem, 2.1666666667vw, 1.625rem);
  margin-top: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  padding-left: clamp(1.48rem, 3.0833333333vw, 2.3125rem);
}

@media screen and (max-width: 767.9px) {
  .p-practice-content__items {
    padding-left: 0;
    margin-top: clamp(1rem, 5.3333333333vw, 1.25rem);
    gap: clamp(1rem, 5.3333333333vw, 1.25rem);
  }
}

.p-practice-content__item {
  display: grid;
  gap: clamp(0.72rem, 1.5vw, 1.125rem);
}

@media screen and (max-width: 767.9px) {
  .p-practice-content__item {
    gap: clamp(0.5rem, 2.6666666667vw, 0.625rem);
  }
}

.p-practice-content__item-title {
  padding-left: clamp(1.32rem, 2.75vw, 2.0625rem);
  position: relative;
  font-size: clamp(0.76rem, 1.5833333333vw, 1.1875rem);
  line-height: 1.5789473684;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767.9px) {
  .p-practice-content__item-title {
    padding-left: clamp(1.2rem, 6.4vw, 1.5rem);
    font-size: clamp(0.8rem, 4.2666666667vw, 1rem);
    line-height: 1.5;
  }
}

.p-practice-content__item-title::before {
  position: absolute;
  content: "";
  top: 0.5lh;
  left: 0;
  translate: 0 -50%;
  width: clamp(1rem, 2.0833333333vw, 1.5625rem);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  background: var(--color-gradient-1);
}

@media screen and (max-width: 767.9px) {
  .p-practice-content__item-title::before {
    width: clamp(1rem, 5.3333333333vw, 1.25rem);
  }
}

.p-practice-content__item-text {
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767.9px) {
  .p-practice-content__item-text {
    line-height: 1.8666666667;
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
  }
}

.p-practice-content__img {
  width: 100%;
  height: auto;
}

.p-practice-content__img img {
  width: 100%;
  height: auto;
}

.p-contact {
  margin-top: clamp(2.4rem, 5vw, 3.75rem);
}

@media screen and (max-width: 767.9px) {
  .p-contact {
    margin-top: clamp(2rem, 10.6666666667vw, 2.5rem);
  }
}

.p-contact__rows {
  display: grid;
  gap: clamp(0.12rem, 0.25vw, 0.1875rem);
}

.p-contact__row {
  display: grid;
  grid-template-columns: clamp(9.6rem, 20vw, 15rem) 1fr;
  border-radius: clamp(0.32rem, 0.6666666667vw, 0.5rem);
  overflow: hidden;
}

@media screen and (max-width: 767.9px) {
  .p-contact__row {
    grid-template-columns: 1fr;
    border-radius: clamp(0.3rem, 1.6vw, 0.375rem);
  }
}

.p-contact__row--top {
  align-items: start;
}

.p-contact__term {
  background-color: rgba(14, 50, 103, 0.07);
  padding: clamp(0.72rem, 1.5vw, 1.125rem) clamp(0.96rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  font-weight: 500;
  color: var(--color-dark-blue);
}

@media screen and (max-width: 767.9px) {
  .p-contact__term {
    padding: clamp(0.6rem, 3.2vw, 0.75rem) clamp(0.8rem, 4.2666666667vw, 1rem);
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
  }
}

.p-contact__term label,
.p-contact__term .p-contact__term-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.32rem, 0.6666666667vw, 0.5rem);
}

.p-contact__note {
  font-size: clamp(0.48rem, 1vw, 0.75rem);
  font-weight: 400;
  opacity: 0.7;
}

@media screen and (max-width: 767.9px) {
  .p-contact__note {
    font-size: clamp(0.55rem, 2.9333333333vw, 0.6875rem);
  }
}

.p-contact__required {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.44rem, 0.9166666667vw, 0.6875rem);
  font-weight: 400;
  color: var(--color-white);
  background: red;
  padding: clamp(0.08rem, 0.1666666667vw, 0.125rem) clamp(0.32rem, 0.6666666667vw, 0.5rem);
  border-radius: clamp(0.12rem, 0.25vw, 0.1875rem);
  white-space: nowrap;
  line-height: 1.6;
}

.p-contact__field {
  background-color: var(--color-white);
  padding: clamp(0.56rem, 1.1666666667vw, 0.875rem) clamp(0.96rem, 2vw, 1.5rem);
}

@media screen and (max-width: 767.9px) {
  .p-contact__field {
    padding: clamp(0.6rem, 3.2vw, 0.75rem) clamp(0.8rem, 4.2666666667vw, 1rem);
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
  }
}

.p-contact__input {
  width: 100%;
  height: clamp(1.76rem, 3.6666666667vw, 2.75rem);
  border: 1.5px solid #c5d8ea;
  border-radius: clamp(0.24rem, 0.5vw, 0.375rem);
  padding-inline: clamp(0.56rem, 1.1666666667vw, 0.875rem);
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  color: var(--color-dark-blue);
  font-family: var(--ff-base);
  background-color: transparent;
  transition: border-color 0.15s;
}

.p-contact__input::placeholder {
  color: #adc0d4;
}

.p-contact__input:focus {
  outline: 2px solid #3684ef;
  outline-offset: 0;
  border-color: transparent;
}

@media screen and (max-width: 767.9px) {
  .p-contact__input {
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
    height: clamp(2rem, 10.6666666667vw, 2.5rem);
  }
}

.p-contact__input--short {
  max-width: clamp(9.6rem, 20vw, 15rem);
}

@media screen and (max-width: 767.9px) {
  .p-contact__input--short {
    max-width: 100%;
  }
}

.p-contact__checks {
  display: grid;
  gap: clamp(0.56rem, 1.1666666667vw, 0.875rem);
}

@media screen and (max-width: 767.9px) {
  .p-contact__checks {
    gap: clamp(0.6rem, 3.2vw, 0.75rem);
  }
}

.p-contact__check-label {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.4rem, 0.8333333333vw, 0.625rem);
  cursor: pointer;
}

.p-contact__check-input {
  width: clamp(0.72rem, 1.5vw, 1.125rem);
  height: clamp(0.72rem, 1.5vw, 1.125rem);
  margin-top: clamp(0.12rem, 0.25vw, 0.1875rem);
  accent-color: #3684ef;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  top: 0.5lh;
  translate: 0 -50%;
}

@media screen and (max-width: 767.9px) {
  .p-contact__check-input {
    width: clamp(0.8rem, 4.2666666667vw, 1rem);
    height: clamp(0.8rem, 4.2666666667vw, 1rem);
  }
}

.p-contact__check-text {
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  line-height: 1.6;
  color: var(--color-dark-blue);
}

@media screen and (max-width: 767.9px) {
  .p-contact__check-text {
    font-size: clamp(0.7rem, 3.7333333333vw, 0.875rem);
  }
}

.p-contact__check-note {
  font-size: clamp(0.52rem, 1.0833333333vw, 0.8125rem);
  opacity: 0.7;
}

@media screen and (max-width: 767.9px) {
  .p-contact__check-note {
    font-size: clamp(0.6rem, 3.2vw, 0.75rem);
  }
}

.p-contact__comment-label {
  display: block;
  margin-top: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  font-size: clamp(0.56rem, 1.1666666667vw, 0.875rem);
  font-weight: 500;
  color: var(--color-dark-blue);
  padding-left: clamp(0.16rem, 0.3333333333vw, 0.25rem);
}

@media screen and (max-width: 767.9px) {
  .p-contact__comment-label {
    margin-top: clamp(0.8rem, 4.2666666667vw, 1rem);
  }
}

.p-contact__textarea {
  width: 100%;
  min-height: clamp(6.4rem, 13.3333333333vw, 10rem);
  border: 1.5px solid #c5d8ea;
  border-radius: clamp(0.24rem, 0.5vw, 0.375rem);
  padding: clamp(0.48rem, 1vw, 0.75rem) clamp(0.56rem, 1.1666666667vw, 0.875rem);
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  color: var(--color-dark-blue);
  font-family: var(--ff-base);
  resize: vertical;
  margin-top: clamp(0.32rem, 0.6666666667vw, 0.5rem);
  background-color: transparent;
}

.p-contact__textarea::placeholder {
  color: #adc0d4;
}

.p-contact__textarea:focus {
  outline: 2px solid #3684ef;
  outline-offset: 0;
  border-color: transparent;
}

@media screen and (max-width: 767.9px) {
  .p-contact__textarea {
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
    min-height: clamp(6rem, 32vw, 7.5rem);
  }
}

.p-contact__footer {
  margin-top: clamp(1.92rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.64rem, 1.3333333333vw, 1rem);
}

@media screen and (max-width: 767.9px) {
  .p-contact__footer {
    flex-direction: column;
    gap: clamp(0.6rem, 3.2vw, 0.75rem);
    margin-top: clamp(1.8rem, 9.6vw, 2.25rem);
  }
}

.p-contact__submit {
  width: clamp(9.6rem, 20vw, 15rem);
  height: clamp(2.4rem, 5vw, 3.75rem);
  display: grid;
  place-items: center;
  background: var(--color-gradient-2);
  border-radius: clamp(1.2rem, 2.5vw, 1.875rem);
  color: var(--color-white);
  font-size: clamp(0.64rem, 1.3333333333vw, 1rem);
  font-weight: 500;
  font-family: var(--ff-base);
  border: none;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s;
}

@media screen and (max-width: 767.9px) {
  .p-contact__submit {
    width: clamp(10rem, 53.3333333333vw, 12.5rem);
    height: clamp(2.6rem, 13.8666666667vw, 3.25rem);
    font-size: clamp(0.75rem, 4vw, 0.9375rem);
    border-radius: clamp(1.4rem, 7.4666666667vw, 1.75rem);
  }
}

.p-contact__submit:hover {
  opacity: 0.8;
}

.p-contact__submit::before {
  position: absolute;
  content: "";
  top: 50%;
  right: clamp(0.88rem, 1.8333333333vw, 1.375rem);
  translate: 0 -50%;
  width: clamp(1.04rem, 2.1666666667vw, 1.625rem);
  height: 1px;
  background-color: var(--color-white);
}

.p-contact__submit::after {
  position: absolute;
  content: "";
  top: 50%;
  right: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  translate: 0 -50%;
  width: 6px;
  aspect-ratio: 1;
  height: auto;
  background-color: var(--color-white);
  border-radius: 50%;
}

.p-contact__reset {
  width: clamp(6.4rem, 13.3333333333vw, 10rem);
  height: clamp(2.4rem, 5vw, 3.75rem);
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: clamp(1.2rem, 2.5vw, 1.875rem);
  color: var(--color-dark-blue);
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  font-family: var(--ff-base);
  border: 1.5px solid var(--color-dark-blue);
  cursor: pointer;
  transition: opacity 0.2s;
}

@media screen and (max-width: 767.9px) {
  .p-contact__reset {
    width: clamp(8rem, 42.6666666667vw, 10rem);
    height: clamp(2.4rem, 12.8vw, 3rem);
    font-size: clamp(0.7rem, 3.7333333333vw, 0.875rem);
    border-radius: clamp(1.4rem, 7.4666666667vw, 1.75rem);
  }
}

.p-contact__reset:hover {
  opacity: 0.6;
}

.p-thanks {
  margin-top: clamp(2.4rem, 5vw, 3.75rem);
  text-align: center;
}

@media screen and (max-width: 767.9px) {
  .p-thanks {
    margin-top: clamp(2rem, 10.6666666667vw, 2.5rem);
  }
}

.p-thanks__lead {
  font-size: clamp(0.88rem, 1.8333333333vw, 1.375rem);
  font-weight: 500;
  color: var(--color-dark-blue);
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767.9px) {
  .p-thanks__lead {
    font-size: clamp(0.9rem, 4.8vw, 1.125rem);
  }
}

.p-thanks__text {
  margin-top: clamp(1.12rem, 2.3333333333vw, 1.75rem);
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  line-height: 2.1333333333;
  color: var(--color-dark-blue);
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767.9px) {
  .p-thanks__text {
    margin-top: clamp(1rem, 5.3333333333vw, 1.25rem);
    font-size: clamp(0.7rem, 3.7333333333vw, 0.875rem);
    text-align: left;
  }
}

.p-thanks__btn-wrapper {
  margin-top: clamp(2.08rem, 4.3333333333vw, 3.25rem);
}

@media screen and (max-width: 767.9px) {
  .p-thanks__btn-wrapper {
    margin-top: clamp(1.8rem, 9.6vw, 2.25rem);
  }
}

.p-thanks__btn {
  display: inline-grid;
  place-items: center;
  width: clamp(11.2rem, 23.3333333333vw, 17.5rem);
  height: clamp(2.4rem, 5vw, 3.75rem);
  background: var(--color-gradient-2);
  border-radius: clamp(1.2rem, 2.5vw, 1.875rem);
  color: var(--color-white);
  font-size: clamp(0.6rem, 1.25vw, 0.9375rem);
  font-weight: 500;
  position: relative;
  transition: opacity 0.2s;
}

@media screen and (max-width: 767.9px) {
  .p-thanks__btn {
    width: clamp(11rem, 58.6666666667vw, 13.75rem);
    height: clamp(2.6rem, 13.8666666667vw, 3.25rem);
    font-size: clamp(0.7rem, 3.7333333333vw, 0.875rem);
    border-radius: clamp(1.4rem, 7.4666666667vw, 1.75rem);
  }
}

.p-thanks__btn:hover {
  opacity: 0.8;
}

.p-thanks__btn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  translate: 0 -50%;
  width: clamp(0.96rem, 2vw, 1.5rem);
  height: 1px;
  background-color: var(--color-white);
}

.p-thanks__btn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: clamp(0.8rem, 1.6666666667vw, 1.25rem);
  translate: 0 -50%;
  width: 6px;
  aspect-ratio: 1;
  height: auto;
  background-color: var(--color-white);
  border-radius: 50%;
}