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

:root {
  /* inner */
  --inner: min(62.5rem, 100%);
  --inner--small: min(55.25rem, 100%);
  --inner--large: min(79.125rem, 100%);
  --inner-sp: min(37.5rem, 100%);
  --padding-inner: 2.25rem;
  --padding-inner-sp: 1.5rem;
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #fff;
  --color-text: #231815;
  --color-black: #000;
  --color-gray: #666;
  --color-border-gray: #aaaaaf;
  --color-bg: #f1f7fd;
  --color-primary: #1c75bc;
  --color-secondary: #00f;
  --color-accent: #f0c583;
  --color-yellow: #fff462;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --base-font-family: "fot-tsukuardgothic-std", "Noto Sans JP", sans-serif;
  --title-font-family: "Lato", sans-serif;
  --accent-font-family: "Noto Sans JP", sans-serif;
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 64px;
}
@media screen and (width >= 768px) {
  :root {
    --header-height: 80px;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  font-feature-settings: "palt" 1;
}
@media screen and (width >= 769px) and (max-width: 1060px) {
  html {
    font-size: 1.5094339623vw;
  }
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 1.0666666667vw;
  }
}
@media screen and (width <= 320px) {
  html {
    font-size: 5vw;
  }
}

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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

textarea {
  field-sizing: content;
}

body {
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
}

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

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General 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] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
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] {
  appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  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] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

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

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

/* Style select like a standard input */
select {
  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 */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

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

/* # =================================================================
     # Specify media element style
     # ================================================================= */
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;
  transition: opacity 0.3s;
}

.l-inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
  padding-inline: var(--padding-inner);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    max-width: calc(var(--inner-sp) + var(--padding-inner) * 2);
    padding-inline: var(--padding-inner-sp);
  }
}

.l-top__about {
  margin-block-start: 7.75rem;
}
@media screen and (max-width: 768px) {
  .l-top__about {
    margin-block-start: 2.5rem;
  }
}

.c-button {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 45rem;
  height: 6.875rem;
  padding: 1rem 2rem;
  text-decoration: none;
  background-color: var(--color-white);
  border-radius: 3.75rem;
  transition: opacity var(--duration);
}
@media screen and (max-width: 768px) {
  .c-button {
    gap: 1rem;
    height: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-button {
    gap: 0.75rem;
    height: 4.375rem;
    padding: 1rem;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.85;
  }
}
.c-button[data-color=primary] {
  background-color: var(--color-primary);
}
.c-button[data-color=primary] .c-button__text {
  color: var(--color-white);
}
.c-button[data-color=primary] .c-button__icon::before {
  border-left-color: var(--color-white);
}

.c-button__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-button__text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .c-button__text {
    font-size: 1.125rem;
    letter-spacing: 0.06em;
  }
}

.c-button__icon {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.0625rem;
  height: 0.9375rem;
  vertical-align: middle;
  background: none;
}
@media screen and (max-width: 768px) {
  .c-button__icon {
    width: 0.75rem;
    height: 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .c-button__icon {
    width: 0.625rem;
    height: 0.5rem;
  }
}
.c-button__icon::before {
  position: absolute;
  top: 0;
  left: 0.0625rem;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.46875rem solid transparent;
  border-bottom: 0.46875rem solid transparent;
  border-left: 0.9375rem solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .c-button__icon::before {
    border-top: 0.375rem solid transparent;
    border-bottom: 0.375rem solid transparent;
    border-left: 0.75rem solid var(--color-primary);
  }
}
@media screen and (max-width: 480px) {
  .c-button__icon::before {
    border-top: 0.25rem solid transparent;
    border-bottom: 0.25rem solid transparent;
    border-left: 0.625rem solid var(--color-primary);
  }
}

.c-heading {
  margin-bottom: 1rem;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .c-heading {
    font-size: 1.5rem;
  }
}

.c-heading[data-size=large] {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .c-heading[data-size=large] {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-heading[data-size=large] {
    font-size: 2rem;
  }
}

.c-heading[data-size=medium] {
  font-size: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .c-heading[data-size=medium] {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  .c-heading[data-size=medium] {
    font-size: 1.5rem;
  }
}

.c-heading[data-size=small] {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .c-heading[data-size=small] {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-heading[data-size=small] {
    font-size: 1.25rem;
  }
}

.c-heading[data-color=primary] {
  color: var(--color-primary);
}

.c-heading[data-color=black] {
  color: var(--color-black);
}

.c-heading[data-color=white] {
  color: var(--color-white);
}

.c-dot {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .c-dot {
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .c-dot {
    margin-bottom: 0.5rem;
  }
}

.c-dot__item {
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-dot__item {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-dot__item {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.c-dot__item:nth-child(1) {
  background-color: #68b6e0;
}
.c-dot__item:nth-child(2) {
  background-color: #6d8abc;
}
.c-dot__item:nth-child(3) {
  background-color: var(--color-primary);
}

.p-header {
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: 0 0 25px oklch(from var(--color-black) l c h/10%);
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 4rem;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  height: inherit;
  padding-inline-start: 1rem;
}

.p-header__logo {
  width: 100%;
  max-width: 3.75rem;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    max-width: 2.5rem;
  }
}

.p-header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}

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

.p-header__nav {
  display: block;
  flex: 1;
  height: inherit;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    position: relative;
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  justify-content: flex-end;
  height: inherit;
}

.p-header__nav-item,
.p-header__nav-modal-wrap {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  display: flex;
  align-items: center;
  margin-inline-start: 0.9375rem;
}

.p-header__nav-item > a,
.p-header__nav-modal-wrap > p {
  display: flex;
  align-items: center;
  height: inherit;
  padding-block: 0;
  padding-inline: clamp(12px, 2cqi, 15px);
  font-size: clamp(13px, 2cqi, 16px);
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--color-text);
}

.p-header__nav-modal-wrap {
  position: relative;
}

.p-header__nav-modal-wrap > p {
  transition: color var(--duration), opacity var(--duration);
}

.p-header__nav-modal {
  position: absolute;
  top: 5rem;
  left: -0.9375rem;
  width: max-content;
  padding-block: 0.625rem;
  visibility: hidden;
  background-color: #e0e5e5;
  opacity: 0;
  transition: transform calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67), visibility calc(var(--duration) * 1.67);
  transform: rotateX(90deg);
}

@media (any-hover: hover) {
  .p-header__nav-modal-wrap:hover > .p-header__nav-modal {
    visibility: visible;
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.p-header__nav-modal-item a {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem;
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--color-text);
}

.p-header__nav-modal-item a::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  transition: opacity var(--duration);
  rotate: 45deg;
}

@media screen and (any-hover: hover) and (max-width: 768px) {
  .p-header__nav-modal-item a:hover {
    opacity: 0.8;
  }
}
.p-header__nav-item.p-header__nav-item--contact a {
  position: relative;
  padding-inline: 3.125rem;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-primary);
}
.p-header__nav-item.p-header__nav-item--contact a::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1/1;
  content: "";
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  transition: transform var(--duration);
  rotate: 45deg;
  translate: 0 -50%;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item.p-header__nav-item--contact a::after {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  display: none;
  width: 4rem;
  height: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-color: var(--color-primary);
  border: none;
  outline: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 768px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: 1.5625rem;
  height: 1px;
  background-color: var(--color-white);
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67);
  translate: -50% 0;
}
.p-header__hamburger span:nth-of-type(1) {
  top: -8px;
}
.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}
.p-header__hamburger span:nth-of-type(3) {
  top: 8px;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  rotate: 45deg;
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  rotate: -45deg;
}

.p-header__drawer {
  position: absolute;
  inset: 0;
  z-index: 900;
  display: none;
  width: 100%;
  height: 100svh;
  padding-bottom: 6.875rem;
  margin-top: 4rem;
  overflow-y: scroll;
  background-color: #eff4f5;
  scrollbar-width: none;
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item {
  border-bottom: 1px solid var(--color-white);
}

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-top: 2.5rem;
  margin-left: 2rem;
  border-bottom: none;
}

.p-header__drawer-item > a,
.p-header__drawer-accordion-title {
  display: block;
  padding: 1.25rem 2rem;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.p-header__drawer-accordion-title {
  width: 100%;
  text-align: left;
}

.p-header__drawer-item.p-header__drawer-item--contact a {
  position: relative;
  width: 100%;
  max-width: 11.25rem;
  padding: 0.9375rem 0;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-primary);
}
.p-header__drawer-item.p-header__drawer-item--contact a::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 8px;
  aspect-ratio: 1/1;
  content: "";
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  transition: translate var(--duration);
  rotate: 45deg;
  translate: 0 -50%;
}

@media (any-hover: hover) {
  .p-header__drawer-item.p-header__drawer-item--contact a:hover::after {
    translate: 4px -50%;
  }
}
.p-header__drawer-accordion-title {
  position: relative;
}
.p-header__drawer-accordion-title::before, .p-header__drawer-accordion-title::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.75rem;
  height: 2px;
  content: "";
  background: currentcolor;
  transition: transform var(--duration), rotate var(--duration);
}
.p-header__drawer-accordion-title::before {
  translate: 0 -50%;
}
.p-header__drawer-accordion-title::after {
  rotate: 90deg;
  translate: 0 -50%;
}

.p-header__drawer-accordion-title.is-open::after {
  rotate: revert;
  translate: 0 -50%;
}

.p-header__drawer-accordion-list {
  display: none;
  padding-bottom: 0.625rem;
}

.p-header__drawer-accordion-list a {
  display: block;
  padding: 0.625rem 2rem;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: max(100svh, 28.125rem);
  padding-block-start: var(--header-height);
}
@media screen and (max-width: 768px) {
  .p-mv {
    height: max(31.25rem, 100%);
    padding-block-start: 4rem;
  }
}

.p-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.p-mv__title-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-inline: var(--padding-inner);
  margin: auto;
  color: var(--color-white);
  text-align: center;
  container-type: inline-size;
}

.p-mv__main-title {
  font-size: clamp(2rem, 5cqi, 4rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-shadow: 0 2px 4px oklch(from var(--color-black) l c h/30%);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-mv__main-title {
    font-size: 2rem;
  }
}

.p-mv__sub-title {
  font-size: clamp(1.125rem, 3cqi, 1.5rem);
  line-height: 1.6;
  text-shadow: 0 1px 2px oklch(from var(--color-black) l c h/30%);
}
@media screen and (max-width: 768px) {
  .p-mv__sub-title {
    font-size: 1.125rem;
  }
}

.p-mv__splide {
  width: 100%;
  height: 100%;
}

.p-mv__splide .splide__track {
  height: 100%;
}

.p-mv__splide .splide__list {
  height: 100%;
}

.p-mv__splide .splide__slide {
  height: 100%;
}

.p-mv__splide .splide__slide-image {
  width: 100%;
  height: 100%;
}

.p-mv__splide .splide__slide-image picture,
.p-mv__splide .splide__slide-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* stylelint-disable-next-line selector-id-pattern */
.p-diagnosis #f_nav {
  margin-top: 0rem;
}

.p-diagnosis-hero {
  background: url("/images/hero_img01.DwiGhF7g.jpg") no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-hero {
    background: url("/images/hero_img01_sp.X7k548nZ.jpg") no-repeat center/cover;
  }
}

.p-diagnosis-hero__inner {
  display: flex;
  align-items: center;
  height: 37.5rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-hero__inner {
    align-items: flex-start;
    height: 194.4444444444vw;
    padding: 16.1111111111vw 13.8888888889vw;
  }
}

@media screen and (max-width: 768px) {
  .p-diagnosis-hero__content {
    width: 100%;
  }
}

.p-diagnosis-hero__lead-image {
  width: 100%;
  max-width: 28.75rem;
  margin-bottom: 4.625rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-hero__lead-image {
    margin-bottom: 10vw;
  }
}

.p-diagnosis-hero__text-iamge {
  width: 100%;
  max-width: 33.4375rem;
}

.p-diagnosis-hero__cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 2rem;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--color-white);
  letter-spacing: 0.1em;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .p-diagnosis-hero__cta {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-hero__cta {
    padding-block: 1.75rem;
    font-size: 1.125rem;
  }
}

.p-diagnosis-hero__cta-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.0625rem;
  height: 0.9375rem;
  vertical-align: middle;
  background: none;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-hero__cta-icon {
    width: 0.875rem;
    height: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-hero__cta-icon {
    width: 0.625rem;
    height: 0.5rem;
  }
}
.p-diagnosis-hero__cta-icon::before {
  position: absolute;
  top: 0;
  left: 0.0625rem;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.46875rem solid transparent;
  border-bottom: 0.46875rem solid transparent;
  border-left: 0.9375rem solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-diagnosis-hero__cta-icon::before {
    border-top: 0.375rem solid transparent;
    border-bottom: 0.375rem solid transparent;
    border-left: 0.75rem solid var(--color-white);
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-hero__cta-icon::before {
    border-top: 0.25rem solid transparent;
    border-bottom: 0.25rem solid transparent;
    border-left: 0.625rem solid var(--color-white);
  }
}

/* ====================================
#
==================================== */
.p-diagnosis-trouble {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
}

.p-diagnosis-trouble__inner {
  padding-block: 7.8125rem 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__inner {
    padding-block: 5rem 11.5625rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__inner {
    padding-block: 3.75rem 11.5625rem;
  }
}

.p-diagnosis-trouble__header {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__header {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-diagnosis-trouble__header-image {
  position: absolute;
  top: 50%;
  right: -15.3125rem;
  width: 100%;
  max-width: 15.5625rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__header-image {
    top: -2rem;
    right: -2.1875rem;
    max-width: 12.5rem;
    margin-left: auto;
    transform: none;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__header-image {
    top: -2rem;
    right: -2.1875rem;
    max-width: 8.75rem;
  }
}

.p-diagnosis-trouble__lead {
  margin-bottom: 0.5rem;
}

.p-diagnosis-trouble__tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__tags {
    gap: 0.625rem;
  }
}

.p-diagnosis-trouble__tag {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 8.0625rem;
  padding: 0rem 1.25rem;
  font-size: 2.1875rem;
  font-weight: var(--fw-bold);
  line-height: 1.5714285714;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: var(--color-primary);
  border-radius: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__tag {
    width: auto;
    max-width: initial;
    padding: 0 1.3125rem;
    font-size: 1.4375rem;
    line-height: 1.4;
  }
}
.p-diagnosis-trouble__tag::after {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.5rem solid var(--color-primary);
  border-right: 0.5rem solid transparent;
  border-left: 0.5rem solid transparent;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__tag::after {
    bottom: -0.375rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__tag::after {
    bottom: -0.25rem;
  }
}

.p-diagnosis-trouble__tags-image {
  width: 100%;
  max-width: 26.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__tags-image {
    max-width: 21.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__tags-image {
    max-width: 75vw;
  }
}

.p-diagnosis-trouble__list {
  position: relative;
  max-width: 50rem;
  margin-inline: auto;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__list {
    max-width: 100%;
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__list {
    margin-bottom: 1.5rem;
  }
}

.p-diagnosis-trouble__item {
  display: flex;
  align-items: center;
  padding: 1.8125rem 2.5rem;
  border-bottom: 2px dashed #ccc;
}
.p-diagnosis-trouble__item:last-child, .p-diagnosis-trouble__item:has(+ .p-diagnosis-trouble__header-image) {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__item {
    padding: 1.25rem 1.875rem;
  }
  .p-diagnosis-trouble__item:nth-child(1), .p-diagnosis-trouble__item:nth-child(2) {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__item {
    padding: 0.875rem 0.375rem;
  }
  .p-diagnosis-trouble__item:nth-child(1), .p-diagnosis-trouble__item:nth-child(2) {
    width: calc(100% - 80px);
  }
}

.p-diagnosis-trouble__check {
  width: 100%;
  max-width: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__check {
    max-width: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__check {
    max-width: 1.875rem;
  }
}

.p-diagnosis-trouble__text {
  margin-left: 1.625rem;
  font-size: 1.5625rem;
  font-weight: var(--fw-bold);
  line-height: 2;
  color: var(--color-primary);
  letter-spacing: 0.2em;
}
.p-diagnosis-trouble__text span {
  display: inline;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__text {
    margin-left: 1rem;
    font-size: 1rem;
    line-height: 1.5625;
  }
}

@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__message {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-diagnosis-trouble__message-image {
  position: absolute;
  bottom: 0;
  left: 3.5rem;
  width: 100%;
  max-width: 19.1875rem;
}
@media screen and (width <= 1400px) {
  .p-diagnosis-trouble__message-image {
    left: -8vw;
  }
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__message-image {
    bottom: -3.125rem;
    left: 43%;
    width: 14.375rem;
    transform: translateX(-50%);
  }
}

.p-diagnosis-trouble__message-text {
  margin-inline: auto;
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.8;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__message-text {
    max-width: 26.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__message-text {
    max-width: 17.1875rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-diagnosis-trouble__cta {
  background-color: var(--color-primary);
}

.p-diagnosis-trouble__cta-inner {
  max-width: 51.25rem;
  padding-block: 4.375rem 5.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__cta-inner {
    padding-block: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__cta-inner {
    padding-inline: 1.5rem;
  }
}

.p-diagnosis-trouble__cta-text {
  margin-bottom: 1.75rem;
  font-size: 1.5625rem;
  font-weight: var(--fw-bold);
  line-height: 1.64;
  color: var(--color-white);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-trouble__cta-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-trouble__cta-text {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
  }
}

/* ====================================
# free
==================================== */
.p-diagnosis-free {
  overflow: hidden;
  background-color: var(--color-bg);
}

.p-diagnosis-free__inner {
  position: relative;
  padding-block: 6.875rem 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__inner {
    padding-block: 5rem 15rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__inner {
    padding-block: 3.75rem 15rem;
  }
}

.p-diagnosis-free__header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.p-diagnosis-free__title {
  margin-bottom: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__title {
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__title {
    margin-bottom: 2.5rem;
  }
}

.p-diagnosis-free__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 31.25rem;
  padding: 8rem 2.5rem 9.125rem;
  margin-bottom: 7.5rem;
  background: url("/images/free_img01.DC5ZallI.jpg") no-repeat center center/cover;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__card {
    padding: 3.75rem 1.875rem 5rem;
    margin-bottom: 5.625rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__card {
    min-height: initial;
    padding: 3.375rem 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-diagnosis-free__card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
}

.p-diagnosis-free__card-content {
  position: relative;
  z-index: 1;
}

.p-diagnosis-free__card-lead {
  margin-bottom: 3.125rem;
  font-size: 2.0625rem;
  font-weight: var(--fw-bold);
  line-height: 1.4545454545;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__card-lead {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__card-lead {
    margin-bottom: 0.625rem;
    font-size: 1.25rem;
  }
}

.p-diagnosis-free__card-text {
  margin-bottom: 2.0625rem;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.65;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__card-text {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    text-align: justify;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__card-text {
    margin-bottom: 1.375rem;
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.p-diagnosis-free__card-text:last-child {
  margin-bottom: 0;
}

.p-diagnosis-free__content {
  text-align: center;
}

.p-diagnosis-free__description {
  margin-bottom: 2rem;
  font-size: 1.4375rem;
  font-weight: var(--fw-bold);
  line-height: 1.7826086957;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__description {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__description {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}

.p-diagnosis-free__list {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 1.25rem 1.375rem;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__list {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

.p-diagnosis-free__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
  padding: 2.5rem 1.25rem;
  background-color: var(--color-primary);
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__item {
    padding: 1.875rem 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__item {
    padding: 1rem 0.75rem;
    border-radius: 0.375rem;
  }
}

.p-diagnosis-free__item-text {
  font-size: 1.4375rem;
  font-weight: var(--fw-bold);
  line-height: 1.5217391304;
  color: #fff;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__item-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__item-text {
    font-size: 1rem;
  }
}

.p-diagnosis-free__note {
  margin-bottom: 5rem;
  font-size: 1.4375rem;
  font-weight: var(--fw-bold);
  line-height: 1.3043478261;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__note {
    margin-bottom: 3.75rem;
    font-size: 1.375rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__note {
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-diagnosis-free__message {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.p-diagnosis-free__message-text {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.7142857143;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__message-text {
    max-width: 24.375rem;
    margin-inline: auto;
    font-size: 1.5rem;
  }
  .p-diagnosis-free__message-text .ls01 {
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-free__message-text {
    max-width: 20.3125rem;
    margin-inline: auto;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-diagnosis-free__message-image {
  position: absolute;
  right: -7.2vw;
  bottom: 0;
  width: 100%;
  max-width: 19.1875rem;
}
@media screen and (width <= 1400px) {
  .p-diagnosis-free__message-image {
    right: -13vw;
  }
}
@media screen and (max-width: 768px) {
  .p-diagnosis-free__message-image {
    right: 50%;
    max-width: 14.375rem;
    transform: translateX(50%);
  }
}

/* ====================================
#
==================================== */
.p-diagnosis-detail {
  position: relative;
  overflow: hidden;
}

.p-diagnosis-detail__inner {
  padding-block: 6.25rem 8.5rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail__inner {
    padding-block: 5rem 12.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail__inner {
    padding-block: 3.75rem 11.875rem;
  }
}

.p-diagnosis-detail__title {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail__title {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail__title {
    margin-bottom: 1.5rem;
  }
}

.p-diagnosis-detail__dots {
  margin-bottom: 1.5rem;
}

.p-diagnosis-detail__title {
  text-align: center;
}

.p-diagnosis-detail__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem 2.5rem;
  margin-bottom: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail__cards {
    gap: 1.5rem;
    margin-bottom: 3.125rem;
  }
}

.p-diagnosis-detail-card {
  display: flex;
  flex-direction: column;
  padding: 2.625rem 2.5rem;
  background-color: #e9eff5;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail-card {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail-card {
    padding: 1.5rem 2rem;
  }
}

.p-diagnosis-detail-card__head {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail-card__head {
    justify-content: center;
    max-width: 25rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail-card__head {
    gap: 1rem;
    justify-content: flex-start;
    max-width: 100%;
    margin-inline: initial;
    margin-bottom: 0.5625rem;
  }
}

.p-diagnosis-detail-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4375rem;
  aspect-ratio: 1/1;
  font-size: 1.3125rem;
  font-weight: var(--fw-bold);
  line-height: 1.9523809524;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail-card__label {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail-card__label {
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 0.875rem;
  }
}

.p-diagnosis-detail-card__heading {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.55;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail-card__heading {
    flex: 1;
    font-size: 0.875rem;
  }
}
.p-diagnosis-detail-card__heading:last-of-type .p-diagnosis-detail-card__head {
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail-card__heading:last-of-type .p-diagnosis-detail-card__head {
    gap: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail-card__heading:last-of-type .p-diagnosis-detail-card__head {
    gap: 1rem;
  }
}

.p-diagnosis-detail-card__text {
  flex: 1;
  width: 93%;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  line-height: 2.3076923077;
  text-align: justify;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail-card__text {
    width: 100%;
    margin-bottom: 0.625rem;
    font-size: 0.5625rem;
    line-height: 2;
  }
}

.p-diagnosis-detail-card__result {
  margin-top: auto;
}

.p-diagnosis-detail-card__result-text {
  display: block;
  width: 93%;
  padding: 2.5rem 1.25rem;
  margin-inline: auto;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.2em;
  background-color: var(--color-primary);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail-card__result-text {
    padding: 2rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail-card__result-text {
    width: 100%;
    padding: 1rem 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-diagnosis-detail__character {
  position: absolute;
  bottom: 0;
  left: 3.8vw;
  width: 100%;
  max-width: 19.1875rem;
}
@media screen and (width <= 1300px) {
  .p-diagnosis-detail__character {
    left: -8vw;
  }
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail__character {
    bottom: -3.75rem;
    left: 42%;
    max-width: 15rem;
    transform: translateX(-50%);
  }
}

.p-diagnosis-detail__message {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.7142857143;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-detail__message {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-detail__message {
    font-size: 1.25rem;
  }
}

/* ====================================
# Grid Background Wrapper
==================================== */
.p-diagnosis-grid-bg {
  background-color: var(--color-white);
  background-image: linear-gradient(var(--color-bg) 1px, transparent 1px), linear-gradient(90deg, var(--color-bg) 1px, transparent 1px);
  background-repeat: repeat;
  background-position: center center;
  background-size: 0.9375rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-grid-bg {
    background-size: 0.625rem 0.625rem;
  }
}

.p-diagnosis-reason__inner {
  padding-block: 7.5rem 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__inner {
    padding-block: 5rem 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__inner {
    padding-block: 3.75rem 3.75rem;
  }
}

.p-diagnosis-reason__choose {
  margin-bottom: 2.5rem;
}

.p-diagnosis-reason__title {
  margin-bottom: 2.75rem;
  text-align: center;
}

.p-diagnosis-reason__card {
  max-width: 51.25rem;
  margin-inline: auto;
  margin-bottom: 7.1875rem;
}
.p-diagnosis-reason__card img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__card {
    margin-bottom: 5rem;
  }
}
@media screen and (width <= 550px) {
  .p-diagnosis-reason__card {
    max-width: 25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__card {
    margin-bottom: 3.75rem;
  }
}

.p-diagnosis-reason__card-body {
  flex: 1;
}

.p-diagnosis-reason__lead {
  margin-bottom: 3.5rem;
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.6071428571;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__lead {
    margin-bottom: 2.5rem;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__lead {
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
  }
}

.p-diagnosis-reason__text-list {
  max-width: 33.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__text-list {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__text-list {
    text-align: justify;
    border-top: 2px dashed #ccc;
  }
}

.p-diagnosis-reason__text {
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.7;
  letter-spacing: 0.2em;
  border-bottom: 2px dashed #ccc;
}
.p-diagnosis-reason__text:first-child {
  border-top: 2px dashed #ccc;
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__text:first-child {
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__text {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__text {
    display: inline;
    padding: 1.0625rem 0rem;
    font-size: 0.875rem;
    line-height: 3.4285714286;
    box-decoration-break: clone;
  }
}

.p-diagnosis-reason__card-image {
  position: absolute;
  right: -0.625rem;
  bottom: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 19.375rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__card-image {
    right: -0.3125rem;
    bottom: -3.125rem;
    max-width: 14.375rem;
  }
}

.p-diagnosis-reason__feature-list {
  display: flex;
  gap: 1rem;
  justify-content: center;
  max-width: 51.875rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__feature-list {
    flex-direction: column;
    gap: 0.625rem;
    max-width: 25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__feature-list {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.p-diagnosis-reason__feature {
  flex: 1;
  max-width: 17.5rem;
  padding: 3.3125rem 1rem;
  background-color: var(--color-primary);
  border: 0.375rem solid var(--color-primary);
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.1875rem #fff, inset 0 0 0 0.5rem var(--color-primary);
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__feature {
    max-width: 100%;
    padding: 2rem 1.25rem;
    border: 0.25rem solid var(--color-primary);
    border-radius: 0.375rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.125rem #fff, inset 0 0 0 0.5rem var(--color-primary);
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__feature {
    padding: 1.5rem 1rem;
  }
}

.p-diagnosis-reason__feature-text {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__feature-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__feature-text {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
}

.p-diagnosis-reason__note {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.6071428571;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-reason__note {
    max-width: 21.875rem;
    margin-inline: auto;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-reason__note {
    max-width: 18.75rem;
    margin-inline: auto;
    font-size: 1.25rem;
  }
}

/* ====================================
# Flow Section
==================================== */
.p-diagnosis-flow {
  background-color: var(--color-white);
  background-image: linear-gradient(var(--color-bg) 1px, transparent 1px), linear-gradient(90deg, var(--color-bg) 1px, transparent 1px);
  background-repeat: repeat;
  background-position: center center;
  background-size: 0.9375rem 0.9375rem;
}

.p-diagnosis-flow__inner {
  padding-block: 0rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__inner {
    padding-block: 0rem 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-flow__inner {
    padding-block: 0rem 3.75rem;
  }
}

.p-diagnosis-flow__header {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__header {
    margin-bottom: 2rem;
  }
}

.p-diagnosis-flow__title {
  margin-bottom: 0.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-flow__title {
    margin-bottom: 0rem;
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.p-diagnosis-flow__lead {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.875;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__lead {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-flow__lead {
    font-size: 0.75rem;
  }
}

.p-diagnosis-flow__list {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 1.875rem;
  max-width: 47.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__list {
    max-width: 100%;
  }
}

.p-diagnosis-flow__item-image {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__item-image {
    max-width: 25rem;
    margin-inline: auto;
  }
}
.p-diagnosis-flow__item-image:not(:last-child)::after {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.625rem solid #ccc;
  border-right: 0.5rem solid transparent;
  border-left: 0.5rem solid transparent;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__item-image:not(:last-child)::after {
    border-top: 0.625rem solid #ccc;
    border-right: 0.625rem solid transparent;
    border-left: 0.625rem solid transparent;
  }
}

.p-diagnosis-flow__item {
  position: relative;
}
.p-diagnosis-flow__item:not(:last-child)::after {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.625rem solid #ccc;
  border-right: 0.5rem solid transparent;
  border-left: 0.5rem solid transparent;
  transform: translateX(-50%);
}
.p-diagnosis-flow__item:last-child {
  margin-bottom: 0;
}

.p-diagnosis-flow__item-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1.1875rem 5rem;
  background-color: var(--color-primary);
  border-radius: 3.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__item-inner {
    padding: 1rem 1.875rem 1rem 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-flow__item-inner {
    padding: 0.875rem 1.875rem 0.875rem 3.125rem;
  }
}

.p-diagnosis-flow__number {
  position: absolute;
  top: 50%;
  left: 0.625rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-primary);
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__number {
    left: 0.5rem;
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-flow__number {
    left: 0.875rem;
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1rem;
  }
}

.p-diagnosis-flow__text {
  flex: 1;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-flow__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-flow__text {
    font-size: 0.875rem;
  }
}

.p-diagnosis-faq {
  padding-block: 0rem 12.8125rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq {
    padding-block: 0rem 9.375rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq {
    padding-block: 0rem 6.25rem;
  }
}

.p-diagnosis-faq__header {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__header {
    margin-bottom: 1.5rem;
  }
}

.p-diagnosis-faq__title {
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  color: var(--color-primary);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__title {
    font-size: 1.25rem;
  }
}

.p-diagnosis-faq__list {
  max-width: 37.5rem;
  margin-inline: auto;
  margin-bottom: 8.125rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__list {
    max-width: 100%;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__list {
    margin-bottom: 3.125rem;
  }
}

.p-diagnosis-faq__item:not(:first-child, :last-child) {
  padding: 3.125rem 2.25rem;
  border-bottom: 0.125rem dotted #ccc;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__item:not(:first-child, :last-child) {
    padding: 2.25rem 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__item:not(:first-child, :last-child) {
    padding: 1.5rem 0rem;
  }
}
.p-diagnosis-faq__item:first-child {
  padding-inline: 2.25rem;
  padding-bottom: 3.125rem;
  border-bottom: 0.125rem dotted #ccc;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__item:first-child {
    padding-inline: 1.25rem;
    padding-bottom: 2.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__item:first-child {
    padding-inline: 0rem;
    padding-bottom: 1.5rem;
  }
}
.p-diagnosis-faq__item:last-child {
  padding-inline: 2.25rem;
  padding-top: 3.125rem;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__item:last-child {
    padding-inline: 1.25rem;
    padding-top: 2.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__item:last-child {
    padding-inline: 0rem;
    padding-top: 1.5rem;
  }
}

.p-diagnosis-faq__q {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__q {
    gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__q {
    margin-bottom: 0.75rem;
  }
}

.p-diagnosis-faq__a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__a {
    gap: 1rem;
  }
}

.p-diagnosis-faq__q-icon,
.p-diagnosis-faq__a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.0625rem;
  height: 3.0625rem;
  font-size: 1.625rem;
  font-weight: var(--fw-bold);
  line-height: 1.2307692308;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__q-icon,
  .p-diagnosis-faq__a-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__q-icon,
  .p-diagnosis-faq__a-icon {
    width: 1.9375rem;
    height: 1.9375rem;
    font-size: 1rem;
  }
}

.p-diagnosis-faq__a-icon {
  color: var(--color-primary);
  background-color: #f1f7fd;
}

.p-diagnosis-faq__q-text,
.p-diagnosis-faq__a-text {
  flex: 1;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__q-text,
  .p-diagnosis-faq__a-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__q-text,
  .p-diagnosis-faq__a-text {
    font-size: 0.75rem;
  }
}

.p-diagnosis-faq__message {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__message {
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__message {
    margin-bottom: 2.5rem;
  }
}

.p-diagnosis-faq__message-text {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 2.1428571429;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-diagnosis-faq__message-text {
    font-size: 1.25rem;
    text-align: inherit;
  }
}
@media screen and (max-width: 480px) {
  .p-diagnosis-faq__message-text {
    text-align: center;
  }
}

.p-diagnosis-faq__cta {
  width: 100%;
  max-width: 43.75rem;
  margin-inline: auto;
}

.p-footer {
  padding: 3.75rem 0;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 2.5rem 0;
  }
}

.p-footer__content {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-footer__content {
    flex-direction: column;
    align-items: center;
  }
}

.p-footer__logo {
  width: 100%;
  max-width: 2.5rem;
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem 1.875rem;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-list {
    justify-content: center;
  }
}

.p-footer__nav-item a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    opacity: 0.7;
  }
}
.p-footer__bottom {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__bottom {
    margin-top: 1.875rem;
  }
}

.p-footer__copyright {
  font-size: 0.875rem;
  color: var(--color-white);
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

@media (width <= 768px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 769px) {
  [data-only-device=sm] {
    display: none;
  }
}

@media (width <= 768px) {
  .u-sp-only {
    display: none;
  }
}

@media (width >= 769px) {
  .u-pc-only {
    display: none;
  }
}

@media (width >= 480px) {
  .u-sm-only {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

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

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