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

.u-text__shadow {
  -webkit-text-stroke: 4px var(--color-bg);
  paint-order: stroke fill;
}

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

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  /* inner */
  --inner: 1352px;
  --inner-narrow: 1304px;
  --inner-wide: 1434px;
  --padding-pc: 25px;
  --padding-sp: 16px;
  /* color */
  --color-white: #fff;
  --color-text: #000;
  --color-black: #000;
  --color-gray: #dedede;
  --color-bg: #f7f7f7;
  --color-accent: #45a0ef;
  --color-primary: #234f5e;
  --color-secondary: #0000ff;
  --color-orange: #de8430;
  /* font-weight */
  --regular: 300;
  --normal: 400;
  --medium: 500;
  --bold: 700;
  /* font-family */
  --base-font-family: "Noto Sans JP", sans-serif;
  --title-font-family: "Jost", 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: 1304px) {
  html {
    font-size: 1.226993865vw;
  }
}
@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;
  font-size: 1.0625rem;
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-color: var(--color-bg);
}

/* 👍使い方 */
@media (max-width: 767px) {
  [data-device=pc] {
    display: none !important;
  }
}

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

: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-company {
  padding-top: 11.25rem;
  padding-bottom: 5rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .l-company {
    padding-top: 6.25rem;
  }
}

.l-cta {
  margin: 3.5rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-cta {
    margin: 2.5rem 0 3.75rem;
  }
}

.l-features {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-features {
    margin-top: 5rem;
  }
}

.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-inner--narrow {
  max-width: calc(var(--inner-narrow) + var(--padding-pc) * 2);
}

.l-inner--wide {
  max-width: calc(var(--inner-wide) + var(--padding-pc) * 2);
}

.l-lead {
  padding-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .l-lead {
    padding-top: 5rem;
  }
}

.l-member {
  padding-top: 8.125rem;
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .l-member {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
}

.l-message {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-message {
    margin-top: 6.25rem;
  }
}

.l-news {
  padding: 14.1875rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .l-news {
    padding: 5.5rem 0 7.125rem;
  }
}

.l-page {
  margin: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .l-page {
    margin: 5rem 0;
  }
}

.l-pageheader {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .l-pageheader {
    margin-top: 6.25rem;
  }
}

.l-recruit {
  margin-top: 5rem;
  padding-bottom: 5.875rem;
}
@media screen and (max-width: 767px) {
  .l-recruit {
    margin-top: 2.0625rem;
    padding-bottom: 4rem;
  }
}

.l-service {
  margin: 10rem 0 6.25rem;
  overflow-y: clip;
}
@media screen and (max-width: 767px) {
  .l-service {
    margin: 5rem 0;
  }
}

.l-single {
  margin: 5rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .l-single {
    margin: 3.75rem 0 6.25rem;
  }
}

.l-strength {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-strength {
    margin-top: 5rem;
  }
}

.l-sub-lead {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .l-sub-lead {
    margin-top: 3.75rem;
  }
}

.l-sub-member {
  margin-top: 8.8125rem;
}

.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-value {
  margin-top: 10rem;
}

.l-works {
  margin-top: 7.5rem;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .l-works {
    margin-top: 11.625rem;
    padding-bottom: 5rem;
  }
}

.c-button a {
  padding: 0.75rem 2.5rem 0.75rem 3.75rem;
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-white);
  border-radius: 3.125rem;
  background-color: var(--color-black);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-button a {
    font-size: 0.75rem;
    padding: 0.625rem 1.375rem 0.625rem 2.1875rem;
  }
}

.c-button--fixed a {
  width: 100%;
  max-width: 23.75rem;
  text-align: center;
  line-height: 4rem;
  padding: 0 2.5rem 0 2.25rem !important;
}
@media screen and (max-width: 767px) {
  .c-button--fixed a {
    max-width: 20rem;
    line-height: 2.375rem;
  }
}

.c-button--fixed a:after {
  right: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-button--fixed a:after {
    right: 0.625rem !important;
  }
}

.c-button--large a {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-button--large a {
    font-size: 0.875rem;
  }
}

.c-button a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.5rem;
  aspect-ratio: 1;
  height: auto;
  left: 1.5rem;
  background-color: var(--color-white);
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-button a::before {
    left: 1.125rem;
  }
}

.c-button a[target=_blank]:not(:has(img)) {
  padding: 0.75rem 3.125rem 0.75rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-button a[target=_blank]:not(:has(img)) {
    padding: 0.625rem 3rem 0.625rem 3rem;
  }
}

.c-button a[target=_blank]:not(:has(img))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.0625rem;
  width: 1.5rem;
  aspect-ratio: 1;
  height: auto;
  background-image: url("../../images/common/external.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

/* 初期は黒、角丸クリップ有効化 */
.c-button a {
  --btn-accent: var(--color-accent);
  position: relative;
  overflow: hidden; /* 角丸に沿わせる */
  isolation: isolate; /* 積層の安定 */
  background-color: var(--color-black);
}

.c-button--blue a {
  background-color: var(--color-accent);
}

/* 既存の白ドットは前面に */
.c-button a::before {
  z-index: 2;
}

/* ラベルも前面に */
.c-button__label {
  position: relative;
  z-index: 2;
}

.c-button--off {
  opacity: 0.5;
}

.c-button small {
  font-size: 10px;
  display: block;
  text-align: center;
}

/* 斜めの青レイヤー：矩形を skewX して“斜め境界”を作る */
.c-button__bg {
  position: absolute;
  top: -2px;
  bottom: -2px; /* 斜めで端が出ないように少し広げる */
  left: -12%; /* skew時に左側を余分に確保 */
  width: 160%; /* skew後も全体を覆えるよう広めに */
  background: var(--btn-accent);
  z-index: 0;
  /* ★ポイント：傾けたままスライドさせる */
  transform-origin: left center;
  transform: translateX(-110%) skewX(24deg); /* 角度は調整可 */
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.c-button--blue .c-button__bg {
  background: var(--color-black);
}

/* ホバーで左→右に流れ込む（斜めの先頭エッジが見える） */
.c-button a:hover .c-button__bg {
  transform: translateX(0) skewX(24deg);
}

/* 外部リンクアイコン（既存）も前面に */
.c-button a[target=_blank]:not(:has(img))::after {
  z-index: 2;
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .c-button__bg {
    transition: none;
    transform: translateX(0) skewX(-18deg);
  }
}
/* -----------------------------------------
   外部リンク矢印 ::after
   左上へ抜ける → 左下から戻る → 中央で止まる
------------------------------------------ */
@keyframes arrowExitEnter {
  0% {
    transform: translateY(-50%);
    opacity: 1;
  }
  35% {
    transform: translate(100%, -100%);
    opacity: 0; /* 左上に抜ける途中で消える */
  }
  36% {
    transform: translate(-100%, 0);
    opacity: 0; /* 下の外側に“瞬間移動” */
  }
  100% {
    transform: translateY(-50%);
    opacity: 1; /* 中央で戻る */
  }
}
/* hover時の指定 */
.c-button a[target=_blank]:not(:has(img)):hover::after {
  animation: arrowExitEnter 1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .c-button a[target=_blank]:not(:has(img)):hover::after {
    animation: none;
  }
}
.c-button02 a {
  font-size: 1.25rem;
  font-weight: var(--bold);
  letter-spacing: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.c-button02 .arrow {
  overflow: hidden;
  margin: auto 0;
  border-radius: 50%;
  background-color: var(--color-accent);
  line-height: 1;
  width: 2.5rem;
  aspect-ratio: 1;
  height: auto;
  display: inline-block;
  margin-left: 1rem;
  position: relative;
}

.c-button02--rev .arrow {
  background-color: var(--color-white);
}

.c-button02 .arrow:before {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  height: auto;
  background-image: url("../../images/common/arrow-black.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.375rem;
  position: absolute;
  inset: 0;
}

.c-button02 a:after {
  content: "";
  width: calc(100% - 56px);
  height: 1px;
  background: var(--color-black);
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-button02.c-button02--wh a:after {
  background: var(--color-white);
}

/* ホバー時に実際にアニメーションさせる（duration を必ず指定） */
.c-button02:hover .arrow:before,
.c-button02 a:hover .arrow:before {
  animation: transformArrow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0s 1 both;
}

@keyframes transformArrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  51% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.c-button03 a {
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--color-black);
  transition: 0.3s;
  display: inline-block;
  color: var(--color-white);
}

.c-button03 a span {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  padding-left: 1.375rem;
}

.c-button03 a span:before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  height: auto;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-button03 a:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.c-button03--colored a:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.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-numbertitle {
  font-family: var(--title-font-family);
  font-size: 3.375rem;
  font-weight: var(--normal);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-numbertitle {
    font-size: 2rem;
  }
}
.c-numbertitle span {
  display: block;
  font-size: 1.25rem;
  color: #bbbbbb;
}
@media screen and (max-width: 767px) {
  .c-numbertitle span {
    font-size: 0.875rem;
  }
}

.c-section-title {
  position: relative;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: red;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 3.75rem;
  }
}

.c-section-title.c-section-title--left {
  text-align: left;
}

.c-section-title.c-section-title--right {
  text-align: right;
}

.c-section-title::before {
  content: attr(data-title);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-gray);
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    font-size: 7.5rem;
  }
}

.c-section-title.c-section-title--left::before {
  left: 0;
  transform: translate(0, -50%);
}

.c-section-title.c-section-title--right::before {
  right: 0;
  left: initial;
  transform: translate(0, -50%);
}

.c-title1 {
  font-weight: var(--medium);
  letter-spacing: 0;
}
.c-title1 .en {
  font-family: var(--title-font-family);
  font-size: 4.5rem;
  font-weight: var(--normal);
  line-height: 1.2;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-title1 .en {
    font-size: 2.5rem;
    padding-right: 0.75rem;
  }
}
.c-title1 .jp {
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-title1 .jp {
    font-size: 1.5rem;
  }
}

.c-title1::first-letter {
  text-transform: uppercase;
}

.c-title1--line {
  padding-bottom: 2rem;
  border-block-end: 1px solid var(--color-gray);
}
@media screen and (max-width: 767px) {
  .c-title1--line {
    padding-bottom: 1.25rem;
  }
}

.c-title2 {
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  font-size: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .c-title2 {
    font-size: 1.3125rem;
  }
}
.c-title2 .en {
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: var(--normal);
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-title2 .en {
    font-size: 0.875rem;
  }
}

.c-title3 {
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-title3 {
    font-size: 0.875rem;
  }
}
.c-title3 .en {
  font-family: var(--title-font-family);
  font-size: 4.5rem;
  font-weight: var(--normal);
  line-height: 1;
  padding-bottom: 1rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-title3 .en {
    font-size: 2.5rem;
    padding-bottom: 0.125rem;
    display: inline-block;
    padding-right: 1rem;
  }
}

.c-title3--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.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-whiteinner {
  width: 96.5608465608vw;
  margin: 0 auto;
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-whiteinner {
    width: calc(100% - 1.25rem);
    margin: 0 0.625rem;
  }
}

.c-whiteinner__trans {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px;
  backdrop-filter: blur(15px);
}

.js-title {
  position: relative;
  z-index: 0;
  display: block;
  width: fit-content;
  height: fit-content;
  overflow: hidden;
}

/* 初期状態は “水色だけ見える” ようにする */
.js-title {
  --bg-x: 1;
}

.js-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(var(--bg-x)); /* 1=全面, 0=消える */
  transform-origin: right; /* 右へ抜ける */
  z-index: 1; /* 背景として後ろに */
  will-change: transform;
}

html {
  position: relative;
}

.p-bg {
  position: absolute;
  overflow-x: hidden;
  padding-top: var(--header-height);
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-bg__img {
  width: 174.125rem;
  position: absolute;
  top: 18.75rem;
  left: 80%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-bg__img {
    width: 62.5rem;
    top: 6.25rem;
    left: 75%;
  }
}

.p-casearchive {
  margin-top: 5.5rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-casearchive {
    margin-top: 2.5rem;
  }
}

.p-casearchive__items {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-casearchive__items {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.nav-links {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.nav-links > * {
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50%;
  line-height: 2rem;
  aspect-ratio: 1;
  width: 2rem;
  height: auto;
  text-align: center;
  display: inline-block;
}
.nav-links .current {
  color: var(--color-white);
  background: var(--color-black);
}
.nav-links a:hover {
  opacity: 0.5;
}

.p-company {
  position: relative;
}

.p-company__bg {
  width: 265.75rem;
  position: absolute;
  top: 5rem;
  left: 45%;
  transform: translate(-50%, -50%) rotate(10deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company__bg {
    width: 125rem;
    top: 6.25rem;
  }
}

.p-company__img {
  width: 73.4126984127vw;
  margin: 0 calc(50% - 50vw + 2.5rem) 0 auto;
}
@media screen and (max-width: 767px) {
  .p-company__img {
    width: 100%;
    margin: 0;
  }
}

.p-company__title {
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    margin-top: 2.5rem;
  }
}

.p-company__list {
  margin-top: 4.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company__list {
    margin-top: 3.75rem;
  }
}
.p-company__list a {
  text-decoration: underline var(--color-accent);
  color: var(--color-accent);
}

.p-company__list dt {
  width: 9.125rem;
  position: absolute;
  left: 0;
  padding-bottom: 1.5rem;
  color: #868686;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-company__list dt {
    position: relative;
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}

.p-company__list dd {
  padding-left: 11.25rem;
  border-bottom: 1px solid #dedede;
  padding-bottom: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-company__list dd {
    padding-left: 0;
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}
.p-company__list dd small {
  font-size: 0.8125rem;
  color: #868686;
}

.p-company__list dd:not(:first-of-type),
.p-company__list dt:not(:first-of-type) {
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-company__list dt:not(:first-of-type) {
    margin-top: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-company__list dd:not(:first-of-type) {
    margin-top: 0rem;
  }
}

.p-contents,
.editor-styles-wrapper {
  text-align: left;
  /* ネストされた ol: (1) (2) (3) */
}
.p-contents h2,
.editor-styles-wrapper h2 {
  margin: 3.375rem 0 1.9375rem;
  font-size: 1.875rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-weight: 700;
  border-left: 8px solid var(--color-accent);
  padding: 0 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contents h2,
  .editor-styles-wrapper h2 {
    margin: 2.5rem 0 1.875rem;
    font-size: 1.375rem;
  }
}
.p-contents h3,
.editor-styles-wrapper h3 {
  margin: 3.375rem 0 1.5rem;
  font-size: 1.625rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contents h3,
  .editor-styles-wrapper h3 {
    margin: 2.5rem 0 1.875rem;
    font-size: 1.125rem;
  }
}
.p-contents h4,
.editor-styles-wrapper h4 {
  margin: 3.375rem 0 1.4375rem;
  font-size: 1.375rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contents h4,
  .editor-styles-wrapper h4 {
    margin: 2.5rem 0 1.875rem;
    font-size: 1.0625rem;
  }
}
.p-contents p,
.editor-styles-wrapper p {
  margin-top: 1.6875rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-contents p,
  .editor-styles-wrapper p {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}
.p-contents a,
.editor-styles-wrapper a {
  text-decoration: underline var(--color-accent);
  color: var(--color-accent);
}
.p-contents ul,
.editor-styles-wrapper ul {
  margin: 2.5rem 0 0 1.5rem;
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .p-contents ul,
  .editor-styles-wrapper ul {
    margin: 1.875rem 0 0 1.25rem;
  }
}
.p-contents ul li,
.editor-styles-wrapper ul li {
  font-size: 1.0625rem;
  line-height: 1.8;
  list-style-position: outside;
}
@media screen and (max-width: 767px) {
  .p-contents ul li,
  .editor-styles-wrapper ul li {
    font-size: 0.875rem;
  }
}
.p-contents ul li:not(:first-of-type),
.p-contents ol li:not(:first-of-type),
.editor-styles-wrapper ul li:not(:first-of-type),
.editor-styles-wrapper ol li:not(:first-of-type) {
  margin-top: 0.5rem;
}
.p-contents ol,
.editor-styles-wrapper ol {
  margin: 2.5rem 0 0 1.5rem;
  list-style: decimal;
}
@media screen and (max-width: 767px) {
  .p-contents ol,
  .editor-styles-wrapper ol {
    margin: 1.875rem 0 0 1.25rem;
  }
}
.p-contents ol ol,
.editor-styles-wrapper ol ol {
  list-style: decimal;
}
.p-contents ol li,
.editor-styles-wrapper ol li {
  font-size: 1.0625rem;
  position: relative;
  line-height: 1.5;
  list-style-position: outside;
}
@media screen and (max-width: 767px) {
  .p-contents ol li,
  .editor-styles-wrapper ol li {
    font-size: 0.875rem;
  }
}
.p-contents ol > li::marker,
.editor-styles-wrapper ol > li::marker {
  content: counter(list-item) ". ";
}
.p-contents ol ol > li::marker,
.editor-styles-wrapper ol ol > li::marker {
  content: "(" counter(list-item) ") ";
}
.p-contents figure,
.editor-styles-wrapper figure {
  margin: 3rem 0;
  border-radius: 0.25rem;
  overflow: crip;
}
.p-contents figcaption,
.editor-styles-wrapper figcaption {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contents figcaption,
  .editor-styles-wrapper figcaption {
    font-size: 0.75rem;
  }
}
.p-contents blockquote,
.editor-styles-wrapper blockquote {
  margin: 3rem 0;
  background: #ededed;
  padding: 2.5rem 2rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-contents blockquote,
  .editor-styles-wrapper blockquote {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    padding: 1.25rem;
  }
}
.p-contents blockquote *:first-child,
.editor-styles-wrapper blockquote *:first-child {
  margin-top: 0;
}
.p-contents .wp-block-list .wp-block-list,
.editor-styles-wrapper .wp-block-list .wp-block-list {
  margin-top: 0.25rem;
}

.p-cta {
  text-align: center;
  background: var(--color-accent);
  padding: 4rem;
  color: var(--color-white);
}

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

.p-download {
  background-color: var(--color-accent);
  border-radius: 0.75rem;
  padding: 3.3125rem 2.8125rem;
  display: flex;
  gap: 1.875rem 8.125rem;
  align-items: center;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-download {
    flex-direction: column;
    padding: 1.25rem;
  }
}

.p-download__contents {
  max-width: 27.9375rem;
}

.p-download__title {
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-download__title {
    font-size: 1.25rem;
  }
}

.p-download__text {
  margin-top: 1.4375rem;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-download__text {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.p-download__button {
  margin-top: 1.4375rem;
}

.p-download__img {
  width: 25.0625rem;
}
@media screen and (max-width: 767px) {
  .p-download__img {
    width: 100%;
  }
}

.p-drawer {
  background: var(--color-black);
  color: var(--color-white);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: -1;
}

.p-drawer.is-open {
  transform: translateX(0);
}

.p-drawer__inner {
  position: relative;
  padding: 7.75rem 2.5rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.p-drawer__copyright {
  font-size: 0.625rem;
  font-family: var(--title-font-family);
  font-weight: 500;
  color: #ababab;
}

.p-features {
  position: relative;
}

.p-features__bar {
  position: absolute;
  width: 129.0343915344vw;
  top: 60%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.p-features__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem 5.1875rem;
}
.p-features__container {
  width: calc(50% - 5.1875rem);
}
@media screen and (max-width: 767px) {
  .p-features__container {
    display: contents;
  }
}

.p-features__img {
  margin: 2.5rem auto 0;
  flex: 0;
  max-width: 70rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-features__img {
    margin: 0 auto;
  }
}

.p-features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-features__list {
    grid-template-columns: 1fr;
    order: 1;
  }
}

.p-features__list li {
  margin-top: 3.125rem;
  font-size: 1.5625rem;
  line-height: 1.48;
  letter-spacing: 0.1em;
  font-weight: var(--medium);
  position: relative;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-features__list li {
    font-size: 1.0625rem;
    margin-top: 0;
    padding-left: 1.4375rem;
  }
  .p-features__list li:first-of-type {
    margin-top: 0;
  }
}

.p-features__list li::before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  height: auto;
  background-color: var(--color-accent);
  border-radius: 0.25rem;
  position: absolute;
  top: 0.8125rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-features__list li::before {
    width: 0.75rem;
    top: 0.5rem;
  }
}

.p-features__list li span {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.4705882353;
}
@media screen and (max-width: 767px) {
  .p-features__list li span {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
  }
}

.p-features__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-features__animation svg {
  width: 100%;
  height: 100%;
}

@keyframes infinityRunner {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -2000;
  }
}
.p-footer__inner {
  padding: 3.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column-reverse;
    padding: 0 1rem;
    gap: 2.5rem;
    align-items: flex-start;
  }
}

.p-footer__logo {
  max-width: 32.3125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: unset;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.p-footer__logo img {
  width: 100%;
  aspect-ratio: 517/172;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__logo img {
    width: 14.1875rem;
  }
}

.p-footer__nav {
  position: relative;
  padding: 0 0.25rem;
}
.p-footer__nav-list {
  display: flex;
  gap: 0rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    width: 15.625rem;
    flex-wrap: wrap;
    gap: 0;
  }
}

.p-footer__nav-item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    width: 7.5rem;
  }
}

.p-footer__nav-item > a {
  padding: 0;
  height: 3.1875rem;
  display: flex;
  align-items: center;
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item > a {
    height: 2.5rem;
  }
}

.p-footer__bottom {
  margin-top: 1.875rem;
  aspect-ratio: 1512/226;
  background-image: url(../../images/common/logo_pattern.svg);
  background-size: 8.75rem;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    margin-top: 0;
    aspect-ratio: 390/178;
    background-size: 4.875rem;
  }
}

.p-footer__copyright {
  font-family: var(--title-font-family);
  font-size: 0.75rem;
  color: #ababab;
  margin-top: 1.3125rem;
  text-align: right;
  display: block;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    order: 3;
    font-size: 0.625rem;
  }
}

.p-footer__policy {
  display: block;
  font-family: var(--title-font-family);
  font-size: 0.875rem;
  color: #ababab;
  text-align: right;
  display: block;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__policy {
    text-align: left;
    font-size: 0.75rem;
  }
}

.p-header {
  padding-top: 1.5rem;
  background: var(--color-white);
  height: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-block: 0.625rem 0.5rem;
    height: 3.75rem;
  }
}

.p-header__inner {
  width: 100%;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 1rem;
  }
}

.p-header__logo img {
  width: 13.25rem;
  aspect-ratio: 212/48;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    width: 8.6875rem;
  }
}

.p-header__logo a {
  display: flex;
}

.p-header__nav {
  position: relative;
  padding: 0 0.25rem;
  display: flex;
  gap: 0.75rem;
}

.p-header__nav-list {
  display: flex;
  background-color: var(--color-white);
  border-radius: 0.125rem;
  height: 3.1875rem;
}

.p-header__nav-item {
  display: flex;
  height: inherit;
}

.p-header__nav-item > a {
  padding: 0rem 1.25rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.p-header__nav-item--contact a {
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 0.125rem;
  height: inherit;
}

.p-header__logo {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-header__logo.is-hidden {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.p-header.is-open .p-header__logo.is-hidden {
  opacity: 1;
}

.p-humburger {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-black);
  padding: 1rem 0.5rem;
  position: relative;
  display: block;
}

.p-humburger__line {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.p-humburger__line:before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
}

.p-humburger__line:after {
  content: "";
  width: 83%;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 100%;
  left: 0;
}

.p-humburger.is-open {
  background: var(--color-white);
}
.p-humburger.is-open .p-humburger__line:before {
  transform: rotate(30deg);
  top: 50%;
  width: 104%;
  background: var(--color-black);
}
.p-humburger.is-open .p-humburger__line:after {
  transform: rotate(-30deg);
  top: 50%;
  width: 104%;
  background: var(--color-black);
}

.p-lead {
  position: relative;
}

.p-lead__contents {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-lead__contents {
    padding-top: 0;
  }
}

.p-lead__title {
  width: 50.1875rem;
}
@media screen and (max-width: 767px) {
  .p-lead__title {
    width: 15.375rem;
  }
}

.p-lead__text {
  margin-top: 5.1875rem;
  width: 46.1875rem;
}
@media screen and (max-width: 767px) {
  .p-lead__text {
    width: 20.1875rem;
    margin-top: 3.5rem;
  }
}

.p-lead__text img {
  display: block;
  width: 100%;
  height: auto;
}
.p-lead__button {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-lead__button {
    margin-top: 2.5rem;
  }
}

.p-lead__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-lead__inner {
    flex-direction: column;
  }
}

.p-lead__img {
  position: relative;
  right: max(-4rem, 50% - 50vw + 0.9375rem);
  width: 31.8125rem;
}
@media screen and (max-width: 1023px) {
  .p-lead__img {
    width: 28.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-lead__img {
    width: 100%;
    margin: 3rem 0 0;
  }
}

.p-lead__img {
  width: 100%;
  object-fit: contain;
}

.p-media__items {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-media__items {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .p-media__item {
    display: grid;
    flex-direction: 1fr;
    gap: 1.25rem;
  }
}

.p-media__image {
  width: 100%;
  aspect-ratio: 556/353;
  height: auto;
}

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

.p-media__title {
  font-size: 3.75rem;
  font-family: var(--title-font-family);
  line-height: 100%;
  font-weight: 400;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-media__title {
    font-size: 2.5rem;
    margin-top: 0.75rem;
    order: -1;
  }
}

.p-media__text {
  margin-top: 2.5rem;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 160%;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-media__text {
    font-size: 0.875rem;
    margin-top: 0.75rem;
  }
}

.p-media__buttons {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-media__buttons {
    margin-top: 1.25rem;
    flex-direction: column;
  }
}

.p-member {
  background: #212121;
  color: var(--color-white);
  overflow-x: hidden;
}

.p-member__button {
  text-align: right;
  position: relative;
  top: -5rem;
}
@media screen and (max-width: 767px) {
  .p-member__button {
    top: initial;
    text-align-last: left;
    margin-top: 3rem;
  }
}

.p-member__sliderwrapper {
  position: relative;
  /* ページネーションの余白 */
  /* ページネーションのサイズと色 */
}
.p-member__sliderwrapper .swiper-button-prev {
  left: 25rem;
  top: -10rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-member__sliderwrapper .swiper-button-prev {
    left: 15rem;
    top: -6.875rem;
  }
}
.p-member__sliderwrapper .swiper-button-next {
  left: 31.25rem;
  top: -10rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-member__sliderwrapper .swiper-button-next {
    left: 18.75rem;
    top: -6.875rem;
  }
}
.p-member__sliderwrapper .swiper-button-prev::after,
.p-member__sliderwrapper .swiper-button-next::after {
  background-color: #000;
}
.p-member__sliderwrapper .swiper-pagination {
  bottom: -3.75rem;
}
.p-member__sliderwrapper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-member__sliderwrapper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.75rem 0.75rem;
}
.p-member__sliderwrapper .swiper-pagination-bullet {
  background-color: var(--color-white);
  height: 0.75rem;
  width: 0.75rem;
}

.p-member__slider {
  margin-top: 3rem;
  width: calc(50% + 50dvw);
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-member__slider {
    margin-top: 2.5rem;
  }
}

.p-memberslide__image img {
  width: 100%;
  aspect-ratio: 368/425;
  object-fit: cover;
  height: auto;
}

.p-memberslide__title {
  font-size: 0.9375rem;
  font-weight: var(--medium);
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
  color: #8b8b8b;
}
@media screen and (max-width: 767px) {
  .p-memberslide__title {
    font-size: 0.75rem;
  }
}

.p-memberslide__name {
  font-size: 1.4375rem;
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-memberslide__name {
    font-size: 1.25rem;
  }
}

.p-memberslide__detail {
  font-size: 0.875rem;
  font-weight: var(--medium);
  margin-top: 1.25rem;
  color: #d8d8d8;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-memberslide__detail {
    font-size: 0.75rem;
  }
}

.p-message__img {
  margin-top: 2.5rem;
}

.p-message__text {
  max-width: 81.25rem;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  line-height: 1.4705882353;
  font-weight: var(--medium);
  margin: 1.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 0.875rem;
  }
}

.p-message__text:first-of-type,
.p-message__text:last-of-type {
  margin-top: 3.5rem;
}

.p-meta__tag {
  padding: 0.5rem 0.75rem;
  border-radius: 2rem;
  border: 1px solid currentColor;
  position: relative;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-meta__tag {
    font-size: 0.625rem;
    padding: 0.3125rem 0.625rem;
  }
}

.p-meta__date {
  padding-right: 1.25rem;
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: 400;
}

.p-mv {
  position: relative;
  z-index: 1;
  padding: 9.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: 7.25rem 0 0;
    height: fit-content;
  }
}

.p-mv__tagline {
  position: relative;
  z-index: 1;
  left: calc(50% - 8.125rem);
  width: 43.375rem;
  aspect-ratio: 700/430;
}
@media screen and (max-width: 767px) {
  .p-mv__tagline {
    width: 82.0512820513vw;
    margin: 0 1rem 0 auto;
    left: initial;
  }
}
.p-mv__tagline img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.p-mv__tagline img:nth-child(2 of img) {
  z-index: 2;
}

.p-mv__line {
  position: absolute;
  top: 0.9302325581%;
  left: calc(var(--x) / 700 * 100%);
  width: 3.1428571429%;
  height: calc(var(--h) / 430 * 100%);
  background: #45a0ef;
  animation-name: hXU2kpbTgN;
  animation-duration: calc(var(--h) / 423 * 0.8s);
  animation-delay: calc(var(--index) * 0.2s);
  animation-fill-mode: both;
  transform-origin: 0 0;
}
@keyframes hXU2kpbTgN {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.p-mv__line:nth-child(1 of .p-mv__line) {
  --index: 0;
  --x: 596;
  --h: 423;
}
.p-mv__line:nth-child(2 of .p-mv__line) {
  --index: 1;
  --x: 414;
  --h: 241;
}
.p-mv__line:nth-child(3 of .p-mv__line) {
  --index: 2;
  --x: 221;
  --h: 322;
}
.p-mv__line:nth-child(4 of .p-mv__line) {
  --index: 3;
  --x: 28;
  --h: 351;
}

.p-mv__img {
  position: relative;
  aspect-ratio: 1480/620;
  overflow: hidden;
  margin: -4.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-mv__img {
    aspect-ratio: 390/368;
    margin-top: -2.1875rem;
  }
}
.p-mv__img img {
  position: absolute;
  inset: auto 0 0 auto;
  width: 106.7567567568%;
  height: auto;
  aspect-ratio: 1630/900;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .p-mv__img img {
    width: 178.4615384615%;
  }
}

.p-news {
  background: #212121;
  color: var(--color-white);
  overflow-x: hidden;
}

.p-news__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    flex-direction: column;
  }
}

.p-news__inner::before {
  content: "";
  width: 35.3125rem;
  height: 13.875rem;
  background: #262626;
  position: absolute;
  bottom: -0.4375rem;
  right: -6.75rem;
  z-index: -1;
}

.p-news__title {
  width: 12.573964497%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    width: 100%;
  }
}

.p-news__title::before {
  content: "";
  width: 8.25rem;
  height: 13.875rem;
  background: #262626;
  position: absolute;
  top: -5.4375rem;
  left: 5.0625rem;
  z-index: -1;
}

.p-news__contents {
  width: 74.4082840237%;
}
@media screen and (max-width: 767px) {
  .p-news__contents {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.p-news__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 2.5rem;
}

.p-news__button {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-news__button {
    margin-top: 2.5rem;
  }
}

.p-newsarchives {
  margin-top: 3.5rem;
  padding-bottom: 6rem;
}

.p-newsarchives__item + .p-newsarchives__item {
  margin-top: 2.5rem;
}

.p-newsitem {
  border-block-end: #505050 1px solid;
  position: relative;
}

.p-newsitem__date {
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: var(--normal);
}

.p-newsitem__title {
  font-size: 1.3125rem;
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  line-height: 1.4761904762;
  margin-top: 1rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-newsitem__title {
    font-size: 0.875rem;
  }
}

.p-newsitem__link {
  position: absolute;
  width: 100%;
  inset: 0;
}

.p-page__inner {
  max-width: 62.5rem;
}

.p-pageheader {
  text-transform: uppercase;
}

.p-pageheader__text {
  margin-top: 1.5rem;
  max-width: 75%;
}
@media screen and (max-width: 767px) {
  .p-pageheader__text {
    font-size: 0.875rem;
    max-width: 100%;
  }
}

.p-pageheader__items {
  margin-top: 3.4375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-pageheader__items {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }
}

.p-pickup {
  margin-top: 4.0625rem;
}

.p-pickup__title {
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: 400;
}

.p-pickup__slider {
  margin-top: 1.25rem;
  width: calc(50% + 50vw);
  overflow: clip;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-pickup .swiper-button-next,
  .p-pickup .swiper-button-prev {
    width: 2.25rem;
  }
}

.p-pickupcard {
  border-radius: 0.25rem;
  position: relative;
  overflow: clip;
}
.p-pickupcard__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-pickupcard__img {
  width: 100%;
  aspect-ratio: 756/425;
  object-fit: cover;
  height: auto;
  border-radius: 0.25rem;
}

.p-pickupcard__contents {
  color: var(--color-white);
  text-shadow: rgba(0, 0, 0, 0.3) 0 0 2px;
  padding: 1.5rem 1.25rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-pickupcard__contents {
    padding: 0.625rem;
  }
}

.p-pickupcard__contents::before {
  content: "";
  width: 1.875rem;
  aspect-ratio: 1;
  height: auto;
  background-image: url("../../images/common/arrow.svg");
  position: absolute;
  top: 50%;
  right: 2.25rem;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-pickupcard__contents::before {
    right: 0.625rem;
  }
}

.p-pickupcard__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: var(--medium);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-pickupcard__title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-pickupcard__title {
    margin-top: 0.5rem;
  }
}

.p-pickupcard__tags {
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-pickupcard__tags {
    margin-top: 0.5rem;
  }
}

.p-pickupcard .p-tags__tag {
  border-color: var(--color-white);
  position: relative;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 2px;
}

.p-recruit__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-recruit__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-recruit__contents {
  padding-right: 5.9347181009%;
}
@media screen and (max-width: 767px) {
  .p-recruit__contents {
    padding-right: 0;
  }
}

.p-recruit__lead {
  font-size: 1.9375rem;
  margin-top: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__lead {
    font-size: 1.5625rem;
    margin-top: 1.5rem;
  }
}

.p-recruit__text {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__text {
    margin-top: 1.5rem;
    font-size: 0.8125rem;
  }
}

.p-recruit__title {
  position: relative;
}

.p-recruit__title::before {
  content: "";
  width: 15.25rem;
  height: 8.375rem;
  background: #f0f0f0;
  position: absolute;
  top: -1.8125rem;
  left: 9.3125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-recruit__title::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit__img {
    width: calc(100% + 1rem);
  }
}

.p-recruit__links {
  margin: 5rem auto 0;
  width: 100%;
  max-width: 790px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__links {
    margin: 3.75rem auto 0;
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* 下記サンプル 構築時は削除してください */
.p-sample {
  padding-block: var(--spacing-xl);
}

.p-sample__link {
  display: inline-block;
  font-size: 1.5rem;
  margin-block-start: var(--spacing-xl);
  text-decoration: underline;
}

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

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

.p-sample__image img {
  object-fit: cover;
}

.p-sample__text-block {
  margin-block: var(--spacing-xl);
}

.p-sample__head {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-sample__head {
    font-size: 32px;
  }
}

.p-sample__text {
  letter-spacing: 0.05em;
  height: 1.5em;
}

.p-sample__title2 {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: inline-block;
  margin-block-end: var(--spacing-md);
}
@media screen and (max-width: 767px) {
  .p-sample__title2 {
    font-size: 24px;
  }
}

.p-sample__divider {
  margin-block: var(--spacing-lg-2);
}

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

.p-section {
  position: relative;
  overflow: clip;
}

main {
  position: relative;
  overflow-x: clip;
}

.p-section__line {
  position: absolute;
  z-index: -1;
  top: calc(var(--y) * 1px);
  left: calc(50% - var(--width) * 1px / 2);
  width: calc(var(--width) * 1px);
  margin: auto;
  background-size: 100% 100%;
  clip-path: inset(0 100% 0 0);
}
.p-section__line.-show {
  clip-path: inset(0);
  transition-property: clip-path;
  transition-duration: calc(var(--width) / 1600 * 1s);
  transition-timing-function: ease;
}
.p-section__line.-line101 {
  --width: 2591;
  top: 488px;
  left: calc(50% - 648px);
  aspect-ratio: var(--width)/314;
  rotate: 53deg;
  background-image: url("../../images/p-section/bg_101.svg");
}
@media screen and (max-width: 767px) {
  .p-section__line.-line101 {
    top: 90px;
    left: calc(50% - 150px);
    width: 600px;
  }
}
.p-section__line.-line301 {
  --width: 6223;
  top: 54px;
  aspect-ratio: var(--width)/174;
  rotate: -31.65deg;
  background-image: url("../../images/p-section/bg_102.svg");
}
@media screen and (max-width: 767px) {
  .p-section__line.-line301 {
    top: 50px;
    left: calc(50% - 1500px);
    width: 3000px;
  }
}
.p-section__line.-line302 {
  --width: 3132;
  top: 160px;
  aspect-ratio: var(--width)/379;
  rotate: 30deg;
  background-image: url("../../images/p-section/bg_103.svg");
}
@media screen and (max-width: 767px) {
  .p-section__line.-line302 {
    top: 80px;
    left: calc(50% - 400px);
    width: 800px;
  }
}
.p-section__line.-line401 {
  --width: 5000;
  top: 120px;
  aspect-ratio: var(--width)/174;
  rotate: -34deg;
  background-image: url("../../images/p-section/bg_102.svg");
}
@media screen and (max-width: 767px) {
  .p-section__line.-line401 {
    top: -150px;
    left: calc(50% - 1000px);
    width: 2000px;
  }
}
.p-section__line.-line501 {
  --width: 2591;
  top: 100px;
  left: calc(50% - 800px);
  aspect-ratio: var(--width)/314;
  rotate: 42deg;
  background-image: url("../../images/p-section/bg_101.svg");
}
@media screen and (max-width: 767px) {
  .p-section__line.-line501 {
    top: -108px;
    left: calc(50% - 417px);
    width: 1000px;
  }
}

.p-separator {
  width: 100%;
  aspect-ratio: 1511/367;
  background-image: url(../../images/common/logo_pattern.svg);
  background-size: 8.75rem;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .p-separator {
    aspect-ratio: 390/178;
    background-size: 4.875rem;
  }
}

.p-service {
  position: relative;
}

.p-service__bar {
  position: absolute;
  width: 128.6375661376vw;
  top: 83%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.p-service__inner {
  max-width: 100rem;
  margin-top: 7.6875rem;
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    margin-top: 6.25rem;
    padding: 2.5rem 0 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-service__inner__sub {
    padding: 2.5rem 0;
  }
}

.p-service__items {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 5rem;
}

.p-serviceitem {
  border-radius: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-serviceitem {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .p-serviceitem__contents {
    display: contents;
  }
}

.p-serviceitem__image {
  max-width: 34.375rem;
}

.p-serviceitem__image img {
  width: 100%;
  aspect-ratio: 550/350;
  object-fit: cover;
  height: auto;
}

.p-serviceitem__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-serviceitem__title {
    font-size: 1.5rem;
    order: -1;
  }
}

.p-serviceitem__title span {
  display: block;
  font-size: 1rem;
}

.p-serviceitem__detail {
  margin-top: 2.5rem;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-serviceitem__detail {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.p-service__lower {
  display: flex;
  margin-top: 3.75rem;
  gap: 9.375rem;
  align-items: flex-end;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .p-service__lower {
    display: block;
    margin-top: 2.5rem;
  }
}

.p-service__text {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    font-size: 0.875rem;
  }
}

.p-service__button {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-service__button {
    margin-top: 2.5rem;
    text-align: right;
  }
}

.p-sharebuttons {
  display: inline-block;
}

.p-sharebuttons__btn {
  display: inline-block;
  padding-right: 0.5rem;
}

.p-sharebuttons__btn img {
  width: 2.625rem;
  aspect-ratio: 1;
  object-fit: cover;
  height: auto;
}

.p-sharebuttons__toast {
  margin-left: 1rem;
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
  background: #111;
  color: #fff;
  border-radius: 0.4rem;
  opacity: 0;
  transform: translateY(4px);
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.p-sharebuttons__toast.is-show {
  opacity: 1;
  transform: translateY(0);
}

.p-single__inner {
  max-width: 70.625rem;
  margin: 0 auto;
}

.p-single__cat {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-single__cat {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

.p-single__title {
  margin-top: 1.5rem;
  font-size: 2.1875rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}

.p-single__tags {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__tags {
    margin-top: 0.5rem;
  }
}

.p-single__thumbnail {
  margin-top: 2.5rem;
  border-radius: 0.25rem;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-single__thumbnail {
    margin-top: 1.25rem;
  }
}

.p-single__download {
  margin-top: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__download {
    margin-top: 2.5rem;
  }
}

.p-single__date {
  padding-right: 1.25rem;
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: 400;
}

.p-single__title + .p-single__contents {
  margin-top: 4rem;
}

.p-single__footer {
  margin-top: 5rem;
  border-bottom: 1px solid #b9bace;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-single__footer {
    display: block;
  }
}

.p-single__share {
  display: inline-block;
  padding-right: 1rem;
}

.p-spmenu__item a {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--title-font-family);
  padding: 0.75rem 0;
  line-height: 1;
  text-transform: uppercase;
}

.p-strength__container {
  display: flex;
  width: calc(50% + 45vw);
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-strength__container {
    flex-direction: column-reverse;
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
}

.p-strength__items {
  flex: 0 0 43%;
  display: flex;
  flex-direction: column;
  gap: 9rem;
  padding: 9.5625rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-strength__items {
    gap: 2.5rem;
    padding: 0;
    flex: 0 0 auto;
  }
}

.p-strength__head {
  font-family: var(--title-font-family);
  color: #8095a8;
  font-size: 2.8125rem;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-strength__head {
    font-size: 2rem;
  }
}
.p-strength__head span {
  color: var(--color-accent);
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 500;
  display: block;
}

.p-strength__detail {
  margin-top: 2.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-strength__detail {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-strength__image {
  flex: 0 0 50%;
  align-self: flex-start;
  position: sticky;
  top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-strength__image {
    position: relative;
    flex: 0 0 auto;
    top: initial;
  }
}

.p-strength__image img {
  width: 100%;
  aspect-ratio: 714/656;
  object-fit: cover;
  height: auto;
  max-width: calc(100vh - 8.1631097561rem);
}

.p-strength__image svg {
  width: 100%;
  aspect-ratio: 714/656;
  height: auto;
  position: absolute;
  inset: 0;
  z-index: -1;
  max-width: calc(100vh - 8.1631097561rem);
}

.p-strength__button {
  margin-top: calc(40 * var(--to-rem));
  text-align: right;
}

.p-sub-business {
  margin: 2.75rem 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-business {
    margin: 2rem 0 3.75rem;
  }
}

.p-sub-business__inner {
  max-width: 92.5rem;
}

.p-sub-business__items {
  background: var(--color-white);
  padding: 8.75rem 1.5rem 8.75rem 4rem;
  margin: 7.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-sub-business__items {
    margin: 5rem 0 0;
    padding: 1.25rem;
    gap: 3rem;
  }
}

.p-sub-lead__title {
  max-width: 33.25rem;
  width: 100%;
  position: sticky;
  top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-lead__title {
    max-width: 25rem;
    position: relative;
    top: unset;
  }
}

.p-sub-lead__text {
  margin-top: 4.8125rem;
  width: 39.375rem;
  position: relative;
  left: 50%;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-lead__text {
    width: 100%;
    left: initial;
    max-width: 25rem;
    padding-bottom: 0;
  }
}

.p-sub-lead__text picture + picture {
  margin-top: 1.8em;
  display: block;
}

.p-sub-member {
  position: relative;
}

.p-sub-member__bg {
  width: 177.625rem;
  position: absolute;
  top: 15.625rem;
  left: 80%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-sub-member__bg {
    width: 87.5rem;
    top: 1.25rem;
  }
}

.p-sub-member__inner {
  padding: 4.5rem 0;
}

.p-sub-member__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2.4375rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-member__items {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-sub-service {
  max-width: 74.5rem;
  margin: 10rem auto 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-service {
    margin: 5rem 0 6.25rem;
  }
}

.p-sub-service__title {
  text-align: left;
}

.p-sub-service__title img {
  max-height: 3.75rem;
  object-fit: contain;
  width: auto;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767px) {
  .p-sub-service__title img {
    max-height: 1.625rem;
  }
}

.p-sub-service__lead {
  font-size: 1.0625rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-service__lead {
    font-size: 0.875rem;
  }
}

.p-taglist {
  background: var(--color-white);
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-taglist {
    padding: 1.25rem;
  }
}

.p-taglist__title {
  font-family: var(--title-font-family);
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-taglist__title {
    font-size: 1.5rem;
  }
}

.p-taglist__title span {
  font-family: var(--base-font-family);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-taglist__title span {
    font-size: 0.875rem;
  }
}

.p-taglist__items ul {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.p-taglist__items li a {
  padding: 0.875rem 1.25rem;
  border-radius: 2.5rem;
  border: 1px solid #d1d1d1;
  position: relative;
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1;
  display: block;
}
.p-taglist__items li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-taglist__items li a {
    font-size: 0.875rem;
    padding: 0.3125rem 0.625rem;
  }
}

.p-taglist__items li.current-cat a {
  color: var(--color-white);
  background: var(--color-accent);
}

.p-tags__tag {
  padding: 0.4375rem 0.75rem;
  border: 1px solid currentColor;
  border-radius: 2rem;
  position: relative;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1;
}
.p-tags__tag:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-tags__tag {
    font-size: 0.625rem;
    padding: 0.3125rem 0.625rem;
  }
}

.p-tags__tag + .p-tags__tag {
  margin-left: 0.25rem;
}

.post-type-archive-case .p-tags__tag,
.single-case .p-tags__tag,
.tax-case-tag .p-tags__tag,
.p-works .p-tags__tag {
  padding: 0.4375rem 0.75rem 0.4375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .post-type-archive-case .p-tags__tag,
  .single-case .p-tags__tag,
  .tax-case-tag .p-tags__tag,
  .p-works .p-tags__tag {
    padding: 0.3125rem 0.625rem 0.3125rem 1.125rem;
  }
}
.post-type-archive-case .p-tags__tag::before,
.single-case .p-tags__tag::before,
.tax-case-tag .p-tags__tag::before,
.p-works .p-tags__tag::before {
  content: "#";
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .post-type-archive-case .p-tags__tag::before,
  .single-case .p-tags__tag::before,
  .tax-case-tag .p-tags__tag::before,
  .p-works .p-tags__tag::before {
    font-size: 0.625rem;
  }
}

.p-topbg {
  position: relative;
  overflow-x: hidden;
}

.p-topbg__bar {
  position: absolute;
  width: 71.4947089947vw;
  top: -8.0026455026vw;
  left: calc(50% + 4.4973544974vw);
}

.p-unit {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-unit {
    margin-top: 3.75rem;
  }
}

.p-unit__title {
  padding-left: 3.3125rem;
  position: relative;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-unit__title {
    font-size: 1.25rem;
    padding-left: 1.875rem;
  }
}

.p-unit__title:before {
  content: "";
  width: 2.0625rem;
  aspect-ratio: 1;
  height: auto;
  background-image: url("../../images/service/marketing_icon.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-unit__title:before {
    width: 1.25rem;
  }
}

.p-unit__group {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-unit__group {
    gap: 2.5rem 1.25rem;
  }
}

.p-unit__itemtitle {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 160%;
  border-bottom: 1px solid currentColor;
  text-align: center;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-unit__itemtitle {
    font-size: 0.875rem;
  }
}

.p-unit__img {
  margin-top: 1.25rem;
  width: 100%;
  aspect-ratio: 370/160;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-unit__img {
    width: 80%;
    max-width: 20.625rem;
    margin-inline: auto;
  }
}

.p-unit__lead {
  margin-top: 1.25rem;
  color: #45a0ef;
  font-size: 1.25rem;
  line-height: 160%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-unit__lead {
    font-size: 1rem;
    margin-top: 0.75rem;
    margin-inline: auto;
    width: fit-content;
    max-width: 80%;
  }
}

.p-unit__list {
  list-style: disc;
  list-style-position: inside;
  margin-top: 1.25rem;
  margin-left: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-unit__list {
    margin-top: 1rem;
    max-width: 80%;
    margin-inline: auto;
  }
}

.p-unit__listtext {
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-unit__listtext {
    font-size: 0.875rem;
  }
}

.p-unit2 {
  width: calc(50% + 50dvw);
  display: grid;
  grid-template-columns: 54% 42%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-unit2 {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-unit2__title {
  display: block;
  font-family: var(--title-font-family);
  font-size: 3.125rem;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-unit2__title {
    font-size: 2rem;
  }
}

.p-unit2__title span {
  display: block;
  font-size: 1.375rem;
  font-family: var(--base-font-family);
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-unit2__title span {
    font-size: 1.125rem;
  }
}

.p-unit2__text {
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 3rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-unit2__text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-unit2__img img {
  width: 100%;
  aspect-ratio: 600/400;
  object-fit: cover;
  height: auto;
}

.p-unit2__button {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-unit2__button {
    margin-top: 1.875rem;
  }
}

.p-value {
  margin-top: 12.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-value {
    margin-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-value__lead {
  margin-top: 2.5rem;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-value__lead {
    font-size: 0.875rem;
  }
}

.p-value__items {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-value__items {
    grid-template-columns: 1fr;
  }
}

.p-value__item {
  background-color: var(--color-white);
  color: var(--color-text);
  position: relative;
  padding: 3.5rem 2.5rem 2.5rem 3.5rem;
  display: flex;
  gap: 1.875rem 14rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-value__item {
    flex-direction: column;
    padding: 1rem;
  }
}

.p-value__contents {
  flex: 1;
}

.p-value__img {
  flex: 0 0 26.375rem;
}
@media screen and (max-width: 767px) {
  .p-value__img {
    flex: 0 0 15.625rem;
    max-width: 15.625rem;
  }
}

.p-value__number {
  position: absolute;
  top: 1.75rem;
  left: 1.5rem;
  font-family: var(--title-font-family);
  font-size: 1.125rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-value__number {
    top: 1rem;
    left: 1rem;
  }
}

.p-value__text .en {
  font-family: var(--title-font-family);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  color: #dadada;
}
@media screen and (max-width: 767px) {
  .p-value__text .en {
    font-size: 2.5rem;
    padding-left: 2.5rem;
  }
}

.jp {
  font-family: var(--base-font-family);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .jp {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    padding-left: 2.5rem;
  }
}

span.p-value__text--small {
  font-size: 3.5rem;
  display: inline;
}
@media screen and (max-width: 767px) {
  span.p-value__text--small {
    font-size: 1.75rem;
  }
}

.p-value__detail {
  margin-top: 3rem;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-value__detail {
    margin-top: 0;
  }
}

/* アニメ用カスタムプロパティ（--xx をアニメ可に） */
@property --xx {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -10%;
}
/* ベース */
.p-value__text {
  position: relative;
  line-height: 1.2;
}

.p-value__text .en {
  /* 好みで色を調整 */
  --base: #dadada; /* 初期グレー */
  --active: #111; /* 通過後の黒 */
  --accent: #2a85ff; /* ラインの青 */
  --w: 3%; /* ラインの太さ（%ほどの帯が走る） */
  color: transparent;
  background-image: linear-gradient(45deg, var(--active) 0 calc(var(--xx) - var(--w)), var(--accent) calc(var(--xx) - var(--w)) calc(var(--xx) + var(--w)), var(--base) calc(var(--xx) + var(--w)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transition: filter 0.3s;
}

/* 青い“走る下線”（疑似要素は使わず本体に背景を重ねる） */
.p-value__text {
  --xx: -10%;
  background: linear-gradient(45deg, transparent 0 calc(var(--xx) - var(--w)), var(--accent) calc(var(--xx) - var(--w)) calc(var(--xx) + var(--w)), transparent calc(var(--xx) + var(--w)) 100%) left bottom/100% 2px no-repeat;
  padding-bottom: 0.3em; /* 下線との余白 */
}

/* 和文は通常色のまま（必要なら薄めに） */
.p-value__text .jp {
  display: block;
  color: #666;
  margin-top: 0.25em;
}

/* アニメーション */
@keyframes scan-sweep {
  from {
    --xx: -10%;
  }
  to {
    --xx: 110%;
  }
}
/* 画面に入ったら一度だけ走る */
.js-scan.is-inview {
  animation: scan-sweep 2.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.js-scan.is-inview .en {
  animation: scan-sweep 2.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/*Value　アコーディオン対応*/
/* PC表示：アコーディオン無効 */
@media screen and (min-width: 768px) {
  .p-value__contents::after {
    display: none;
  }
  .p-value__detail {
    display: block !important;
  }
}
/* スマホ表示：アコーディオン有効 */
@media screen and (max-width: 767px) {
  .p-value__contents {
    position: relative;
    padding-right: 30px;
    cursor: pointer;
  }
  /* 山形矢印（下向き） */
  .p-value__contents::after {
    content: "";
    position: absolute;
    top: 15px; /* テキスト中央に来るよう調整 */
    right: 10px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  /* 開いている時の矢印（180度回転） */
  .p-value__contents.is-active::after {
    transform: rotate(-135deg);
    top: 18px; /* 回転時の微調整 */
  }
  .p-value__detail {
    display: grid;
    grid-template-rows: 0fr; /* ここをアニメーションさせる */
    overflow: hidden;
    /* transition はまとめて記述する */
    transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  /* 開いた時の状態 */
  .p-value__detail.is-open {
    grid-template-rows: 1fr; /* 中身の高さまで広がる */
    opacity: 1;
    padding-top: 15px; /* margin-top の代わりに padding を使う */
  }
  /* 余白は inner に持たせるとガクつかない */
  .p-value__detail-inner {
    min-height: 0;
  }
}
.p-works__title span {
  margin-left: auto;
  margin-right: auto;
}

.p-works__slider {
  margin-top: 2.0625rem;
  min-height: 12.9375rem;
}
@media screen and (max-width: 767px) {
  .p-works__slider {
    margin-top: 2.5rem;
    min-height: 15.75rem;
  }
}

.p-works__items {
  margin-top: 11.75rem;
  display: flex;
  flex-direction: column;
  gap: 3.75rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-works__items {
    margin-top: 5rem;
  }
}

.p-workscard {
  background: var(--color-white);
  padding: 1.25rem 1.25rem 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-workscard {
    padding: 1rem;
  }
}

.p-workscard__link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-workscard__img {
  width: 100%;
  aspect-ratio: 460/259;
  object-fit: cover;
  height: auto;
}

.p-workscard__cat {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-workscard__cat {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

.p-workscard__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: var(--medium);
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-workscard__title {
    font-size: 1.125rem;
  }
}

.p-workscard__tags {
  margin-top: 0.875rem;
}

.p-worksitem {
  display: flex;
  align-items: center;
  gap: 1rem 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-worksitem {
    flex-direction: column-reverse;
  }
}

.p-worksitem__text {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-worksitem__text {
    margin-top: 0.5rem;
  }
}

.p-worksitem__button {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-worksitem__button {
    margin-top: 1.5rem;
  }
}

.p-worksitem__img img {
  width: 43.0625rem;
  aspect-ratio: 689/390;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-worksitem__img img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-worksitem__contents {
    margin: 0 0.5rem;
  }
}

.p-worksslider {
  position: relative;
  overflow-x: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  width: 4rem;
  aspect-ratio: 1;
  height: auto;
  background-color: #000;
  border-radius: 50%;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 3rem;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  mask-image: url(../../images/common/arrow.svg);
  background-color: #fff;
  width: 1.875rem;
  aspect-ratio: 1;
  height: auto;
  mask-size: contain;
  mask-position: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .swiper-button-next:after,
  .swiper-button-prev:after {
    width: 1.5rem;
  }
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  transform: scale(1.2);
}

.swiper-button-next:after {
  transform: rotate(180deg);
}

.swiper-button-next:hover:after {
  transform: scale(1.2) rotate(180deg);
}

.p-memberitem__image img {
  width: 100%;
  aspect-ratio: 632/354;
  object-fit: cover;
  height: auto;
}

.p-memberitem__title {
  font-size: 0.9375rem;
  font-weight: var(--medium);
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
  color: #6a6a6a;
}

.p-memberitem__name {
  font-size: 1.8125rem;
  font-weight: var(--medium);
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-memberitem__name {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.p-memberitem__detail {
  font-size: 1rem;
  font-weight: var(--normal);
  margin-top: 1.625rem;
  letter-spacing: 0.1em;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .p-memberitem__detail {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}