@charset "UTF-8";
@import "kiso.css";

/* =================================================================
   Foundation / Base
   - reset / base element styles
   ================================================================= */

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* SP：フルイド＋最大幅コンテナ方針（640px・padding 16px） */
@media (max-width: 767px) {
  .container {
    max-width: 640px;
    padding-inline: 16px;
  }
}

html {
  font-size: 100%;
}

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

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

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

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

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

textarea {
  field-sizing: content;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #0d2936;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

/* -----------------------------------------------------------------
   Base elements
   ----------------------------------------------------------------- */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* -----------------------------------------------------------------
   Forms
   ----------------------------------------------------------------- */
input {
  border-radius: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type="search"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* -----------------------------------------------------------------
   Media elements
   ----------------------------------------------------------------- */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* -----------------------------------------------------------------
   Accessibility
   ----------------------------------------------------------------- */
/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled="true"] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@font-face {
  font-family: "Noto Sans JP";
  src: local("Noto Sans JP");
}


@media screen and (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
}
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media (min-width: 1074px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  overflow-x: hidden;
  max-width: 100vw;
}

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

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* =================================================================
   Layout (.l-)
   ================================================================= */
.l-contact {
  margin-top: var(--header-height);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
}

.l-inner {
  width: 100%;
  max-width: 540px;
  padding-inline: 20px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1120px;
  }
}
.l-top__about {
  -webkit-margin-before: 2.5rem;
  margin-block-start: 2.5rem;
}

@media screen and (min-width: 768px) {
  .l-top__about {
    -webkit-margin-before: 7.75rem;
    margin-block-start: 7.75rem;
  }
}
/* =================================================================
   Component (.c-)
   ================================================================= */
.c-accordion {
  --_text-color: #0d2936;
  --_background-default: #fff;
  --_background-interactive: #f0f0f0;
  --_background-opened: #408f95;
  --_text-color-opened: #fff;
  --_duration: 0.2s;
}

.c-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}

@media (prefers-reduced-motion: no-preference) {
  .c-accordion::details-content {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-property: grid-template-rows;
    transition-property: grid-template-rows;
    transition-property:
      grid-template-rows,
      -ms-grid-rows;
  }
}
.c-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}

.c-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion__summary {
  display: block grid;
  grid-template: ". icon"/1fr -webkit-max-content;
  grid-template: ". icon"/1fr max-content;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  color: var(--_text-color);
  background-color: var(--_background-default);
  -webkit-transition:
    background-color var(--_duration) ease,
    color var(--_duration) ease;
  transition:
    background-color var(--_duration) ease,
    color var(--_duration) ease;
}

.c-accordion__summary::before {
  display: inline-block;
  grid-area: icon;
  width: 1.125rem;
  height: 0.125rem;
  content: "";
  background-color: currentcolor;
}

.c-accordion__summary::after {
  display: inline-block;
  grid-area: icon;
  width: 1.125rem;
  height: 0.125rem;
  content: "";
  background-color: currentcolor;
  -webkit-transition: rotate var(--_duration) ease;
  transition: rotate var(--_duration) ease;
  rotate: 90deg;
}

.c-accordion__summary:focus-visible {
  background-color: var(--_background-interactive);
  outline: 2px solid currentcolor;
  outline-offset: -2px;
}

@media (any-hover: hover) {
  .c-accordion__summary:hover {
    background-color: var(--_background-interactive);
  }
}
.c-accordion[open] .c-accordion__summary {
  color: var(--_text-color-opened);
  background-color: var(--_background-opened);
}

.c-accordion[open] .c-accordion__summary::after {
  rotate: 0deg;
}

.c-accordion__contents {
  padding-block: 1rem;
  padding-inline: 1.5rem;
}

.c-button {
  position: relative;
  display: inline-block;
  padding: 0.875rem 3.75rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #fff;
  border: 1px solid currentcolor;
}

.c-button::before {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transition:
    rotate 0.3s,
    translate 0.3s;
  transition:
    rotate 0.3s,
    translate 0.3s;
  rotate: 45deg;
  translate: 0 -50%;
}

@media (any-hover: hover) {
  .c-button:hover::before {
    translate: 5px -50%;
  }
}
.c-button[data-color="black"] {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.c-button[data-color="black"]::before {
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
}

.c-card {
  overflow: hidden;
  background-color: #fff;
  border-radius: 12px;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  container-type: inline-size;
  container-name: card;
}

.c-card__body {
  display: grid;
  grid-template-columns: minmax(min(400 * 0.0625rem, 100%), 1fr) auto;
}

@container card (inline-size <= 700px) {
  .c-card__body {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (any-hover: hover) {
  .c-card:has(.c-button:hover) .c-card__image img {
    scale: 1.1;
  }
}
.c-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.c-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: scale 0.4s ease;
  transition: scale 0.4s ease;
}

.c-card__content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1.5rem;
}

.c-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0d2936;
}

@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1.5rem;
  }
}
.c-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

@media screen and (min-width: 768px) {
  .c-card__text {
    font-size: 1rem;
  }
}
.c-card__button {
  -ms-flex-item-align: end;
  align-self: end;
}

.c-dx-cta {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: min(720px, 100%);
  max-width: 720px;
  min-height: 5rem;
  padding: 1.125rem 5.5rem 1.125rem 2rem;
  margin-top: 1.75rem;
  color: #fff;
  text-decoration: none;
  background: #2b858d;
  border: 2px solid transparent;
  border-radius: 9999px;
  -webkit-box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
  box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
  -webkit-transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

.c-dx-cta:hover {
  background: #fff;
  color: #2b858d;
  border-color: #2b858d;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.c-dx-cta:hover .c-dx-cta__icon {
  border: 2px solid #2b858d;
}

.c-dx-cta:hover .c-dx-cta__icon::after {
  border-top-color: #2b858d;
  border-right-color: #2b858d;
}

.c-dx-cta__text {
  font-size: clamp(18px, 2vw, 35px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.03em;
}

.c-dx-cta__icon {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 9999px;
  translate: 0 -50%;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.c-dx-cta__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  content: "";
  border-top: 2px solid #2b858d;
  border-right: 2px solid #2b858d;
  rotate: 45deg;
  translate: -60% -50%;
  -webkit-transition:
    border-top-color 0.2s ease,
    border-right-color 0.2s ease;
  transition:
    border-top-color 0.2s ease,
    border-right-color 0.2s ease;
}

.c-dx-cta--lg {
  min-height: 62px;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 5.5rem)
    clamp(0.75rem, 2vw, 1.125rem) clamp(1rem, 2.5vw, 2rem);
  border-radius: clamp(2rem, 4vw, 3.125rem);
}

@media screen and (min-width: 768px) {
  .c-dx-cta--lg {
    min-height: clamp(62px, 6vw, 8.25rem);
    padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 5.5rem)
      clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.25rem, 2vw, 2rem);
    border-radius: clamp(2rem, 3vw, 3.125rem);
  }
  .c-dx-cta--lg .c-dx-cta__text {
    font-size: clamp(16px, 1.8vw, 35px);
  }
  .c-dx-cta--lg .c-dx-cta__icon {
    right: clamp(1rem, 1.5vw, 1.5rem);
    width: clamp(1.75rem, 2.2vw, 2.25rem);
    height: clamp(1.75rem, 2.2vw, 2.25rem);
  }
}
.c-image-text {
  display: grid;
  grid-template: "image" auto "text" auto/1fr;
  row-gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .c-image-text {
    grid-template: "image gutter text margin" auto/41.6666666667% 1rem 1fr max(
        (100% - 1080px) / 2,
        32 * 0.0625rem
      );
  }
}
@media screen and (min-width: 768px) {
  .c-image-text.c-image-text--reverse {
    grid-template:
      "margin text gutter image" auto/max((100% - 1080px) / 2, 32 * 0.0625rem)
      1fr 1rem 41.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .c-image-text.c-image-text--overlap {
    grid-template: "image text margin" auto/41.6666666667% 1fr max(
        (100% - 1080px) / 2,
        32 * 0.0625rem
      );
  }
}
@media screen and (min-width: 768px) {
  .c-image-text.c-image-text--overlap.c-image-text--reverse {
    grid-template:
      "margin text image" auto/max((100% - 1080px) / 2, 32 * 0.0625rem)
      1fr 41.6666666667%;
  }
}
.c-image-text__image {
  grid-area: image;
}

.c-image-text__image img {
  width: 100%;
  height: 18.75rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-image-text__text {
  grid-area: text;
  max-width: 500px;
  padding: 20px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .c-image-text__text {
    max-width: none;
    padding-inline: revert;
    margin-inline: 0;
  }
}
.c-image-text.c-image-text--overlap .c-image-text__text {
  padding: 20px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .c-image-text.c-image-text--overlap .c-image-text__text {
    padding: 1.25rem 0 1.25rem 1.25rem;
    margin-left: -6.25rem;
  }
}
@media screen and (min-width: 768px) {
  .c-image-text.c-image-text--overlap.c-image-text--reverse
    .c-image-text__text {
    padding: 1.25rem 1.25rem 1.25rem 0;
    margin-right: -6.25rem;
    margin-left: auto;
  }
}
.c-section-title {
  position: relative;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 3.75rem;
  }
}
.c-section-title[data-position="center"] {
  text-align: center;
}

.c-section-title[data-position="left"] {
  text-align: left;
}

.c-section-title[data-position="right"] {
  text-align: right;
}

.c-section-title::before {
  position: absolute;
  top: 50%;
  z-index: -1;
  font-size: 3.75rem;
  color: #f0f0f0;
  content: attr(data-title);
}

@media screen and (min-width: 768px) {
  .c-section-title::before {
    font-size: 7.5rem;
  }
}
.c-section-title[data-position="center"]::before {
  left: 50%;
  translate: -50% -50%;
}

.c-section-title[data-position="left"]::before {
  left: 0;
  translate: 0 -50%;
}

.c-section-title[data-position="right"]::before {
  right: 0;
  translate: 0 -50%;
}

/* -----------------------------------------------------------------
   Component: misc / legacy stub notes
   ----------------------------------------------------------------- */
.c-triangle {
  display: inline-block;
  width: 4rem;
  aspect-ratio: 1/1;
  background-color: #000;
}

.c-triangle[data-direction="top"] {
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.c-triangle[data-direction="bottom"] {
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.c-triangle[data-direction="left"] {
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.c-triangle[data-direction="right"] {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-triangle[data-direction="lower-left"] {
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.c-triangle[data-direction="upper-left"] {
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.c-triangle[data-direction="lower-right"] {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.c-triangle[data-direction="upper-right"] {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* =================================================================
   Project (.p-) : Samples / Common blocks
   ================================================================= */
.p-bg-sample {
  position: relative;
  padding-block: 5rem;
  color: #fff;
  background-image: url("../images/image_mv_01.C2hes_sL.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-bg-sample::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-color: oklch(from #000 l c h/40%);
}

.p-bg-sample__inner {
  position: relative;
  z-index: 2;
}

.p-bg-sample__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.p-bg-sample__text {
  max-width: 50rem;
  -webkit-margin-before: 1.5rem;
  margin-block-start: 1.5rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.8;
}

.p-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.p-contact__complete {
  padding-block: 5rem;
  text-align: center;
}

.p-contact__complete-title {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-contact__complete-title {
    font-size: 2.5rem;
  }
}
.p-contact__complete-text {
  -webkit-margin-before: 1.875rem;
  margin-block-start: 1.875rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #0d2936;
}

@media screen and (min-width: 768px) {
  .p-contact__complete-text {
    font-size: 1.125rem;
  }
}
.p-contact__complete-button {
  -webkit-margin-before: 3.125rem;
  margin-block-start: 3.125rem;
  margin-inline: auto;
}

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

.p-contact__form {
  margin-top: 4rem;
}

.p-footer {
  padding-block: 5.375rem;
  color: #fff;
  background: #ed7872;
}

.p-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  place-items: center;
  justify-items: flex-start;
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
    place-items: center start;
  }
}
/* SPは従来どおり180px・PCのみ幅可変 */
.p-footer__logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: clamp(120px, 22vw, 371px);
    min-width: 0;
  }
}

.p-footer__text p {
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

.p-footer__company {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-footer__company {
    font-size: 1.5625rem;
  }
}

.p-footer__address,
.p-footer__url,
.p-footer__copy {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-footer__address,
  .p-footer__url,
  .p-footer__copy {
    font-size: 1.25rem;
  }
}

.p-footer__copy {
  padding-top: 2em;
}

.p-form {
  --_form-color-text: #0d2936;
  --_form-color-bg: #fff;
  --_form-color-badge-text: #fff;
  --_form-color-badge-bg: #de8430;
  --_form-color-accent: #408f95;
  --_form-color-border: #aaaaaf;
  --_form-color-primary: #234f5e;
  max-width: 50rem;
  margin-inline: auto;
}

.p-form > * {
  -webkit-margin-before: 2.5rem;
  margin-block-start: 2.5rem;
}

.p-form > *:nth-last-child(2) {
  -webkit-margin-before: 1.25rem;
  margin-block-start: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-form > * {
    -webkit-margin-before: 3rem;
    margin-block-start: 3rem;
  }
  .p-form > *:nth-last-child(2) {
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
  }
}
.p-form__item {
  display: grid;
  gap: 0.5rem;
}

.p-form__label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--_form-color-text);
}

.p-form__label--required {
  position: relative;
  -webkit-padding-end: 3.125rem;
  padding-inline-end: 3.125rem;
}

.p-form__label--required::after {
  position: absolute;
  top: 50%;
  right: 0;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: var(--_form-color-badge-text);
  content: "必須";
  background-color: var(--_form-color-badge-bg);
  border-radius: 4px;
  translate: 0 -50%;
}

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--_form-color-text);
  background-color: var(--_form-color-bg);
  border: 1px solid var(--_form-color-border);
  border-radius: 8px;
  -webkit-transition:
    border-color 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    border-color 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}

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

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

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

.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);
  outline: none;
  -webkit-box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
}

.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: 1rem 1.25rem;
  }
}
.p-form__select {
  position: relative;
  -webkit-padding-end: 3rem;
  padding-inline-end: 3rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

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

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

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

.p-form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-form__radio-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    gap: 2rem 2.5rem;
  }
}
.p-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

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

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

.p-form__radio input[type="radio"]:checked::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background-color: var(--_form-color-bg);
  border-radius: 50%;
  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 {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
}

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

.p-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

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

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

.p-form__checkbox input[type="checkbox"]:checked::after {
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  content: "";
  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 {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
}

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

.p-form__link {
  color: var(--_form-color-accent);
  text-decoration: underline;
  -webkit-transition: opacity 0.2s ease;
  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;
  font-size: 0.875rem;
  color: var(--_form-color-badge-bg);
}

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

/* -----------------------------------------------------------------
   Project: Header / Drawer
   ----------------------------------------------------------------- */
.p-header {
  --header-height: 50px;
  height: var(--header-height);
  border-bottom: none;
  background-color: transparent;
}

@media (min-width: 768px) {
  .p-header {
    --header-height: 80px;
    background-color: #fff;
  }
}

.p-header.is-reveal-enabled {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.501s ease;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.501s ease;
  transition:
    transform 0.501s ease,
    opacity 0.3s ease;
  transition:
    transform 0.501s ease,
    opacity 0.3s ease,
    -webkit-transform 0.501s ease;
  will-change: transform, opacity;
}

.p-header.is-reveal-enabled.is-revealed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: inherit;
  width: min(1520px, 100%);
  margin-inline: auto;
  padding-left: clamp(16px, 4vw, 80px);
  padding-right: clamp(12px, 2vw, 24px);
}

.p-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 0;
}

.p-header__logo {
  width: min(218.178px, 40vw);
  height: 3.15888rem;
  margin: 0;
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__edition {
  margin: 0;
  font-size: 1.01063rem;
  font-weight: 500;
  line-height: 1.60781rem;
  color: #333;
  white-space: nowrap;
}

.p-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(
    12px,
    6vw,
    95px
  );
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__left {
  display: none;
}

.p-header__cta {
  display: none;
}

.p-header__right {
  margin-left: auto;
}

@media (min-width: 768px) {
  .p-header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-header__cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .p-header__right {
    margin-left: 0;
  }
}
.p-header__cta {
  position: relative;
  gap: 0.625rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 16.875rem;
  height: 3.125rem;
  padding-inline: 1.75rem 3.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  background: #2b858d;
  border-radius: 9999px;
  -webkit-box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
  box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
}

.p-header__cta::before {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  width: 1.625rem;
  height: 1.625rem;
  content: "";
  background: #fff;
  border-radius: 9999px;
  translate: 0 -50%;
}

.p-header__cta::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid #2b858d;
  border-right: 2px solid #2b858d;
  rotate: 45deg;
  translate: 0 -50%;
}

.p-header__hamburger {
  position: relative;
  z-index: 1100;
  width: 3.28113rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}



@media (any-hover: hover) {
  .p-header__hamburger:hover {
    opacity: 0.7;
  }
}
.p-header__hamburger span {
  position: relative;
  display: block;
  width: 100%;
  height: 0.42475rem;
  background-color: #333;
  border-radius: 1.875rem;
  -webkit-transition:
    opacity 0.501s,
    -webkit-transform 0.501s;
  transition:
    opacity 0.501s,
    -webkit-transform 0.501s;
  transition:
    transform 0.501s,
    opacity 0.501s;
  transition:
    transform 0.501s,
    opacity 0.501s,
    -webkit-transform 0.501s;
}

.p-header__hamburger span:nth-of-type(1) {
  -webkit-transform: translateY(-0.8495rem);
  transform: translateY(-0.8495rem);
}

.p-header__hamburger span:nth-of-type(2) {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.p-header__hamburger span:nth-of-type(3) {
  -webkit-transform: translateY(0.8495rem);
  transform: translateY(0.8495rem);
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  -webkit-transform: translateY(0.42475rem) rotate(45deg);
  transform: translateY(0.42475rem) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  -webkit-transform: translateY(-0.42475rem) rotate(-45deg);
  transform: translateY(-0.42475rem) rotate(-45deg);
}

@media (max-width: 767px) {
  .p-header__hamburger {
    width: 2.5rem;
    height: 2rem;
  }
  .p-header__hamburger span {
    height: 0.32rem;
  }
  .p-header__hamburger span:nth-of-type(1) {
    -webkit-transform: translateY(-0.68rem);
    transform: translateY(-0.68rem);
  }
  .p-header__hamburger span:nth-of-type(2) {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .p-header__hamburger span:nth-of-type(3) {
    -webkit-transform: translateY(0.68rem);
    transform: translateY(0.68rem);
  }
  .p-header__hamburger.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(0.32rem) rotate(45deg);
    transform: translateY(0.32rem) rotate(45deg);
  }
  .p-header__hamburger.is-open span:nth-of-type(3) {
    -webkit-transform: translateY(-0.32rem) rotate(-45deg);
    transform: translateY(-0.32rem) rotate(-45deg);
  }
}

.p-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  height: 100svh;
  padding: 7.5rem clamp(16px, 4vw, 80px) 3.5rem;
  overflow-y: auto;
  opacity: 0;
  background-color: #eaf7f9;
}

.p-header__drawer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-header__drawer-inner {
  position: relative;
  z-index: 2;
}

.p-header__drawer-close.p-header__hamburger {
  position: fixed;
  top: 1.75rem;
  right: clamp(16px, 2.5vw, 40px);
  z-index: 1001;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.p-header__drawer-inner {
  width: min(980px, 100%);
  margin-inline: auto;
}

.p-header__drawer-nav {
  margin-bottom: 4rem;
}

.p-header__drawer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem 5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  padding-top: 60px;
  padding-left: 41px;
}

@media screen and (min-width: 768px) {
  .p-header__drawer-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.625rem 7.5rem;
  }
}
.p-header__drawer-item {
  min-width: 0;
}

.p-header__drawer-link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.375rem;
  font-size: clamp(20px, 3.8vw, 25px);
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.p-header__drawer-link::after {
  position: absolute;
  right: -0.15em;
  bottom: 0;
  left: -0.15em;
  height: 3px;
  content: "";
  background: transparent;
  border-radius: 2px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

@media (any-hover: hover) {
  .p-header__drawer-link:hover::after {
    background: #f61010;
  }
}
.p-header__drawer-cta-area {
  display: grid;
  gap: 0.875rem;
  justify-items: center;
}

.p-header__drawer-cta {
  position: relative;
  display: grid;
  place-items: center;
  width: min(720px, 100%);
  min-height: 8.25rem;
  padding: 1.375rem 5.5rem 1.375rem 2rem;
  color: #fff;
  text-decoration: none;
  background: #2b858d;
  border: 2px solid transparent;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
  box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
  -webkit-transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

@media (any-hover: hover) {
  .p-header__drawer-cta:hover {
    background: #fff;
    color: #2b858d;
    border-color: #2b858d;
    -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
  .p-header__drawer-cta:hover .p-header__drawer-cta-icon {
    border: 2px solid #2b858d;
  }
  .p-header__drawer-cta:hover .p-header__drawer-cta-icon::after {
    border-top-color: #2b858d;
    border-right-color: #2b858d;
  }
}
.p-header__drawer-cta-text {
  font-size: clamp(22px, 3.1vw, 35px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.03em;
}

.p-header__drawer-cta-icon {
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 9999px;
  translate: 0 -50%;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.p-header__drawer-cta-icon::after {
  -webkit-transition:
    border-top-color 0.2s ease,
    border-right-color 0.2s ease;
  transition:
    border-top-color 0.2s ease,
    border-right-color 0.2s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 3px solid #2b858d;
  border-right: 3px solid #2b858d;
  rotate: 45deg;
  translate: -60% -50%;
}

.p-header__drawer-note {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #2b858d;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-header__drawer-cta-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-header__drawer-cta {
    -webkit-box-ordinal-group: 1;
    order: 1;
  }
  .p-header__drawer-note {
    -webkit-box-ordinal-group: 2;
    order: 2;
    margin-top: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__drawer-cta-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-header__drawer-note {
    position: relative;
    margin: 0 0 1.25rem;
    padding: 0 2rem;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 500;
    color: #2b858d;
  }
  .p-header__drawer-note::before,
  .p-header__drawer-note::after {
    position: absolute;
    top: 50%;
    width: 2.75rem;
    height: 3px;
    content: "";
    background: #2b858d;
    border-radius: 9999px;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .p-header__drawer-note::before {
    left: 0;
    rotate: 61.78deg;
    translate: 0 -50%;
  }
  .p-header__drawer-note::after {
    right: 0;
    rotate: -61.78deg;
    translate: 0 -50%;
  }
  .p-header__drawer-cta {
    min-height: 3.9375rem;
    padding: 1.125rem 5.5rem 1.125rem 2rem;
    width: 100%;
    max-width: 720px;
    background: #2b858d;
    -webkit-box-shadow: 0 4px 12px rgba(43, 133, 141, 0.35);
    box-shadow: 0 4px 12px rgba(43, 133, 141, 0.35);
  }
  .p-header__drawer-cta-text {
    font-size: clamp(18px, 2vw, 35px);
  }
}

.p-header__hamburger.is-open {
  position: fixed;
  top: 1.75rem;
  right: clamp(16px, 2.5vw, 40px);
  z-index: 1001;
}

/* -----------------------------------------------------------------
   Project: MV (hero)
   ----------------------------------------------------------------- */
.p-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: max(100svh, 450 * 0.0625rem);
  -webkit-padding-before: var(--header-height);
  padding-block-start: var(--header-height);
}

@media screen and (min-width: 768px) {
  .p-mv {
    height: max(500 * 0.0625rem, 100%);
  }
}
.p-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.p-mv__title-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding-inline: 20px;
  margin: auto;
  color: #fff;
  text-align: center;
  container-type: inline-size;
}

.p-mv__main-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px oklch(from #000 l c h/30%);
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .p-mv__main-title {
    font-size: clamp(32 * 0.0625rem, 5cqi, 64 * 0.0625rem);
  }
}
.p-mv__sub-title {
  font-size: 1.125rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px oklch(from #000 l c h/30%);
}

@media screen and (min-width: 768px) {
  .p-mv__sub-title {
    font-size: clamp(18 * 0.0625rem, 3cqi, 24 * 0.0625rem);
  }
}
.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%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-sample {
  padding-block: 2.5rem;
}

.p-sample__link {
  display: inline-block;
  -webkit-margin-before: 2.5rem;
  margin-block-start: 2.5rem;
  font-size: 1.5rem;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .p-sample__link:hover {
    text-decoration: none;
  }
}
.p-sample__bg {
  width: 300px;
  aspect-ratio: 1/1;
  background-image: url("../images/bg_sample.CshM3Il0.png");
  background-size: contain;
}

.p-sample__image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
}

.p-sample__image img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-mask-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(255, 255, 255)),
    to(rgba(255, 255, 255, 0.1))
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  mask-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(255, 255, 255)),
    to(rgba(255, 255, 255, 0.1))
  );
  mask-image: linear-gradient(
    to bottom,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.p-sample__text-block {
  margin-block: 2.5rem;
}

.p-sample__head {
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  .p-sample__head {
    font-size: 32px;
  }
}
.p-sample__text {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-sample__title2 {
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .p-sample__title2 {
    font-size: 24px;
  }
}
.p-sample__divider {
  margin-block: 1rem 2rem;
}

.p-sample__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(64px, 100%), 1fr));
  gap: 1rem;
}

.p-test {
  color: pink;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

/* =================================================================
   Project: Top DX (LP main)
   ================================================================= */
.p-top-dx {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
  .p-top-dx > section > * {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition:
      opacity 0.7s ease-out,
      -webkit-transform 0.7s ease-out;
    transition:
      opacity 0.7s ease-out,
      -webkit-transform 0.7s ease-out;
    transition:
      opacity 0.7s ease-out,
      transform 0.7s ease-out;
    transition:
      opacity 0.7s ease-out,
      transform 0.7s ease-out,
      -webkit-transform 0.7s ease-out;
  }
  .p-top-dx > section.is-inview > * {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .p-top-dx__fv > * {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.p-top-dx__container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .p-top-dx__container,
  .p-top-dx__problems .p-top-dx__container,
  .p-top-dx__features .p-top-dx__container,
  .p-top-dx__plan .p-top-dx__container,
  .p-top-dx__flow .p-top-dx__container,
  .p-top-dx__company .p-top-dx__container,
  .p-top-dx__cta .p-top-dx__container,
  .p-top-dx__bottom-cta .p-top-dx__container,
  .p-top-dx__staff .p-top-dx__container {
    max-width: 640px;
    padding-inline: 16px;
  }
  .p-top-dx__plan-table-wrap {
    margin-inline: -16px;
    padding-inline: 16px;
  }
}

@media (min-width: 768px) {
  .p-top-dx__container {
    width: calc(100% - clamp(4%, 6vw, 8%));
    max-width: 100.625rem;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
  }
}
.p-top-dx__staff .p-top-dx__container {
  overflow: visible;
}

@media (min-width: 768px) {
  .p-top-dx__staff .p-top-dx__container {
    width: min(1520px, calc(1424 * 100vw / 1920 + 96px));
    max-width: 1520px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 2.5vw, 3rem);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-top-dx__section-title {
  margin: 0;
  font-size: clamp(1.5625rem, 2.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-top-dx__section-lead {
  margin: 1.5rem 0 0;
  font-size: clamp(20px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.6;
  color: #2b858d;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-top-dx__section-lead {
    max-width: 26em;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-top-dx__section-sub {
  margin: 1.25rem 0 0;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

/* -----------------------------------------------------------------
   Top DX: FV
   ----------------------------------------------------------------- */
.p-top-dx__fv {
  position: relative;
  background: #eaf7f9;
  overflow-x: clip;
}

@media (min-width: 768px) {
  .p-top-dx__fv {
    background: #eaf7f9;
    overflow: clip;
  }
}
.p-top-dx__fv-title-accent {
  color: #2b858d;
}

@media (min-width: 768px) {
  .p-top-dx__fv-title-accent {
    color: #2b858d;
  }
}
.p-top-dx__fv .c-dx-cta {
  background: #2b858d !important;
  -webkit-box-shadow: 0 4px 8px rgba(44, 138, 143, 0.25);
  box-shadow: 0 4px 8px rgba(44, 138, 143, 0.25);
}

.p-top-dx__fv .c-dx-cta:hover {
  background: #fff !important;
  color: #2b858d;
  border-color: #2b858d;
}

.p-top-dx__fv .c-dx-cta:hover .c-dx-cta__icon {
  border-color: #2b858d;
}

.p-top-dx__fv .c-dx-cta__icon::after {
  border-top-color: #2b858d !important;
  border-right-color: #2b858d !important;
}

.p-top-dx__fv .c-dx-cta:hover .c-dx-cta__icon::after {
  border-top-color: #2b858d !important;
  border-right-color: #2b858d !important;
}

@media (min-width: 768px) {
  .p-top-dx__fv .c-dx-cta {
    background: #2b858d !important;
    -webkit-box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
    box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
  }
  .p-top-dx__fv .c-dx-cta:hover {
    color: #2b858d;
    border-color: #2b858d;
  }
  .p-top-dx__fv .c-dx-cta:hover .c-dx-cta__icon {
    border-color: #2b858d;
  }
  .p-top-dx__fv .c-dx-cta__icon::after {
    border-top-color: #2b858d !important;
    border-right-color: #2b858d !important;
  }
  .p-top-dx__fv .c-dx-cta:hover .c-dx-cta__icon::after {
    border-top-color: #2b858d !important;
    border-right-color: #2b858d !important;
  }
}
@supports not (overflow: clip) {
  .p-top-dx__fv {
    overflow-x: hidden;
  }
}

.p-top-dx__fv-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 50px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p-top-dx__fv-inner {
    --fv-copy-scale: clamp(0.74, calc(0.74 + 0.04063vw - 0.52px), 1);
    grid-template-columns: minmax(22.5rem, 1fr) min(823px, 42.86vw);
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: clamp(0.5rem, 1vw, 1rem);
    row-gap: clamp(8px, 1vw, 16px);
    padding-left: clamp(0.75rem, 6vw, 107px);
    padding-right: 0;
    max-width: none;
    width: 100%;
    min-height: min(
      1100px,
      57.3vw
    );
    overflow: hidden;
  }
}
@media (min-width: 1560px) {
  .p-top-dx__fv-inner {
    grid-template-columns: minmax(22.5rem, 1fr) min(823px, 42.86vw);
  }
}

@media (min-width: 1920px) {
  .p-top-dx__fv-inner {
    grid-template-columns: minmax(22.5rem, 1fr) 823px;
    height: 1100px;
    min-height: 1100px;
    row-gap: 0;
    column-gap: 0;
  }
  .p-top-dx__fv-media-wrap {
    width: 823px;
    height: 100%;
    bottom: 0;
  }
  .p-top-dx__fv-media img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: top;
  }
}
.p-top-dx__fv-copy-top {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.p-top-dx__fv-media {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.p-top-dx__fv-copy-bottom {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.p-top-dx__fv-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.p-top-dx__fv-copy-top {
  padding-top: clamp(1.5rem, 5vw, 7.25rem);
  padding-bottom: 0;
}

.p-top-dx__fv-copy-bottom {
  padding-top: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(4rem, 6vw, 6.5625rem);
}

@media (min-width: 768px) {
  .p-top-dx__fv-copy-top,
  .p-top-dx__fv-copy-bottom {
    min-width: 0;
    overflow: hidden;
    padding-right: 1rem;
  }
  .p-top-dx__fv-copy-top {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    grid-column: 1;
    grid-row: 1;
    padding-bottom: clamp(0.5rem, 1vw, 1rem);
    -webkit-transform: scale(var(--fv-copy-scale));
    transform: scale(var(--fv-copy-scale));
    -webkit-transform-origin: left top;
    transform-origin: left top;
    container-type: inline-size;
    container-name: fv-copy;
    padding-top: clamp(1.5rem, 6vw, 7rem);
  }
  .p-top-dx__fv-media {
    position: relative;
    z-index: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    grid-column: 2;
    grid-row: 1/-1;
    min-width: 0;
    overflow: hidden;
  }

  .p-top-dx__fv-copy-bottom {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    grid-column: 1;
    grid-row: 2;
    margin-top: clamp(-2.5rem, calc(1.79rem - 4.76vw), -0.5rem);
    padding-top: 0;
    -webkit-transform: scale(var(--fv-copy-scale));
    transform: scale(var(--fv-copy-scale));
    -webkit-transform-origin: left top;
    transform-origin: left top;
    padding-bottom: 0;
    container-type: inline-size;
    container-name: fv-copy;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top-dx__fv-copy-bottom {
    margin-bottom: 50px;
  }
}

@media (min-width: 1440px) {
  .p-top-dx__fv-copy-bottom {
    padding-bottom: clamp(0.5rem, 1vw, 1.5rem);
  }
}

@media (min-width: 1920px) {
  .p-top-dx__fv-copy-bottom {
    margin-top: -5.5rem;
  }
}

.p-top-dx__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2.5625rem;
  padding-inline: 1.375rem;
  margin: 0 0 clamp(0.75rem, 1.6vw, 1.25rem);
  font-size: clamp(16px, 2.6vw, 25px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  background: #ed7872;
  border: 1px solid #fff;
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .p-top-dx__badge {
    height: 3.625rem;
    padding-inline: 3.2rem;
    font-size: 1.5625rem;
    background: #ed7872;
    margin-left: 0.4rem;
  }
}
.p-top-dx__fv-title {
  margin-top: 1rem;
  font-size: clamp(18px, 4.1vw, 40px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .p-top-dx__fv-title,
  .p-top-dx__fv-lead {
    white-space: normal;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 1719px) {
  .p-top-dx__fv-title {
    font-size: clamp(14px, 1.8vw, 32px);
    letter-spacing: 0.03em;
  }
  .p-top-dx__fv-title-strong {
    font-size: clamp(30px, 2.7vw, 48px);
    letter-spacing: 0.02em;
    line-height: 1.65;
  }
}
.p-top-dx__fv-title-strong {
  display: inline-block;
  font-size: clamp(40px, 3.5vw, 65px);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.p-top-dx__fv-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.4vw, 0.875rem);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: clamp(0.75rem, 1.8vw, 1.375rem);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (min-width: 768px) and (max-width: 1719px) {
  .p-top-dx__fv-brand {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
.p-top-dx__fv-logo {
  width: 85vw;
  max-width: min(319px, 100%);
  min-width: 0;
  height: auto;
  display: block;
}

@media (min-width: 500px) and (max-width: 767px) {
  .p-top-dx__fv-logo {
    width: clamp(350px, 66vw, 520px);
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .p-top-dx__fv-logo {
    width: 52vw;
    max-width: min(610px, 100%);
  }
}
.p-top-dx__fv-edition {
  font-size: clamp(25px, 1.6vw, 30px);
  font-weight: 500;
  line-height: 3;
  white-space: nowrap;
  margin-left: auto;
}

@media (min-width: 768px) {
  .p-top-dx__fv-edition {
    margin: 0;
  }
}

.p-top-dx__fv-lead {
  margin: 0 0 clamp(1.25rem, 4.2vw, 2.3125rem) 0;
  font-size: clamp(18px, 3.2vw, 30px);
  font-weight: 500;
  line-height: 1.7;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  width: min(100%, 100%);
}

@media (min-width: 768px) and (max-width: 1719px) {
  .p-top-dx__fv-lead {
    font-size: clamp(16px, 1.4vw, 24px);
    letter-spacing: 0.02em;
  }
}

.p-top-dx__fv-note,
.p-top-dx__problems-cta-note {
  position: relative;
  margin: clamp(1.125rem, 2.2vw, 1.75rem) 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2b868d;
  text-align: center;
}

.p-top-dx__fv-note span {
  margin-top: -1em;
}

.p-top-dx__fv-note::before,
.p-top-dx__fv-note::after,
.p-top-dx__problems-cta-note::before,
.p-top-dx__problems-cta-note::after {
  position: absolute;
  top: 50%;
  width: clamp(1.5rem, 6.5vw, 3.25rem);
  height: 3px;
  content: "";
  background: #2b868d;
  border-radius: 9999px;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.p-top-dx__fv-note::before,
.p-top-dx__problems-cta-note::before {
  left: clamp(2rem, 6vw, 5rem);
  rotate: 61.78deg;
  translate: 0 -50%;
}

.p-top-dx__fv-note::after,
.p-top-dx__problems-cta-note::after {
  right: clamp(2rem, 6vw, 5rem);
  rotate: -61.78deg;
  translate: 0 -50%;
}

.p-top-dx__problems-cta-note::before {
  left: 2.5rem;
}

.p-top-dx__problems-cta-note::after {
  right: 2.5rem;
}

@media (min-width: 768px) {
  .p-top-dx__fv-note,
  .p-top-dx__problems-cta-note {
    font-size: clamp(14px, 1.6vw, 25px);
    color: #2b858d;
  }
  .p-top-dx__fv-note::before,
  .p-top-dx__fv-note::after,
  .p-top-dx__problems-cta-note::before,
  .p-top-dx__problems-cta-note::after {
    width: 6.25rem;
    background: #2b858d;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .p-top-dx__fv-note::before,
  .p-top-dx__fv-note::after,
  .p-top-dx__problems-cta-note::before,
  .p-top-dx__problems-cta-note::after {
    width: 3.5rem;
  }
}

@media (max-width: 1200px) {
  .p-top-dx__fv-actions .p-top-dx__fv-note {
    padding-inline: clamp(1rem, 3vw, 1.5rem);
  }
  .p-top-dx__fv-actions .p-top-dx__fv-note::before,
  .p-top-dx__fv-actions .p-top-dx__fv-note::after {
    width: clamp(1.5rem, 5vw, 2.25rem);
    left: clamp(1rem, 1.5vw, 2rem);
  }
  .p-top-dx__fv-actions .p-top-dx__fv-note::after {
    right: clamp(1rem, 1.5vw, 2rem);
    left: auto;
  }
}

@media (max-width: 767px) {
  .p-top-dx__fv-actions .p-top-dx__fv-note {
    padding-inline: 2rem;
  }
  .p-top-dx__fv-actions .p-top-dx__fv-note::before,
  .p-top-dx__fv-actions .p-top-dx__fv-note::after {
    width: 2rem;
    left: 0.5rem;
  }
  .p-top-dx__fv-actions .p-top-dx__fv-note::after {
    right: 0.5rem;
    left: auto;
  }
}

@media (min-width: 1201px) {
  .p-top-dx__fv-actions .p-top-dx__fv-note {
    padding-inline: clamp(3rem, 5vw, 5rem);
  }
  .p-top-dx__fv-actions .p-top-dx__fv-note::before,
  .p-top-dx__fv-actions .p-top-dx__fv-note::after {
    width: clamp(3rem, 4vw, 4.5rem);
    left: clamp(1.5rem, 2.5vw, 3rem);
  }
  .p-top-dx__fv-actions .p-top-dx__fv-note::after {
    right: clamp(1.5rem, 2.5vw, 3rem);
    left: auto;
  }
}

.p-top-dx__fv .c-dx-cta,
.p-top-dx__problems-cta-card .c-dx-cta {
  -ms-flex-item-align: center;
  align-self: center;
  margin-top: clamp(0.75rem, 1.6vw, 1.125rem);
}

.p-top-dx__fv-actions {
  text-align: center;
  -ms-flex-item-align: center;
  align-self: center;
  width: 100%;
  max-width: clamp(
    20rem,
    45vw,
    720px
  );
  min-width: 0;
  overflow: visible;
  box-sizing: border-box;
  margin-top: 1rem;
}

.p-top-dx__fv-actions .p-top-dx__fv-note {
  margin-left: auto;
  margin-right: auto;
}

.p-top-dx__fv-actions .c-dx-cta {
  width: 100%;
  max-width: 100%;
  display: inline-grid;
}

@media (min-width: 768px) {
  .p-top-dx__fv-actions {
    margin-right: 0.5rem;
  }
  .p-top-dx__fv-actions .p-top-dx__fv-note {
    margin-top: clamp(0.75rem, 1.4vw, 1.75rem);
    font-size: clamp(14px, 1.5vw, 25px);
  }
  .p-top-dx__fv-actions .c-dx-cta {
    min-height: clamp(62px, 5.5vw, 8.25rem);
    padding: 2.5rem 5.5rem;
    margin-top: clamp(0.75rem, 1.1vw, 1.125rem);
    border-radius: 3.125rem;
  }
  .p-top-dx__fv-actions .c-dx-cta .c-dx-cta__text {
    font-size: clamp(16px, 1.8vw, 35px);
  }
  .p-top-dx__fv-actions .c-dx-cta .c-dx-cta__icon {
    right: clamp(1rem, 2vw, 3rem);
    width: clamp(1.75rem, 2vw, 3rem);
    height: clamp(1.75rem, 2vw, 3rem);
  }
  .p-top-dx__fv-actions .c-dx-cta .c-dx-cta__icon::after {
    width: clamp(7px, 0.8vw, 12px);
    height: clamp(7px, 0.8vw, 12px);
    border-width: clamp(2.5px, 0.28vw, 3px);
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .p-top-dx__fv-actions .c-dx-cta {
    min-height: 80px;
    padding: 1.25rem 2.25rem;
    border-radius: 2.25rem;
  }
  .p-top-dx__fv-actions .c-dx-cta .c-dx-cta__text {
    font-size: clamp(16px, 1.7vw, 22px);
  }
  .p-top-dx__fv-actions .c-dx-cta .c-dx-cta__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  .p-top-dx__fv-actions .c-dx-cta .c-dx-cta__icon::after {
    width: 7px;
    height: 7px;
  }
}

@media (min-width: 1440px) {
  .p-top-dx__fv-actions {
    margin-right: 2rem;
  }
}

@media (min-width: 1920px) {
  .p-top-dx__fv-actions {
    margin-right: 7rem;
  }
}

.p-top-dx__problems-cta-actions {
  text-align: center;
  width: 100%;
  max-width: clamp(320px, 80vw, 720px);
  min-width: 0;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.p-top-dx__problems-cta-actions-note {
  margin: 0 0 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #2b858d;
}

@media (min-width: 768px) {
  .p-top-dx__problems-cta-actions-note {
    white-space: nowrap;
  }
  .p-top-dx__problems-cta-actions-note br {
    display: none;
  }
}

@media (max-width: 767px) {
  .p-top-dx__problems-cta-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-top-dx__problems-cta-actions-note {
    position: relative;
    margin: 0 0 1.25rem;
    padding: 0 2rem;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 500;
    color: #2b868d;
  }
  .p-top-dx__problems-cta-actions-note::before,
  .p-top-dx__problems-cta-actions-note::after {
    position: absolute;
    top: 50%;
    width: clamp(1.25rem, 6vw, 2.75rem);
    height: 3px;
    content: "";
    background: #2b868d;
    border-radius: 9999px;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .p-top-dx__problems-cta-actions-note::before {
    left: 0;
    rotate: 61.78deg;
    translate: 0 -50%;
  }
  .p-top-dx__problems-cta-actions-note::after {
    right: 0;
    rotate: -61.78deg;
    translate: 0 -50%;
  }
  .p-top-dx__problems-cta-actions-btn {
    min-height: 62px;
    padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 5.5rem)
      clamp(0.75rem, 2vw, 1.125rem) clamp(1rem, 2.5vw, 2rem);
    font-size: clamp(16px, 1.8vw, 35px);
    background: #2b858d;
    -webkit-box-shadow: 0 4px 12px rgba(43, 133, 141, 0.35);
    box-shadow: 0 4px 12px rgba(43, 133, 141, 0.35);
  }
  .p-top-dx__problems-cta-actions-btn .c-dx-cta__text {
    font-size: clamp(16px, 1.8vw, 35px);
  }
}

@media (min-width: 768px) {
  .p-top-dx__problems-cta-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-top-dx__problems-cta-actions-btn {
    -webkit-box-ordinal-group: 1;
    order: 1;
    max-width: clamp(320px, 80vw, 720px);
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-dx__problems-cta-actions-note {
    -webkit-box-ordinal-group: 2;
    order: 2;
    margin: 2.32rem 0 0;
    font-weight: 700;
    color: #2b868d;
    white-space: nowrap;
  }
}

.p-top-dx__problems-cta-actions-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: clamp(320px, 80vw, 720px);
  min-height: clamp(3rem, 8vw, 3.9375rem);
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 5.5rem)
    clamp(0.75rem, 2vw, 1.125rem) clamp(1rem, 2.5vw, 2rem);
  margin: 0;
  border: none;
  border-radius: 9999px;
  background: #2b858d;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.8vw, 35px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow:
    0 8px 0 #2b858d,
    0 24px 32px rgba(0, 0, 0, 0.14);
  box-shadow:
    0 8px 0 #2b858d,
    0 24px 32px rgba(0, 0, 0, 0.14);
}

@media screen and (min-width: 768px) {
  .p-top-dx__problems-cta-actions-btn {
    min-height: clamp(5rem, 5.5vw, 8.25rem);
    padding: 2.5rem 5.5rem;
    border-radius: 3.125rem;
    font-size: clamp(16px, 1.8vw, 35px);
  }
  .p-top-dx__problems-cta-actions-btn .c-dx-cta__text {
    font-size: clamp(16px, 1.8vw, 35px);
  }
  .p-top-dx__problems-cta-actions-btn .c-dx-cta__icon {
    right: clamp(1rem, 1.3vw, 1.5rem);
    width: clamp(1.75rem, 2vw, 2.25rem);
    height: clamp(1.75rem, 2vw, 2.25rem);
  }
  .p-top-dx__problems-cta-actions-btn .c-dx-cta__icon::after {
    width: clamp(7px, 0.8vw, 9px);
    height: clamp(7px, 0.8vw, 9px);
    border-width: clamp(2.5px, 0.28vw, 3px);
  }
}

.p-top-dx__problems-cta-actions-btn:hover {
  background: #fff;
  color: #2b858d;
  border: 2px solid #2b858d;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.p-top-dx__problems-cta-actions-btn .c-dx-cta__text {
  font-size: clamp(16px, 1.8vw, 35px);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.p-top-dx__fv-media {
  position: relative;
  min-height: auto;
  overflow: visible;
}

@media (max-width: 767px) {
  .p-top-dx__fv-media {
    width: calc(100% + 32px);
    margin-inline: -16px;
    max-width: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .p-top-dx__fv-media-wrap {
    width: 100%;
    max-width: none;
  }

  .p-top-dx__fv-media img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
  }
}

@media (max-width: 767px) {
  .p-top-dx__fv-brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.25rem;
  }
  .p-top-dx__fv-edition {
    margin-left: 0;
    padding-right: 0.5em;
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.4;
    text-align: right;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}
@media (min-width: 768px) {
  .p-top-dx__fv-media {
    min-height: min(1100px, 57.3vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
  }
  .p-top-dx__fv-media-wrap {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: min(823px, 42.86vw, 100%);
  }
  .p-top-dx__fv-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 823 / 1100;
    display: block;
    vertical-align: top;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-dx__fv-inner {
    grid-template-columns: minmax(22.5rem, 1fr) min(823px, 42.86vw);
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: clamp(0.375rem, 0.75vw, 0.75rem);
    row-gap: clamp(8px, 1vw, 16px);
  }
  .p-top-dx__fv-media {
    min-height: min(1100px, 57.3vw);
  }
  .p-top-dx__fv-title {
    font-size: clamp(14px, 1.9vw, 28px);
    letter-spacing: 0.03em;
  }
  .p-top-dx__fv-title-strong {
    font-size: clamp(26px, 2.8vw, 46px);
    letter-spacing: 0.02em;
  }
  .p-top-dx__fv-lead {
    white-space: nowrap;
    font-size: clamp(14px, 1.6vw, 20px);
    margin: 0 0 clamp(1.5rem, 2.5vw, 2.75rem) 0;
    letter-spacing: 0.02em;
  }
  .p-top-dx__fv-brand {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: clamp(0.375rem, 1.2vw, 0.625rem);
    margin-top: 1rem;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  .p-top-dx__fv-logo {
    width: min(28.75rem, 100%);
  }
  .p-top-dx__fv-edition {
    margin-left: 0;
    font-size: clamp(16px, 1.6vw, 22px);
  }
  @container fv-copy (min-width: 0px) {
    .p-top-dx__fv-copy-top .p-top-dx__fv-title {
      font-size: min(clamp(14px, 1.9vw, 28px), 4.5cqw);
    }
    .p-top-dx__fv-copy-top .p-top-dx__fv-title-strong {
      font-size: min(clamp(26px, 2.8vw, 46px), 12cqw);
    }
    .p-top-dx__fv-copy-bottom .p-top-dx__fv-lead {
      font-size: min(clamp(14px, 1.6vw, 20px), 2.9cqw);
    }
  }
}
@media (min-width: 1024px) and (max-width: 1559px) {
  .p-top-dx__fv-inner {
    grid-template-columns: minmax(22.5rem, 1fr) min(823px, 42.86vw);
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: clamp(0.5rem, 1.25vw, 1.25rem);
    row-gap: clamp(8px, 1vw, 16px);
  }
  .p-top-dx__fv-media {
    min-height: min(1100px, 57.3vw);
  }
  .p-top-dx__fv-title {
    font-size: clamp(14px, 1.8vw, 34px);
    letter-spacing: 0.03em;
  }
  .p-top-dx__fv-title-strong {
    font-size: clamp(30px, 2.7vw, 54px);
    letter-spacing: 0.02em;
  }
  .p-top-dx__fv-lead {
    white-space: nowrap;
    font-size: clamp(16px, 1.5vw, 27px);
    margin: 0 0 clamp(2rem, 3vw, 3.375rem) 0;
    letter-spacing: 0.02em;
  }
  .p-top-dx__fv-brand {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 1.3vw, 0.75rem);
  }
  .p-top-dx__fv-logo {
    width: min(35rem, 100%);
  }
  .p-top-dx__fv-edition {
    margin-left: 0;
    white-space: nowrap;
    font-size: clamp(18px, 1.4vw, 26px);
  }
  @container fv-copy (min-width: 0px) {
    .p-top-dx__fv-copy-top .p-top-dx__fv-title {
      font-size: min(clamp(14px, 1.8vw, 34px), 4.5cqw);
    }
    .p-top-dx__fv-copy-top .p-top-dx__fv-title-strong {
      font-size: min(clamp(30px, 2.7vw, 54px), 12cqw);
    }
    .p-top-dx__fv-copy-bottom .p-top-dx__fv-lead {
      font-size: min(clamp(16px, 1.5vw, 27px), 2.9cqw);
    }
  }
}
.p-top-dx__fv-media-wrap {
  position: static;
  -webkit-transform: none;
  transform: none;
  width: 100%;
  line-height: 0;
}

.p-top-dx__fv-media picture {
  display: block;
  line-height: 0;
}
.p-top-dx__fv-media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

@media (min-width: 768px) {
  .p-top-dx__fv-media-wrap {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: min(823px, 42.86vw, 100%);
  }
  .p-top-dx__fv-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 823 / 1100;
    display: block;
  }
}
@media (min-width: 1920px) {
  .p-top-dx__fv-media-wrap {
    height: 100%;
    bottom: 0;
  }
  .p-top-dx__fv-media img {
    height: 100%;
    width: auto;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: top;
  }
}
/* -----------------------------------------------------------------
   Top DX: Problems
   ----------------------------------------------------------------- */
.p-top-dx__problems {
  position: relative;
  background-color: #fff;
  background-image: url("../images/bg_img01-sp@2x.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 120%;
  padding-top: 3.5rem;
}

@media (min-width: 768px) {
  .p-top-dx__problems {
    background-image: url("../images/bg_img01.webp");
    background-size: contain;
    background-position: center 150%;
  }
}

@media (min-width: 1920px) {
  .p-top-dx__problems {
    background-position: center 240%;
  }
}

.p-top-dx__problems-title {
  margin: 0;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-top-dx__problems-title-line {
  display: block;
  font-size: clamp(20px, 3.2vw, 2.8125rem);
  line-height: 1.45;
}

.p-top-dx__problems-title-accent {
  font-size: clamp(25px, 3.8vw, 55px);
  color: #2b858d;
  letter-spacing: 0.06em;
}

.p-top-dx__problem-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 28px);
  margin: clamp(32px, 4.25vw, 81px) auto 0;
  padding: 0;
  list-style: none;
  justify-items: center;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-top-dx__problem-list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 3vw, 24px);
  }
}
@media screen and (min-width: 1024px) {
  .p-top-dx__problem-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 22px);
    padding-inline: 3rem;
  }
}
/* ===============================
  カード本体
================================ */
.p-top-dx__problem-item {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 0.62fr) minmax(0, 0.38fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  aspect-ratio: 1/1;
  padding: clamp(14px, 4vw, 24px);
  background: #f6f9f8;
  border-radius: 50%;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  overflow: hidden;
}

.p-top-dx__problem-icon {
  grid-row: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  margin-inline: auto;
  justify-self: center;
  background-color: inherit;
}

.p-top-dx__problem-item:first-child .p-top-dx__problem-icon {
  transform: translateX(0.4em);
}

.p-top-dx__problem-text {
  grid-row: 2;
  margin: 0;
  padding: 0;
  max-width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: #333;
  word-break: keep-all;
  word-wrap: anywhere;
  -ms-flex-item-align: center;
  align-self: center;
}

@media screen and (min-width: 1024px) {
  .p-top-dx__problem-text {
    font-size: clamp(12px, 1.05vw, 16px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-top-dx__problem-item {
    max-width: 260px;
    margin-inline: auto;
    padding: clamp(12px, 2vw, 20px);
  }
  .p-top-dx__problem-icon {
    width: auto;
    height: 100%;
    max-width: 88%;
  }
  .p-top-dx__problem-text {
    font-size: clamp(12px, 1.6vw, 15px);
  }
}
@media screen and (min-width: 1024px) {
  .p-top-dx__problem-item {
    max-width: 326px;
    margin-inline: unset;
    padding: clamp(12px, 1.4vw, 24px);
  }
}
.p-top-dx__problems-message {
  margin: clamp(20px, 3vw, 56px) 0 0;
  font-size: clamp(1.25rem, 3vw, 2.8125rem);
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.04em;
  color: #000;
  padding-bottom: clamp(20px, 3vw, 56px);
}

.p-top-dx__problems-cta-area .p-top-dx__problems-message {
  margin-top: 0;
}

.p-top-dx__problems-message-em {
  font-weight: 700;
}

/* -----------------------------------------------------------------
   Top DX: Problems CTA
   ----------------------------------------------------------------- */
.p-top-dx__problems-cta {
  position: relative;
  margin-top: -1px;
  padding: clamp(20px, 6vw, 72px) 0;
  background: linear-gradient(165deg, #d4eef2 0%, #e2f4f6 40%, #e8f6f8 100%);
  background-color: #eaf7f9;
  overflow: hidden;
  text-align: center;
}

.p-top-dx__problems.p-top-dx__problems-cta {
  position: relative;
  overflow: hidden;
  background-color: #eaf7f9;
  background-image:
    url("../images/bg_img01-sp@2x.webp"),
    linear-gradient(180deg, #ffffff 0%, #ffffff 15%, #f0fafb 35%, #eaf7f9 100%);
  background-size:
    100% auto,
    auto;
  background-position:
    center 13%,
    0 0;
  background-repeat: no-repeat, no-repeat;
}

@media (min-width: 768px) {
  .p-top-dx__problems.p-top-dx__problems-cta {
    background-image:
      url("../images/bg_img01.webp"),
      linear-gradient(
        180deg,
        #ffffff 0%,
        #ffffff 12%,
        #f0fafb 30%,
        #eaf7f9 100%
      );
    background-position:
      center 40%,
      0 0;
  }
}

@media (min-width: 1024px) {
  .p-top-dx__problems.p-top-dx__problems-cta {
    background-position:
      center 48%,
      0 0;
  }
}

@media (min-width: 1440px) {
  .p-top-dx__problems.p-top-dx__problems-cta {
    background-position:
      center 53%,
      0 0;
  }
}

@media (min-width: 1920px) {
  .p-top-dx__problems.p-top-dx__problems-cta {
    background-position:
      center 48%,
      0 0;
  }
}

.p-top-dx__problems-cta-area {
  position: relative;
  margin-top: clamp(20px, 3vw, 56px);
  padding: clamp(20px, 6vw, 72px) 0;
  overflow-x: clip;
}

@media (min-width: 768px) {
  .p-top-dx__problems-cta-area {
    padding: 0 clamp(16px, 3vw, 32px);
  }
}

.p-top-dx__problems.p-top-dx__problems-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28) 25%, transparent 25%),
    linear-gradient(240deg, rgba(255, 255, 255, 0.22) 25%, transparent 25%),
    linear-gradient(60deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%);
  background-size:
    28px 48px,
    28px 48px,
    28px 48px;
  background-position:
    0 0,
    0 0,
    14px 24px;
  pointer-events: none;
}

.p-top-dx__problems .p-top-dx__container {
  width: calc(100% - clamp(8%, 8vw, 10%));
  max-width: min(375px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p-top-dx__problems .p-top-dx__container {
    width: min(1621px, calc(100% - 10vw));
    max-width: 1621px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 2.5vw, 3rem);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-top-dx__container .p-top-dx__problems-cta-card {
  max-width: 1525px;
  margin: 0 auto;
}

.p-top-dx__problems-cta-card {
  position: relative;
  padding-top: 56px;
  padding-inline: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
  background: #fff;
  border-radius: clamp(16px, 2.5vw, 24px);
  text-align: center;
  overflow-x: clip;
  min-width: 0;
}

.p-top-dx__problems-cta-card .p-top-dx__problems-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 48px;
  -webkit-clip-path: none;
  clip-path: none;
  border-radius: 16px 16px 0 0;
  background: #ed7872;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p-top-dx__problems-cta-card {
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px)
      clamp(36px, 5vw, 56px);
  }
  .p-top-dx__problems-cta-card .p-top-dx__problems-ribbon {
    left: 0;
    right: auto;
    width: clamp(140px, 24vw, 280px);
    height: auto;
    aspect-ratio: 321 / 219;
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    border-radius: clamp(12px, 2vw, 24px) 0 0 0;
    background: #ed7872;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: clamp(0.75rem, 1.5vw, 1.375rem) clamp(0.75rem, 1.2vw, 1.25rem) 0;
  }
}
.p-top-dx__problems-ribbon-text {
  margin: 0;
  padding: 0;
  font-size: clamp(0.875rem, 1.6vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-align: center;
  max-width: none;
}

.p-top-dx__problems-ribbon-text br {
  display: none;
}

.p-top-dx__problems-ribbon-line1,
.p-top-dx__problems-ribbon-line2 {
  display: inline;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .p-top-dx__problems-ribbon-text {
    text-align: left;
    max-width: min(160px, 85%);
    font-size: clamp(0.9375rem, 1.5vw, 28px);
  }
  .p-top-dx__problems-ribbon-text br {
    display: block;
  }
  .p-top-dx__problems-ribbon-line1::after {
    content: none;
  }
}
.p-top-dx__problems-ribbon-line1,
.p-top-dx__problems-ribbon-line2 {
  white-space: nowrap;
  font-size: 1.5rem;
}

.p-top-dx__problems-cta-head {
  margin: 0 0 clamp(18px, 2vw, 26px);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2b858d;
  min-width: 0;
  overflow-wrap: break-word;
}

.p-top-dx__problems-brand-logo {
  max-width: 100%;
  height: auto;
}

.p-top-dx__problems-brand-edition-line {
  display: block;
  text-align: center;
  font-weight: 700;
}

@media (min-width: 768px) {
  .p-top-dx__problems-brand-edition-line {
    display: inline;
    text-align: left;
    font-size: inherit;
    font-weight: inherit;
  }
}
.p-top-dx__problems-cta-brandline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  text-align: center;
  margin-bottom: clamp(32px, 3.5vw, 48px);
  white-space: normal;
  font-size: 0;
  min-width: 0;
}

@media (min-width: 768px) {
  .p-top-dx__problems-cta-brandline {
    display: block;
    white-space: nowrap;
    -webkit-box-align: center;
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .p-top-dx__problems-cta-brandline {
    white-space: normal;
  }
}
.p-top-dx__problems-cta-brandline > * {
  display: inline-block;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}

.p-top-dx__problems-cta-brandline > .p-top-dx__problems-cta-brandline-text {
  margin-right: 0;
  padding-right: 0;
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 35px);
  font-weight: 700;
  color: #000;
}

@media (min-width: 768px) {
  .p-top-dx__problems-cta-brandline > .p-top-dx__problems-cta-brandline-text {
    margin-right: clamp(10px, 1.2vw, 20px);
    padding-right: clamp(8px, 1vw, 16px);
    margin-bottom: 0;
  }
}
.p-top-dx__problems-cta-brandline-text {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.p-top-dx__problems-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 1.6vw, 24px);
  font-weight: 700;
  color: #000;
}

.p-top-dx__problems-brand-logo {
  width: min(260px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

@media (min-width: 768px) {
  .p-top-dx__problems-brand {
    display: inline;
  }
  .p-top-dx__problems-brand-logo {
    width: min(380px, 100%);
    display: inline-block;
    vertical-align: baseline;
    margin: 0;
  }
}
.p-top-dx__problems-brand-edition {
  margin: 0;
  padding: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .p-top-dx__problems-brand-edition {
    padding: 0 0 0 0.2em;
  }
}
.p-top-dx__problems-brand .p-top-dx__problems-cta-brandline-text {
  margin: 0;
  padding: 0;
  font-size: clamp(20px, 2vw, 35px);
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .p-top-dx__problems-brand .p-top-dx__problems-cta-brandline-text {
    padding: 0 0 0 0.2em;
  }
}
.p-top-dx__problems-cta .c-dx-cta {
  margin-top: clamp(14px, 3vw, 24px);
  margin-inline: -24px;
  width: calc(100% + 48px);
  max-width: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #2b858d;
  -webkit-box-shadow: 0 6px 10px rgba(43, 133, 141, 0.35);
  box-shadow: 0 6px 10px rgba(43, 133, 141, 0.35);
}

.p-top-dx__problems-cta .p-top-dx__problems-cta-actions {
  margin-inline: -24px;
  width: calc(100% + 48px);
  max-width: none;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p-top-dx__problems-cta .p-top-dx__problems-cta-actions {
    margin-inline: -48px;
    width: calc(100% + 96px);
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .p-top-dx__problems-cta .p-top-dx__problems-cta-actions {
    margin-inline: clamp(-24px, -3vw, -48px);
    width: calc(100% + 2 * clamp(24px, 3vw, 48px));
  }
}

.p-top-dx__problems-cta .p-top-dx__problems-cta-actions-btn {
  margin-top: 0;
  margin-inline: auto;
  width: 100%;
  max-width: clamp(320px, 80vw, 720px);
}

.p-top-dx__problems-cta .p-top-dx__problems-cta-actions-btn:hover {
  background: #fff;
  color: #2b858d;
  border: 2px solid #2b858d;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.p-top-dx__problems-cta .c-dx-cta:hover {
  background: #fff !important;
  color: #2b858d;
  border-color: #2b858d;
}

.p-top-dx__problems-cta .c-dx-cta:hover .c-dx-cta__icon {
  border-color: #2b858d;
}

.p-top-dx__problems-cta .c-dx-cta__icon::after {
  border-top-color: #2b858d;
  border-right-color: #2b858d;
}

.p-top-dx__problems-cta .c-dx-cta:hover .c-dx-cta__icon::after {
  border-top-color: #2b858d;
  border-right-color: #2b858d;
}

@media (min-width: 768px) {
  .p-top-dx__problems-cta .c-dx-cta {
    margin-top: 0;
    background: #2b858d;
    -webkit-box-shadow: 0 6px 10px rgba(43, 133, 141, 0.35);
    box-shadow: 0 6px 10px rgba(43, 133, 141, 0.35);
  }
  .p-top-dx__problems-cta .p-top-dx__problems-cta-actions-btn {
    background: #2b858d;
    -webkit-box-shadow:
      0 8px 0 #2b858d,
      0 24px 32px rgba(0, 0, 0, 0.14);
    box-shadow:
      0 8px 0 #2b858d,
      0 24px 32px rgba(0, 0, 0, 0.14);
  }
  .p-top-dx__problems-cta .c-dx-cta:hover {
    color: #2b858d;
    border-color: #2b858d;
  }
  .p-top-dx__problems-cta .p-top-dx__problems-cta-actions-btn:hover {
    background: #fff;
    color: #2b858d;
    border-color: #2b858d;
  }
  .p-top-dx__problems-cta .c-dx-cta:hover .c-dx-cta__icon {
    border-color: #2b858d;
  }
  .p-top-dx__problems-cta .c-dx-cta__icon::after {
    border-top-color: #2b858d;
    border-right-color: #2b858d;
  }
  .p-top-dx__problems-cta .c-dx-cta:hover .c-dx-cta__icon::after {
    border-top-color: #2b858d;
    border-right-color: #2b858d;
  }
}
.p-top-dx__problems-cta-note-accent::before,
.p-top-dx__problems-cta-note-accent::after {
  display: none;
}

.p-top-dx__problems-cta-note a {
  color: #4a4a4a;
  text-decoration: none;
}

/* ===== Features ===== */
.p-top-dx__features {
  padding-block: clamp(20px, 2.5vw, 40px);
  background: #eaf7f9;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-top-dx__features .p-top-dx__container {
  container-type: inline-size;
  container-name: features;
  width: calc(100% - clamp(8%, 8vw, 10%));
  max-width: min(375px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .p-top-dx__features {
    overflow-x: hidden;
  }
  .p-top-dx__features .p-top-dx__container {
    max-width: min(375px, 100%);
  }
}

@media (min-width: 768px) {
  .p-top-dx__features {
    background: #eaf7f9;
  }
  .p-top-dx__features .p-top-dx__container {
    width: min(1706px, calc(100% - 10vw));
    max-width: 1706px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 3rem);
  }
}

.p-top-dx__features .p-top-dx__section-title {
  margin: 0;
  font-size: clamp(25px, 6cqw, 45px);
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .p-top-dx__features .p-top-dx__section-title {
    font-size: clamp(24px, 6cqw, 45px);
    text-align: center;
    margin: 0 0 clamp(20px, 6cqw, 53px);
  }
}

.p-top-dx__features .p-top-dx__section-lead {
  margin: 0;
  font-size: clamp(18px, 4cqw, 24px);
  font-weight: 700;
  line-height: 1.5;
  color: #2b858d;
  text-align: center;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .p-top-dx__features .p-top-dx__section-lead {
    text-align: left;
    font-size: clamp(18px, 2cqw, 24px);
  }
}

.p-top-dx__feature-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
  max-width: 100%;
  min-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-top-dx__feature-intro-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(18px, 5.5cqw, 28px);
  min-width: 0;
  word-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .p-top-dx__feature-intro-title,
  .p-top-dx__section-title,
  .p-top-dx__features .p-top-dx__section-title,
  .p-top-dx__cases .p-top-dx__section-title,
  .p-top-dx__plan .p-top-dx__section-title,
  .p-top-dx__company .p-top-dx__section-title {
    font-size: clamp(25px, 6cqw, 45px);
  }
}

.p-top-dx__feature-intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  justify-items: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.p-top-dx__feature-intro-photo--left {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  width: clamp(100px, 42cqw, 142px);
  height: auto;
  max-width: 100%;
  min-width: 0;
}

.p-top-dx__feature-intro-photo--right {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: clamp(100px, 42cqw, 142px);
  height: auto;
  max-width: 100%;
  min-width: 0;
  -webkit-transform: translateY(2.5rem);
  -ms-transform: translateY(2.5rem);
  transform: translateY(2.5rem);
}

.p-top-dx__feature-intro-center {
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
  margin-top: 3rem;
}

.p-top-dx__feature-intro .p-top-dx__section-lead {
  color: #2b858d;
  text-align: center;
  margin: 0;
  font-size: clamp(25px, 3cqw, 40px);
  font-weight: 700;
  min-width: 0;
  word-wrap: break-word;
}

.p-top-dx__feature-intro-text {
  text-align: justify;
  margin: 12px 0 0;
  font-size: clamp(18px, 4cqw, 25px);
  line-height: 1.8;
  color: #000;
  font-weight: 400;
  min-width: 0;
  /* text-wrap: balance; */
}

@media (min-width: 768px) {
  .p-top-dx__feature-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: visible;
  }
  .p-top-dx__feature-intro-title {
    margin: 0 0 24px;
    font-size: clamp(24px, 2.2cqw, 32px);
    text-align: center;
    width: 100%;
  }
  .p-top-dx__feature-intro-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: clamp(20px, 5cqw, 30px);
    width: 100%;
  }
  .p-top-dx__feature-intro-photo--left {
    grid-column: unset;
    grid-row: unset;
    width: clamp(180px, 12vw, 276px);
    min-width: clamp(180px, 12vw, 276px);
    height: auto;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: -48px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .p-top-dx__feature-intro-center {
    grid-column: unset;
    grid-row: unset;
    margin-top: 0;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
  }
  .p-top-dx__feature-intro-row .p-top-dx__feature-intro-photo--right {
    grid-column: unset;
    grid-row: unset;
    width: clamp(180px, 12vw, 276px);
    min-width: clamp(180px, 12vw, 276px);
    height: auto;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 0 !important;
    -webkit-transform: translateY(5.5rem);
    -ms-transform: translateY(5.5rem);
    transform: translateY(5.5rem);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .p-top-dx__feature-intro .p-top-dx__section-lead {
    color: #2b858d;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
  }
  .p-top-dx__feature-intro-text {
    text-align: center;
    margin: 20px 0 0;
    font-size: clamp(18px, 2cqw, 25px);
    line-height: 1.75;
    white-space: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-top-dx__feature-intro .p-top-dx__section-lead {
    white-space: normal;
    max-width: 26em;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-top-dx__feature-intro-photo--left,
.p-top-dx__feature-intro-photo--right {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-width: 0;
}

.p-top-dx__feature-intro-photo {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  margin-top: 26px;
}

.p-top-dx__feature-intro-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

@media (min-width: 768px) {
  .p-top-dx__feature-intro-photo {
    width: clamp(160px, 22cqw, 276px);
    height: auto;
  }
  .p-top-dx__feature-intro-row .p-top-dx__feature-intro-photo--left,
  .p-top-dx__feature-intro-row .p-top-dx__feature-intro-photo--right {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: clamp(180px, 12vw, 276px);
    min-width: clamp(180px, 12vw, 276px);
  }
}

.p-top-dx__feature-intro-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  text-wrap: balance;
}

.p-top-dx__nowrap {
  white-space: nowrap;
}

.p-top-dx__feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 11cqw, 64px);
  padding: 0;
  margin: clamp(40px, 9cqw, 56px) 0 0;
  list-style: none;
}

@media (max-width: 767px) {
  .p-top-dx__feature-list {
    max-width: 100%;
    min-width: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .p-top-dx__feature-item {
    min-width: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 20px 16px;
  }
  .p-top-dx__feature-visual {
    width: clamp(200px, 53.33vw, 220px);
    max-width: min(220px, calc(100cqw - 72px));
  }
  .p-top-dx__feature-item:nth-child(2) .p-top-dx__feature-visual,
  .p-top-dx__feature-item:nth-child(3) .p-top-dx__feature-visual {
    width: clamp(260px, 69.33vw, 300px);
    max-width: min(300px, calc(100cqw - 72px));
  }
  .p-top-dx__feature-desc {
    max-width: 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .p-top-dx__feature-item:nth-child(2) .p-top-dx__feature-illust {
    width: 90%;
  }
  .p-top-dx__feature-item:nth-child(3) .p-top-dx__feature-illust {
    width: 77%;
  }
}

@media (min-width: 768px) {
  .p-top-dx__feature-list {
    gap: clamp(48px, 6.5cqw, 80px);
    margin: clamp(48px, 6.5cqw, 80px) 0 0;
    padding-inline: clamp(1rem, 4cqw, 9.25rem);
  }
}
.p-top-dx__feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 0;
  padding-block: clamp(24px, 6vw, 32px);
  padding-inline: clamp(12px, 2.8vw, 24px);
  background: #fff;
  border-radius: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-top-dx__feature-item--img-right .p-top-dx__feature-body {
  -webkit-box-ordinal-group: unset;
  -ms-flex-order: unset;
  order: unset;
  justify-self: unset;
  max-width: none;
}

.p-top-dx__feature-visual {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: clamp(140px, 49cqw, 220px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin-inline: auto;
  min-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-top-dx__feature-item:nth-child(1) .p-top-dx__feature-visual {
  aspect-ratio: 124 / 166;
}
.p-top-dx__feature-item:nth-child(2) .p-top-dx__feature-visual {
  aspect-ratio: 203 / 152;
}
.p-top-dx__feature-item:nth-child(3) .p-top-dx__feature-visual {
  aspect-ratio: 429 / 283;
}

.p-top-dx__feature-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-align: center;
}

.p-top-dx__feature-no {
  font-size: clamp(30px, 4.5cqw, 22px);
  text-align: center;
  color: #000;
}

.p-top-dx__feature-no-num {
  font-size: clamp(40px, 6.5cqw, 34px);
}

.p-top-dx__feature-title {
  background: #d9d9d9;
  padding: 14px 16px;
  font-size: clamp(25px, 4.2cqw, 32px);
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-top-dx__feature-desc {
  font-size: clamp(20px, 4cqw, 22px);
  line-height: 1.9;
  text-align: left;
  font-weight: 400;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: loose;
  min-width: 0;
}

.p-top-dx__features .p-top-dx__feature-accent {
  color: #2b858d;
  font-size: clamp(25px, 4cqw, 32px);
  line-height: calc(40 / 25);
  letter-spacing: 0.05em;
}

.p-top-dx__feature-accent--red {
  background: #ed7872;
  color: #fff;
  padding: 2px 8px;
  font-size: clamp(30px, 4cqw, 48px);
  margin-inline: 2px;
  border-radius: 4px;
  white-space: nowrap;
}

.p-top-dx__feature-note {
  margin-top: 10px;
  font-size: clamp(16px, 3.5cqw, 22px);
  line-height: 1.75;
  color: #333;
}

@media (max-width: 767px) {
  .p-top-dx__feature-desc {
    font-weight: 400;
  }
}
@media (min-width: 768px) {
  .p-top-dx__feature-item {
    display: grid;
    grid-template-columns: minmax(180px, min(300px, 24cqw)) minmax(0, 1fr);
    gap: clamp(40px, 5cqw, 64px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 81.875rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .p-top-dx__feature-item--img-right {
    grid-template-columns: minmax(0, 1fr) minmax(180px, min(300px, 24cqw));
  }
  .p-top-dx__feature-item--img-right .p-top-dx__feature-body {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    justify-self: end;
    max-width: 100%;
  }
  .p-top-dx__feature-visual {
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    width: clamp(180px, 22cqw, 380px);
    height: clamp(180px, 22cqw, 380px);
    aspect-ratio: 1;
    margin-inline: unset;
    margin-bottom: 0;
  }
  .p-top-dx__feature-item:nth-child(1) .p-top-dx__feature-visual,
  .p-top-dx__feature-item:nth-child(2) .p-top-dx__feature-visual,
  .p-top-dx__feature-item:nth-child(3) .p-top-dx__feature-visual {
    aspect-ratio: 1;
  }
  .p-top-dx__feature-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: clamp(0.75rem, 1.5cqw, 1.5rem);
    margin-bottom: 1rem;
  }
  .p-top-dx__feature-no {
    text-align: left;
  }
  .p-top-dx__feature-no {
    font-size: clamp(30px, 2.8cqw, 2.5rem);
  }
  .p-top-dx__feature-no-num {
    font-size: clamp(40px, 4.5cqw, 4rem);
  }
  .p-top-dx__feature-title {
    background: #d9d9d9;
    padding: clamp(0.75rem, 1.5cqw, 1.25rem) clamp(1rem, 2cqw, 1.5rem);
    font-size: clamp(1.25rem, 2.5cqw, 2rem);
    width: auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    text-align: left;
  }
  .p-top-dx__feature-desc {
    font-size: clamp(1rem, 2cqw, 1.375rem);
    line-height: 1.9;
    min-width: 0;
    line-break: loose;
  }
  .p-top-dx__features .p-top-dx__feature-accent {
    color: #2b858d;
  }
  .p-top-dx__feature-accent--red {
    background: #ed7872;
    color: #fff;
    padding: 0.25rem 0.5rem;
    margin-inline: 0.3125rem;
    white-space: nowrap;
  }
  .p-top-dx__feature-note {
    margin-top: clamp(0.75rem, 1.5cqw, 1.125rem);
    font-size: clamp(1rem, 2.5cqw, 1.375rem);
    color: #1a1a1a;
  }
}
@media (min-width: 768px) {
  .p-top-dx__feature-item--img-right .p-top-dx__feature-visual {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (min-width: 1280px) {
  .p-top-dx__feature-item {
    grid-template-columns: minmax(180px, min(380px, 28vw)) minmax(0, 1fr);
  }
  .p-top-dx__feature-item--img-right {
    grid-template-columns: minmax(0, 1fr) minmax(180px, min(380px, 28vw));
  }
}

.p-top-dx__feature-illust {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.p-top-dx__feature-body {
  min-width: 0;
}

.p-top-dx__feature-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
}

@media (min-width: 768px) {
  .p-top-dx__feature-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-top-dx__feature-no {
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1.2;
}

.p-top-dx__feature-no-num {
  font-weight: 700;
  line-height: 1;
}

.p-top-dx__feature-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.p-top-dx__feature-desc {
  margin: 0;
  color: #1a1a1a;
  font-weight: 700;
}

.p-top-dx__feature-accent {
  font-weight: 700;
}

/* ===== Cases ===== */
.p-top-dx__cases {
  padding-block: clamp(56px, 7vw, 140px);
  background: #fff;
}

.p-top-dx__cases .p-top-dx__container {
  container-type: inline-size;
  container-name: cases;
  width: calc(100% - clamp(8%, 8vw, 10%));
  max-width: min(375px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p-top-dx__cases .p-top-dx__container {
    width: min(1608px, calc(100% - 10vw));
    max-width: 1608px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 3rem);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-top-dx__cases .p-top-dx__section-title {
  text-align: center;
  margin: 0;
}

.p-top-dx__case-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(16px, 4.5cqw, 34px);
  column-gap: clamp(16px, 4.5cqw, 44px);
  margin-top: clamp(24px, 5.5cqw, 32px);
  padding-inline: 0;
}

@media (max-width: 767px) {
  .p-top-dx__case-grid {
    width: 100%;
  }
  .p-top-dx__case-card {
    width: 100%;
    max-width: none;
  }
}

@media screen and (min-width: 768px) {
  .p-top-dx__cases .p-top-dx__section-title {
    margin: 0 0 clamp(20px, 6cqw, 93px);
  }
  .p-top-dx__case-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(16px, 2.8cqw, 34px);
    column-gap: clamp(16px, 2.8cqw, 44px);
    margin-top: clamp(1.5rem, 3.5cqw, 2.5rem);
    padding-inline: 0.55rem;
  }
}

.p-top-dx__case-card {
  display: grid;
  grid-template-columns: 4fr 6fr;
  grid-template-rows: auto;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  min-height: 130px;
}

@media screen and (min-width: 768px) {
  .p-top-dx__case-card {
    grid-template-columns: 4fr 6fr;
    grid-template-rows: 1fr;
    aspect-ratio: 734/261;
    background: #fff;
    border-radius: clamp(12px, 2.2cqw, 1.875rem);
    -webkit-box-shadow: 0 6px 10px oklch(from #000 l c h/10%);
    box-shadow: 0 6px 10px oklch(from #000 l c h/10%);
    min-height: unset;
  }
}

.p-top-dx__case-image {
  width: 100%;
  height: 100%;
  min-height: 100px;
  aspect-ratio: 340/261;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 12px 0 0 12px;
}

@media screen and (min-width: 768px) {
  .p-top-dx__case-image {
    width: 100%;
    height: 100%;
    min-height: unset;
    aspect-ratio: 340/261;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0;
  }
}
.p-top-dx__case-body {
  padding: clamp(14px, 4cqw, 20px) 0 clamp(14px, 4cqw, 20px)
    clamp(15px, 4cqw, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f6f9f8;
}

@media screen and (min-width: 768px) {
  .p-top-dx__case-body {
    padding: clamp(1rem, 2.8cqw, 3.375rem) 0 clamp(1rem, 2.8cqw, 3.375rem)
      clamp(15px, 2cqw, 2.25rem);
    display: block;
  }
}
.p-top-dx__case-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 5px 10px;
  margin: 0 0 10px;
  font-size: clamp(16px, 3cqw, 25px);
  font-weight: 700;
  color: #fff;
  background: #2b858d;
  border-radius: 9999px;
}

@media (max-width: 767px) {
  .p-top-dx__case-tag {
    padding: 4px 8px;
    letter-spacing: -0.02em;
    max-width: 72px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) {
  .p-top-dx__case-tag {
    width: clamp(5rem, 11cqw, 10.125rem);
    height: clamp(2rem, 3.5cqw, 2.6875rem);
    min-width: unset;
    max-width: none;
    padding: 0;
    margin: 0 0 clamp(0.5rem, 1.3cqw, 1.125rem);
    font-size: clamp(0.875rem, 1.7cqw, 1.5625rem);
    background: #2b858d;
    border-radius: clamp(1rem, 1.7cqw, 1.875rem);
  }
}
.p-top-dx__case-title {
  margin: 0;
  font-size: clamp(18px, 3.5cqw, 25px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #000;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-top-dx__case-title {
    font-size: clamp(0.875rem, 1.5cqw, 1.5625rem);
    font-weight: 500;
    text-align: inherit;
    color: inherit;
  }
}
/* ===== Plan（SP：中央揃え・テーブル横スクロール / PC：通常） ===== */
.p-top-dx__plan {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 9vw, 167px);
  background: #eaf7f9;
}

.p-top-dx__plan .p-top-dx__container {
  container-type: inline-size;
  container-name: plan;
  width: calc(100% - clamp(8%, 8vw, 10%));
  max-width: min(375px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p-top-dx__plan .p-top-dx__container {
    width: min(1520px, calc(100% - 15vw));
    max-width: 1520px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 2.5vw, 3rem);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-top-dx__plan .p-top-dx__section-title {
  text-align: center;
  margin: 0;
}

.p-top-dx__plan .p-top-dx__section-sub {
  text-align: center;
  margin-top: clamp(12px, 2.2cqw, 20px);
}

.p-top-dx__plan-box {
  width: 100%;
  max-width: 1424px;
  padding: clamp(20px, 5.5cqw, 28px);
  margin-inline: auto;
  margin-top: clamp(20px, 4.5cqw, 28px);
  background: #fff;
  border-radius: 1.875rem;
}

.p-top-dx__plan-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: clamp(20px, 4.5cqw, 24px);
}

.p-top-dx__plan-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-inline: -20px;
  padding-inline: 20px;
}

.p-top-dx__plan-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.p-top-dx__plan-table-wrap::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 3px;
}

.p-top-dx__plan-table-wrap::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .p-top-dx__plan .p-top-dx__section-title {
    margin: 0 0 clamp(20px, 2.8cqw, 32px);
  }
  .p-top-dx__plan .p-top-dx__section-sub {
    margin-top: clamp(12px, 2.2cqw, 20px);
  }
  .p-top-dx__plan-box {
    padding: clamp(40px, 3.5cqw, 90px);
    margin-top: clamp(2rem, 4.1vw, 77px);
  }
  .p-top-dx__plan-brand {
    margin-bottom: 1.625rem;
  }
  .p-top-dx__plan-table-wrap {
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}
.p-top-dx__plan-logo {
  width: min(420px, 100%);
  height: auto;
}

@media screen and (max-width: 599px) {
  .p-top-dx__plan-logo {
    width: min(336px, 100%);
  }
}

.p-top-dx__plan-edition {
  margin: 0;
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .p-top-dx__plan-edition {
    width: 100%;
    text-align: right;
  }
}

@media screen and (min-width: 600px) {
  .p-top-dx__plan-edition {
    width: auto;
    text-align: left;
  }
}

.p-top-dx__plan-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}

.p-top-dx__plan-table th,
.p-top-dx__plan-table td {
  padding: clamp(10px, 2.8cqw, 14px) clamp(12px, 3.2cqw, 16px);
  font-size: clamp(20px, 3.2cqw, 24px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  border: none;
  border-right: 2px solid #319ca4;
  border-bottom: 2px solid #319ca4;
}

.p-top-dx__plan-table th {
  padding-left: 0;
}

.p-top-dx__plan-table thead th {
  border-top: 2px solid #319ca4;
  border-bottom: 2px solid #319ca4;
}

.p-top-dx__plan-table td {
  padding-block: clamp(10px, 2.8cqw, 14px);
  font-size: clamp(20px, 3.2cqw, 24px);
  line-height: 1.5909090909;
}

.p-top-dx__plan-table tbody td {
  padding: clamp(16px, 2cqw, 28px) clamp(16px, 2cqw, 28px);
}

.p-top-dx__plan-table tbody tr:nth-child(3) td {
  padding: clamp(18px, 2cqw, 28px) clamp(10px, 2cqw, 28px);
}

.p-top-dx__plan-table th[scope="row"],
.p-top-dx__plan-table thead th:first-child {
  width: 18%;
  min-width: 64px;
}

.p-top-dx__plan-table thead th:nth-child(2),
.p-top-dx__plan-table thead th:nth-child(3),
.p-top-dx__plan-table thead th:nth-child(4) {
  width: 27.33%;
}

@media screen and (max-width: 767px) {
  .p-top-dx__plan-table th[scope="row"],
  .p-top-dx__plan-table thead th:first-child {
    width: 14%;
    min-width: 90px;
  }
  .p-top-dx__plan-table thead th:nth-child(2),
  .p-top-dx__plan-table thead th:nth-child(3),
  .p-top-dx__plan-table thead th:nth-child(4) {
    width: 31%;
  }
  .p-top-dx__plan-table tbody tr:nth-child(3) td {
    font-size: clamp(18px, 3.2cqw, 24px);
  }
}

@media (min-width: 768px) {
  .p-top-dx__plan-table th[scope="row"] {
    width: 28%;
    min-width: 100px;
  }
}
.p-top-dx__plan-table-scroll-hint {
  display: block;
  margin: 12px 0 0;
  padding: 8px 0;
  font-size: 12px;
  color: #888;
  text-align: center;
}

.p-top-dx__plan-footnote {
  margin-top: clamp(12px, 2.2cqw, 16px);
  font-size: clamp(13px, 3.2cqw, 15px);
}

@media (min-width: 768px) {
  .p-top-dx__plan-table {
    min-width: unset;
    table-layout: auto;
  }
  .p-top-dx__plan-table th,
  .p-top-dx__plan-table td {
    padding: 1.25rem 0.875rem;
    font-size: clamp(14px, 1.7cqw, 24px);
    border-right-width: 3px;
    border-bottom-width: 3px;
  }
  .p-top-dx__plan-table th {
    padding-left: 0.875rem;
  }
  .p-top-dx__plan-table thead th {
    border-top-width: 3px;
    border-bottom: 3px solid #319ca4;
  }
  .p-top-dx__plan-table td {
    padding-block: 1.5625rem;
    font-size: clamp(13px, 1.6cqw, 22px);
  }
  .p-top-dx__plan-table tbody td {
    padding: clamp(24px, 2.8cqw, 2rem) clamp(24px, 3.2cqw, 2rem);
  }
  .p-top-dx__plan-table tbody tr:nth-child(3) td {
    padding: clamp(16px, 2cqw, 2rem) clamp(16px, 2cqw, 2rem);
  }
  .p-top-dx__plan-table th[scope="row"] {
    width: 22%;
    min-width: unset;
  }
  .p-top-dx__plan-table-scroll-hint {
    display: none;
  }
  .p-top-dx__plan-footnote {
    margin: 0.75rem 0 0;
    font-size: 1.125rem;
  }
}

.p-top-dx__plan-table th:last-child,
.p-top-dx__plan-table td:last-child {
  border-right: none;
}

.p-top-dx__plan-table thead th {
  font-weight: 700;
}

.p-top-dx__plan-table th[scope="row"] {
  text-align: left;
}

@media (min-width: 768px) {
  .p-top-dx__plan-name {
    white-space: nowrap;
  }
}
.p-top-dx__plan-name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-weight: 700;
  white-space: nowrap;
}

.p-top-dx__plan-accent--start {
  color: #ed7872;
}

.p-top-dx__plan-accent--entry {
  color: #fdba00;
}

.p-top-dx__plan-accent--regular {
  color: #f41818;
}

.p-top-dx__plan-footnote {
  text-align: left;
}

/* ===== Flow ===== */
.p-top-dx__flow {
  padding-top: clamp(56px, 9vw, 147px);
  padding-bottom: clamp(56px, 9vw, 171px);
  background: #fff;
  overflow-x: clip;
}

.p-top-dx__flow .p-top-dx__container {
  width: calc(100% - clamp(8%, 8vw, 10%));
  max-width: min(375px, 100%);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .p-top-dx__flow .p-top-dx__container {
    width: min(1210px, max(860px, calc(1146 * 100vw / 1920 + 64px)), 100%);
    max-width: min(1210px, 100%);
    margin-inline: auto;
    padding-inline: clamp(1rem, 2vw, 2rem);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-top-dx__flow-accent {
  color: #ed7872;
}

.p-top-dx__flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.p-top-dx__flow-item {
  position: relative;
  width: min(1146px, 100%);
  min-height: 8.5rem;
  padding: 1.875rem 1.5rem;
  text-align: center;
  background: #f6f9f8;
  border: 3px solid #2b858d;
  border-radius: 1.875rem;
}

.p-top-dx__flow-item:not(:last-child) {
  margin-bottom: 8.625rem;
}

.p-top-dx__flow-item:not(:last-child)::after {
  position: absolute;
  bottom: -7.8125rem;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 5.1875rem solid #319ca4;
  border-right: 3.21875rem solid transparent;
  border-left: 3.21875rem solid transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .p-top-dx__flow-item:not(:last-child) {
    margin-bottom: 5.5rem;
  }
  .p-top-dx__flow-item:not(:last-child)::after {
    bottom: -4.5rem;
    border-top-width: 3rem;
    border-right-width: 1.875rem;
    border-left-width: 1.875rem;
  }
}

.p-top-dx__flow-title {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 700;
  line-height: 1.6;
  color: #2b858d;
}

.p-top-dx__flow-desc {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 700;
  line-height: 1.6;
  color: #2b858d;
}

.p-top-dx__flow-link {
  display: inline-block;
  margin-left: 0.2em;
  color: inherit;
  text-decoration: none;
}

.p-top-dx__flow-link:hover {
  text-decoration: underline;
}

.p-top-dx__cta {
  position: relative;
  padding-top: clamp(56px, 9vw, 112px);
  padding-bottom: clamp(56px, 9vw, 149px);
  background: #f6f9f8;
  overflow-x: clip;
}

.p-top-dx__cta ~ .p-top-dx__cta {
  background: #fff;
}

.p-top-dx__cta-title {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 48px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #333;
}

@media screen and (max-width: 767px) {
  .p-top-dx__cta-title-line1 {
    font-size: 20px;
  }
  .p-top-dx__cta-title-line2 {
    font-size: 25px;
    white-space: nowrap;
  }
}

.p-top-dx__cta .p-top-dx__container,
.p-top-dx__bottom-cta .p-top-dx__container {
  text-align: center;
}

@media (min-width: 768px) {
  .p-top-dx__cta .p-top-dx__container,
  .p-top-dx__bottom-cta .p-top-dx__container {
    width: min(1633px, calc(100% - 10vw));
    max-width: 1633px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 2.5vw, 3rem);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-top-dx__cta-actions {
  margin-top: clamp(20px, 6cqw, 76px);
}

.p-top-dx__cta .p-top-dx__cta-actions .c-dx-cta,
.p-top-dx__bottom-cta .p-top-dx__cta-actions .c-dx-cta {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .p-top-dx__cta .p-top-dx__cta-actions,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .c-dx-cta,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .c-dx-cta {
    -webkit-box-ordinal-group: 1;
    order: 1;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note {
    -webkit-box-ordinal-group: 2;
    order: 2;
    margin-top: 2.32rem;
  }
}

.p-top-dx__cta .c-dx-cta,
.p-top-dx__bottom-cta .c-dx-cta {
  margin-top: clamp(20px, 2.5vw, 32px);
  background: #2b858d !important;
  -webkit-box-shadow: 0 6px 10px rgba(56, 151, 159, 0.35);
  box-shadow: 0 6px 10px rgba(56, 151, 159, 0.35);
}

.p-top-dx__cta .c-dx-cta:hover,
.p-top-dx__bottom-cta .c-dx-cta:hover {
  background: #fff !important;
  color: #2b858d;
  border-color: #2b858d;
}

.p-top-dx__cta .c-dx-cta:hover .c-dx-cta__icon,
.p-top-dx__bottom-cta .c-dx-cta:hover .c-dx-cta__icon {
  border-color: #2b858d;
}

.p-top-dx__cta .c-dx-cta__icon::after,
.p-top-dx__bottom-cta .c-dx-cta__icon::after {
  border-top-color: #2b858d !important;
  border-right-color: #2b858d !important;
}

.p-top-dx__cta .c-dx-cta:hover .c-dx-cta__icon::after,
.p-top-dx__bottom-cta .c-dx-cta:hover .c-dx-cta__icon::after {
  border-top-color: #2b858d !important;
  border-right-color: #2b858d !important;
}

.p-top-dx__cta-accent {
  color: #ed7872;
}

.p-top-dx__cta-pointing {
  width: min(160px, 26vw);
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-top-dx__cta-pointing {
    width: 209px;
  }
}
.p-top-dx__cta-note {
  margin: 0.75rem 0 0;
  font-size: clamp(0.875rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: #2b858d;
  text-align: center;
}

.p-top-dx__cta-note span {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note {
    white-space: nowrap;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note br,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note br {
    display: none;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note .u-desktop,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note .u-desktop {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .p-top-dx__cta .p-top-dx__cta-actions,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-inline: -8px;
    width: calc(100% + 16px);
    max-width: none;
    box-sizing: border-box;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note {
    position: relative;
    margin: 0 0 1.25rem;
    padding: 0 2rem;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 500;
    color: #2b858d;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note::before,
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note::after,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note::before,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note::after {
    position: absolute;
    top: 50%;
    width: clamp(1.25rem, 6vw, 2.75rem);
    height: 3px;
    content: "";
    background: #2b858d;
    border-radius: 9999px;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note::before,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note::before {
    left: 0;
    rotate: 61.78deg;
    translate: 0 -50%;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .p-top-dx__cta-note::after,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .p-top-dx__cta-note::after {
    right: 0;
    rotate: -61.78deg;
    translate: 0 -50%;
  }
  .p-top-dx__cta .p-top-dx__cta-actions .c-dx-cta,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .c-dx-cta {
    min-height: 62px;
    padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 5.5rem)
      clamp(0.75rem, 2vw, 1.125rem) clamp(1rem, 2.5vw, 2rem);
    width: 100%;
    max-width: none;
    font-size: clamp(16px, 1.8vw, 35px);
  }
  .p-top-dx__cta .p-top-dx__cta-actions .c-dx-cta .c-dx-cta__text,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .c-dx-cta .c-dx-cta__text {
    font-size: clamp(16px, 1.8vw, 35px);
  }
}

@media screen and (min-width: 768px) {
  .p-top-dx__cta .p-top-dx__cta-actions .c-dx-cta,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .c-dx-cta {
    min-height: clamp(62px, 5.5vw, 8.25rem);
    padding: 2.5rem 5.5rem;
    border-radius: 3.125rem;
    font-size: clamp(16px, 1.8vw, 35px);
  }
  .p-top-dx__cta .p-top-dx__cta-actions .c-dx-cta .c-dx-cta__text,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .c-dx-cta .c-dx-cta__text {
    font-size: clamp(16px, 1.8vw, 35px);
  }
  .p-top-dx__cta .p-top-dx__cta-actions .c-dx-cta .c-dx-cta__icon,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions .c-dx-cta .c-dx-cta__icon {
    right: clamp(1rem, 1.3vw, 1.5rem);
    width: clamp(1.75rem, 2vw, 2.25rem);
    height: clamp(1.75rem, 2vw, 2.25rem);
  }
  .p-top-dx__cta .p-top-dx__cta-actions .c-dx-cta .c-dx-cta__icon::after,
  .p-top-dx__bottom-cta
    .p-top-dx__cta-actions
    .c-dx-cta
    .c-dx-cta__icon::after {
    width: clamp(7px, 0.8vw, 9px);
    height: clamp(7px, 0.8vw, 9px);
    border-width: clamp(2.5px, 0.28vw, 3px);
  }
}

.p-top-dx__cta-steps-wrap {
  margin-top: clamp(32px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px) 0;
  background: inherit;
  min-width: 0;
}

.p-top-dx__cta-step-badges {
  margin: 0 0 clamp(12px, 1.5vw, 20px);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 500;
  color: #333;
  letter-spacing: 0.02em;
  text-align: center;
}

.p-top-dx__cta-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  max-width: min(1402px, calc(100vw - 10vw));
  width: 100%;
  min-width: 0;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top-dx__cta-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3125rem;
  }
}
.p-top-dx__cta-step {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  background: #e7f2ff;
  -ms-flex-line-pack: start;
  align-content: start;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .p-top-dx__cta-step {
    width: 100%;
    max-width: min(28.75rem, 100%);
    min-width: 0;
    justify-self: center;
    container-type: inline-size;
  }
}

@media screen and (min-width: 1920px) {
  .p-top-dx__cta-step {
    width: 460px;
    height: 350px;
    grid-template-rows: 1fr auto;
  }
  .p-top-dx__cta-step-visual {
    min-height: 0;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .p-top-dx__cta-step-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.p-top-dx__cta-step-visual {
  min-width: 0;
  width: 100%;
  min-height: 0;
}

@media screen and (min-width: 768px) {
  .p-top-dx__cta-step-visual {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-top-dx__cta-step-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  aspect-ratio: 329/235;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .p-top-dx__cta-step-img {
    min-width: 0;
  }
}

@container (min-width: 0px) {
  .p-top-dx__cta-step-img {
    width: 90cqw;
    max-width: 90cqw;
    max-height: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-top-dx__cta-step-text {
  margin: 0;
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.p-top-dx__cta-form {
  padding: 1rem;
  background: #fff;
  border: 1px solid #c4c4c4;
  border-radius: 0.5rem;
}

.p-top-dx__cta-form-title {
  margin: 0 0 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #103882;
  letter-spacing: 0.2em;
}

.p-top-dx__cta-form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 0.625rem;
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: #103882;
  background: #f5f5f5;
  border-radius: 0.25rem;
}

.p-top-dx__cta-form-field--textarea {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 2.625rem;
}

.p-top-dx__cta-required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1px 0.375rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  background: #0291ff;
  border-radius: 0.1875rem;
}

.p-top-dx__cta-message {
  display: grid;
  gap: 1.125rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: clamp(28px, 4vw, 64px);
  padding-inline: 20px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  justify-items: center;
}

@media screen and (min-width: 1000px) {
  .p-top-dx__cta-message {
    grid-template-columns: 209px 1fr;
    gap: 0.8rem;
    width: min(1537px, 100%);
    margin-inline: auto;
    padding-inline: 0;
  }
  .p-top-dx__cta-message-text {
    text-align: center;
  }
  .p-top-dx__cta-message-lead {
    white-space: nowrap;
    font-size: clamp(18px, 2vw, 35px);
  }
  .p-top-dx__cta-message-strong {
    font-size: clamp(22px, 2.4vw, 45px);
  }
}
.p-top-dx__cta-message-text {
  text-align: left;
  min-width: 0;
}

.p-top-dx__cta-message-lead {
  margin: 0;
  font-size: clamp(20px, 3vw, 35px);
  white-space: normal;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  word-wrap: break-word;
}

.p-top-dx__cta-message-accent {
  color: #2b858d;
}

.p-top-dx__cta-message-strong {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 45px);
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  text-align: inherit;
  word-wrap: break-word;
}
.p-top-dx__fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.p-top-dx__fixed-bar.is-hidden-in-fv {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-top-dx__fixed-bar .c-dx-cta--fixed {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  margin-top: 0;
  min-height: 52px;
  padding: 12px 50px 12px 26px;
  margin-left: 6px;
}

.p-top-dx__fixed-bar .c-dx-cta--fixed .c-dx-cta__icon {
  right: 25px;
  width: 17px;
  height: 17px;
}

.p-top-dx__fixed-bar .c-dx-cta--fixed .c-dx-cta__text {
  font-size: 18px;
}

.p-top-dx__fixed-bar .p-top-dx__to-top {
  position: static;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-top-dx__fixed-bar {
    left: auto;
    right: clamp(14px, 2.5vw, 40px);
    bottom: clamp(14px, 2.5vw, 40px);
    width: auto;
    padding: 0;
    gap: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .p-top-dx__fixed-bar .c-dx-cta--fixed {
    display: none;
  }
}
.p-top-dx__to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #f68e8e;
  -webkit-box-shadow:
    0 4px 12px rgba(237, 120, 114, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow:
    0 4px 12px rgba(237, 120, 114, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-transition:
    border-color 0.2s ease,
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    border-color 0.2s ease,
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    -webkit-transform 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

.p-top-dx__fixed-bar .p-top-dx__to-top {
  position: static;
}

.p-top-dx__to-top:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  border-color: #2b858d;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.p-top-dx__to-top:hover .p-top-dx__to-top-icon {
  border-bottom-color: #2b858d;
}

.p-top-dx__to-top-icon {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: 6px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 14px solid #f68e8e;
  -webkit-transition: border-bottom-color 0.2s ease;
  transition: border-bottom-color 0.2s ease;
}

.p-top-dx__company {
  background: #fff;
  padding-top: clamp(56px, 9vw, 93px);
  padding-bottom: clamp(56px, 9vw, 147px);
}

.p-top-dx__company .p-top-dx__container {
  width: calc(100% - clamp(8%, 8vw, 10%));
  max-width: min(375px, 100%);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .p-top-dx__company .p-top-dx__container {
    width: min(1338px, calc(1242 * 100vw / 1920 + 96px));
    max-width: 1338px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 2.5vw, 3rem);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.p-top-dx__company .p-top-dx__section-title {
  text-align: center;
}

.p-top-dx__company-dl {
  width: min(1242px, 100%);
  margin: 4.75rem auto 0;
  border-top: 3px solid #319ca4;
}

.p-top-dx__company-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 3px solid #319ca4;
}

.p-top-dx__company-row dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.875rem 1.5rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 3px solid #319ca4;
}

.p-top-dx__company-row dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.625rem 1.5rem 0.875rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

@media screen and (min-width: 768px) {
  .p-top-dx__company .p-top-dx__section-title {
  }
  .p-top-dx__company-row {
    grid-template-columns: 252px 1fr;
  }
  .p-top-dx__company-row dt {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: none;
  }
  .p-top-dx__company-row dd {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-left: 3px solid #319ca4;
  }
}
/* ===== Staff ===== */
.p-top-dx__staff {
  position: relative;
  z-index: 2;
  padding-top: clamp(56px, 7vw, 82px);
  padding-bottom: clamp(56px, 7vw, 140px);
  background: #eaf7f9;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .p-top-dx__staff::before {
    bottom: clamp(
      340px,
      30vw,
      460px
    );
  }
}
.p-top-dx__staff-people {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  margin-top: 2rem;
  max-width: 1424px;
  margin-inline: auto;
}

.p-top-dx__staff-person {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 40px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-top-dx__staff-person {
    grid-template-columns: clamp(200px, 28vw, 442px) 1fr;
  }
}
@media screen and (min-width: 768px) {
  .p-top-dx__staff-person--reverse {
    grid-template-columns: 1fr clamp(200px, 28vw, 442px);
  }
  .p-top-dx__staff-person--reverse .p-top-dx__staff-photo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .p-top-dx__staff-person--reverse .p-top-dx__staff-body {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.p-top-dx__staff-photo {
  display: block;
  width: min(320px, 80%);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  margin-inline: auto;
  border-radius: 9999px;
}

@media screen and (max-width: 767px) {
  .p-top-dx__staff-photo {
    align-self: start;
    max-height: min(320px, 80vw);
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-top-dx__staff-photo {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 9999px;
  }
}
.p-top-dx__staff-role {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-top-dx__staff-name {
  margin: 0.375rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-top-dx__staff-bio-wrap {
  margin: 0.875rem 0 0;
}

.p-top-dx__staff-bio {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-top-dx__staff-bio-wrap:not(.is-open) .p-top-dx__staff-bio {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
  .p-top-dx__staff-bio-more {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0;
    font-size: 0.875rem;
    color: #2b858d;
    background: none;
    border: none;
    border-bottom: 1px solid #2b858d;
    cursor: pointer;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .p-top-dx__staff-bio-more:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .p-top-dx__staff-bio-more {
    display: none;
  }
}
.p-top-dx__staff-summary {
  position: relative;
  z-index: 1;
  width: min(322px, 100%);
  padding: clamp(18px, 3vw, 36px);
  margin-inline: auto;
  margin-top: clamp(28px, 6vw, 72px);
  margin-bottom: 0;
  background: #fff;
  border-radius: 1.875rem;
  -webkit-box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
  box-shadow: 0 6px 10px oklch(from #000 l c h/25%);
  overflow: visible;
}

@media (max-width: 767px) {
  .p-top-dx__staff-summary {
    width: min(375px, calc(100vw - 32px));
  }
}

@media (min-width: 768px) {
  .p-top-dx__staff-summary {
    padding: clamp(40px, 6vw, 60px);
    margin-bottom: clamp(-340px, -30vw, -460px);
    width: min(1424px, calc(1424 * 100vw / 1920));
    margin-inline: auto;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

.p-top-dx__staff-summary .p-top-dx__container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-inline: 0;
}

.p-top-dx__staff-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  height: 3.625rem;
  padding-inline: 1.875rem;
  margin: 0 auto 1.125rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  background: #ed7872;
  border: 1px solid #fff;
  border-radius: 9999px;
  text-align: center;
  white-space: nowrap;
  min-width: 0;
}

@media screen and (min-width: 768px) {
  .p-top-dx__staff-badge {
    padding-inline: 3.75rem;
  }
}
.p-top-dx__staff-summary-title {
  margin: 0;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.p-top-dx__staff-exp-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.125rem;
  min-width: 0;
}

@media screen and (min-width: 768px) {
  .p-top-dx__staff-exp-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    justify-items: center;
  }
}
.p-top-dx__staff-exp {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 28px);
  line-height: 2.1;
  list-style: disc;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.p-top-dx__staff-exp-tail {
  margin: 0;
  padding-right: clamp(1.5rem, 4vw, 4rem);
  font-size: clamp(16px, 1.7vw, 28px);
  font-weight: 500;
  text-align: right;
  min-width: 0;
}

/* ===== Bottom CTA（SPは通常余白、PCはカードはみ出し分の余白） ===== */
.p-top-dx__bottom-cta {
  position: relative;
  z-index: 1;
  padding-top: clamp(56px, 7vw, 140px);
  padding-bottom: clamp(56px, 7vw, 140px);
  background: #fff;
}

@media screen and (min-width: 768px) {
  .p-top-dx__bottom-cta {
    padding-top: clamp(380px, 32vw, 420px);
  }
}
.p-top-dx__bottom-cta-title {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 48px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-top-dx__bottom-cta-accent {
  color: #ed7872;
}

.p-top-dx__bottom-cta .p-top-dx__container {
  text-align: center;
}

.p-top-dx__bottom-cta .c-dx-cta {
  margin-top: clamp(20px, 2.5vw, 32px);
  background: #2b858d !important;
  -webkit-box-shadow: 0 6px 10px rgba(43, 133, 141, 0.35);
  box-shadow: 0 6px 10px rgba(43, 133, 141, 0.35);
}

.p-top-dx__bottom-cta .c-dx-cta__icon::after {
  border-top-color: #2b858d !important;
  border-right-color: #2b858d !important;
}

.p-top-dx__bottom-cta-note {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  text-align: center;
}

.p-top-dx__bottom-cta-badges {
  margin: 0.875rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #555;
  text-align: center;
  letter-spacing: 0.02em;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
  .p-top-dx__problems-cta-actions-note .u-desktop {
    display: inline;
  }
}

.u-tablet {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-tablet {
    display: block;
  }
  br.u-tablet {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  br.u-tablet {
    display: block;
  }
}

@media (max-width: 767px) {
  [data-only-device="md"] {
    display: none;
  }
}
@media (min-width: 768px) {
  [data-only-device="sm"] {
    display: none;
  }
}
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

.u-text__marker {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(75%, transparent),
    color-stop(75%, #de8430)
  );
  background: linear-gradient(transparent 75%, #de8430 75%);
}

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

.u-text__indent {
  -webkit-padding-start: 1em;
  padding-inline-start: 1em;
  text-indent: -1em;
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .p-top-dx {
    overflow-x: clip;
  }
  .p-header__inner {
    max-width: 640px;
    margin-inline: auto;
    width: 100%;
    padding-inline: 16px;
  }
}

@media (max-width: 767px) {
  .p-top-dx__container,
  .p-top-dx__problems .p-top-dx__container,
  .p-top-dx__features .p-top-dx__container,
  .p-top-dx__cases .p-top-dx__container,
  .p-top-dx__plan .p-top-dx__container,
  .p-top-dx__flow .p-top-dx__container,
  .p-top-dx__company .p-top-dx__container,
  .p-top-dx__cta .p-top-dx__container,
  .p-top-dx__bottom-cta .p-top-dx__container,
  .p-top-dx__staff .p-top-dx__container {
    width: 100% !important;
    max-width: 640px !important;
    padding-inline: 16px !important;
  }

  .p-top-dx__plan-table-wrap {
    margin-inline: -16px !important;
    padding-inline: 16px !important;
  }
  .p-top-dx__problems-cta .c-dx-cta,
  .p-top-dx__problems-cta .p-top-dx__problems-cta-actions {
    margin-inline: 0;
    width: 100%;
    max-width: 100%;
  }
  .p-top-dx__cta .p-top-dx__cta-actions,
  .p-top-dx__bottom-cta .p-top-dx__cta-actions {
    margin-inline: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .p-top-dx__cases .p-top-dx__container {
    padding-inline: 12px !important;
  }
}
/*# sourceMappingURL=styles.css.map */
