@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;
}

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

.p-selfcheck {
  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-selfcheck {
    background-size: 0.625rem 0.625rem;
  }
}

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

.p-selfcheck__header {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-selfcheck__header {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck__header {
    margin-bottom: 1.875rem;
  }
}

.p-selfcheck__title {
  margin-bottom: 0rem;
  text-align: center;
}

.p-selfcheck__subtitle {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-selfcheck__subtitle {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck__subtitle {
    font-size: 0.75rem;
  }
}

.p-selfcheck__list {
  margin-bottom: 3.5rem;
}

.p-selfcheck__cta-box {
  max-width: 62.5rem;
  padding: 4.375rem 3.125rem 3.75rem;
  margin-inline: auto;
  margin-bottom: 7.5rem;
  background-color: var(--color-primary);
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-selfcheck__cta-box {
    padding: 3.125rem 1.875rem 2.5rem;
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck__cta-box {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
  }
}

.p-selfcheck__cta-balloon {
  position: relative;
  max-width: 48.75rem;
  padding: 1.875rem 3.125rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  background-color: var(--color-white);
  border-radius: 62.4375rem;
}
@media screen and (max-width: 768px) {
  .p-selfcheck__cta-balloon {
    padding: 1.5rem 1.875rem;
    margin-bottom: 2.1875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck__cta-balloon {
    padding: 1rem 0.75rem;
    margin-bottom: 2rem;
  }
}
.p-selfcheck__cta-balloon::after {
  position: absolute;
  bottom: -0.9375rem;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 1rem solid var(--color-white);
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-selfcheck__cta-balloon::after {
    bottom: -0.6875rem;
    border-top: 0.75rem solid var(--color-white);
    border-right: 0.75rem solid transparent;
    border-left: 0.75rem solid transparent;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck__cta-balloon::after {
    bottom: -0.6875rem;
    border-top: 0.75rem solid var(--color-white);
    border-right: 0.75rem solid transparent;
    border-left: 0.75rem solid transparent;
  }
}

.p-selfcheck__cta-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.64;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-selfcheck__cta-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck__cta-title {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.p-selfcheck__cta-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.95;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-selfcheck__cta-text {
    font-size: 1rem;
    text-align: justify;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck__cta-text {
    max-width: 15rem;
    margin-inline: auto;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-selfcheck__cta-text-highlight {
  color: #ffeb3b;
}

.p-selfcheck__guide-text {
  margin-bottom: 3.75rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2;
  color: var(--color-gray);
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-selfcheck__guide-text {
    margin-bottom: 3.125rem;
    font-size: 1.25rem;
    text-align: justify;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck__guide-text {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.1em;
  }
}

.p-selfcheck__guide {
  margin-bottom: 5rem;
}

.p-selfcheck-faq__cta {
  text-align: center;
}

.p-selfcheck-list {
  max-width: 36.25rem;
  margin-inline: auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-selfcheck-list {
    max-width: 100%;
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck-list {
    display: flex;
    flex-direction: column;
    gap: 1.3125rem;
    max-width: 18.75rem;
    margin-inline: auto;
    margin-bottom: 3.125rem;
  }
}

.p-selfcheck-list__item {
  position: relative;
  padding-left: 1.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.9;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-selfcheck-list__item {
    padding-left: 1.625rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}
@media screen and (max-width: 480px) {
  .p-selfcheck-list__item {
    padding-left: 1.5625rem;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}
.p-selfcheck-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "□";
}
@media screen and (max-width: 480px) {
  .p-selfcheck-list__item::before {
    font-size: 0.875rem;
  }
}

.p-selfcheck__button {
  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;
}