@charset "UTF-8";@import "kiso.css";
/* リキッドレイアウト対応 */

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

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  /* inner */
  --inner: 1180px;
  --padding-pc: 25px;
  --padding-sp: 15px;
  /* color */
  --color-white: #fff;
  --color-white-a40: rgb(255 255 255 / 0.4);
  --color-text: #333;
  --color-black: #000;
  --color-bg: #212325;
  --color-gray: #d9d9d9;
  --color-gray-f2: #f2f2f2;
  --color-gray-df: #dfdfdf;
  --color-gray-cc: #ccc;
  --color-gray-c4: #c4c4c4;
  --color-gray-b3: #b3b3b3;
  --color-gray-a7: #a7a7a7;
  --color-gray-95: #959595;
  --color-gray-88: #888;
  --color-gray-77: #777;
  --color-gray-6f: #6f6f6f;
  --color-gray-3b: #3b3b3b;
  --color-gray-32: #323232;
  --color-gray-18: #181818;
  --color-accent: #CE3B16;
  --color-accent-2: #EA5514;
  --color-accent-3: #fe673c;
  --color-accent-light: #fff4f0;
  --color-accent-blue: #1345af;
  --color-accent-line: #06C755;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-screen: rgba(0, 0, 0, 0.5);
  --gradient-1: linear-gradient(0deg, #CE3B16 0.01%, #323232 60.77%);
  --gradient-2: linear-gradient(51deg, #770001 7.44%, #EA5514 82.72%);
  --gradient-3: linear-gradient(98deg, #FE673C 59.99%, #900209 96.44%);
  --gradient-4: linear-gradient(64deg, #770001 -7.59%, #EA5514 64.56%);
  /* font-weight */
  --regular: 300;
  --normal: 400;
  --medium: 500;
  --bold: 700;
  /* font-family */
  --base-font-family: "Noto Sans JP", sans-serif;
  --second-font-family: "Noto Sans JP", sans-serif;
  --title-font-family: "Bebas Neue", sans-serif;
  /* 8pxを余白の基準とした余白ルール */
  /* 参考：https://www.tak-dcxi.com/article/use-line-height-trim-as-css-variable/ */
  --leading-trim: calc((1em - 1lh) / 2);
  --spacing-unit: 0.5rem;
  --spacing-xs: calc(var(--spacing-unit) / 2);
  --spacing-sm: var(--spacing-unit);
  --spacing-md: calc(var(--spacing-unit) * 2);
  --spacing-lg: calc(var(--spacing-unit) * 3);
  --spacing-lg-2: calc(var(--spacing-unit) * 4);
  --spacing-xl: calc(var(--spacing-unit) * 5);
  --spacing-xl-2: calc(var(--spacing-unit) * 6);
  --spacing-2xl: calc(var(--spacing-unit) * 8);
  --spacing-3xl: calc(var(--spacing-unit) * 13);
  /* line-height分の余白を打ち消す */
  --spacing-xs-trim: calc(var(--spacing-xs) + var(--leading-trim));
  --spacing-sm-trim: calc(var(--spacing-sm) + var(--leading-trim));
  --spacing-md-trim: calc(var(--spacing-md) + var(--leading-trim));
  --spacing-lg-trim: calc(var(--spacing-lg) + var(--leading-trim));
  --spacing-xl-trim: calc(var(--spacing-xl) + var(--leading-trim));
  --spacing-2xl-trim: calc(var(--spacing-2xl) + var(--leading-trim));
  --spacing-3xl-trim: calc(var(--spacing-3xl) + var(--leading-trim));
  /* --leading-trimの使い方 */
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
    /* `px`などの単位が必要 */
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1180px) {
  html {
    font-size: 1.3559322034vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

/* bodyにデフォルト値を設定する */
body {
  font-family: var(--base-font-family);
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 14;
  --clamp-max: 16;
}

@media screen and (max-width: 767px) {
  body:has(.is-modal-open) {
    overflow: hidden;
  }
}
/* 👍使い方 */
@media (max-width: 767px) {
  [data-device=pc] {
    display: none;
  }
}

@media (min-width: 768px) {
  [data-device=sp] {
    display: none;
  }
}

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

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

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

::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 {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* 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] {
  border-bottom: none;
  /* 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;
}

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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  /* 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;
  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;
  /* 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 {
  border-style: none;
  padding: 0;
}

/* 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;
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

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

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

/* Style select like a standard input */
select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

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

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

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

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* 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 {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

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

.l-inner {
  max-width: calc(var(--inner) + var(--padding-pc) * 2);
  padding-right: var(--padding-pc);
  padding-left: var(--padding-pc);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: var(--padding-sp);
    padding-left: var(--padding-sp);
  }
}

.l-top__about {
  margin-block-start: var(--spacing-xl);
}
@media screen and (max-width: 767px) {
  .l-top__about {
    margin-block-start: var(--spacing-3xl);
  }
}

.l-svg-mask {
  position: absolute;
  z-index: -1000;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.c-child-top {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.c-child-top.m-simple {
  padding-top: 10.125rem;
}

.c-child-top__mv {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 23.4375rem;
  background: var(--color-gray-a7);
}
.m-wide .c-child-top__mv {
  min-height: 35rem;
}

.c-child-top__image {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
}

.c-child-top__product-image {
  position: absolute;
  right: 0;
  width: min(50%, 45rem);
  height: 100%;
}
.c-child-top__product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 60%);
}

.c-child-top__title-group {
  display: flex;
  flex-flow: column;
  gap: 0.625rem;
  position: relative;
  z-index: 1;
  width: min(100%, 78.25rem);
  padding-inline: 2.25rem;
  color: var(--color-white);
}

.c-child-top__en_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.c-child-top__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-child-top.m-simple {
    padding-top: 6.25rem;
  }
  .c-child-top__mv {
    min-height: 20rem;
  }
  .m-wide .c-child-top__mv {
    min-height: 20rem;
  }
  .c-child-top__title-group {
    gap: 0.375rem;
  }
  .c-child-top__en_title {
    font-size: 1.125rem;
  }
  .c-child-top__title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  min-height: 0;
  padding-block: 1rem;
  border-radius: 100vmax;
  background: transparent;
  outline: 2px transparent solid;
  outline-offset: -0.0625rem;
  color: var(--color-white);
  font-weight: 500;
  box-shadow: 0 0.625rem 0.625rem var(--color-shadow);
  transition: all 0.3s ease-in-out;
}
.c-button * {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.c-button::after {
  content: "";
  justify-self: end;
  position: absolute;
  right: 0.9375rem;
  width: 0.5rem;
  aspect-ratio: 1.732/2;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: currentColor;
  transition: all 0.3s ease-in-out;
}
.c-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100vmax;
  z-index: -1;
  background: var(--gradient-2);
  transition: opacity 0.3s ease-in-out;
}
.c-button:where(.m-transparent) {
  outline: 2px var(--color-white) solid;
}
.c-button:where(.m-transparent)::before {
  background: transparent;
}
.c-button:where(.m-reverse) {
  background: var(--color-white);
  outline: 2px var(--color-accent) solid;
  color: var(--color-accent);
}
.c-button:where(.m-reverse)::before {
  opacity: 0;
}
@media (any-hover: hover) {
  .c-button:hover {
    outline: 2px var(--color-white) solid;
    background: var(--color-text);
    color: var(--color-white);
  }
  .c-button:hover::before {
    opacity: 0;
  }
}

.c-rect-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  gap: 1.25rem;
  width: min(100%, 31.25rem);
  min-height: 7.5rem;
  border-radius: 0.375rem;
  background: var(--gradient-4);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease-in-out;
}
.c-rect-button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 0.25rem;
  z-index: -1;
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.c-rect-button::after {
  content: "";
  flex-shrink: 0;
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: url(../../images/common_icon_circle-arrow-r-white.svg) no-repeat center/cover;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-rect-button:hover {
    color: var(--color-white);
  }
  .c-rect-button:hover::before {
    background: var(--color-text);
    outline: 2px var(--color-text) solid;
  }
  .c-rect-button:hover::after {
    transform: translateX(0.5rem);
    filter: brightness(10);
  }
  .c-rect-button.m-hover-grad:hover::before {
    background: var(--color-white);
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-rect-button {
    font-size: 0.9375rem;
    min-height: 5rem;
    gap: 1rem;
  }
  .c-rect-button::after {
    width: 2rem;
  }
}
.c-hamburger {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  width: 4.375rem;
  aspect-ratio: 1/1;
}
.c-hamburger span {
  grid-area: stack;
  display: block;
  width: 1.875rem;
  height: 0.0625rem;
  background-color: var(--color-white);
  border-radius: 0.0625rem;
  transition: all 0.3s ease-in-out;
}
.c-hamburger span:nth-child(1) {
  transform: translateY(-0.5rem);
}
.c-hamburger span:nth-child(3) {
  transform: translateY(0.5rem);
}
.c-hamburger.is-modal-open span:nth-child(1) {
  transform: translateY(0rem) rotate(45deg);
}
.c-hamburger.is-modal-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-modal-open span:nth-child(3) {
  transform: translateY(0rem) rotate(-45deg);
}

.c-image-text {
  display: grid;
  align-items: center;
  grid-template: "image gutter text margin" auto/41.6666666667% 16px 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text--reverse {
  grid-template: "margin text gutter image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 16px 41.6666666667%;
}

.c-image-text__image {
  grid-area: image;
}

.c-image-text__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text__text {
  grid-area: text;
}

.c-image-text02 {
  display: grid;
  align-items: center;
  grid-template: "image text margin" auto/41.6666666667% 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text02--reverse {
  grid-template: "margin text image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 41.6666666667%;
}

.c-image-text02__image {
  grid-area: image;
}

.c-image-text02__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text02__text {
  grid-area: text;
  padding: 20px 0 20px 20px;
  margin-left: -100px;
  background: #fff;
}

.c-image-text02--reverse .c-image-text02__text {
  padding: 20px 20px 20px 0;
  margin-left: auto;
  margin-right: -100px;
}

.c-main-title {
  display: flex;
  flex-flow: column;
}

.c-main-title__decorate {
  position: relative;
  z-index: 0;
}
.c-main-title__decorate span {
  display: inline-block;
  font-family: var(--title-font-family);
  font-size: 5.625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-main-title__decorate span:first-child {
  color: var(--color-gray-df);
}
.c-main-title__decorate span:first-child::first-letter {
  background: var(--gradient-2);
  background-clip: text;
  color: transparent;
}

.c-main-title__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .c-main-title__decorate span {
    font-size: 3.5rem;
  }
  .c-main-title__text {
    font-size: 1rem;
  }
}
.c-section-title {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  font-weight: 700;
}

.c-section-title__sub {
  font-size: 1rem;
  line-height: 1.2;
}

.c-section-title__main {
  font-size: 2.25rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-section-title__sub {
    font-size: 0.75rem;
  }
  .c-section-title__main {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .c-section-title__main.m-sp-small {
    font-size: 1.625rem;
  }
}
.c-triangle {
  aspect-ratio: 1/1;
  width: 4rem;
  background-color: var(--color-black);
  display: inline-block;
}

.c-triangle--top {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.c-triangle--bottom {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.c-triangle--left {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.c-triangle--right {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-triangle--lower-left {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.c-triangle--upper-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.c-triangle--lower-right {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.c-triangle--upper-right {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.c-grad-text {
  color: transparent;
  background: var(--gradient-3);
  background-clip: text;
  -webkit-background-clip: text;
}
.c-grad-text.m-fv {
  color: rgb(255, 255, 255);
  transition: color 0.3s ease-in-out 1.25s;
}
.is-active .c-grad-text.m-fv {
  color: rgba(255, 255, 255, 0);
}

.c-moving-text {
  --text-delay: 0ms;
  --text-duration: 0.75s;
}
.c-moving-text .m-target {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition-property: transform, opacity;
  transition-timing-function: ease-in-out, ease-in-out;
  transition-duration: var(--text-duration), var(--text-duration);
  transition-delay: var(--text-delay), var(--text-delay);
}
.c-moving-text.is-active .m-target {
  transform: none;
  opacity: 1;
}

.c-solution-diagram {
  --vertex: 5;
  --size: 12.5rem;
  --radius: calc(var(--size) * 1.2);
  --width: calc(var(--radius) * 2.73);
  --height: calc(var(--radius) * 2.53);
  --margin-top: calc(var(--size) * 0.2);
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  position: relative;
  z-index: 0;
  width: var(--width);
  height: var(--height);
  margin-top: var(--margin-top);
}
.c-solution-diagram::before {
  grid-area: stack;
  content: "";
  position: absolute;
  width: calc(var(--radius) * 2);
  aspect-ratio: 1/1;
  z-index: -1;
  border-radius: 50%;
  border: 2px solid var(--color-white);
}
.c-solution-diagram.m-service-child {
  --radius: calc(var(--size) * 1.12);
  --margin-top: calc(var(--size) * 0.4);
}
.c-solution-diagram.m-service-child::before {
  border-color: var(--color-text);
}

.c-solution-diagram__item {
  --angle: calc((360 / var(--vertex) * var(--i) + -90) * 1deg);
  --move-x: calc(var(--radius) * cos(var(--angle)));
  --move-y: calc(var(--radius) * sin(var(--angle)));
  grid-area: stack;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  width: var(--size);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: clip;
  background: var(--gradient-2), var(--color-accent);
  transform: translateX(var(--move-x)) translateY(var(--move-y));
}
.c-solution-diagram__item:nth-child(1) {
  --i: 0;
}
.c-solution-diagram__item:nth-child(2) {
  --i: 1;
}
.c-solution-diagram__item:nth-child(3) {
  --i: 2;
}
.c-solution-diagram__item:nth-child(4) {
  --i: 3;
}
.c-solution-diagram__item:nth-child(5) {
  --i: 4;
}
.m-service-child .c-solution-diagram__item:not(.m-current) {
  background: var(--color-gray-df);
}

.c-solution-diagram__icon {
  position: absolute;
  width: calc(var(--size) * 0.7);
  aspect-ratio: 1/1;
  z-index: 0;
  pointer-events: none;
}
.m-service-child :not(.m-current) .c-solution-diagram__icon {
  filter: brightness(0.45);
}

.c-solution-diagram__text {
  align-self: flex-start;
  position: relative;
  z-index: 1;
  padding-top: calc(var(--size) * 0.64);
  color: var(--color-white);
  font-size: 1.25rem;
  text-align: center;
}
.m-service-child :not(.m-current) .c-solution-diagram__text {
  color: var(--color-gray-77);
}
.c-solution-diagram__text.m-long-text {
  font-size: 1.125rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .c-solution-diagram {
    --size: 6.875rem;
    --radius: calc(var(--size) * 1.2);
  }
  .c-solution-diagram__text {
    font-size: 0.875rem;
  }
  .c-solution-diagram__text.m-long-text {
    font-size: 0.6875rem;
  }
}
.c-case-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 1.25rem;
  background: var(--color-white);
  box-shadow: 0 0 0.875rem var(--color-shadow);
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-case-card:hover {
    color: var(--color-accent);
  }
  .c-case-card:hover .c-case-card__image img {
    transform: scale(1.1);
  }
}

.c-case-card__image {
  width: 100%;
  height: 15.8125rem;
  overflow: hidden;
  background: url(../../images/common_icon_no-image.svg) no-repeat center/2.8125rem 2.6875rem, var(--color-gray-cc);
}
.c-case-card__image img {
  transition: transform 0.3s ease-in-out;
}

.c-case-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.5rem;
  padding-inline: 1rem;
}

.c-case-card__date {
  color: var(--color-gray-77);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.c-case-card__title {
  display: -webkit-box;
  min-height: 4.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.c-case-card__desc {
  display: -webkit-box;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.c-case-card__tag-box {
  display: flex;
  flex-flow: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 1rem;
  padding-inline: 1rem;
}

.c-case-card__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.75rem;
  padding: 0.25rem 0.6875rem;
  border-radius: 100vmax;
  background: var(--gradient-2);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .c-case-card__image {
    height: 14.6875rem;
  }
  .c-case-card__title {
    font-size: 1.25rem;
    min-height: 3.5rem;
  }
  .c-case-card__desc {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}
.c-post-category {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  padding: 0.25rem 0.6875rem;
  min-width: 5.625rem;
  border-radius: 100vmax;
  overflow: hidden;
  background: var(--gradient-4);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.c-post-category * {
  font-size: inherit;
}
.c-post-category::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background: var(--color-text);
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-post-category:hover::before {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .c-post-category {
    padding: 0.25rem 0.5rem;
    min-width: 5rem;
    font-size: 0.75rem;
  }
}
.c-products-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  box-shadow: 0 0 0.875rem var(--color-shadow);
}
@media (any-hover: hover) {
  .c-products-card:is(:hover, :focus-visible) {
    color: var(--color-accent);
  }
  .c-products-card:is(:hover, :focus-visible) .c-products-card__image img {
    transform: scale(1.1);
  }
}

.c-products-card__image {
  position: relative;
  width: 100%;
  height: 15.8125rem;
  overflow: hidden;
  background: url(../../images/common_icon_no-image.svg) no-repeat center/2.8125rem 2.6875rem, var(--color-gray-cc);
}
.c-products-card__image img {
  transition: transform 0.3s ease-in-out;
}

.c-products-card__content {
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  gap: 1rem;
  padding: 1rem;
}

.c-products-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease-in-out;
}

.c-products-card__sub-title {
  font-size: 1rem;
  line-height: 1.4;
  transition: color 0.3s ease-in-out;
}

.c-products-card__categories {
  display: flex;
  flex-flow: wrap;
  gap: 0.625rem;
  margin-top: auto;
}

.c-products-card__category {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 100vmax;
  background: var(--gradient-4);
}
.c-products-card__category span {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4;
  background: var(--gradient-4);
  background-clip: text;
  color: transparent;
}
.c-products-card__category::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: 100vmax;
  background: var(--color-white);
}

@media screen and (max-width: 767px) {
  .c-products-card__title {
    font-size: 1.125rem;
  }
  .c-products-card__category span {
    font-size: 0.75rem;
  }
}
.c-our-works-card {
  display: flex;
  flex-flow: column;
  height: 100%;
  background: var(--color-white);
  box-shadow: 0 0 0.875rem var(--color-shadow);
  color: var(--color-text);
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-our-works-card:hover {
    color: var(--color-accent);
  }
  .c-our-works-card:hover .c-our-works-card__image img {
    transform: scale(1.1);
  }
}

.c-our-works-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 15.8125rem;
  overflow: hidden;
  background: var(--color-gray-cc);
}
.c-our-works-card__image::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 2.8125rem;
  aspect-ratio: 45/42;
  background: url(../../images/common_icon_no-image.svg) no-repeat center/cover;
}
.c-our-works-card__image img {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
}

.c-our-works-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.c-our-works-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-our-works-card__categories {
  display: flex;
  flex-flow: wrap;
  gap: 0.625rem;
  margin-top: auto;
}

.c-our-works-card__category {
  border-radius: 100vmax;
  padding: 0.25rem 0.5rem;
  background: var(--color-gray-df);
  color: var(--color-gray-77);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.c-our-works-card__category.m-current {
  background: var(--gradient-4);
  color: var(--color-white);
}

.c-breadcrumb {
  width: min(100%, 78.25rem);
  padding-inline: 2.25rem;
}
.c-breadcrumb ol {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  gap: 0.625rem;
}
.c-breadcrumb li {
  font-size: 0.875rem;
  font-weight: 500;
}
.c-breadcrumb li:not(:last-child) {
  flex-shrink: 0;
}
.c-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.625rem;
}
.c-breadcrumb a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.c-breadcrumb a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.c-breadcrumb span {
  color: var(--color-accent);
}

:where(summary) {
  list-style: none;
}
:where(summary)::-webkit-details-marker {
  display: none;
}

.c-accordion {
  --duration: 0.3s;
  width: 100%;
  position: relative;
  border-radius: 0.625rem;
  overflow: clip;
  border: 1px solid var(--color-gray);
  background: var(--color-white);
  color: var(--color-text);
}
.c-accordion::before, .c-accordion::after {
  content: "";
  top: 3.25rem;
  right: 1.875rem;
  position: absolute;
  display: grid;
  place-items: center;
  width: 20px;
  height: 2px;
  background-color: currentColor;
}
.c-accordion::before {
  rotate: 90deg;
  transition: rotate ease-out var(--duration);
}
.c-accordion.is-open::before {
  rotate: 0deg;
}

.c-accordion__summary {
  position: relative;
  gap: 0.625rem;
  padding-block: 2.5rem;
  padding-inline: 3.75rem 5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
  transition: padding-bottom var(--duration) ease-out;
}
.c-accordion__summary::before {
  content: "Q.";
  position: absolute;
  top: 2.5rem;
  left: 1.875rem;
  width: 1.25rem;
  font-size: inherit;
}
.c-accordion.is-open .c-accordion__summary {
  padding-bottom: 1.5rem;
}

.c-accordion__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows var(--duration) ease-out, padding-bottom var(--duration) ease-out, opacity var(--duration) linear;
}
.c-accordion.is-open .c-accordion__answer {
  grid-template-rows: 1fr;
  padding-bottom: 2.5rem;
  opacity: 1;
}

.c-accordion__answer-inner {
  display: flex;
  flex-flow: column;
  gap: 0.625rem;
  position: relative;
  overflow: hidden;
  padding-inline: 3.75rem 5rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.c-accordion__answer-inner > * {
  font-size: inherit;
}
.c-accordion__answer-inner::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 1.875rem;
  width: 20px;
  font-size: inherit;
}

@media screen and (max-width: 767px) {
  .c-accordion::before, .c-accordion::after {
    top: 1.6875rem;
    right: 0.9375rem;
    width: 16px;
  }
  .c-accordion__summary {
    padding-block: 1rem;
    padding-inline: 2.5rem 3rem;
    font-size: 1rem;
  }
  .c-accordion__summary::before {
    content: "Q.";
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    width: 1.25rem;
    font-size: inherit;
  }
  .c-accordion.is-open .c-accordion__summary {
    padding-bottom: 1rem;
  }
  .c-accordion.is-open .c-accordion__answer {
    padding-bottom: 1rem;
  }
  .c-accordion__answer-inner {
    padding-inline: 2.5rem 3rem;
    font-size: 0.9375rem;
  }
  .c-accordion__answer-inner::before {
    content: "A.";
    position: absolute;
    top: 0;
    left: 0.75rem;
    width: 20px;
    font-size: inherit;
  }
}
.c-single-contents p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.c-single-contents p * {
  font-size: inherit;
}
.c-single-contents p:first-child {
  margin-top: 0;
}
.c-single-contents h2 {
  margin-top: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.125rem solid var(--color-gray-95);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-single-contents h2:first-child {
  margin-top: 0;
}
.c-single-contents h3 {
  margin-top: 2.5rem;
  padding-inline: 1.25rem;
  border-left: 0.25rem solid var(--color-accent);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-single-contents h4 {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-single-contents h5 {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-single-contents figure {
  margin-block: 2rem;
}
.c-single-contents ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block: 1rem;
  margin-left: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.c-single-contents ul * {
  font-size: inherit;
}
.c-single-contents ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.c-single-contents ul li::before {
  flex-shrink: 0;
  content: "";
  margin-top: 0.75rem;
  width: 0.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: currentColor;
}
.c-single-contents ol {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  counter-reset: list;
}
.c-single-contents ol * {
  font-size: inherit;
}
.c-single-contents ol li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  counter-increment: list;
}
.c-single-contents ol li::before {
  flex-shrink: 0;
  content: counter(list) ".";
  width: 1.5rem;
  font-size: inherit;
  text-align: right;
}
.c-single-contents table {
  margin-top: 2rem;
  border-collapse: collapse;
  width: 100%;
}
.c-single-contents table :is(th, td) {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--color-gray-df);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.c-single-contents table :is(th, td:has(b, strong)) {
  background-color: var(--color-gray-f2);
  font-weight: 700;
}
.c-single-contents blockquote {
  margin-top: 2rem;
  position: relative;
  padding: 1.5rem 3rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.c-single-contents blockquote::before, .c-single-contents blockquote::after {
  position: absolute;
  width: 2rem;
  height: 2rem;
  color: var(--color-gray-95);
  font-size: 2.625rem;
  line-height: 0.5;
  border-color: currentColor;
}
.c-single-contents blockquote::before {
  content: "“";
  top: 0;
  left: 0;
  padding-top: 1rem;
  padding-left: 0.5rem;
  border-top: 1px solid;
  border-left: 1px solid;
}
.c-single-contents blockquote::after {
  content: "”";
  bottom: 0;
  right: 0;
  padding-top: 0.5rem;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.c-single-contents :is(b, strong) {
  font-weight: 700;
  font-style: normal;
}
.c-single-contents a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: background 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-single-contents a:hover, .c-single-contents a:focus {
    background: var(--color-accent-light);
  }
}

@media screen and (max-width: 767px) {
  .c-single-contents p {
    font-size: 0.9375rem;
  }
  .c-single-contents h2 {
    font-size: 1.375rem;
  }
  .c-single-contents h3 {
    font-size: 1.125rem;
    padding-inline: 0.75rem;
  }
  .c-single-contents h4 {
    font-size: 0.9375rem;
  }
  .c-single-contents h5 {
    font-size: 0.9375rem;
  }
  .c-single-contents ul, .c-single-contents ol {
    font-size: 0.9375rem;
    margin-left: 0;
    gap: 0.25rem;
  }
  .c-single-contents ul li::before {
    width: 0.375rem;
    margin-top: 0.625rem;
  }
  .c-single-contents table :is(th, td) {
    font-size: 0.9375rem;
  }
  .c-single-contents blockquote {
    font-size: 0.9375rem;
    padding: 1rem 1.75rem;
  }
  .c-single-contents blockquote::before, .c-single-contents blockquote::after {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.75rem;
  }
}
.c-category-filter {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
}

.c-category-filter__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-category-filter__form {
  display: flex;
  flex-flow: column;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  padding: 2.5rem 3.125rem;
  border-radius: 0.375rem;
  border: 1px solid var(--color-gray);
  background: var(--color-white);
  box-shadow: 0 0 0.75rem var(--color-shadow);
}

.c-category-filter__form-list {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 1.5rem;
}

.c-category-filter__category-box {
  display: grid;
  grid-template-columns: 14.25rem minmax(0, 1fr);
  align-items: center;
  width: 100%;
}
.c-category-filter__category-box:last-of-type {
  border-top: 1px solid var(--color-gray);
  padding-top: 1.5rem;
}
.m-our-works .c-category-filter__category-box {
  grid-template-columns: 11.25rem minmax(0, 1fr);
}

.c-category-filter__category-title {
  background: var(--gradient-4);
  background-clip: text;
  color: transparent;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-category-filter__categories {
  display: flex;
  flex-flow: wrap;
  gap: 0.625rem;
}
.c-category-filter__categories:has(:focus-visible) {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.c-category-filter__radio {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 0;
  min-width: 9.1875rem;
  padding: 0.5rem 0.625rem;
  border-radius: 100vmax;
  outline: 2px solid var(--color-gray-77);
  outline-offset: -2px;
  overflow: hidden;
  color: var(--color-gray-77);
  cursor: pointer;
}
.c-category-filter__radio span {
  font-size: inherit;
  padding-inline: 0.5rem;
}
.c-category-filter__radio input {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.c-category-filter__radio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-4);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.c-category-filter__radio:has(input:checked) {
  outline-color: transparent;
  color: var(--color-white);
}
.c-category-filter__radio:has(input:checked)::before {
  opacity: 1;
}
@media (any-hover: hover) {
  .c-category-filter__radio:not(:has(input:checked)):hover {
    outline-color: var(--color-text);
    background: var(--color-text);
    color: var(--color-white);
  }
}
.m-our-works .c-category-filter__radio {
  min-width: 8.75rem;
}

.c-category-filter__submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 16.6875rem;
  padding-block: 1.0625rem;
  border-radius: 100vmax;
  border: 2px solid var(--color-text);
  box-shadow: 0 0.625rem 0.625rem var(--color-shadow);
  color: var(--color-text);
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.c-category-filter__submit-button .m-icon {
  width: 1.25rem;
  aspect-ratio: 1/1;
}
.c-category-filter__submit-button span {
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}
@media (any-hover: hover) {
  .c-category-filter__submit-button:hover, .c-category-filter__submit-button:focus-visible {
    background: var(--color-text);
    color: var(--color-white);
  }
  .c-category-filter__submit-button:hover .m-icon, .c-category-filter__submit-button:focus-visible .m-icon {
    filter: invert(1);
  }
}

@media screen and (max-width: 767px) {
  .c-category-filter__form {
    gap: 1.875rem;
    padding: 1.875rem 1.25rem;
  }
  .c-category-filter__category-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }
  .m-our-works .c-category-filter__category-box {
    grid-template-columns: minmax(0, 1fr);
  }
  .c-category-filter__radio {
    min-width: 5.625rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
  }
  .m-our-works .c-category-filter__radio {
    min-width: 5.625rem;
  }
  .c-category-filter__submit-button {
    width: 14.375rem;
    padding: 0.75rem 1rem;
  }
}
.c-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  width: 100%;
}

.c-form__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.c-form__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.c-form__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-form__label::after {
  content: "任意";
  padding: 0.1875rem 0.5rem;
  background: var(--color-gray-77);
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
}
.c-form__label.m-required::after {
  content: "必須";
  background: var(--color-accent);
}

.c-form__radio-list {
  display: flex;
  flex-flow: wrap;
  gap: 0.75rem 2.5rem;
  transition: outline 0.3s ease-in-out;
}
.c-form__radio-list:has(input:focus-visible) {
  outline: 2px dotted var(--color-gray-a7);
  outline-offset: 0.125rem;
}
.c-form__radio-list > * {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.c-form__radio-list label {
  display: inline-grid;
  grid-template-columns: 1.4375rem 1fr;
  grid-template-areas: "icon text";
  place-items: center;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
}
.c-form__radio-list label::before, .c-form__radio-list label::after {
  content: "";
  grid-area: icon;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.c-form__radio-list label::before {
  width: 1.4375rem;
  border: 0.0625rem solid var(--color-gray-77);
  background: var(--color-white);
}
.c-form__radio-list label::after {
  width: 0.6875rem;
  background: currentColor;
  border: 0.0625rem solid currentColor;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.c-form__radio-list label:has(input:checked)::after {
  opacity: 1;
}
.c-form__radio-list input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.c-form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.c-form__checkbox-categories {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.c-form__checkbox-category-label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.c-form__checkbox-category-label::before {
  content: "・";
  font-size: inherit;
}

.c-form__checkbox-list {
  display: flex;
  flex-flow: wrap;
  gap: 0.75rem 1.125rem;
  transition: outline 0.3s ease-in-out;
}
.c-form__checkbox-list > * {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.c-form__checkbox-list label {
  display: inline-grid;
  grid-template-columns: 1.4375rem 1fr;
  grid-template-areas: "icon text";
  place-items: center;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
}
.c-form__checkbox-list label:has(input:focus-visible) {
  outline: 2px dotted var(--color-gray-a7);
  outline-offset: 0.125rem;
}
.c-form__checkbox-list label::before, .c-form__checkbox-list label::after {
  content: "";
  grid-area: icon;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
}
.c-form__checkbox-list label::before {
  width: 1.4375rem;
  border: 0.0625rem solid var(--color-gray);
  background: var(--color-white);
}
.c-form__checkbox-list label::after {
  content: "";
  width: 1rem;
  line-height: 1;
  opacity: 0;
  background: url(../../images/common_icon_check.svg) no-repeat center/cover;
  transition: opacity 0.3s ease-in-out;
}
.c-form__checkbox-list label:has(input:checked)::after {
  opacity: 1;
}
.c-form__checkbox-list input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.c-form__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  cursor: pointer;
}

.c-form__input-box {
  position: relative;
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-gray);
  background: var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.c-form__input-box::placeholder {
  color: var(--color-gray-df);
}
.c-form__input-box:focus-visible {
  border-color: var(--color-gray-88);
  box-shadow: 0 0 4px 4px var(--color-white-a40);
}
.c-form__input-box:is(:not(:placeholder-shown):invalid, :user-invalid) {
  background: var(--color-accent-light);
  border-color: var(--color-accent);
}
.c-form__input-box.m-post-code {
  padding-left: 3rem;
}
span:has(> .c-form__input-box.m-post-code) {
  position: relative;
  z-index: 0;
}
span:has(> .c-form__input-box.m-post-code)::before {
  content: "〒";
  position: absolute;
  z-index: 1;
  top: 0.625rem;
  left: 1rem;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
}
.c-form__input-box.m-textarea {
  height: auto;
  min-height: 15rem;
  resize: vertical;
}

.c-form__privacy {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 0.75rem;
}

.c-form__privacy-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-form__privacy-link {
  color: var(--color-gray-77);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-form__privacy-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
  }
}

.c-form__privacy-input {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 0.9375rem;
  aspect-ratio: 1/1;
  background: var(--color-white);
  border: 0.0625rem solid var(--color-gray);
}
.c-form__privacy-input * {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.c-form__privacy-input::before {
  content: "";
  position: absolute;
  width: 0.75rem;
  aspect-ratio: 1/1;
  background: url(../../images/common_icon_check.svg) no-repeat center/cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.c-form__privacy-input:has(input:checked)::before {
  opacity: 1;
}
.c-form__privacy-input:has(input:focus-visible) {
  outline: 2px dotted var(--color-gray-a7);
  outline-offset: 0.125rem;
}

.c-form__privacy-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.c-form__submit-box {
  display: flex;
  justify-content: center;
}

.c-form__submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 15rem;
  padding-block: 0.75rem;
  border-radius: 100vmax;
  background: var(--gradient-2);
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.c-form__submit-button * {
  font-size: 1rem;
  line-height: 1.5;
}
.c-form__submit-button:disabled {
  background: var(--color-gray);
}
@media (any-hover: hover) {
  .c-form__submit-button:not(:disabled):hover {
    background: var(--color-text);
    color: var(--color-white);
  }
  .c-form__submit-button:not(:disabled):hover::before {
    opacity: 0;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-response-output {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .c-form {
    gap: 2rem;
  }
  .c-form__radio-list {
    flex-flow: column;
  }
  .c-form__checkbox-list {
    flex-flow: column;
  }
}
.c-category-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  min-width: 7.75rem;
  min-height: 1.875rem;
  border-radius: 100vmax;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-category-tag::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: 100vmax;
  background-color: transparent;
}
.c-category-tag.m-notice {
  background: var(--gradient-2);
  color: var(--color-accent);
}
.c-category-tag.m-notice::before {
  background: var(--color-white);
}
.c-category-tag.m-event {
  background: var(--color-text);
  color: var(--color-white);
}
.c-category-tag.m-recruitment {
  background: var(--color-accent-blue);
}
.c-category-tag.m-recruitment::before {
  background: var(--color-white);
}

@media screen and (max-width: 767px) {
  .c-category-tag {
    display: flex;
    min-width: 5.625rem;
    min-height: 1.625rem;
    font-size: 0.75rem;
  }
}
.c-pagination {
  align-self: center;
}
.c-pagination ul.page-numbers {
  display: flex;
  flex-flow: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.c-pagination li {
  list-style: none;
  height: 2.75rem;
}
.c-pagination :where(a, span).page-numbers:not(.dots) {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--gradient-4);
  color: var(--color-white);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.c-pagination :where(a, span).page-numbers:not(.dots) * {
  font-size: inherit;
}
.c-pagination a.page-numbers:not(.dots) {
  color: var(--color-accent);
}
.c-pagination a.page-numbers:not(.dots)::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: 50%;
  background: var(--color-white);
  transition: background 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-pagination a.page-numbers:not(.dots):hover {
    background: var(--color-text);
    color: var(--color-white);
  }
  .c-pagination a.page-numbers:not(.dots):hover::before {
    background: var(--color-text);
  }
}
.c-pagination .page-numbers.dots {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-accent);
}
.c-pagination .page-numbers.dots * {
  font-size: inherit;
}
.c-pagination .prev,
.c-pagination .next {
  padding-block: 0;
  margin-block: 0;
}
.c-pagination .prev {
  margin-right: 1rem;
}
.c-pagination .next {
  margin-left: 1rem;
}
.c-pagination .c-path-icon {
  width: 0.5rem;
  height: 0.625rem;
  background-color: currentColor;
}
.c-pagination .c-path-icon.m-prev {
  clip-path: polygon(0 50%, 100% 0%, 100% 100%);
}
.c-pagination .c-path-icon.m-next {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (max-width: 767px) {
  .c-pagination ul.page-numbers {
    gap: 0.3125rem;
  }
  .c-pagination li {
    height: 1.75rem;
  }
  .c-pagination :where(a, span).page-numbers:not(.dots) {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.625rem;
  }
  .c-pagination a.page-numbers:not(.dots)::before {
    inset: 1px;
  }
  .c-pagination .prev {
    margin-right: 0.5rem;
  }
  .c-pagination .next {
    margin-left: 0.5rem;
  }
  .c-pagination .page-numbers.dots {
    font-size: 0.5rem;
  }
}
.p-footer {
  background: var(--color-gray-32);
  color: var(--color-white);
}

.p-footer__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  background: var(--gradient-1);
  padding-block: 5rem 13.0625rem;
  padding-inline: 2.5rem;
}

.p-footer__main {
  display: flex;
  justify-content: space-between;
  width: min(100%, 73.75rem);
  margin-top: 16.25rem;
}

.p-footer__company-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.p-footer__logo {
  width: 19.1875rem;
  aspect-ratio: 307/62;
}

.p-footer__company-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-footer__company-details dt {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.p-footer__company-details dd * {
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-footer__nav {
  display: flex;
  justify-content: flex-end;
  gap: 5rem;
  margin-top: 2.375rem;
}

.p-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block: -0.25rem;
  margin-inline: -0.75rem;
}
.p-footer__nav-list :where(*) {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.p-footer__nav-item a {
  padding: 0.25rem 0.75rem;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover, .p-footer__nav-item a:focus-visible {
    color: var(--color-gray-a7);
  }
}

.p-footer__nav-sub-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.75rem;
  margin-left: 0.375rem;
}

.p-footer__nav-sub-item * {
  color: var(--color-gray);
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-footer__top-link {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
}

.p-footer__top-link-button {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.25rem;
}

.p-footer__top-link-text {
  margin-top: 0.375rem;
  font-family: var(--title-font-family);
  line-height: 1.25;
  letter-spacing: 0.14em;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-footer__top-link-text:hover {
    color: var(--color-gray-a7);
  }
}

.p-footer__top-link-icon {
  width: 1.5625rem;
  aspect-ratio: 1/1;
}

.p-footer__bottom {
  display: flex;
  justify-content: center;
  padding-inline: 2.5rem;
}

.p-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 74.25rem);
  margin-inline: -0.25rem;
  padding-block: 2rem;
  padding-right: 0.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.p-footer__bottom-inner * {
  font-size: 0.8125rem;
}

.p-footer__policy {
  padding: 0.25rem;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-footer__policy:hover {
    color: var(--color-accent-3);
  }
}
.p-footer__policy a {
  font-size: 0.8125rem;
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    background: var(--gradient-1);
    padding-block: 3.125rem 5.3125rem;
    padding-inline: 0;
  }
  .p-footer__main {
    flex-direction: column;
    justify-content: start;
    width: min(100%, 20.9375rem);
    margin-top: 7.5rem;
  }
  .p-footer__nav {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
    margin-top: 2.8125rem;
  }
  .p-footer__bottom {
    display: flex;
    justify-content: center;
    padding-inline: 1.25rem;
  }
  .p-footer__bottom-inner {
    justify-content: center;
  }
  .p-footer__policy {
    margin-left: -0.75rem;
    padding-inline: 0.75rem;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  .p-footer__policy:hover {
    color: var(--color-text);
  }
}
.p-footer-contact {
  display: flex;
  flex-flow: column;
  gap: 4.5rem;
  width: min(100%, 73.75rem);
}

.p-footer-contact__header {
  display: flex;
  align-items: flex-end;
  gap: 5.25rem;
  color: var(--color-white);
}

.p-footer-contact__desc {
  margin-bottom: -0.390625rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-footer-contact__contents {
  padding-block: 1.8125rem 3.3125rem;
  border-radius: 0.625rem;
  background: var(--color-white);
}

.p-footer-contact__list {
  display: flex;
  flex-flow: row-reverse;
}

.p-footer-contact__item {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  width: 50%;
  height: 20rem;
  padding-block: 3.25rem;
  color: var(--color-text);
}
.p-footer-contact__item:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.0625rem;
  width: 0.125rem;
  background: var(--color-gray);
}

.p-footer-contact__icon {
  width: 3.75rem;
  aspect-ratio: 1/1;
}

.p-footer-contact__label-text {
  margin-top: 0.625rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.p-footer-contact__notes {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-footer-contact__link {
  margin-top: auto;
  width: 16.6875rem;
}

.p-footer-contact__tel-number {
  margin-top: auto;
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-footer-contact {
    gap: 2.8125rem;
  }
  .p-footer-contact {
    width: min(100%, 20.9375rem);
  }
  .p-footer-contact__header {
    flex-flow: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .p-footer-contact__desc {
    margin-bottom: 0;
    letter-spacing: 0;
    font-size: 1rem;
  }
  .p-footer-contact__contents {
    padding-block: 0.625rem;
    padding-inline: 1.6875rem;
    border-radius: 0.625rem;
  }
  .p-footer-contact__list {
    flex-flow: column;
  }
  .p-footer-contact__item {
    width: 100%;
    height: auto;
    padding-block: 3.125rem;
    color: var(--color-text);
  }
  .p-footer-contact__item:first-child::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.125rem;
  }
  .p-footer-contact__icon {
    width: 3.125rem;
  }
  .p-footer-contact__label-text {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    line-height: 1;
  }
  .p-footer-contact__notes {
    margin-top: 0;
  }
  .p-footer-contact__link {
    margin-top: 1.5rem;
    width: 16.6875rem;
  }
}
.p-header {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 8.125rem;
  color: var(--color-text);
  background: var(--color-white-a40);
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.p-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
}
.p-header.is-on-mv {
  color: var(--color-white);
  background: transparent;
  backdrop-filter: none;
}
.p-header.is-on-mv::after {
  backdrop-filter: none;
}
.p-header:not(.is-on-mv).is-scroll-down {
  transform: translateY(-100%);
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
  width: min(100%, 90rem);
  padding-inline: 2.5rem;
}

.p-header__title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-header__logo {
  width: 5.3125rem;
  height: 5.125rem;
}

.p-header__nav-title-sp {
  display: none;
}

.p-header__nav-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  height: 5.125rem;
}
.p-header__nav-inner :where(*) {
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}

.p-header__main-menu {
  display: flex;
  align-items: center;
  height: 2.25rem;
  margin-inline: -0.75rem;
}

.p-header__main-menu-item {
  flex-shrink: 0;
  line-height: 1.5;
  font-weight: 700;
}

.p-header__main-menu-link {
  display: inline-block;
  color: inherit;
  transition: color 0.3s ease-in-out;
  padding: 0.25rem 0.75rem;
}
@media (any-hover: hover) {
  .p-header__main-menu-link:hover, .p-header__main-menu-link:focus-visible {
    color: var(--color-accent-3);
  }
}

.p-header__sub-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  width: max-content;
  margin-inline: -0.75rem;
  bottom: 0;
  right: 0;
}

.p-header__mega-menu-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 0.75rem;
  color: inherit;
  font-weight: 700;
  line-height: 1.375rem;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-header__mega-menu-button:hover, .p-header__mega-menu-button:focus-visible {
    color: var(--color-accent);
  }
}
.p-header__mega-menu-button::after {
  content: "";
  display: block;
  width: 0.4375rem;
  aspect-ratio: 7/4;
  background: url(../../images/common_icon_arrow-down.svg) no-repeat center center;
  filter: brightness(0.1);
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}
.is-open .p-header__mega-menu-button::after {
  transform: rotate(180deg);
}
.is-on-mv .p-header__mega-menu-button::after {
  filter: none;
}

.p-header__mega-menu-sub-wrapper {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 8.125rem;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.is-open .p-header__mega-menu-sub-wrapper {
  visibility: visible;
  opacity: 1;
}

.p-header__mega-menu-sub-list {
  display: flex;
  gap: 1.375rem;
  padding: 2.5rem 4.75rem;
  width: min(100%, 90rem);
}

.p-header__mega-menu-sub-item {
  width: 15rem;
}

.p-header__mega-menu-link-item {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  color: var(--color-text);
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-header__mega-menu-link-item:hover, .p-header__mega-menu-link-item:focus-visible {
    color: var(--color-accent);
  }
}

.p-header__mega-menu-thumbnail {
  width: 100%;
  aspect-ratio: 240/135;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-header__mega-menu-thumbnail img {
    transition: transform 0.3s ease-in-out;
  }
  .p-header__mega-menu-thumbnail img:hover, .p-header__mega-menu-thumbnail img:focus-visible {
    transform: scale(1.1);
  }
}

.p-header__mega-menu-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-header__mega-menu-text::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 1.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../../images/common_icon_circle-arrow-r.svg) no-repeat center center;
}

.p-header__contact-menu {
  display: flex;
  gap: 0.25rem;
  height: 2.25rem;
}

.p-header__contact-menu-item {
  display: grid;
  place-items: center;
}

.p-header__contact-menu-link {
  position: relative;
  z-index: 0;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.p-header__contact-menu-link.m-request:not(:hover, :focus-visible) {
  background: var(--color-text);
}
.p-header__contact-menu-link.m-inquiry:not(:hover, :focus-visible) {
  background: var(--color-accent);
}
.p-header__contact-menu-link span {
  position: relative;
  z-index: 1;
}
.p-header__contact-menu-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 0.1875rem;
  background: var(--color-white);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-header__contact-menu-link:is(:hover, :focus-visible) {
    background: var(--gradient-2);
    color: transparent;
  }
  .p-header__contact-menu-link:is(:hover, :focus-visible) span {
    background: var(--gradient-2);
    background-clip: text;
  }
  .p-header__contact-menu-link:is(:hover, :focus-visible)::before {
    opacity: 1;
  }
}

.p-header__hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-header {
    height: 4.375rem;
    padding-inline: 1.25rem;
    color: var(--color-white);
  }
  .p-header__logo {
    width: 3.25rem;
    height: 3.125rem;
  }
  .p-header__inner {
    padding-inline: 0;
  }
  .p-header__nav {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1.5rem;
    position: fixed;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: var(--gradient-2);
    transition: all 0.3s ease-in-out;
  }
  .p-header__nav.is-modal-open {
    visibility: visible;
    opacity: 1;
  }
  .p-header__nav-title-sp {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-top: 0.625rem;
    padding-inline: 1.25rem;
  }
  .p-header__nav-logo-sp {
    width: 3.25rem;
    height: 3.125rem;
  }
  .p-header__nav-inner {
    align-items: center;
    flex-flow: column;
    gap: 1rem;
    height: auto;
    width: 100%;
    padding-block: 3rem 1.5rem;
    overflow: auto;
  }
  .p-header__main-menu {
    flex-flow: column;
    align-items: flex-start;
    gap: 1rem;
    width: 14.25rem;
    height: auto;
  }
  .p-header__sub-menu {
    position: static;
    flex-flow: column;
    align-items: flex-start;
    gap: 1rem;
    width: 14.25rem;
    height: auto;
  }
  .p-header__mega-menu-button {
    letter-spacing: 0;
  }
  .p-header__mega-menu-button::after {
    background-image: url(../../images/common_icon_arrow-down.svg);
    filter: none;
  }
  .p-header__mega-menu-sub-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    position: static;
    top: auto;
    background: none;
  }
  .is-open .p-header__mega-menu-sub-wrapper {
    grid-template-rows: 1fr;
    padding-top: 0.625rem;
  }
  .p-header__mega-menu-sub-list {
    flex-flow: column;
    gap: 0.375rem;
    overflow: hidden;
    padding: 0;
    margin-left: 0.75rem;
  }
  .p-header__mega-menu-sub-item {
    width: 100%;
  }
  .p-header__mega-menu-link-item {
    flex-flow: row-reverse;
    justify-content: space-between;
    width: 100%;
  }
  .p-header__mega-menu-thumbnail {
    flex-shrink: 0;
    width: 5rem;
    aspect-ratio: 80/45;
    overflow: hidden;
  }
  .p-header__mega-menu-text {
    color: var(--color-white);
    font-size: 0.875rem;
  }
  .p-header__mega-menu-text::before {
    width: 16px;
    background: url(../../images/common_icon_circle-arrow-r.svg) no-repeat center/cover;
  }
  .p-header__contact-menu {
    flex-flow: column;
    gap: 0.625rem;
    width: 12.75rem;
    height: auto;
  }
  .p-header__contact-menu-link {
    width: 100%;
  }
  .p-header__contact-menu-link.m-inquiry:not(:hover, :focus-visible) {
    color: var(--color-accent);
    background: var(--color-white);
  }
  .p-header__hamburger {
    display: grid;
    place-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 4.375rem;
    height: 4.375rem;
    background: var(--gradient-2);
  }
}
.p-main {
  display: flex;
  flex-flow: column;
  width: 100%;
  color: var(--color-text);
}

.p-top-mv {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh;
  overflow: clip;
  background: var(--color-black);
}

.p-top-mv__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--color-text);
}
.p-top-mv__background::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}

.p-top-mv__background-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.p-top-mv__background-image img {
  animation: zoom-out 7s ease-out infinite;
}
.p-top-mv__background-image.is-selected {
  opacity: 1;
  z-index: 1;
}
.p-top-mv__background-image.is-selected img {
  scale: 1;
}
.p-top-mv__background-image.is-next {
  opacity: 0;
  z-index: 2;
}
.p-top-mv__background-image.is-next img {
  animation: none;
}
.p-top-mv__background-image.is-prev {
  opacity: 0;
  z-index: 0;
}

.p-top-mv__content {
  position: relative;
  z-index: 1;
  width: 100%;
  color: var(--color-white);
}

.p-top-mv__title {
  --title-font-size: clamp(8.75rem, 10.69vw, 15rem);
  position: relative;
  margin-bottom: calc(var(--title-font-size) * -0.195);
  font-family: var(--title-font-family);
  font-size: var(--title-font-size);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0.25rem 1.25rem rgba(90, 17, 9, 0.3);
  letter-spacing: -0.02em;
  background: var(--gradient-3);
  background-clip: text;
  -webkit-background-clip: text;
}
.p-top-mv__title * {
  font-size: inherit;
}

.p-top-mv__subtitle {
  position: absolute;
  bottom: 4.125rem;
  left: 65vw;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 767px) {
  .p-top-mv__content {
    width: min(100%, 23.4375rem);
  }
  .p-top-mv__content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin-inline: calc((50vw - 50%) * -1);
    width: 100vw;
    height: 100%;
    background: linear-gradient(to top, var(--color-bg) 0 20%, transparent);
  }
  .p-top-mv__title {
    margin-bottom: 3.75rem;
    font-size: 5.5625rem;
    line-height: 0.96;
    letter-spacing: -0.03em;
  }
  .p-top-mv__subtitle {
    bottom: 2rem;
    right: 1.25rem;
    left: auto;
    font-size: 1.25rem;
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.p-top-about {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: clip;
  background: var(--color-bg);
  color: var(--color-white);
}

.p-top-about__news {
  align-self: flex-end;
}

.p-top-about__logo {
  position: relative;
  width: min(100%, 81.25rem);
  height: 17.5rem;
  mix-blend-mode: hard-light;
}

.p-top-about__logo-icon {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 22.5625rem;
  aspect-ratio: 361/279;
}

.p-top-about__logo-text {
  position: absolute;
  top: 6.75rem;
  left: 22.5625rem;
  width: 64.9375rem;
  aspect-ratio: 1039/121;
}

.p-top-about__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: min(100%, 78.75rem);
  padding-block: 5rem 3.75rem;
  padding-inline: 2.5rem;
  gap: 22.625rem;
}

.p-top-about__service {
  display: flex;
  flex-flow: column;
  gap: 4rem;
  position: relative;
  z-index: 0;
  width: 100%;
}

.p-top-about__service-header {
  position: relative;
  z-index: 1;
}

.p-top-about__service-contents {
  display: flex;
  flex-flow: column;
  gap: 1.75rem;
  position: relative;
  width: 25.5rem;
  z-index: 1;
}

.p-top-about__service-phrase {
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-top-about__service-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-top-about__service-link {
  align-self: flex-end;
  width: 16.6875rem;
}

.p-top-about__service-image {
  position: absolute;
  z-index: 0;
  top: -0.375rem;
  right: -26.25rem;
  width: 92.1875rem;
  aspect-ratio: 1475/760;
}

.p-top-about__achievement {
  display: flex;
  align-items: flex-end;
  flex-flow: column;
  gap: 2.3125rem;
  position: relative;
  z-index: 0;
  width: 100%;
}

.p-top-about__achievement-header {
  text-align: right;
  z-index: 1;
}

.p-top-about__achievement-contents {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  position: relative;
  width: 25.5rem;
  z-index: 1;
}

.p-top-about__achievement-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-top-about__achievement-link {
  align-self: flex-end;
  width: 16.6875rem;
}

.p-top-about__achievement-image {
  position: absolute;
  z-index: 0;
  top: -10rem;
  left: -16.25rem;
  width: 60rem;
  aspect-ratio: 1070/640;
}

@media screen and (max-width: 767px) {
  .p-top-about__news {
    align-self: center;
    width: min(100%, 23.4375rem);
  }
  .p-top-about__logo {
    position: absolute;
    width: min(100%, 23.4375rem);
    top: 6rem;
    height: 13.75rem;
  }
  .p-top-about__logo-icon {
    top: 0rem;
    left: 9.5rem;
    width: 17.8125rem;
  }
  .p-top-about__inner {
    width: min(100%, 23.4375rem);
    padding-block: 6.375rem 22.6875rem;
    padding-inline: 1.25rem;
    gap: 33.5625rem;
  }
  .p-top-about__service {
    gap: 1.5rem;
  }
  .p-top-about__service-contents {
    gap: 1.5rem;
    width: 100%;
  }
  .p-top-about__service-phrase {
    font-size: 1.75rem;
    padding-bottom: 0.5rem;
  }
  .p-top-about__service-link {
    align-self: center;
    width: 14.0625rem;
  }
  .p-top-about__service-image {
    top: auto;
    bottom: -37.875rem;
    right: calc((50vw - 50%) * -1);
    width: min(100vw, 28.125rem);
    aspect-ratio: 375/678;
  }
  .p-top-about__achievement {
    gap: 1.75rem;
  }
  .p-top-about__achievement-contents {
    gap: 1.5rem;
    width: 100%;
  }
  .p-top-about__achievement-link {
    align-self: center;
    width: 14.0625rem;
  }
  .p-top-about__achievement-image {
    top: 20.625rem;
    left: calc((50vw - 50%) * -1);
    width: min(28.125rem, 100vw);
    aspect-ratio: 375/404;
  }
}
.p-latest-news {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-left: auto;
  padding-block: 2rem 1.5625rem;
  padding-inline: 1.25rem;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .p-latest-news:hover, .p-latest-news:focus-visible {
    color: var(--color-accent);
  }
}

.p-latest-news__header {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.p-latest-news__title {
  pointer-events: none;
  font-size: 1.0625rem;
  font-weight: 600;
  padding-right: 1.0625rem;
  border-right: 0.0625rem solid var(--color-gray);
  color: var(--color-white);
}

.p-latest-news__date {
  font-size: 0.9375rem;
  font-weight: 500;
}

.p-latest-news__main {
  width: 50.5rem;
  overflow: clip;
}

.p-latest-news__text {
  width: max-content;
  font-size: 0.9375rem;
  font-weight: 500;
  animation: scroll-text 10s linear infinite -15s;
}

@media screen and (max-width: 767px) {
  .p-latest-news {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 1.25rem;
    padding-block: 1.625rem 1.25rem;
    gap: 0.375rem;
    width: 100%;
  }
  .p-latest-news__main {
    width: 100%;
  }
}
@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(-100%);
    opacity: 1;
  }
  50% {
    transform: translateX(-100%);
    opacity: 0;
  }
  51% {
    transform: translateX(100%);
    opacity: 0;
  }
  53% {
    transform: translateX(100%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
.p-top-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  padding-inline: 1.25rem;
  background: linear-gradient(to bottom, var(--color-white) 0% 38%, var(--color-gray-18) 38% 100%), var(--color-white);
}

.p-top-product__inner {
  display: flex;
  flex-direction: column;
  gap: 4.8125rem;
  width: min(100%, 73.75rem);
}

.p-top-product__header {
  color: var(--color-text);
  text-align: center;
}

.p-top-product__contents {
  background: var(--color-white);
  box-shadow: 0 0 1.125rem var(--color-shadow);
}

.p-top-product__tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-top-product__tab {
  display: grid;
  place-items: center;
  height: 4.5rem;
  background: var(--color-gray);
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.p-top-product__tab.is-selected {
  background: var(--color-accent);
  color: var(--color-white);
}

.p-top-product__content-container {
  display: grid;
  grid-template-areas: "stack" "button";
  justify-content: center;
  gap: 2rem;
  padding-block: 3.75rem;
  width: 100%;
}

.p-top-product__content {
  grid-area: stack;
  visibility: hidden;
  opacity: 0;
  background: var(--color-white);
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.p-top-product__content.is-selected {
  visibility: visible;
  opacity: 1;
}

.p-top-product__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 16.25rem);
  width: 67.5rem;
  gap: 1rem;
}

.p-top-product__item {
  width: 100%;
  height: 100%;
}
.p-top-product__item:first-child {
  grid-column: 1/3;
}

.p-top-product__link {
  grid-area: button;
  width: 16.6875rem;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .p-top-product {
    padding-block: 3.125rem 4.375rem;
    background: linear-gradient(to bottom, var(--color-white) 0% 42%, var(--color-gray-18) 42% 100%), var(--color-white);
  }
  .p-top-product__inner {
    gap: 2.3125rem;
    width: min(100%, 20.9375rem);
  }
  .p-top-product__tab {
    height: 4rem;
    font-size: 1.25rem;
    font-weight: 700;
  }
  .p-top-product__item:first-child {
    grid-column: 1/-1;
  }
  .p-top-product__content-container {
    padding-block: 2.5rem 3.5rem;
    padding-inline: 0.875rem;
  }
  .p-top-product__list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(5, 16.25rem);
    width: 100%;
    gap: 1.25rem;
  }
  .p-top-product__link {
    margin-right: auto;
  }
}
.p-top-product-card {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 8.125rem 1.5rem 0;
  background: var(--color-white);
  text-decoration: none;
}
.p-top-product-card img {
  transition: transform 0.3s ease-in-out;
}
.p-top-product-card::after {
  content: "";
  position: absolute;
  right: 1.75rem;
  bottom: 1.75rem;
  width: 2.625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  outline: 1px solid var(--color-white);
  z-index: 1;
  background: url(../../images/common_icon_arrow-r.svg) no-repeat center/1rem 1rem;
  transition: transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-top-product-card:hover img {
    transform: scale(1.1);
  }
}

.p-top-product-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: clip;
}
.p-top-product-card__image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #706F6F 3.77%, #ABABAB 54%);
  mix-blend-mode: multiply;
}

.p-top-product-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-top-product-card__title {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.p-top-product-card__tag-list {
  display: flex;
  gap: 0.375rem;
}

.p-top-product-card__tag-item {
  display: inline-block;
  padding: 0.1875rem 0.4375rem;
  border-radius: 100vmax;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .p-top-product-card {
    padding: 10rem 1rem 0;
  }
  .p-top-product-card::after {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 2.25rem;
    aspect-ratio: 1/1;
  }
  .p-top-product-card__content {
    gap: 0.375rem;
  }
  .p-top-product-card__title {
    font-size: 1.125rem;
  }
  .p-top-product-card__tag-list {
    flex-flow: wrap;
  }
}
.p-top-solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 62.0625rem;
  padding-inline: 2.5rem;
  padding-top: 7.5rem;
}

.p-top-solution__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-top-solution__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-gray-3b);
  z-index: 1;
  mix-blend-mode: overlay;
}
.p-top-solution__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6.25rem;
  z-index: 2;
  background: linear-gradient(to bottom, var(--color-gray-18) 0%, transparent 100%);
}

.p-top-solution__inner {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr) 16.6875rem;
  grid-template-areas: "header content link" "diagram diagram diagram";
  align-items: end;
  gap: 5rem;
  position: relative;
  z-index: 1;
  width: min(100%, 73.75rem);
  color: var(--color-white);
}

.p-top-solution__header {
  grid-area: header;
}

.p-top-solution__content {
  grid-area: content;
  padding-inline: 0.5rem;
}

.p-top-solution__desc {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-top-solution__link {
  grid-area: link;
}

.p-top-solution__diagram {
  grid-area: diagram;
  align-self: start;
  justify-self: center;
}

@media screen and (max-width: 767px) {
  .p-top-solution {
    min-height: 52.1875rem;
    padding-inline: 1.25rem;
    padding-top: 3.125rem;
  }
  .p-top-solution__image img {
    object-position: bottom center;
  }
  .p-top-solution__image::before {
    background: none;
  }
  .p-top-solution__image::after {
    height: 7.5rem;
  }
  .p-top-solution__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "header" "content" "diagram" "link";
    gap: 2.75rem;
    width: min(100%, 20.9375rem);
  }
  .p-top-solution__content {
    padding-inline: 0;
  }
  .p-top-solution__desc {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .p-top-solution__diagram {
    padding-top: 1.25rem;
  }
  .p-top-solution__link {
    justify-self: center;
    width: 16.6875rem;
  }
}
.p-top-case {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  padding-block: 3.75rem 7.5rem;
  overflow: clip;
}

.p-top-case__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16.6875rem;
  grid-template-areas: "header link" "content content";
  gap: 3.5rem;
  width: min(100%, 76.25rem);
  padding-inline: 1.25rem;
}

.p-top-case__header {
  grid-area: header;
  width: 100%;
}

.p-top-case__link {
  align-self: end;
  grid-area: link;
}

.p-top-case__content {
  grid-area: content;
  width: min(73.75rem + 50vw - 50%, 100rem);
  overflow: auto;
  padding-block: 1.25rem;
  margin-inline: -1.25rem;
  scrollbar-color: var(--color-gray-cc) transparent;
}

.p-top-case__list {
  display: flex;
  flex-flow: nowrap;
  gap: 1.25rem;
  width: fit-content;
  margin-inline: 1.25rem;
}
.p-top-case__list::after {
  flex-shrink: 0;
  content: "";
  width: min(60rem - 50vw, 6.875rem);
}

.p-top-case__item {
  flex-shrink: 0;
  width: min(100%, 23.75rem);
}

.p-top-case__gallery {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-top-case {
    padding-bottom: 4.375rem;
    gap: 3.75rem;
  }
  .p-top-case__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "header" "content" "link";
    justify-items: center;
    width: min(100%, 23.4375rem);
    gap: 1.5rem;
  }
  .p-top-case__link {
    width: 16.6875rem;
  }
  .p-top-case__content {
    width: 100%;
    margin-inline: 0;
    overflow: visible;
  }
  .p-top-case__list {
    flex-flow: column;
    gap: 1.25rem;
    width: 100%;
    margin-inline: 0;
  }
  .p-top-case__item {
    width: min(100%, 20.9375rem);
  }
  .p-top-case__item:nth-child(n+4) {
    display: none;
  }
}
.p-loop-gallery {
  position: relative;
  overflow: hidden;
  width: 90rem;
  margin-right: -16.25rem;
  height: 9.5rem;
}
.p-loop-gallery.m-top {
  width: 98.75rem;
  margin-right: -25rem;
}

.p-loop-gallery__list {
  --base-time: 8s;
  --items: 5;
  --loop-time: calc(var(--base-time) * var(--items));
  --gap: 1.25rem;
  display: flex;
  position: absolute;
  width: 90.625rem;
  height: 100%;
  animation: loop-gallery var(--loop-time) linear infinite both;
}
.p-loop-gallery__list:nth-child(2) {
  animation-delay: calc(var(--loop-time) * -0.5);
}
.m-top .p-loop-gallery__list {
  --items: 7;
  width: 126.875rem;
}

.p-loop-gallery__item {
  flex-shrink: 0;
  width: 16.875rem;
  margin-right: var(--gap);
  height: 100%;
  overflow: clip;
  border-radius: 0.375rem;
}

@media (min-width: 1720px) {
  .m-recruit .p-loop-gallery__list {
    animation: none;
  }
}
@keyframes loop-gallery {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.p-top-company {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 0;
}

.p-top-company__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-top-company__image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #706F6F 14.96%, #ABABAB 93.68%);
  mix-blend-mode: multiply;
}

.p-top-company__inner {
  display: flex;
  flex-direction: column;
  gap: 4.8125rem;
  position: relative;
  z-index: 1;
  padding-block: 5.625rem 7.5rem;
  padding-inline: 1.25rem;
}

.p-top-company__header {
  text-align: center;
  color: var(--color-white);
}

.p-top-company__content {
  display: flex;
  justify-content: center;
  width: 67.5rem;
}

.p-top-company__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.p-top-company__item {
  width: 100%;
}

.p-top-company__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 8.4375rem;
  border-radius: 0.375rem;
  background: var(--color-white);
}
.p-top-company__link::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 2.5625rem;
  aspect-ratio: 1/1;
  background: url(../../images/common_icon_circle-arrow-r-white.svg) no-repeat center/cover;
  transition: transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-top-company__link:hover::after {
    transform: translateX(0.5rem);
  }
}

.p-top-company__link-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-text);
  font-weight: 700;
}

.p-top-company__link-title-en {
  font-size: 1.5rem;
}

.p-top-company__link-title {
  font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
  .p-top-company__inner {
    gap: 2.3125rem;
    padding-block: 3.125rem 4.375rem;
    padding-inline: 1.25rem;
  }
  .p-top-company__header {
    text-align: left;
    color: var(--color-white);
  }
  .p-top-company__content {
    width: 20.9375rem;
  }
  .p-top-company__list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.p-top-recruit {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-block: 5rem;
  padding-inline: 2.5rem;
  overflow: hidden;
  background: linear-gradient(to top, var(--color-white) 0% 25%, transparent 25% 100%), var(--gradient-4);
}

.p-top-recruit__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 45rem;
  grid-template-rows: auto 1fr;
  grid-template-areas: "header image" "desc image";
  gap: 3.75rem;
  width: min(100%, 73.75rem);
}

.p-top-recruit__header {
  grid-area: header;
  display: flex;
  flex-direction: column;
  gap: 2.3125rem;
  color: var(--color-white);
}

.p-top-recruit__desc {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-top-recruit__image {
  grid-area: image;
  width: 100%;
  height: 30rem;
  margin-top: 2.75rem;
}

.p-top-recruit__link {
  align-self: start;
  width: 16.6875rem;
}

@media screen and (max-width: 767px) {
  .p-top-recruit {
    padding-block: 3.125rem 4.375rem;
    padding-inline: 1.25rem;
    background: var(--gradient-4);
  }
  .p-top-recruit__inner {
    display: flex;
    flex-flow: column;
    gap: 2rem;
    width: min(100%, 20.9375rem);
  }
  .p-top-recruit__image {
    margin-top: 0.75rem;
    width: 100vw;
    height: 31.25rem;
    margin-inline: calc((100vw - 100%) * -0.5);
  }
  .p-top-recruit__link {
    align-self: center;
  }
}
.p-services {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-inline: 1.25rem;
  width: 100%;
  overflow: hidden;
}

.p-services__details {
  align-self: stretch;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
  background: linear-gradient(180deg, #212325 80.25%, #323232 100%);
  color: var(--color-white);
}

.p-services-overview {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 5.25rem;
  position: relative;
  margin-top: 3.125rem;
  width: min(73.75rem, 100%);
  min-height: 56rem;
}

.p-services-overview__bg {
  position: absolute;
  z-index: -1;
  right: calc((50vw - 50%) * -1);
  width: clamp(69.8125rem, 70vw, 75rem);
  aspect-ratio: 1117/819;
  bottom: 0;
}

.p-services-overview__content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 2rem;
}

.p-services-overview__sub-title {
  background: var(--gradient-4);
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.p-services-overview__desc {
  width: min(27.75rem, 100%);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-services-overview__link {
  width: 16.6875rem;
}

@media screen and (max-width: 767px) {
  .p-services-overview {
    gap: 3rem;
    width: min(20.9375rem, 100%);
    min-height: 47.5rem;
  }
  .p-services-overview__bg {
    width: clamp(22.5rem, 90vw, 37.5rem);
  }
  .p-services-overview__sub-title {
    font-size: 1.75rem;
    line-height: 1.1;
  }
  .p-services-overview__desc {
    font-size: 0.9375rem;
  }
  .p-services-overview__link {
    align-self: center;
  }
}
.p-services-strengths {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  position: relative;
  z-index: 0;
  margin-top: 3.4375rem;
  width: min(73.75rem, 100%);
  min-height: 54.1875rem;
}

.p-services-strengths__bg {
  position: absolute;
  z-index: -1;
  width: clamp(45rem, 50vw, 50.625rem);
  aspect-ratio: 720/502;
  top: 16.25rem;
  right: calc((50vw - 50%) * -1);
}

.p-services-strengths__header {
  align-self: flex-end;
}

.p-services-strengths__lead {
  align-self: center;
  margin-top: 2rem;
  color: var(--color-accent);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-services-strengths__content {
  align-self: flex-start;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 4.5rem;
}

.p-services-strengths__sub-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.p-services-strengths__desc {
  width: min(30rem, 100%);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-services-strengths__desc * {
  font-size: inherit;
}

.p-services-strengths__link {
  width: 16.6875rem;
}

@media screen and (max-width: 767px) {
  .p-services-strengths {
    width: min(20.9375rem, 100%);
    min-height: 48.75rem;
  }
  .p-services-strengths__bg {
    width: clamp(20rem, 80vw, 26.25rem);
    top: auto;
    bottom: 2.5rem;
  }
  .p-services-strengths__header {
    align-self: flex-start;
  }
  .p-services-strengths__lead {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  .p-services-strengths__content {
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .p-services-strengths__sub-title {
    font-size: 1.5rem;
  }
  .p-services-strengths__desc {
    width: min(20.9375rem, 100%);
    font-size: 0.9375rem;
  }
  .p-services-strengths__link {
    align-self: center;
  }
}
.p-services-reason {
  display: flex;
  flex-flow: column;
  align-items: center;
  z-index: 0;
  width: min(73.75rem, 100%);
}

.p-services-reason__header {
  align-self: flex-start;
}

.p-services-reason__lead {
  margin-top: 1.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.p-services-reason__lead .m-grad {
  padding-inline: 0.125rem;
  font-size: 3.125rem;
  font-style: normal;
  background: var(--gradient-4);
  background-clip: text;
  color: transparent;
}
.p-services-reason__lead .m-large {
  font-size: 4.5rem;
}

.p-services-reason__list {
  display: flex;
  flex-flow: column;
  gap: 5.75rem;
  width: min(67.5rem, 100%);
  margin-top: 6.5rem;
}

.p-services-reason__item {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 4.375rem 2.5rem;
  padding-inline: 3.125rem;
  background: var(--color-white);
}
.p-services-reason__item.m-reverse {
  flex-flow: row-reverse;
}

.p-services-reason__item-counter {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  color: var(--color-white);
  padding-block: 1rem 0.8125rem;
  padding-inline: 1.5rem 3.125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.p-services-reason__item-counter::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--gradient-4);
  clip-path: polygon(-1px -1px, 100% -1px, calc(100% - 1.75rem) 100%, -1px 100%);
}
.m-reverse .p-services-reason__item-counter {
  left: auto;
  right: 0;
  padding-inline: 3.125rem 1.5rem;
}
.m-reverse .p-services-reason__item-counter::after {
  clip-path: polygon(-1px -1px, 101% -1px, 101% 100%, 1.75rem 100%);
}
.p-services-reason__item-counter .m-number {
  display: inline-block;
  margin-top: -2.5rem;
  font-size: 3.5rem;
  filter: url(#stroke-only);
}

.p-services-reason__item-contents {
  flex-shrink: 0;
  display: flex;
  flex-flow: column;
  gap: 1rem;
  width: 25rem;
  color: var(--color-text);
}

.p-services-reason__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-services-reason__item-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-services-reason__item-desc * {
  font-size: inherit;
}

.p-services-reason__item-image {
  flex-shrink: 0;
  width: 26.25rem;
  aspect-ratio: 420/315;
  margin-top: -6.375rem;
}

.p-services-reason__item-link {
  margin-top: 0.5rem;
  width: 16.6875rem;
}

@media screen and (max-width: 767px) {
  .p-services-reason {
    width: min(20.9375rem, 100%);
  }
  .p-services-reason__lead {
    width: 100%;
    font-size: 1.625rem;
    text-align: left;
    line-height: 1.25;
  }
  .p-services-reason__lead .m-grad {
    font-size: 1.875rem;
  }
  .p-services-reason__lead .m-large {
    font-size: 2.5rem;
  }
  .p-services-reason__list {
    gap: 5rem;
    margin-top: 4.5rem;
  }
  .p-services-reason__item {
    flex-flow: column-reverse;
    align-items: stretch;
    gap: 1.25rem;
    padding-block: 0 1.875rem;
    padding-inline: 0;
  }
  .p-services-reason__item.m-reverse {
    flex-flow: column-reverse;
  }
  .p-services-reason__item-contents {
    gap: 1rem;
    width: 100%;
    padding-inline: 1.25rem;
  }
  .p-services-reason__item-counter {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    color: var(--color-white);
    padding-block: 1rem 0.8125rem;
    padding-inline: 1.5rem 3.125rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
  }
  .p-services-reason__item-counter::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--gradient-4);
    clip-path: polygon(-1px -1px, 100% -1px, calc(100% - 1.75rem) 100%, -1px 100%);
  }
  .m-reverse .p-services-reason__item-counter {
    left: 0;
    right: auto;
    padding-inline: 1.5rem 3.125rem;
  }
  .m-reverse .p-services-reason__item-counter::after {
    clip-path: polygon(-1px -1px, 100% -1px, calc(100% - 1.75rem) 100%, -1px 100%);
  }
  .p-services-reason__item-title {
    font-size: 1.25rem;
  }
  .p-services-reason__item-desc {
    font-size: 0.9375rem;
  }
  .p-services-reason__item-image {
    width: 100%;
    aspect-ratio: 420/315;
    margin-top: 0;
  }
  .p-services-reason__item-link {
    align-self: center;
  }
}
.p-services-others {
  align-self: stretch;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-inline: -1.25rem;
  padding-block: 4.6875rem 6.25rem;
}

.p-services-others__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-services-others__desc {
  width: min(67.5rem, 100%);
  margin-top: 2.375rem;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.p-services-others__desc * {
  font-size: inherit;
}

.p-services-others__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(90rem, 100%);
  margin-top: 3.375rem;
}

.p-services-others__item {
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-services-others__item > * {
  grid-area: stack;
}
.p-services-others__item::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 2.9375rem;
  aspect-ratio: 1/1;
  background: url(../../images/common_icon_circle-arrow-r-white.svg) center/cover;
  filter: brightness(100);
  transition: transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-services-others__item:hover::after {
    transform: translateX(0.25rem);
  }
  .p-services-others__item:hover .p-services-others__item-image {
    transform: scale(1.1);
  }
}

.p-services-others__item-image {
  position: relative;
  z-index: -1;
  width: 100%;
  aspect-ratio: 720/405;
  transition: transform 0.3s ease-in-out;
}

.p-services-others__item-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
  font-weight: 700;
}

.p-services-others__item-en {
  font-size: 1rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.p-services-others__item-name {
  font-size: 2rem;
  line-height: 1;
}

.p-services-others__link {
  margin-top: 2.5rem;
  width: 16.6875rem;
}

@media screen and (max-width: 767px) {
  .p-services-others {
    align-self: center;
    width: min(20.9375rem, 100%);
    padding-block: 5rem 5rem;
    margin-inline: 0;
  }
  .p-services-others__title {
    align-self: flex-start;
    font-size: 1.5rem;
  }
  .p-services-others__desc {
    margin-top: 2rem;
    font-size: 0.9375rem;
  }
  .p-services-others__list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .p-services-others__item::after {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 2.5rem;
  }
  .p-services-others__item-en {
    font-size: 0.8125rem;
  }
  .p-services-others__item-name {
    font-size: 1.5rem;
    line-height: 1;
  }
}
.p-service-detail {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-inline: 1.25rem;
}

.p-service-detail__inner {
  display: flex;
  flex-flow: column;
  gap: 4.5rem;
  position: relative;
  width: min(100%, 73.75rem);
  padding-block: 3.125rem 7.5rem;
}

.p-service-detail__diagram {
  position: absolute;
  top: 0;
  right: 0.25rem;
  z-index: -1;
}

.p-service-detail__header {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  min-height: 34.0625rem;
  padding-top: 6rem;
}

.p-service-detail__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3.5rem;
}
.p-service-detail__title .m-em {
  font-size: 3.5rem;
}

.p-service-detail__desc {
  width: min(31.25rem, 100%);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-service-detail__desc * {
  font-size: inherit;
}

.p-service-detail__contents {
  display: flex;
  flex-flow: column;
  width: 100%;
}

.p-service-detail_sub-title {
  margin-top: 0.875rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-service-detail__cases-list {
  display: flex;
  flex-flow: column;
  gap: 2.5rem;
  width: 100%;
  margin-top: 2.8125rem;
}

.p-service-detail__case-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 33.75rem;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title image" "desc image";
  gap: 1.5rem 2.5rem;
  width: 100%;
}

.p-service-detail__case-title {
  grid-area: title;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.p-service-detail__case-title h3 {
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-service-detail__case-number {
  flex-shrink: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  width: 6.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--gradient-4);
  color: transparent;
  font-weight: 700;
}
.p-service-detail__case-number::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 50%;
  background: var(--color-white);
}

.p-service-detail__case-number-label {
  position: relative;
  z-index: 1;
  background: var(--gradient-4);
  background-clip: text;
  font-size: 1rem;
  line-height: 1.4;
}

.p-service-detail__case-number-value {
  position: relative;
  z-index: 1;
  background: var(--gradient-4);
  background-clip: text;
  font-size: 2.5rem;
  line-height: 1;
}

.p-service-detail__case-desc {
  grid-area: desc;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-service-detail__case-desc * {
  font-size: inherit;
}

.p-service-detail__case-image {
  grid-area: image;
  width: 100%;
  aspect-ratio: 54/36;
  background: var(--color-gray-df);
}

.p-service-detail__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-service-detail__inner {
    gap: 4.5rem;
    width: min(100%, 20.9375rem);
    padding-block: 3.125rem 5rem;
  }
  .p-service-detail__diagram {
    top: 5.625rem;
    right: 0;
  }
  .p-service-detail__header {
    justify-content: space-between;
    min-height: auto;
    padding-top: 0;
  }
  .p-service-detail__title {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
  .p-service-detail__title .m-em {
    font-size: 1.75rem;
  }
  .p-service-detail__desc {
    margin-top: 22.5rem;
    font-size: 0.9375rem;
  }
  .p-service-detail_sub-title {
    margin-top: 0.375rem;
    font-size: 1.5rem;
    text-align: left;
  }
  .p-service-detail__cases-list {
    gap: 3.5rem;
    margin-top: 2.25rem;
  }
  .p-service-detail__case-item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas: "title" "image" "desc";
    gap: 1.25rem;
  }
  .p-service-detail__case-title {
    gap: 1rem;
  }
  .p-service-detail__case-title h3 {
    font-size: 1.125rem;
  }
  .p-service-detail__case-number {
    width: 3.25rem;
  }
  .p-service-detail__case-number-label {
    font-size: 0.625rem;
  }
  .p-service-detail__case-number-value {
    font-size: 1.25rem;
  }
  .p-service-detail__links {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    width: 100%;
  }
}
.p-case {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 6.25rem;
  padding-block: 2.875rem 7.5rem;
  padding-inline: 1.25rem;
}

.p-case__article {
  display: flex;
  flex-flow: column;
  width: min(100%, 50rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-gray-df);
}

.p-case__article-header {
  display: flex;
  flex-flow: column;
  gap: 0.75rem;
  width: 100%;
  padding-bottom: 1.625rem;
  border-bottom: 1px solid var(--color-gray-df);
}

.p-case__data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-case__date {
  color: var(--color-gray-77);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-case__category-list {
  display: flex;
  flex-flow: wrap;
  gap: 0.75rem;
}
.p-case__category-list li {
  flex-shrink: 0;
}

.p-case__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-case__images {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  width: 100%;
}

.p-case__image-list {
  position: relative;
  width: 100%;
  aspect-ratio: 800/533;
}
.p-case__image-list:not(:has(img)) {
  display: none;
}

.p-case__thumbnail {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out, z-index 0.3s ease-in-out;
}
.p-case__thumbnail.is-active {
  opacity: 1;
  z-index: 0;
}

.p-case__image-controller {
  display: grid;
  gap: 0.6875rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.p-case__thumbnail-button {
  width: 100%;
  height: 8rem;
  transition: opacity 0.3s ease-in-out;
  overflow: hidden;
}
.p-case__thumbnail-button img {
  transition: transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-case__thumbnail-button:is(:hover, :focus-visible) img {
    transform: scale(1.1);
  }
  .p-case__image-controller:has(> *:is(:hover, :focus-visible)) .p-case__thumbnail-button:not(:hover, :focus-visible) {
    opacity: 0.3;
  }
}

.p-case__content {
  margin-top: 2rem;
}

.p-case__footer {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: min(50rem, 100%);
}

.p-case__footer-title {
  align-self: flex-start;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-case__related-post {
  width: 100%;
}

.p-case__related-list {
  display: flex;
  flex-flow: column;
  width: 100%;
}

.p-case__post-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-gray-df);
  transition: background 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-case__post-card:hover {
    background: var(--color-gray-f2);
  }
  .p-case__post-card:hover .p-case__post-card-title {
    color: var(--color-accent);
  }
}

.p-case__post-card-image {
  flex-shrink: 0;
  width: 9.375rem;
  aspect-ratio: 15/10;
  overflow: hidden;
}

.p-case__post-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-case__post-card-date {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gray-77);
}

.p-case__post-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease-in-out;
}

.p-case__link {
  margin-top: 5rem;
  width: 16.6875rem;
}

@media screen and (max-width: 767px) {
  .p-case {
    gap: 4rem;
    padding-block: 2.5rem 5rem;
  }
  .p-case__article {
    width: min(100%, 20.9375rem);
  }
  .p-case__article-header {
    padding-bottom: 1.25rem;
  }
  .p-case__data {
    flex-flow: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .p-case__date {
    font-size: 0.875rem;
  }
  .p-case__category-list {
    display: flex;
    flex-flow: wrap;
    gap: 0.75rem;
  }
  .p-case__category-list li {
    flex-shrink: 0;
  }
  .p-case__title {
    font-size: 1.5rem;
  }
  .p-case__images {
    gap: 0.5rem;
    width: 100%;
  }
  .p-case__image-controller {
    gap: 0.5rem;
  }
  .p-case__thumbnail-button {
    height: 3.125rem;
  }
  .p-case__footer {
    width: min(100%, 20.9375rem);
  }
  .p-case__post-card {
    gap: 1.25rem;
    padding-block: 1rem;
    align-items: flex-start;
  }
  .p-case__post-card-image {
    width: 6.25rem;
  }
  .p-case__post-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }
  .p-case__post-card-date {
    font-size: 0.75rem;
  }
  .p-case__post-card-title {
    font-size: 0.9375rem;
  }
  .p-case__link {
    margin-top: 2.5rem;
  }
}
.p-products {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-block: 5rem 10rem;
}

.p-products__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  width: 100%;
  padding-block: 5rem;
  padding-inline: 2.5rem;
}

.p-products__data-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(100%, 67.5rem);
}

.p-products__data-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
}
.p-products__data-title::before {
  content: "";
  width: 2rem;
  height: 0.125rem;
  background: var(--color-accent);
}

.p-products__data-table {
  width: 100%;
}
.p-products__data-table table {
  width: 100%;
  border-collapse: collapse;
}
.p-products__data-table :is(td, th) {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-gray-c4);
  font-size: 1rem;
  line-height: 1.4;
}
.p-products__data-table :is(td, th):first-child {
  background: var(--color-gray-f2);
  font-weight: 700;
}
.p-products__data-table.m-specifications :is(td, th):first-child {
  min-width: 12.5rem;
}
.p-products__data-table.m-specifications :is(td, th):not(:first-child) {
  width: 100%;
  text-align: center;
}
.p-products__data-table.m-standards tr:first-child :is(td, th) {
  background: var(--color-gray-df);
  font-weight: 700;
}
.p-products__data-table.m-standards :is(td, th):not(:first-child) {
  min-width: 20%;
  text-align: center;
}

.p-products__data-footer {
  margin-top: -1rem;
}

.p-products__caution-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-products__caution-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.72;
}
.p-products__caution-text * {
  font-size: inherit;
}

.p-products__data-materials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.p-products__data-cad {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30rem;
}
.p-products__data-cad img {
  object-fit: contain;
}

.p-products__footer {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  width: min(100%, 67.5rem);
}

.p-products__footer-title {
  align-self: flex-start;
}

.p-products__related-post {
  width: 100%;
}

.p-products__related-list {
  display: flex;
  gap: 1.3125rem;
  margin-top: 2rem;
}

.p-products__related-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 21.625rem;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-products__related-card:is(:hover, :focus-visible) {
    color: var(--color-accent);
  }
  .p-products__related-card:is(:hover, :focus-visible) .p-products__related-card-image img {
    transform: scale(1.1);
  }
}

.p-products__related-card-image {
  width: 100%;
  aspect-ratio: 346/231;
  overflow: hidden;
}
.p-products__related-card-image img {
  transition: transform 0.3s ease-in-out;
}

.p-products__related-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-products__link {
  align-self: center;
  width: 16.6875rem;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-products {
    padding-block: 2.5rem 5rem;
    overflow: clip;
  }
  .p-products__data {
    align-items: center;
    width: min(100%, 23.4375rem);
    padding-block: 3.125rem;
    padding-inline: 1.25rem;
  }
  .p-products__data-box {
    gap: 1.5rem;
  }
  .p-products__data-title {
    gap: 0.75rem;
    font-size: 1.5rem;
  }
  .p-products__data-title::before {
    width: 1rem;
  }
  .p-products__data-table :is(td, th) {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .p-products__data-table.m-specifications :is(td, th):first-child {
    min-width: 10rem;
  }
  .p-products__data-table.m-specifications :is(td, th):not(:first-child) {
    text-align: left;
  }
  .p-products__data-table.m-standards {
    --right-margin: calc(50vw - 50%);
    margin-right: calc(var(--right-margin) * -1);
    width: calc(100% + var(--right-margin));
    overflow-x: auto;
  }
  .p-products__data-table.m-standards table {
    width: max-content;
    margin-right: calc(var(--right-margin) * 2);
  }
  .p-products__data-table.m-standards :is(td, th):first-child {
    position: sticky;
    left: 0;
    min-width: 8.75rem;
  }
  .p-products__data-table.m-standards :is(td, th):not(:first-child) {
    text-align: left;
    width: auto;
    max-width: 11.25rem;
  }
  .p-products__caution-title {
    font-size: 0.9375rem;
  }
  .p-products__data-materials {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .p-products__data-cad {
    width: 100%;
    max-height: 13.75rem;
  }
  .p-products__footer {
    width: min(100%, 20.9375rem);
  }
  .p-products__related-list {
    flex-flow: column;
    gap: 2.5rem;
    margin-top: 1.5rem;
  }
  .p-products__related-card {
    gap: 0.5rem;
    width: min(20.9375rem, 100%);
  }
  .p-products__related-card-title {
    font-size: 1rem;
  }
}
.p-products-top {
  width: min(100%, 78.75rem);
  padding-inline: 2.5rem;
  padding-bottom: 7.125rem;
}

.p-products-top__inner {
  display: flex;
  justify-content: space-between;
  width: min(100%, 70.625rem);
}

.p-products-top__image-wrapper {
  flex-shrink: 0;
  display: flex;
  flex-flow: column;
  gap: 0.625rem;
  width: min(100%, 33.75rem);
}

.p-products-top__image-list {
  position: relative;
  width: 100%;
  aspect-ratio: 540/405;
  overflow: hidden;
  background: url(../../images/common_icon_no-image.svg) no-repeat center/2.8125rem 2.6875rem, var(--color-gray-cc);
}

.p-products-top__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.p-products-top__image.is-active {
  opacity: 1;
}

.p-products-top__image-controller {
  width: 100%;
  display: flex;
  gap: 0.625rem;
}

.p-products-top__thumbnail-button {
  flex-shrink: 0;
  width: min(100%, 10.875rem);
  aspect-ratio: 174/131;
  transition: opacity 0.3s ease-in-out;
  overflow: hidden;
}
.p-products-top__thumbnail-button img {
  transition: transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-products-top__thumbnail-button:is(:hover, :focus-visible) img {
    transform: scale(1.1);
  }
  .p-products-top__image-controller:has(> *:is(:hover, :focus-visible)) .p-products-top__thumbnail-button:not(:hover, :focus-visible) {
    opacity: 0.3;
  }
}

.p-products-top__contents {
  display: flex;
  flex-flow: column;
  width: min(100%, 30.25rem);
  margin-top: 0.3125rem;
}

.p-products-top__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-products-top__text {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-products-top__text * {
  font-size: inherit;
}

.p-products-top__buttons {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  width: 100%;
  margin-top: 2rem;
}

.p-products-top__button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 100%;
  padding-block: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  background: var(--gradient-4);
  color: var(--color-white);
}
.p-products-top__button > * {
  font-size: inherit;
}
.p-products-top__button::after {
  content: "";
  position: absolute;
  inset: 2px;
  opacity: 0;
  z-index: -1;
  outline: 2px solid transparent;
  transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out, outline-color 0.3s ease-in-out;
}
.p-products-top__button::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: center/cover no-repeat;
  transition: filter 0.3s ease-in-out;
}
.p-products-top__button.m-download::before {
  background-image: url(../../images/common_icon_download_white.svg);
}
.p-products-top__button.m-contact::after {
  opacity: 1;
  background: var(--color-white);
}
.p-products-top__button.m-contact::before {
  background-image: url(../../images/common_icon_mail_grad.svg);
}
.p-products-top__button.m-contact span {
  background: var(--gradient-4);
  background-clip: text;
  color: transparent;
}
@media (any-hover: hover) {
  .p-products-top__button:is(:hover, :focus-visible)::after {
    outline-color: var(--color-text);
    background: var(--color-text);
    opacity: 1;
  }
  .p-products-top__button:is(:hover, :focus-visible)::before {
    filter: grayscale(1) brightness(100);
  }
  .p-products-top__button.m-contact:is(:hover, :focus-visible) span {
    background: none;
    color: inherit;
  }
}

@media screen and (max-width: 767px) {
  .p-products-top {
    width: min(100%, 23.4375rem);
    padding-inline: 1.25rem;
    padding-bottom: 3.75rem;
  }
  .p-products-top__inner {
    flex-flow: column;
    gap: 1.5rem;
  }
  .p-products-top__image-wrapper {
    gap: 0.5rem;
  }
  .p-products-top__image-controller {
    gap: 0.5rem;
  }
  .p-products-top__thumbnail-button {
    width: min(100%, 6.625rem);
  }
  .p-products-top__title {
    font-size: 1.125rem;
  }
  .p-products-top__title br {
    display: none;
  }
  .p-products-top__text {
    gap: 0.9375rem;
  }
  .p-products-top__button {
    font-size: 0.9375rem;
  }
}
.p-products-features {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.p-products-features__inner {
  --right-pad: max(min(8.125rem, 50vw - 45rem), 3.75rem);
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  width: min(100%, 90rem);
  padding-block: 4.5rem 5rem;
  padding-right: var(--right-pad);
  color: var(--color-white);
}
.p-products-features__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc((50vw - 50%) * -1);
  right: var(--right-pad);
  border-radius: 0 1.875rem 1.875rem 0;
  background: var(--color-text);
}

.p-products-features__title {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}
.p-products-features__title::after {
  content: "";
  bottom: 0;
  width: 3rem;
  height: 0.125rem;
  background: var(--color-accent);
}

.p-products-features__list {
  display: flex;
  gap: 2rem;
  width: min(100%, 76.25rem);
  margin-top: 3.125rem;
  padding-inline: 3.75rem;
}

.p-products-features__item {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1rem;
  width: min(100%, 10rem);
}

.p-products-features__item-icon {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-gray-77);
}
.m-selected .p-products-features__item-icon {
  background: var(--gradient-4);
}

.p-products-features__item-label {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.m-selected .p-products-features__item-label {
  color: var(--color-accent-2);
}

.p-products-features__others {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1rem;
  width: min(80%, 62.5rem);
  margin-top: 3.75rem;
  padding-block: 2rem 1.75rem;
  padding-inline: 1.5rem;
  border-radius: 0.625rem;
  background: var(--color-white);
  color: var(--color-text);
}

.p-products-features__others-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-products-features__others-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
  .p-products-features__inner {
    --right-pad: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    width: min(100%, 90rem);
    padding-block: 2.5rem 2.5rem;
    padding-right: var(--right-pad);
    color: var(--color-white);
  }
  .p-products-features__inner::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: calc((50vw - 50%) * -1);
    right: var(--right-pad);
    background: var(--color-text);
  }
  .p-products-features__title {
    gap: 0.75rem;
    font-size: 1.5rem;
  }
  .p-products-features__title::after {
    width: 2.25rem;
  }
  .p-products-features__list {
    gap: 0.75rem;
    width: min(100%, 20.9375rem);
    margin-top: 2.5rem;
    padding-inline: 0;
  }
  .p-products-features__item {
    gap: 0.5rem;
  }
  .p-products-features__item-label {
    font-size: 0.875rem;
    text-align: center;
  }
  .p-products-features__others {
    gap: 1rem;
    width: min(100%, 20.9375rem);
    margin-top: 2.5rem;
    padding-block: 2rem 1.75rem;
    padding-inline: 1rem;
    border-radius: 0.625rem;
    background: var(--color-white);
    color: var(--color-text);
  }
  .p-products-features__others-title {
    font-size: 1.125rem;
  }
  .p-products-features__others-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.p-products-material {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}

.p-products-material__image {
  width: 100%;
  height: 9.75rem;
}

.p-products-material__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-products-popup {
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.p-products-popup.is-show {
  visibility: visible;
  opacity: 1;
}
body:has(.p-products-popup.is-show) {
  overflow: hidden;
  padding-right: var(--width, 0);
}
body:has(.p-products-popup.is-show) .l-header {
  padding-right: var(--width, 0);
}

.p-products-popup__box {
  position: relative;
  width: min(100% - 5rem, 33.75rem);
  background: var(--color-white);
  padding: 2.5rem;
  box-shadow: 0.25rem 0.25rem 0.625rem var(--color-shadow);
}

.p-products-popup__close {
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  position: absolute;
  z-index: 20;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.25rem;
  background: var(--gradient-4);
  cursor: pointer;
}
.p-products-popup__close span {
  grid-area: stack;
  width: 1.25rem;
  height: 0.125rem;
  border-radius: 100vmax;
  background: var(--color-white);
}
.p-products-popup__close span:first-child {
  transform: rotate(45deg);
}
.p-products-popup__close span:last-child {
  transform: rotate(-45deg);
}
.p-products-popup__close::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: var(--color-text);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-products-popup__close:hover::after {
    opacity: 1;
  }
}

.p-products-popup__inner {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
}

.p-products-popup__text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-products-popup__title {
  background: var(--gradient-4);
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 700;
  color: transparent;
  text-align: center;
}

.p-products-popup__download {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 15rem;
  padding-block: 0.75rem;
  border-radius: 100vmax;
  background: var(--gradient-2);
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.p-products-popup__download * {
  font-size: 1rem;
  line-height: 1.5;
}
.p-products-popup__download:disabled {
  background: var(--color-gray);
}
@media (any-hover: hover) {
  .p-products-popup__download:not(:disabled):hover {
    background: var(--color-text);
    color: var(--color-white);
  }
  .p-products-popup__download:not(:disabled):hover::before {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-products-popup__box {
    padding: 2.5rem 1.25rem;
    width: min(100% - 1.25rem, 20.9375rem);
    max-height: calc(100% - 2.5rem);
    overflow: hidden;
  }
  .p-products-popup__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 1.75rem;
  }
  .p-products-popup__close span {
    width: 1.125rem;
  }
  .p-products-popup__inner {
    height: 100%;
  }
  .p-products-popup__form {
    flex-grow: 1;
  }
}
@media (max-height: 660px) {
  .p-products-popup__inner {
    overflow: auto;
  }
}
.p-our-works {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 6.25rem;
  padding-top: 2.875rem;
}

.p-our-works__article {
  display: flex;
  flex-flow: column;
  width: min(100%, 50rem);
}

.p-our-works__article-header {
  display: flex;
  flex-flow: column;
  gap: 0.75rem;
  width: 100%;
  padding-bottom: 1.625rem;
  border-bottom: 1px solid var(--color-gray-df);
}

.p-our-works__category-list {
  display: flex;
  gap: 0.75rem;
}

.p-our-works__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-our-works__overview {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
  padding-bottom: 0.875rem;
}

.p-our-works__thumbnail {
  width: 100%;
  height: 33.3125rem;
}
.p-our-works__thumbnail:not(:has(img)) {
  display: none;
}

.p-our-works__overview-list {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
  padding-inline: 1.25rem;
}

.p-our-works__overview-item {
  display: grid;
  grid-template-columns: 11.25rem minmax(0, 1fr);
  gap: 2rem;
}
.p-our-works__overview-item dt {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-our-works__overview-item dd {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}
.p-our-works__overview-item dd::before {
  content: "";
  flex-shrink: 0;
  width: 0.125rem;
  height: calc(100% - 0.125rem);
  background: var(--gradient-4);
}

.p-our-works__content {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
  margin-top: 3.125rem;
}

.p-our-works__subtitle {
  display: flex;
  gap: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-accent);
}
.p-our-works__subtitle::before {
  content: "";
  flex-shrink: 0;
  width: 0.1875rem;
  height: 2.0625rem;
  background: var(--gradient-4);
}

.p-our-works__desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-our-works__desc * {
  font-size: inherit;
}

.p-our-works__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.p-our-works__image {
  max-width: 23.75rem;
}

.p-our-works__image-img {
  width: 100%;
  height: 15.8125rem;
}

.p-our-works__image-caption {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-our-works__footer {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  background: var(--color-gray-f2);
  padding-block: 5rem 10rem;
  padding-inline: 2.25rem;
}

.p-our-works__footer-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.p-our-works__related-post {
  margin-top: 3.125rem;
  width: min(100%, 73.75rem);
}

.p-our-works__related-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.p-our-works__link {
  width: 16.6875rem;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-our-works {
    gap: 5rem;
  }
  .p-our-works__article {
    display: flex;
    flex-flow: column;
    width: min(100%, 20.9375rem);
  }
  .p-our-works__article-header {
    padding-bottom: 1.25rem;
  }
  .p-our-works__title {
    font-size: 1.5rem;
  }
  .p-our-works__overview {
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-bottom: 0.875rem;
  }
  .p-our-works__thumbnail {
    height: 14.5625rem;
  }
  .p-our-works__overview-list {
    gap: 1.5rem;
    padding-inline: 0;
  }
  .p-our-works__overview-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
  }
  .p-our-works__overview-item dt {
    font-size: 1rem;
  }
  .p-our-works__overview-item dd {
    position: relative;
    font-size: 0.9375rem;
  }
  .p-our-works__overview-item dd::before {
    position: absolute;
    top: -0.3125rem;
    left: 0;
    right: 50%;
    width: auto;
    height: 0.125rem;
    background: var(--gradient-4);
  }
  .p-our-works__content {
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .p-our-works__subtitle {
    gap: 1rem;
    font-size: 1.25rem;
  }
  .p-our-works__subtitle::before {
    height: 1.875rem;
  }
  .p-our-works__desc {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
  }
  .p-our-works__desc * {
    font-size: inherit;
  }
  .p-our-works__images {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
  .p-our-works__image-img {
    width: 100%;
    height: 13.9375rem;
  }
  .p-our-works__image-caption {
    font-size: 0.875rem;
  }
  .p-our-works__footer {
    padding-block: 3.75rem 5rem;
    padding-inline: 1.25rem;
  }
  .p-our-works__footer-title {
    font-size: 1.5rem;
  }
  .p-our-works__related-post {
    margin-top: 1.875rem;
    width: min(100%, 20.9375rem);
  }
  .p-our-works__related-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}
.p-recruit-message {
  align-self: center;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  width: min(100%, 90rem);
  margin-top: 4.5rem;
  padding-left: 2.25rem;
}

.p-recruit-message__inner {
  display: grid;
  grid-template-columns: 32.1875rem minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  grid-template-areas: ". image" ". image" ". image";
  gap: 2.5rem 5rem;
  width: min(100%, 82.25rem);
}

.p-recruit-message__image {
  grid-area: image;
  align-self: start;
  width: min(45rem, 100%);
  min-height: 40rem;
  aspect-ratio: 720/748;
  margin-top: 3.75rem;
}

.p-recruit-message__lead {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-recruit-message__lead * {
  font-size: inherit;
}

.p-recruit-message__info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.p-recruit-message__bubble-title {
  --bg: var(--color-text);
  display: flex;
  align-items: center;
  position: relative;
  left: -0.9375rem;
  z-index: 0;
  height: 2.8125rem;
  padding-inline: 1.1875rem;
  border-radius: 100vmax;
  background: var(--bg);
  text-align: center;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
}
.p-recruit-message__bubble-title .m-large {
  font-size: 1.375rem;
  padding-left: 0.25rem;
}
.p-recruit-message__bubble-title:has(.m-large) {
  align-items: baseline;
  padding-top: 0.375rem;
}
.p-recruit-message__bubble-title.m-primary {
  --bg: var(--gradient-4);
}
.p-recruit-message__bubble-title::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -0.625rem;
  height: 0.75rem;
  z-index: -1;
  background: var(--bg);
  clip-path: polygon(3.5rem 0, 4.375rem 0, 4rem 100%);
}

.p-recruit-message__info-box {
  width: 100%;
  margin-top: -2.625rem;
  padding: 2.5rem 1.25rem 1.875rem;
  border-radius: 0.625rem;
  background: var(--color-gray-f2);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-recruit-message__info-box * {
  font-size: inherit;
}
.p-recruit-message__info-box ul {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}
.p-recruit-message__info-box ul li {
  display: flex;
}
.p-recruit-message__info-box ul li:before {
  content: "・";
}

.p-recruit-message__main-message {
  align-self: stretch;
  margin-top: 3.125rem;
  padding-right: 2.25rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.p-recruit-message__main-message * {
  font-size: inherit;
}

@media screen and (max-width: 767px) {
  .p-recruit-message {
    align-items: center;
    width: min(100%, 90rem);
    margin-top: 3.125rem;
    padding-left: 0;
  }
  .p-recruit-message__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "." "image" "." ".";
    gap: 1.875rem;
    width: min(100%, 20.9375rem);
  }
  .p-recruit-message__image {
    grid-area: image;
    min-height: 22.5rem;
    margin-top: 0;
  }
  .p-recruit-message__lead {
    gap: 0.9375rem;
    font-size: 0.9375rem;
  }
  .p-recruit-message__bubble-title {
    height: 2.5rem;
    padding-inline: 0.9375rem;
    font-size: 1rem;
  }
  .p-recruit-message__bubble-title .m-large {
    font-size: 1.125rem;
    padding-left: 0.125rem;
  }
  .p-recruit-message__info-box {
    padding: 2.25rem 1rem 1.25rem;
    font-size: 0.9375rem;
  }
  .p-recruit-message__info-box * {
    font-size: inherit;
  }
  .p-recruit-message__main-message {
    margin-top: 2.5rem;
    padding-right: 0;
    font-size: 1.125rem;
  }
}
.p-recruit-gallery {
  align-self: center;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  width: 100%;
  overflow: hidden;
}

.p-recruit-gallery__inner {
  width: min(100%, 75rem);
}

@media screen and (max-width: 767px) {
  .p-recruit-gallery {
    margin-top: 3.125rem;
  }
}
.p-recruit-data {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 6.25rem;
  padding-block: 3.4375rem 7.5rem;
  padding-inline: 2.25rem;
  background: var(--color-text);
  color: var(--color-white);
}

.p-recruit-data__inner {
  display: flex;
  flex-flow: column;
  gap: 4.5rem;
  width: min(100%, 74.5rem);
}

.p-recruit-data__list {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, 16.75rem);
  gap: 1.25rem;
  width: min(100%, 67.5rem);
}

.p-recruit-data__item {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
}
.p-recruit-data__item.m-sales-graph {
  grid-column: span 2;
}

.p-recruit-data__item-title {
  display: inline-block;
  justify-self: start;
  padding-block: 0.5625rem 0.6875rem;
  padding-inline: 1.25rem 2.5rem;
  background: var(--gradient-4);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  clip-path: polygon(-1px -1px, 100% -1px, calc(100% - 1.25rem) 100%, -1px 100%);
}

.p-recruit-data__item-image {
  place-self: center;
  position: absolute;
  z-index: -1;
}
.m-founding .p-recruit-data__item-image {
  top: 5.5625rem;
  width: 14.3125rem;
  aspect-ratio: 229/112;
}
.m-sales .p-recruit-data__item-image {
  top: 3.875rem;
  width: 5.25rem;
  aspect-ratio: 1/1;
}
.m-service-years .p-recruit-data__item-image {
  top: 3.875rem;
  width: 6.375rem;
  aspect-ratio: 1/1;
}
.m-gender .p-recruit-data__item-image {
  top: 3.5625rem;
  width: 6.5625rem;
  aspect-ratio: 1/1;
}
.m-sales-graph .p-recruit-data__item-image {
  top: 2.8125rem;
  left: 9.5rem;
  width: 21.8125rem;
  aspect-ratio: 349/168;
}
.m-paid-holiday .p-recruit-data__item-image {
  top: 3.25rem;
  left: 3.375rem;
  width: 11.9375rem;
  aspect-ratio: 191/191;
}
.m-annual-holidays .p-recruit-data__item-image {
  top: 2.125rem;
  width: 7.75rem;
  aspect-ratio: 1/1;
}
.m-overtime .p-recruit-data__item-image {
  top: 3.1875rem;
  width: 8.25rem;
  aspect-ratio: 1/1;
}

.p-recruit-data__item-text {
  justify-self: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 0.25rem;
  position: absolute;
  bottom: 1.5625rem;
  margin-top: auto;
  color: var(--color-text);
}
.p-recruit-data__item-text .m-main {
  font-weight: 700;
}
.p-recruit-data__item-text .m-number {
  background: var(--gradient-4);
  background-clip: text;
  color: transparent;
  font-size: 4.5rem;
  line-height: 1;
}
.p-recruit-data__item-text .m-number.m-border {
  filter: url(#stroke-white);
}
.p-recruit-data__item-text .m-billion {
  font-size: 3.75rem;
}
.p-recruit-data__item-text .m-lower {
  font-size: 2.5rem;
}
.p-recruit-data__item-text .m-small {
  font-size: 3.375rem;
}
.p-recruit-data__item-text .m-unit {
  font-size: 1.75rem;
}
.p-recruit-data__item-text .m-ratio {
  font-size: 4rem;
}
.p-recruit-data__item-text .m-sub {
  color: var(--color-gray-77);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.p-recruit-data__item-text .m-sub * {
  font-size: inherit;
}
.m-founding .p-recruit-data__item-text {
  left: 3.25rem;
  bottom: 5.375rem;
}
.m-paid-holiday .p-recruit-data__item-text {
  left: 11.125rem;
  bottom: 4.8125rem;
}

.p-recruit-data__item-graph-labels {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.4375rem;
  position: absolute;
  bottom: 2rem;
  left: 9.5rem;
  width: 21.8125rem;
  margin-top: auto;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.p-recruit-data__item-graph-labels * {
  font-size: inherit;
}

.p-recruit-data__item-graph-values {
  position: absolute;
  top: 7.75rem;
  left: 9.5rem;
  width: 21.8125rem;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.p-recruit-data__item-graph-values .m-sub {
  position: absolute;
  font-size: 1rem;
}
.p-recruit-data__item-graph-values .m-sub.m-1 {
  left: 1.25rem;
  top: 2rem;
}
.p-recruit-data__item-graph-values .m-sub.m-2 {
  left: 8.5rem;
}
.p-recruit-data__item-graph-values .m-sub .m-unit {
  font-size: 0.75rem;
}
.p-recruit-data__item-graph-values .m-main {
  position: absolute;
  top: 1.0625rem;
  left: 17.9375rem;
  line-height: 1;
  filter: url(#stroke-white);
}
.p-recruit-data__item-graph-values .m-main .m-number {
  font-size: 2.5625rem;
  background: var(--gradient-4);
  background-clip: text;
  color: transparent;
}
.p-recruit-data__item-graph-values .m-main .m-billion {
  font-size: 2.125rem;
}
.p-recruit-data__item-graph-values .m-main .m-lower {
  font-size: 1.5rem;
}
.p-recruit-data__item-graph-values .m-main .m-unit {
  padding-left: 0.125rem;
  color: var(--color-text);
  font-size: 1rem;
}

.p-recruit-data__link {
  align-self: center;
  width: 21.5rem;
  color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .p-recruit-data {
    margin-top: 3.125rem;
    padding-block: 3.125rem 3.75rem;
    padding-inline: 1.25rem;
    overflow: hidden;
  }
  .p-recruit-data__inner {
    gap: 2.5rem;
    width: min(100%, 20.9375rem);
  }
  .p-recruit-data__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 9.375rem);
  }
  .p-recruit-data__item.m-sales-graph {
    grid-column: span 1;
  }
  .p-recruit-data__item-title {
    padding-block: 0.375rem 0.4375rem;
    padding-inline: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }
  .p-recruit-data__item-image {
    place-self: center;
    position: absolute;
    z-index: -1;
  }
  .m-founding .p-recruit-data__item-image {
    top: 4.125rem;
    width: 6.25rem;
  }
  .m-sales .p-recruit-data__item-image {
    top: 3.125rem;
    width: 2.375rem;
    aspect-ratio: 1/1;
  }
  .m-service-years .p-recruit-data__item-image {
    top: 3.125rem;
    width: 2.75rem;
    aspect-ratio: 1/1;
  }
  .m-gender .p-recruit-data__item-image {
    top: 3.125rem;
    width: 2.875rem;
    aspect-ratio: 1/1;
  }
  .m-sales-graph .p-recruit-data__item-image {
    top: 3.75rem;
    left: 0.625rem;
    width: 7.5rem;
  }
  .m-paid-holiday .p-recruit-data__item-image {
    top: 2.5rem;
    left: 1.125rem;
    width: 5.875rem;
    aspect-ratio: 191/191;
  }
  .m-annual-holidays .p-recruit-data__item-image {
    top: 1.625rem;
    width: 4rem;
    aspect-ratio: 1/1;
  }
  .m-overtime .p-recruit-data__item-image {
    top: 2.5625rem;
    width: 4.375rem;
    aspect-ratio: 1/1;
  }
  .p-recruit-data__item-text {
    gap: 0.25rem;
    bottom: 0.75rem;
  }
  .p-recruit-data__item-text .m-number {
    font-size: 1.875rem;
  }
  .p-recruit-data__item-text .m-billion {
    font-size: 1.5rem;
  }
  .p-recruit-data__item-text .m-lower {
    font-size: 1.25rem;
  }
  .p-recruit-data__item-text .m-small {
    font-size: 1.375rem;
  }
  .p-recruit-data__item-text .m-unit {
    font-size: 1rem;
  }
  .p-recruit-data__item-text .m-ratio {
    font-size: 1.75rem;
  }
  .p-recruit-data__item-text .m-sub {
    font-size: 0.625rem;
  }
  .m-founding .p-recruit-data__item-text {
    left: 1rem;
    bottom: 3rem;
  }
  .m-paid-holiday .p-recruit-data__item-text {
    left: 5rem;
    bottom: 2.625rem;
  }
  .p-recruit-data__item-graph-values {
    top: 5.125rem;
    left: 0.625rem;
    width: 7.5rem;
  }
  .p-recruit-data__item-graph-values .m-sub {
    position: absolute;
    font-size: 0.5rem;
  }
  .p-recruit-data__item-graph-values .m-sub.m-1 {
    left: 0.4375rem;
    top: 0.5rem;
  }
  .p-recruit-data__item-graph-values .m-sub.m-2 {
    left: 2.8125rem;
  }
  .p-recruit-data__item-graph-values .m-sub .m-unit {
    font-size: 0.375rem;
  }
  .p-recruit-data__item-graph-values .m-main {
    top: -1.625rem;
    left: 5.5rem;
    filter: none;
  }
  .p-recruit-data__item-graph-values .m-main .m-number {
    font-size: 0.9375rem;
    line-height: 0.8;
  }
  .p-recruit-data__item-graph-values .m-main .m-billion {
    font-size: 0.8125rem;
    line-height: 0.8;
  }
  .p-recruit-data__item-graph-values .m-main .m-lower {
    font-size: 0.75rem;
  }
  .p-recruit-data__item-graph-values .m-main .m-unit {
    font-size: 0.5rem;
  }
  .p-recruit-data__item-graph-labels {
    gap: 1.5rem;
    bottom: 1rem;
    left: 0.625rem;
    width: 7.5rem;
    font-size: 0.625rem;
  }
  .p-recruit-data__item-graph-labels * {
    font-size: inherit;
  }
}
.p-job-openings {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-block: 4.5rem 7.5rem;
  padding-inline: 2.25rem;
}

.p-job-openings__inner {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
  width: min(100%, 67.5rem);
}

.p-job-openings__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.p-job-openings__contents {
  display: flex;
  flex-flow: column;
  gap: 3rem;
  width: 100%;
  padding-top: 4rem;
}

.p-job-openings__buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.75rem, 1fr));
  gap: 2rem;
}

.p-job-openings__button {
  padding: 1rem 1.5rem 1.875rem;
  width: 100%;
  background: var(--color-gray-f2);
  color: var(--color-gray-77);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 84%, calc(50% + 15px) 84%, 50% 84%, calc(50% - 15px) 84%, 0 84%);
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-job-openings__button:not(.is-active):hover {
    background: var(--color-accent-light);
    color: var(--color-accent);
  }
}
.p-job-openings__button.is-active {
  background: var(--gradient-4);
  color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 100% 84%, calc(50% + 15px) 84%, 50% 100%, calc(50% - 15px) 84%, 0 84%);
}

.p-job-openings__details {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
}

.p-job-openings__detail {
  grid-area: stack;
  background: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.p-job-openings__detail.is-active {
  opacity: 1;
  visibility: visible;
}

.p-job-openings__detail-list {
  display: flex;
  flex-flow: column;
  width: 100%;
  border: 1px solid var(--color-gray-c4);
}

.p-job-openings__detail-item {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  min-height: 4.5rem;
}
.p-job-openings__detail-item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-c4);
}

.p-job-openings__detail-title {
  display: flex;
  align-items: center;
  padding-inline: 1.5rem;
  border-right: 1px solid var(--color-gray-c4);
  background: var(--color-gray-f2);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-job-openings__detail-description {
  display: flex;
  align-items: center;
  padding-block: 1.25rem;
  padding-inline: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-job-openings__no-data {
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-job-openings {
    padding-block: 3.125rem 5rem;
    padding-inline: 1.25rem;
  }
  .p-job-openings__inner {
    gap: 1.25rem;
    width: min(100%, 20.9375rem);
  }
  .p-job-openings__title {
    font-size: 1.5rem;
  }
  .p-job-openings__contents {
    gap: 1.5rem;
    width: 100%;
    padding-top: 0.75rem;
  }
  .p-job-openings__buttons {
    gap: 0.5rem;
  }
  .p-job-openings__button {
    padding: 0.5rem 0.75rem 1rem;
    font-size: 0.8125rem;
    clip-path: polygon(0 0, 100% 0, 100% 84%, calc(50% + 10px) 84%, 50% 84%, calc(50% - 10px) 84%, 0 84%);
  }
  .p-job-openings__button.is-active {
    clip-path: polygon(0 0, 100% 0, 100% 84%, calc(50% + 10px) 84%, 50% 100%, calc(50% - 10px) 84%, 0 84%);
  }
  .p-job-openings__detail-item {
    grid-template-columns: 5.625rem minmax(0, 1fr);
    min-height: 4rem;
  }
  .p-job-openings__detail-title {
    padding-inline: 0.75rem;
    font-size: 0.8125rem;
  }
  .p-job-openings__detail-description {
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
    font-size: 0.8125rem;
  }
}
.p-flow {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 5rem;
  padding-block: 1.5rem 12.5rem;
}

.p-flow__header {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 26.5625rem;
  padding-block: 3rem;
}

.p-flow__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.p-flow__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-flow__subtitle {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.p-flow__main {
  display: flex;
  flex-flow: column;
  width: min(100%, 77.5rem);
  padding-inline: 1.5rem;
}

.p-flow__list {
  align-self: center;
  display: flex;
  flex-flow: column;
  gap: 3.75rem;
  position: relative;
  z-index: 0;
  width: min(100%, 67.5rem);
  padding-inline: 1.5rem;
  margin-top: 2rem;
  counter-reset: counter;
}
.p-flow__list::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 5.1875rem;
  width: 0.125rem;
  height: 100%;
  background: repeating-linear-gradient(transparent, transparent 6px, var(--color-accent) 6px, var(--color-accent) 10px);
}

.p-flow__item {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 2.5rem;
  width: 100%;
  counter-increment: counter;
}
.p-flow__item::before {
  content: counter(counter, decimal-leading-zero);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
  width: 7.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--gradient-4);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
}
.p-flow__item:last-child {
  background: var(--color-white);
}

.p-flow__item-inner {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  width: 100%;
}

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

.p-flow__item-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-flow__item-desc p {
  font-size: inherit;
}

@media screen and (max-width: 767px) {
  .p-flow {
    gap: 3.75rem;
    padding-block: 1.5rem 5rem;
  }
  .p-flow__header {
    padding-block: 2.5rem;
  }
  .p-flow__title {
    width: min(100%, 20.9375rem);
    font-size: 1.5rem;
  }
  .p-flow__subtitle {
    width: min(100%, 20.9375rem);
    font-size: 0.9375rem;
  }
  .p-flow__subtitle p:not(:first-child) {
    margin-top: 0.5rem;
  }
  .p-flow__main {
    width: min(100%, 23.4375rem);
    padding-inline: 1.25rem;
  }
  .p-flow__list {
    flex-flow: column;
    gap: 2.5rem;
    padding-inline: 0;
    margin-top: 2rem;
  }
  .p-flow__list::before {
    left: 1.1875rem;
  }
  .p-flow__item {
    gap: 1.25rem;
  }
  .p-flow__item::before {
    width: 2.5rem;
    font-size: 0.9375rem;
  }
  .p-flow__item-inner {
    gap: 0.5rem;
    margin-top: 0.375rem;
  }
  .p-flow__item-title {
    font-size: 1.125rem;
  }
  .p-flow__item-desc {
    font-size: 0.9375rem;
  }
}
.p-entry-cta {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.125rem;
  width: 100%;
  position: relative;
  z-index: 0;
  padding-block: 5rem 8.125rem;
  color: var(--color-white);
}

.p-entry-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.p-entry-cta__header {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1.875rem;
}

.p-entry-cta__title {
  width: min(100%, 51.625rem);
  margin-block: 0.75rem;
  aspect-ratio: 826/53;
}

.p-entry-cta__description {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-entry-cta__buttons {
  display: flex;
  gap: 3.125rem;
}

.p-entry-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  width: 18.75rem;
  padding-block: 1rem;
  background: var(--gradient-4);
  border-radius: 100vmax;
  color: var(--color-white);
}
.p-entry-cta__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100vmax;
  background: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.p-entry-cta__button .m-text {
  z-index: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.375rem;
  letter-spacing: 0.01em;
}
.p-entry-cta__button .m-icon {
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 1;
  right: 0.5625rem;
  width: 2.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-white);
  transition: background 0.3s ease-in-out;
}
.p-entry-cta__button .m-icon::after {
  content: "";
  position: absolute;
  width: 0.6875rem;
  aspect-ratio: 1/1;
  background: var(--color-accent);
  clip-path: polygon(25% 6%, 100% 50%, 25% 94%);
  transition: background 0.3s ease-in-out;
}
.p-entry-cta__button .m-line-icon {
  position: absolute;
  z-index: 1;
  left: 1rem;
  width: 2rem;
  aspect-ratio: 32/30;
  filter: grayscale(100%) brightness(10000%);
  transition: filter 0.3s ease-in-out;
}
.p-entry-cta__button.m-line {
  background: var(--color-accent-line);
  color: var(--color-text);
}
.p-entry-cta__button.m-line .m-icon::after {
  background: var(--color-accent-line);
}
@media (any-hover: hover) {
  .p-entry-cta__button:hover {
    color: var(--color-accent);
  }
  .p-entry-cta__button:hover::before {
    opacity: 1;
  }
  .p-entry-cta__button:hover .m-icon {
    background: var(--color-accent);
  }
  .p-entry-cta__button:hover .m-icon::after {
    background: var(--color-white);
  }
  .p-entry-cta__button:hover.m-line:hover {
    color: var(--color-text);
  }
  .p-entry-cta__button:hover.m-line:hover .m-icon {
    background: var(--color-accent-line);
  }
  .p-entry-cta__button:hover.m-line:hover .m-icon::after {
    background: var(--color-white);
  }
  .p-entry-cta__button:hover.m-line:hover .m-line-icon {
    filter: none;
  }
}

@media screen and (max-width: 767px) {
  .p-entry-cta__header {
    gap: 1.25rem;
  }
  .p-entry-cta__title {
    width: min(100%, 19.0625rem);
    margin-block: 0.75rem;
    aspect-ratio: 610/145;
  }
  .p-entry-cta__description {
    font-size: 1rem;
  }
  .p-entry-cta__buttons {
    flex-flow: column;
    gap: 1.875rem;
  }
}
.p-faq {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-inline: 2.25rem;
}

.p-faq__inner {
  display: flex;
  flex-flow: column;
  gap: 4.5rem;
  width: min(100%, 63.75rem);
  padding-block: 5rem 12.5rem;
}

.p-faq__contents {
  display: flex;
  flex-flow: column;
  gap: 3.75rem;
}

.p-faq__category-box {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
}

.p-faq__category-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-faq__category-title::before {
  content: "・";
  font-size: inherit;
}

.p-faq__category-items {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-faq {
    padding-inline: 1.25rem;
  }
  .p-faq__inner {
    gap: 3rem;
    width: min(100%, 20.9375rem);
    padding-block: 3.125rem 5rem;
  }
  .p-faq__category-title {
    font-size: 1.25rem;
  }
}
.p-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1.25rem;
}

.p-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  padding-block: 4.5rem 12.5rem;
}

.p-contact__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.p-contact__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: min(100%, 50rem);
}
.p-contact__info.m-narrow-width {
  width: min(100%, 41.25rem);
}

.p-contact__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-2);
  background-clip: text;
  color: transparent;
}

.p-contact__text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-contact__text.m-align-center {
  text-align: center;
}
.p-contact__text * {
  font-size: inherit;
}

.p-contact__tel_box {
  display: grid;
  place-items: center;
  gap: 0.125rem;
  width: min(100%, 41.25rem);
  padding-block: 2.5rem 2.25rem;
  border-radius: 0.375rem;
  background: var(--color-gray-f2);
}

.p-contact__tel-number {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  pointer-events: none;
}
.p-contact__tel-number::before {
  content: "";
  display: inline-block;
  width: 3.25rem;
  aspect-ratio: 1/1;
  background: url(../../images/common_icon_phone.svg) no-repeat center/cover;
}

.p-contact__tel-time {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-contact__form {
  display: flex;
  justify-content: center;
  padding-block: 5rem;
  padding-inline: 2.5rem;
  width: min(100%, 57.5rem);
  background: var(--color-gray-f2);
  border-radius: 0.375rem;
}
.p-contact__form > * {
  width: min(100%, 40rem);
}

.p-contact__link {
  width: min(100%, 16.6875rem);
}

@media screen and (max-width: 767px) {
  .p-contact__inner {
    width: min(100%, 20.9375rem);
    padding-block: 4.5rem 5rem;
  }
  .p-contact__title {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
  }
  .p-contact__text {
    font-size: 0.9375rem;
  }
  .p-contact__text.m-align-center {
    text-align: left;
  }
  .p-contact__tel-number {
    font-size: 2.25rem;
    pointer-events: initial;
  }
  .p-contact__tel-number::before {
    width: 2.75rem;
  }
  .p-contact__form {
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
}
.p-company {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 7.5rem;
  padding-block: 6rem 12.5rem;
  padding-inline: 2.25rem;
}

@media screen and (max-width: 767px) {
  .p-company {
    gap: 3.75rem;
    padding-block: 3.125rem 5rem;
    padding-inline: 1.25rem;
  }
}
.p-company-message {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  width: min(100%, 73.75rem);
}

.p-company-message__header {
  display: grid;
  grid-template-columns: 1fr 33.75rem;
  grid-template-areas: ". image" "name image";
  gap: 2rem;
  position: relative;
  width: min(100%, 70.625rem);
}

.p-company-message__phrase {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 0.75rem;
  position: absolute;
  top: 25.625rem;
  left: 3.5rem;
  color: var(--color-white);
}
.p-company-message__phrase p {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.75;
  background: var(--gradient-4);
}
.p-company-message__phrase p:last-of-type {
  padding-left: 1.25rem;
}

.p-company-message__president-name {
  grid-area: name;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.p-company-message__president-name .m-position {
  font-size: 1rem;
}
.p-company-message__president-name .m-name {
  font-size: 2rem;
}

.p-company-message__president-image {
  grid-area: image;
  width: 100%;
  aspect-ratio: 540/719;
}

.p-company-message__president_message {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding-inline: 3.125rem;
}
.p-company-message__president_message p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .p-company-message {
    align-items: center;
    width: min(100%, 20.9375rem);
  }
  .p-company-message__header {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "." "image" "name";
    gap: 1rem;
    position: relative;
  }
  .p-company-message__phrase {
    gap: 0.5rem;
    position: absolute;
    top: 28.125rem;
    left: -0.625rem;
  }
  .p-company-message__phrase p {
    font-size: 1.25rem;
    font-weight: 700;
  }
  .p-company-message__phrase p:last-of-type {
    padding-left: 0.625rem;
  }
  .p-company-message__president-name {
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .p-company-message__president-name .m-position {
    font-size: 0.875rem;
  }
  .p-company-message__president-name .m-name {
    font-size: 1.5rem;
  }
  .p-company-message__president_message {
    gap: 0.75rem;
    padding-inline: 0;
  }
  .p-company-message__president_message p {
    font-size: 0.9375rem;
  }
}
.p-company-info {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 4rem;
  width: min(100%, 73.75rem);
}

.p-company-info__header {
  align-self: flex-start;
}

.p-company-info__list {
  margin-top: -1rem;
  width: min(100%, 56.25rem);
}

.p-company-info__item {
  display: flex;
  width: 100%;
}
.p-company-info__item :is(dt, dd) {
  display: grid;
  align-items: center;
  position: relative;
  padding-block: 1.875rem;
  padding-inline: 1rem;
}
.p-company-info__item :is(dt, dd)::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--color-gray);
}
.p-company-info__item :is(dt) {
  flex-shrink: 0;
  width: 10.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-company-info__item :is(dt)::after {
  background: var(--gradient-4);
}
.p-company-info__item :is(dd) {
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-company-info__item :is(dd) * {
  font-size: inherit;
}

@media screen and (max-width: 767px) {
  .p-company-info {
    gap: 2.5rem;
    width: min(100%, 20.9375rem);
  }
  .p-company-info__list {
    display: flex;
    flex-flow: column;
    gap: 1.5rem;
  }
  .p-company-info__item {
    flex-flow: column;
  }
  .p-company-info__item :is(dt, dd)::after {
    height: 1px;
  }
  .p-company-info__item :is(dt) {
    align-self: flex-start;
    width: auto;
    padding-block: 0.375rem;
    padding-inline: 0.25rem 0.75rem;
    font-size: 0.9375rem;
  }
  .p-company-info__item :is(dd) {
    padding-block: 0.75rem 0.5rem;
    padding-inline: 0.25rem;
    font-size: 0.9375rem;
  }
}
.p-company-document__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 0;
  width: min(100%, 56.25rem);
}

.p-company-document__item {
  width: 100%;
  padding-block: 2rem;
  padding-inline: 1.875rem;
  background: var(--color-white);
}
.p-company-document__item.m-iso {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--color-gray-df);
}
.p-company-document__item.m-csr {
  border-right: 1px solid var(--color-gray-df);
}

.p-company-document__item-inner {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
  width: min(100%, 24.125rem);
}

.p-company-document__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-company-document__title::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gradient-4);
  border-radius: 50%;
}

.p-company-document__desc {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-company-document__images {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}

.p-company-document__image {
  width: min(50%, 11.875rem);
  aspect-ratio: 19/27;
}

.p-company-document__buttons {
  align-self: center;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  width: min(100%, 18.75rem);
}

.p-company-document__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  position: relative;
  background: var(--color-bg);
  padding: 0.9375rem;
  z-index: 0;
}
.p-company-document__download::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--gradient-4);
  transition: opacity 0.3s ease-in-out;
}
.p-company-document__download::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  background: var(--color-white);
  transition: opacity 0.3s ease-in-out;
}
.p-company-document__download.m-contact::after {
  opacity: 0;
}
.p-company-document__download.m-contact * {
  filter: grayscale(100%) brightness(10000%);
}
@media (any-hover: hover) {
  .p-company-document__download:hover::after, .p-company-document__download:hover::before {
    opacity: 0;
  }
  .p-company-document__download:hover * {
    filter: grayscale(100%) brightness(10000%);
  }
}

.p-company-document__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  transition: filter 0.3s ease-in-out;
}

.p-company-document__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: transparent;
  background: var(--gradient-4);
  background-clip: text;
  transition: filter 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .p-company-document__list {
    grid-template-columns: minmax(0, 1fr);
  }
  .p-company-document__item {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
  .p-company-document__item.m-iso {
    flex-flow: column;
    gap: 3rem;
    border: 1px solid var(--color-gray-df);
  }
  .p-company-document__item.m-csr {
    border-right: none;
  }
  .p-company-document__item.m-sdgs {
    padding-top: 0;
  }
  .p-company-document__title {
    gap: 0.5rem;
    font-size: 1.125rem;
  }
  .p-company-document__title::before {
    width: 0.375rem;
    height: 0.375rem;
  }
  .p-company-document__desc {
    font-size: 0.9375rem;
  }
  .p-company-document__text {
    font-size: 0.9375rem;
  }
}
.p-company-access {
  width: min(100%, 67.5rem);
}

.p-company-access__map {
  width: 100%;
}
.p-company-access__map iframe {
  width: 100%;
  height: 20.9375rem;
}

.p-company-access__root {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-company-history {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 4rem;
  width: min(100%, 73.75rem);
}

.p-company-history__header {
  align-self: flex-start;
}

.p-company-history__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 0;
}
.p-company-history__list::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0.3125rem;
  width: 0.125rem;
  height: calc(100% - 0.625rem);
  z-index: -1;
  background: repeating-linear-gradient(to bottom, transparent, transparent 3px, var(--color-white) 3px, var(--color-white) 8px), var(--gradient-4);
}

.p-company-history__item {
  display: flex;
  gap: 7.5rem;
  align-items: flex-start;
}

.p-company-history__year {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.05;
}
.p-company-history__year::before {
  content: "";
  width: 0.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--gradient-4);
}

.p-company-history__record {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-company-history {
    gap: 2rem;
    width: min(100%, 20.9375rem);
  }
  .p-company-history__list {
    gap: 1.5rem;
  }
  .p-company-history__list::before {
    left: 0.25rem;
  }
  .p-company-history__item {
    gap: 1.75rem;
  }
  .p-company-history__year {
    gap: 0.5rem;
    margin-top: 0.1875rem;
    font-size: 0.9375rem;
  }
  .p-company-history__year::before {
    width: 0.625rem;
  }
  .p-company-history__record {
    font-size: 0.9375rem;
  }
}
.p-privacy {
  align-self: center;
  display: flex;
  flex-flow: column;
  width: min(100%, 72rem);
  padding-block: 4.5rem 12.5rem;
  padding-inline: 2.25rem;
  counter-reset: heading-counter;
}
.p-privacy h2 {
  counter-increment: heading-counter;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 1.5rem;
}
.p-privacy h2::before {
  content: counter(heading-counter) ".";
  font-size: 1.5rem;
  font-weight: 700;
}
.p-privacy h2:first-of-type {
  margin-top: 3.125rem;
}
.p-privacy p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.p-privacy p:not(:first-of-type) {
  margin-top: 0.875rem;
}
.p-privacy p:last-of-type {
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-privacy {
    width: min(100%, 23.4375rem);
    padding-block: 4.5rem 4.5rem;
    padding-inline: 1.25rem;
  }
  .p-privacy h2 {
    font-size: 1.25rem;
  }
  .p-privacy h2::before {
    font-size: 1.25rem;
  }
}
.p-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
  padding-block: 2.875rem 8.875rem;
  padding-inline: 2.25rem;
}

.p-single__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(100%, 50rem);
}

.p-single__article-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.75rem;
  border-bottom: solid 1px var(--color-gray-df);
}

.p-single__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-single__date {
  color: var(--color-gray-77);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-single__category-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-single__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

.p-single__thumbnail {
  width: 100%;
}

.p-single__link {
  width: 16.6875rem;
}

@media screen and (max-width: 767px) {
  .p-single {
    gap: 2.5rem;
    padding-block: 3.125rem 5rem;
    padding-inline: 1.25rem;
  }
  .p-single__inner {
    gap: 1.5rem;
    width: min(100%, 20.9375rem);
  }
  .p-single__title {
    font-size: 1.5rem;
  }
}
.p-archive {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2rem;
  padding-block: 3.125rem 12.5rem;
  padding-inline: 2.25rem;
}
.p-archive.m-simple {
  padding-top: 6.25rem;
}

.p-archive__header {
  width: 100%;
}

.p-archive__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.125rem;
  width: min(100%, 67.5rem);
}

.p-archive__category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  overflow: hidden;
  width: 100%;
  border-radius: 100vmax;
  background: var(--color-gray-f2);
}

.p-archive__category-item {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding-block: 1.25rem;
  border-radius: 100vmax;
  color: var(--color-gray-77);
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}
.p-archive__category-item:not(.m-current)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 100vmax;
  background: var(--color-text);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-archive__category-item:not(.m-current):hover {
    color: var(--color-white);
  }
  .p-archive__category-item:not(.m-current):hover::after {
    opacity: 1;
  }
}
.p-archive__category-item.m-current {
  background: var(--gradient-2);
  color: var(--color-white);
}

.p-archive__list {
  display: flex;
  flex-flow: column;
  width: min(100%, 62.5rem);
}

.p-archive__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 2rem;
  padding-inline: 1.5rem;
  border-bottom: 1px solid var(--color-gray-df);
  transition: background 0.3s ease-in-out;
}
.p-archive__item * {
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .p-archive__item:hover {
    background: var(--color-gray-f2);
  }
  .p-archive__item:hover .p-archive__item-title {
    color: var(--color-accent);
  }
}

.p-archive__item-date {
  color: var(--color-gray-77);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.p-archive__item-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  transition: color 0.3s ease-in-out;
  word-break: break-all;
}

.p-archive__item-icon {
  width: 0.5rem;
  aspect-ratio: 8/12;
}

@media screen and (max-width: 767px) {
  .p-archive {
    padding-block: 3.125rem 5rem;
    padding-inline: 1.25rem;
  }
  .p-archive__inner {
    gap: 2rem;
    width: min(100%, 20.9375rem);
  }
  .p-archive__category-item {
    font-size: 0.8125rem;
    padding-block: 0.75rem;
  }
  .p-archive__item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    gap: 0.75rem;
    padding-block: 0.75rem;
    padding-inline: 0 1.5rem;
  }
  .p-archive__item-date {
    font-size: 0.9375rem;
  }
  .p-archive__tags {
    justify-self: end;
  }
  .p-archive__item-title {
    grid-column: 1/-1;
    min-width: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
    transition: color 0.3s ease-in-out;
    word-break: break-all;
  }
  .p-archive__item-icon {
    position: absolute;
    right: 0;
  }
}
.p-archive-case {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-block: 3.125rem 7.5rem;
  padding-inline: 2.25rem;
}

.p-archive-case__inner {
  display: flex;
  flex-flow: column;
  gap: 3.125rem;
  width: min(73.75rem, 100%);
}

.p-archive-case__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.375rem;
}

.p-archive-case__notice {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-archive-case {
    padding-block: 3.125rem;
    padding-inline: 1.25rem;
  }
  .p-archive-case__inner {
    width: min(20.9375rem, 100%);
  }
  .p-archive-case__list {
    display: grid;
    grid-template-columns: 20.9375rem;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0;
  }
}
.p-archive-our-works {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-block: 3.125rem 12.5rem;
  padding-inline: 2.25rem;
}

.p-archive-our-works__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.125rem;
  width: min(100%, 73.75rem);
}

.p-archive-our-works__header {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2rem;
}

.p-archive-our-works__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.125rem 1.25rem;
  width: 100%;
  margin-top: 1.375rem;
}

@media screen and (max-width: 767px) {
  .p-archive-our-works {
    padding-block: 3.125rem 5rem;
    padding-inline: 1.25rem;
  }
  .p-archive-our-works__inner {
    gap: 3.125rem;
    width: min(100%, 20.9375rem);
  }
  .p-archive-our-works__list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.p-archive-products {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-inline: 2.5rem;
}

.p-archive-products__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.125rem;
  width: min(100%, 73.75rem);
  padding-block: 3.125rem 12.5rem;
}

.p-archive-products__header {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  width: min(100%, 67.5rem);
}

.p-archive-products__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-archive-products__categories {
  display: flex;
  flex-flow: column;
  gap: 3.5rem;
  padding: 1.75rem 3rem;
  border-radius: 1.875rem;
  background: var(--color-white);
  box-shadow: 0 0 0.75rem var(--color-shadow);
}

.p-archive-products__categories-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.p-archive-products__categories-inner:first-child::after {
  content: "";
  position: absolute;
  bottom: -1.75rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gray);
}

.p-archive-products__categories-title {
  flex-shrink: 0;
  width: 10rem;
  background: var(--gradient-4);
  background-clip: text;
  color: transparent;
  font-size: 1rem;
  font-weight: 700;
}

.p-archive-products__category-list {
  display: flex;
  flex-flow: wrap;
  gap: 0.875rem 0.625rem;
}

.p-archive-products__category-item.m-selectable:not(.is-selected) {
  display: none;
}

.p-archive-products__category-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  min-height: 0;
  padding-block: 0.625rem;
  padding-inline: 2rem 2.5rem;
  border-radius: 100vmax;
  background: var(--color-white);
  outline: 2px var(--color-accent) solid;
  outline-offset: -0.0625rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}
.p-archive-products__category-button * {
  font-size: inherit;
}
.p-archive-products__category-button::after {
  content: "";
  justify-self: end;
  position: absolute;
  right: 0.9375rem;
  width: 0.5rem;
  aspect-ratio: 1.732/2;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--color-accent);
  transition: all 0.3s ease-in-out;
}
.p-archive-products__category-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100vmax;
  z-index: -1;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.p-archive-products__category-button:not(.m-current) {
  cursor: pointer;
}
.p-archive-products__category-button:where(.m-current), .p-archive-products__category-button.m-radio:has(input:checked) {
  background: transparent;
  outline: 2px transparent solid;
  outline-offset: -0.0625rem;
  color: var(--color-white);
}
.p-archive-products__category-button:where(.m-current)::before, .p-archive-products__category-button.m-radio:has(input:checked)::before {
  opacity: 1;
}
.p-archive-products__category-button:where(.m-current)::after, .p-archive-products__category-button.m-radio:has(input:checked)::after {
  background: var(--color-white);
}
@media (any-hover: hover) {
  .p-archive-products__category-button:not(.m-current, .m-radio:has(input:checked)):hover, .p-archive-products__category-button:focus-visible, .p-archive-products__category-button:has(input:focus) {
    outline: 2px var(--color-white) solid;
    background: var(--color-text);
    color: var(--color-white);
  }
  .p-archive-products__category-button:not(.m-current, .m-radio:has(input:checked)):hover::before, .p-archive-products__category-button:focus-visible::before, .p-archive-products__category-button:has(input:focus)::before {
    opacity: 0;
  }
  .p-archive-products__category-button:not(.m-current, .m-radio:has(input:checked)):hover::after, .p-archive-products__category-button:focus-visible::after, .p-archive-products__category-button:has(input:focus)::after {
    background: var(--color-white);
  }
}

.p-archive-products__main {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  width: 100%;
  margin-top: 1.375rem;
}

.p-archive-products__subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-archive-products__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-archive-products {
    padding-inline: 1.25rem;
  }
  .p-archive-products__inner {
    gap: 2.5rem;
    width: min(100%, 20.9375rem);
    padding-block: 3.125rem 6.25rem;
  }
  .p-archive-products__categories {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  .p-archive-products__categories-inner {
    flex-flow: column;
    gap: 0.625rem;
    align-items: flex-start;
  }
  .p-archive-products__category-list {
    display: flex;
    flex-flow: column;
    gap: 0.625rem;
    width: 100%;
  }
  .p-archive-products__category-list.m-parent {
    flex-direction: row;
    justify-content: space-between;
  }
  .m-parent .p-archive-products__category-item {
    flex: 1 1 auto;
  }
  .p-archive-products__category-button {
    width: 100%;
    padding-block: 0.375rem;
    padding-inline: 1rem 1.5rem;
    border-radius: 1.0625rem;
    outline-offset: -0.0625rem;
    font-size: 0.75rem;
  }
  .p-archive-products__category-button::after {
    right: 0.75rem;
    width: 0.375rem;
  }
  .p-archive-products__subtitle {
    font-size: 1.5rem;
  }
  .p-archive-products__list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.p-404 {
  align-self: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: min(100%, 60rem);
  padding-block: 4.5rem 12.5rem;
  padding-inline: 2.25rem;
}

.p-404__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.p-404__desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.p-404__link {
  margin-top: 3.75rem;
  width: 16.6875rem;
}

@media screen and (max-width: 767px) {
  .p-404 {
    width: min(100%, 23.4375rem);
    padding-block: 4.5rem 4.5rem;
    padding-inline: 1.25rem;
  }
  .p-404__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }
  .p-404__desc {
    text-align: left;
  }
}