@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Noto+Sans+JP:wght@100..900&display=swap");
/**
* Foundation
* ========================== */

html,
body {
  width: 100%;
  font-size: 16px;
  text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  background-color: #FFFFFF;
  box-sizing: border-box;
  color: #1D1E22;
}

body.no-scroll {
  overflow: hidden;
}
body.no-scroll main, body.no-scroll footer {
  pointer-events: none;
  user-select: none;
}

a {
  display: block;
  text-decoration: none;
  color: #1D1E22;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

button {
  cursor: pointer;
  color: #1D1E22;
  background-color: transparent;
  border: none;
  text-align: left;
}

address {
  font-style: normal;
}

.pc-none {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: inherit !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
Object
* ========================== */
/* Component ------------ */
/*———————————–———————————–
ボタン・リンク関連
———————————–———————————–*/
.c-primary-button {
  padding: 16px 32px;
  background-color: #FFFFFF;
  border: 1px solid #1D1E22;
  color: #1D1E22;
  font-size: 14px;
  font-weight: bold;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  box-sizing: border-box;
  transition: 200ms ease-in;
}
.c-primary-button p {
  padding-bottom: 2px;
}
.c-primary-button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #1D1E22;
  width: 100%;
  height: 100%;
  transform-origin: left top;
  z-index: -1;
  transform: scaleX(0);
  transition: 200ms ease-in;
}
.c-primary-button::after {
  content: "";
  background: #1D1E22;
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  width: 6px;
  height: 10.75px;
  object-fit: contain;
}
@media (hover: hover) {
  .c-primary-button:hover {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
  }
  .c-primary-button:hover::before {
    transform: scaleX(1);
  }
  .c-primary-button:hover::after {
    background: #FFFFFF;
    transition: 200ms ease-in;
  }
}

.c-primary-button--black {
  padding: 16px 32px;
  background-color: #1D1E22;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.c-primary-button--black::before {
  background-color: #FFFFFF;
}
.c-primary-button--black::after {
  background: #FFFFFF;
}
@media (hover: hover) {
  .c-primary-button--black:hover {
    border: 1px solid #1D1E22;
    color: #1D1E22;
  }
  .c-primary-button--black:hover::after {
    background: #1D1E22;
  }
}

.c-primary-button--gray {
  background-color: #7B8B8D;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.c-primary-button--gray::before {
  background-color: #FFFFFF;
}
.c-primary-button--gray::after {
  background: #FFFFFF;
}
@media (hover: hover) {
  .c-primary-button--gray:hover {
    border: 1px solid #1D1E22;
    color: #1D1E22;
  }
  .c-primary-button--gray:hover::after {
    background: #1D1E22;
  }
}

.c-primary-button--contact {
  flex-direction: row-reverse;
}
.c-primary-button--contact::after {
  mask: url(../public/img/icon/mail-icon.svg) center/contain no-repeat;
  width: 12px;
  height: 9.71px;
  transition: 200ms ease-in;
}

.c-primary-button--estimate {
  flex-direction: row-reverse;
}
.c-primary-button--estimate::after {
  mask: url(../public/img/icon/estimate-icon.svg) center/contain no-repeat;
  width: 12px;
  height: 15px;
  transition: 200ms ease-in;
}

.c-category-button {
  padding: 8px;
  background-color: #1D1E22;
  color: #FFFFFF;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid #1D1E22;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-sizing: border-box;
  font-weight: 500;
  width: fit-content;
  transition: 120ms ease-in;
}
@media screen and (max-width: 767px) {
  .c-category-button {
    font-size: 10px;
  }
}
.c-category-button::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  transform-origin: left top;
  transform: scaleX(0);
  transition: 120ms ease-in;
  z-index: -1;
}
@media (hover: hover) {
  .c-category-button:hover {
    color: #1D1E22;
  }
  .c-category-button:hover::after {
    transform: scaleX(1);
  }
}

.c-tag-button {
  background-color: #FFFFFF;
  border: 1px solid #98A7AA;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  color: #98A7AA;
  padding: 8px 12px;
  position: relative;
  overflow: hidden;
}
.c-tag-button::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #98A7AA;
  width: 100%;
  height: 100%;
  transform-origin: left top;
  z-index: -1;
  transform: scaleX(0);
  transition: 150ms ease-in;
}
@media (hover: hover) {
  .c-tag-button:hover {
    color: #FFFFFF;
  }
  .c-tag-button:hover::after {
    transform: scaleX(1);
  }
}

.c-side-categories__area {
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
}
.c-side-categories__area .c-primary-button {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-side-categories__area .c-primary-button {
    display: none;
  }
}
.c-side-categories__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1023px) {
  .c-side-categories__list {
    flex-direction: row;
    gap: 4px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-shrink: 1;
    transition: transform 0.3s ease;
    overflow-x: auto;
    scrollbar-width: none;
  }
}
.c-side-categories__item.is-current .c-side-categories__link {
  background-color: #FFFFFF;
  background-size: 100% 1px;
  color: #1D1E22;
}
.c-side-categories__item.is-current .c-side-categories__link::after, .c-side-categories__item.is-current .c-side-categories__link::before {
  background: #1D1E22;
}
.c-side-categories__link {
  width: 192px;
  padding: 14px 0 14px 22px;
  color: #B8C4C6;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
  transition: 120ms ease-in;
  background-image: linear-gradient(#1D1E22, #1D1E22);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .c-side-categories__link {
    width: fit-content;
    padding: 4px 24px 5px 8px;
    background-color: #EEF0F0;
    color: #B8C4C6;
    font-size: 12px;
    height: 100%;
  }
}
.c-side-categories__link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7.5px;
  width: 6px;
  height: 1px;
  border-radius: 1px;
  background-color: #B8C4C6;
  transition: 120ms ease-in;
}
@media screen and (max-width: 1023px) {
  .c-side-categories__link::before {
    content: none;
  }
}
.c-side-categories__link::after {
  content: "";
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  width: 6px;
  height: 10.75px;
  background: #B8C4C6;
  position: absolute;
  right: 4.63px;
  top: 50%;
  transform: translateY(-50%);
  transition: 120ms ease-in;
}
@media screen and (max-width: 1023px) {
  .c-side-categories__link::after {
    content: "";
    right: 9.42px;
    height: 100%;
    mask: url(../public/img/icon/arrow-icon-bottom.svg) center/contain no-repeat;
    width: 7.17px;
    height: 4px;
  }
}
@media (hover: hover) {
  .c-side-categories__link:hover {
    color: #1D1E22;
    background-size: 100% 1px;
  }
  .c-side-categories__link:hover::before {
    background-color: #1D1E22;
  }
  .c-side-categories__link:hover::after {
    background: #1D1E22;
  }
}
@media screen and (hover: hover) and (max-width: 1023px) {
  .c-side-categories__link:hover {
    background-color: #FFFFFF;
  }
}
.c-side-categories__link.c-side-categories__main {
  padding-left: 0;
}
@media screen and (max-width: 1023px) {
  .c-side-categories__link.c-side-categories__main {
    padding-left: 8px;
  }
}
.c-side-categories__link.c-side-categories__main::before {
  content: none;
}
@media screen and (max-width: 1023px) {
  .c-side-categories--l {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: clamp(8px, -21.0076335878px + 7.7353689567vw, 38.4px);
    padding-right: clamp(8px, -21.0076335878px + 7.7353689567vw, 38.4px);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
  }
}
.c-side-categories--l__inner {
  display: flex;
  flex-direction: row;
  gap: 0;
  position: relative;
  overflow: visible;
  width: 100%;
}
.c-side-categories--l .c-side-categories__list {
  justify-content: start;
}
.c-side-categories--l .swiper-wrapper {
  width: fit-content;
}
.c-side-categories--l .swiper-slide {
  width: auto;
}
.c-side-categories__prev-button, .c-side-categories__next-button {
  display: none;
  padding: 0;
  overflow: hidden;
  outline: none;
  border: none;
}
@media screen and (max-width: 1023px) {
  .c-side-categories__prev-button, .c-side-categories__next-button {
    width: 0;
    height: 23px;
    overflow: hidden;
    background-color: #7B8B8D;
    opacity: 0;
    visibility: hidden;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 300ms ease-in;
    position: absolute;
    z-index: 5;
  }
}
.c-side-categories__prev-button {
  border-right: 0 solid #FFFFFF;
  left: 8px;
  top: 0;
}
.c-side-categories__prev-button::after {
  content: url(../public/img/icon/arrow-icon-white-left.svg);
}
.c-side-categories__next-button {
  border-left: 0 solid #FFFFFF;
  right: 8px;
  top: 0;
}
.c-side-categories__next-button::after {
  content: url(../public/img/icon/arrow-icon-white-right.svg);
}

.c-anchor-link {
  color: #32A2C1;
  border-bottom: 1px solid #32A2C1;
  width: fit-content;
  display: inline;
}

/*———————————–———————————–
タイトル関連
———————————–———————————–*/
.c-section-title {
  font-size: 54px;
  color: #1D1E22;
  font-weight: 900;
  display: flex;
  gap: 16px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    flex-direction: column;
    gap: 8px;
    font-size: 32px;
    position: relative;
  }
}
.c-section-title > span {
  font-size: 18px;
  font-weight: bold;
  color: #9FB0B5;
  display: flex;
  gap: 8px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-section-title > span {
    font-size: 14px;
  }
}
.c-section-title:not(span) {
  text-transform: uppercase;
}

.c-section-title--noise {
  font-size: 54px;
  color: #1D1E22;
  font-weight: 900;
  display: flex;
  gap: 16px;
  align-items: end;
  padding-top: 98px;
  padding-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .c-section-title--noise {
    margin-left: 173px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title--noise {
    flex-direction: column;
    gap: 8px;
    padding-top: 48px;
    padding-bottom: 8px;
    font-size: 32px;
    width: fit-content;
    margin-left: 158px;
  }
}
@media screen and (max-width: 440px) {
  .c-section-title--noise {
    margin-left: auto;
    margin-right: 0;
  }
}
.c-section-title--noise::before {
  content: "";
  background: linear-gradient(rgba(225, 230, 234, 0.85), rgba(225, 230, 234, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  mask: url(../public/img/decoration/section-title-decoration-left.svg) right top/cover no-repeat;
  width: max(600px, 30vw);
  position: absolute;
  right: calc(100% + 2px);
  bottom: 0;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 440px) {
  .c-section-title--noise::before {
    right: calc(100% + 16px);
  }
}
.c-section-title--noise > span {
  font-size: 18px;
  font-weight: bold;
  color: #9FB0B5;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-section-title--noise > span {
    font-size: 14px;
  }
}
.c-section-title--noise span.c-section-title__slash {
  color: #D3E0E0;
  margin-right: 8px;
}

.c-section-title--left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 48px;
  width: 192px;
  font-weight: 900;
  text-align: right;
  padding-top: 104px;
  padding-bottom: 8px;
  position: relative;
  align-self: flex-start;
}
@media screen and (max-width: 1439px) {
  .c-section-title--left {
    text-align: left;
    margin-left: 173px;
    flex-direction: row;
    font-size: 42px;
    align-items: end;
    padding-top: 50px;
    width: fit-content;
  }
  .c-section-title--left br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title--left {
    gap: 4px;
    box-sizing: border-box;
    padding-top: 36px;
    font-size: 32px;
    margin-left: 192px;
    flex-direction: column;
  }
}
@media screen and (max-width: 440px) {
  .c-section-title--left {
    margin-right: 0;
    margin-left: auto;
  }
}
.c-section-title--left::before {
  content: "";
  background: #1D1E22;
  mask: url(../public/img/decoration/section-title-decoration-left.svg) right top/cover no-repeat;
  width: max(600px, 30vw);
  height: 160px;
  position: absolute;
  top: 0;
  right: calc(100% + 2px);
}
@media screen and (max-width: 1439px) {
  .c-section-title--left::before {
    height: 100%;
    right: inherit;
    top: inherit;
    bottom: 0;
    right: calc(100% + 16px);
  }
}
.c-section-title--left span {
  font-size: 14px;
  line-height: 150%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-section-title--left span {
    font-size: 12px;
  }
}

.c-section-title--right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 48px;
  width: fit-content;
  font-weight: 900;
  text-align: right;
  align-self: flex-end;
  padding-top: 96px;
  padding-bottom: 8px;
  position: relative;
}
.c-section-title--right span:not(.c-section-title--right-pattern) {
  font-size: 14px;
  line-height: 150%;
  font-weight: bold;
}
.c-section-title--right:has(.c-section-title--right-pattern) {
  display: block;
}
@media screen and (max-width: 1439px) {
  .c-section-title--right:has(.c-section-title--right-pattern) {
    display: flex;
  }
}
.c-section-title--right:has(.c-section-title--right-pattern) span:not(.c-section-title--right-pattern) {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .c-section-title--right:has(.c-section-title--right-pattern) span:not(.c-section-title--right-pattern) {
    margin-top: 0;
  }
}
@media screen and (max-width: 1439px) {
  .c-section-title--right {
    text-align: left;
    margin-right: auto;
    margin-left: 173px;
    flex-direction: row;
    font-size: 42px;
    align-items: end;
    padding-top: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .c-section-title--right .c-section-title--right-pattern {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title--right {
    gap: 4px;
    align-self: end;
    padding-top: 36px;
    margin-left: 192px;
    font-size: 32px;
    flex-direction: column;
  }
  .c-section-title--right span:not(.c-section-title--right-pattern) {
    font-size: 12px;
  }
  .c-section-title--right br {
    display: none;
  }
}
@media screen and (max-width: 440px) {
  .c-section-title--right {
    margin-right: 0;
    margin-left: auto;
  }
}
.c-section-title--right::before {
  content: "";
  background: #1D1E22;
  mask: url(../public/img/decoration/section-title-decoration-left-inversion.svg) left top/cover no-repeat;
  width: max(600px, 30vw);
  height: 160px;
  position: absolute;
  top: 0;
  left: calc(100% + 12px);
}
@media screen and (max-width: 1439px) {
  .c-section-title--right::before {
    height: 100%;
    right: calc(100% + 16px);
    left: inherit;
    mask: url(../public/img/decoration/section-title-decoration-left.svg) right top/cover no-repeat;
  }
}

.c-section-title--center {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-section-title--center {
    gap: 4px;
    padding: 8px 0;
    margin-left: 192px;
    width: fit-content;
    position: relative;
    align-items: end;
  }
}
@media screen and (max-width: 440px) {
  .c-section-title--center {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title--center::before {
    content: "";
    background: #1D1E22;
    width: max(600px, 30vw);
    height: 100%;
    position: absolute;
    top: 0;
    right: calc(100% + 16px);
    mask: url(../public/img/decoration/section-title-decoration-left.svg) right top/cover no-repeat;
  }
}
.c-section-title--center span.c-section-title__en {
  text-align: center;
  font-size: 48px;
  height: 136px;
  padding: 56px 40px 32px;
  box-sizing: border-box;
  background-color: #1D1E22;
  color: #FFFFFF;
  position: relative;
  font-weight: 900;
}
@media screen and (max-width: 1439px) {
  .c-section-title--center span.c-section-title__en {
    padding: 40px 40px 20px 40px;
    height: 100%;
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title--center span.c-section-title__en {
    padding: 0;
    background-color: transparent;
    color: #1D1E22;
    font-size: 32px;
    padding-top: 28px;
  }
}
.c-section-title--center span.c-section-title__en::before, .c-section-title--center span.c-section-title__en::after {
  content: "";
  background: #1D1E22;
  width: 96px;
  height: inherit;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1439px) {
  .c-section-title--center span.c-section-title__en::before, .c-section-title--center span.c-section-title__en::after {
    width: 67px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title--center span.c-section-title__en::before, .c-section-title--center span.c-section-title__en::after {
    display: none;
  }
}
.c-section-title--center span.c-section-title__en::before {
  mask: url(../public/img/decoration/section-title-decoration-left-inversion.svg) left top/cover no-repeat;
  mask-composite: exclude;
  left: -94px;
}
@media screen and (max-width: 1439px) {
  .c-section-title--center span.c-section-title__en::before {
    left: -66px;
  }
}
.c-section-title--center span.c-section-title__en::after {
  mask: url(../public/img/decoration/section-title-decoration-left.svg) right top/cover no-repeat;
  right: -94px;
}
@media screen and (max-width: 1439px) {
  .c-section-title--center span.c-section-title__en::after {
    right: -66px;
  }
}
.c-section-title--center span.c-section-title__ja {
  font-size: 14px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-section-title--center span.c-section-title__ja {
    font-size: 12px;
  }
}

.c-section-title--growing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 56px;
  padding-top: 80px;
}
@media screen and (max-width: 1023px) {
  .c-section-title--growing {
    padding-bottom: 32px;
    padding-top: 32px;
  }
}
.c-section-title--growing .c-section-title__en {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 900;
  padding: 8px 8px 12px 0;
  position: relative;
  background: linear-gradient(rgba(174, 186, 194, 0.85), rgba(174, 186, 194, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  width: fit-content;
  height: 56px;
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .c-section-title--growing .c-section-title__en {
    height: 46px;
    font-size: 26px;
  }
}
@media screen and (max-width: 440px) {
  .c-section-title--growing .c-section-title__en {
    padding-left: 20px;
  }
}
.c-section-title--growing .c-section-title__en::before {
  content: "";
  width: 65px;
  height: inherit;
  position: absolute;
  left: -64px;
  top: 0;
  background: linear-gradient(rgba(174, 186, 194, 0.85), rgba(174, 186, 194, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
}
.c-section-title--growing .c-section-title__en::after {
  content: "";
  width: 46px;
  height: inherit;
  background: linear-gradient(rgba(174, 186, 194, 0.85), rgba(174, 186, 194, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  mask: url(../public/img/decoration/section-title-decoration-left.svg) right top/cover no-repeat;
  position: absolute;
  right: -45px;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .c-section-title--growing .c-section-title__en::after {
    width: 40px;
    right: -39px;
    mask: url(../public/img/decoration/section-title-decoration-left--sp.svg) right top/cover no-repeat;
  }
}
.c-section-title--growing .c-section-title__ja {
  font-size: 14px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-section-title--growing .c-section-title__ja {
    font-size: 12px;
    padding-left: 20px;
  }
}

.c-subpage-title {
  width: 100%;
}
.c-subpage-title__heading {
  background-color: #1D1E22;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-subpage-title__heading {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.c-subpage-title .c-section-title {
  color: #FFFFFF;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .c-subpage-title .c-section-title {
    flex-direction: row;
    font-size: 32px;
  }
}
.c-subpage-title .c-section-title > span {
  font-size: 20px;
  color: #7B8B8D;
}
@media screen and (max-width: 767px) {
  .c-subpage-title .c-section-title > span {
    font-size: 14px;
  }
}
.c-subpage-title .c-section-title > span::before {
  color: #7B8B8D;
}
@media screen and (max-width: 767px) {
  .c-subpage-title--column .c-section-title {
    flex-direction: column;
    align-items: center;
  }
}

.c-subpage-title--small .c-subpage-title__heading {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-subpage-title--small .c-subpage-title__heading {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.c-subpage-title--small .c-section-title {
  font-size: 32px;
  width: min(90%, 1216px);
  margin-left: auto;
  margin-right: auto;
}
.c-subpage-title--small .c-section-title > span {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-subpage-title--small .c-section-title {
    font-size: 24px;
  }
  .c-subpage-title--small .c-section-title > span {
    font-size: 12px;
  }
}
.c-subpage-title--small:has(+ .p-single) .c-section-title {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-subpage-title--small:has(+ .p-single) .c-section-title {
    width: min(90%, 1216px);
  }
}

.error404 .c-subpage-title .c-section-title {
  text-transform: none;
}

.c-fukidashi-title {
  padding: 16px 0 20px;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(rgba(227, 233, 234, 0.9), rgba(227, 233, 234, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #3D494C;
  position: relative;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .c-fukidashi-title {
    font-size: 12px;
    padding: 8px 0 12px;
  }
}
.c-fukidashi-title::after {
  content: "";
  width: 20px;
  height: 8px;
  background: linear-gradient(rgba(227, 233, 234, 0.9), rgba(227, 233, 234, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  mask: url(../public/img/icon/fukidashi-polygon.svg) right top/100% 100% no-repeat;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.c-border-title {
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 150%;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-border-title {
    font-size: 16px;
  }
}
.c-border-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: #1D1E22;
  border-radius: 2px;
}

/*———————————–———————————–
リスト関連
———————————–———————————–*/
.c-point-list li {
  padding: 0 0 8px 22px;
  position: relative;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-point-list li {
    padding-left: 18px;
    font-size: 14px;
    padding-bottom: 4px;
  }
}
.c-point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #B8C4C6;
}

.c-check-list {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .c-check-list {
    padding: 48px 20px 40px;
  }
}
.c-check-list::after {
  content: "";
  background: linear-gradient(rgba(225, 230, 234, 0.85), rgba(225, 230, 234, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  width: 48.61px;
  height: 92.84px;
  mask: url(../public/img/icon/light-bulb-icon.svg) center/contain no-repeat;
  position: absolute;
  right: 30px;
  top: -42.35px;
  rotate: 30deg;
}
@media screen and (max-width: 767px) {
  .c-check-list::after {
    width: 40px;
    height: 76.4px;
    top: -43.8px;
  }
}
.c-check-list li {
  padding: 0 0 8px 32px;
  position: relative;
  font-size: 16px;
  line-height: 150%;
}
.c-check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #B8C4C6;
  mask: url(../public/img/icon/ul-check-icon-outer.svg) center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 2px;
}
@media screen and (max-width: 767px) {
  .c-check-list li {
    font-size: 14px;
    padding-left: 28px;
    padding-bottom: 4px;
  }
}

.c-accordion-list {
  padding: 32px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #FFFFFF;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-accordion-list {
    padding: 20px 16px 24px 16px;
    gap: 12px;
  }
}
.c-accordion-list__item {
  display: flex;
  flex-direction: column;
}
.c-accordion-list__item:not(:last-child) {
  border-bottom: 2px solid #F8F8F8;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item:not(:last-child) {
    padding-bottom: 12px;
  }
}
.c-accordion-list__item.is-open .c-accordion-list__item-arrow::after {
  mask: url(../public/img/icon/arrow-icon-top.svg) center/contain no-repeat;
}
.c-accordion-list__item.is-open .c-accordion-list__item-body {
  height: auto;
  max-height: 3000px;
  overflow: visible;
  padding-top: 12px;
}
.c-accordion-list__item-button {
  border: none;
  width: 100%;
  text-align: left;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (hover: hover) {
  .c-accordion-list__item-button:hover .c-accordion-list__item-arrow {
    background-color: #1D1E22;
  }
  .c-accordion-list__item-button:hover .c-accordion-list__item-arrow::after {
    background: #FFFFFF;
  }
}
.c-accordion-list__item-arrow {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: 150ms ease-in;
  align-self: center;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item-arrow {
    width: 28px;
    height: 28px;
  }
}
.c-accordion-list__item-arrow::after {
  content: "";
  width: 14.33px;
  height: 8px;
  background: #D3E0E0;
  mask: url(../public/img/icon/arrow-icon-bottom.svg) center/contain no-repeat;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item-arrow::after {
    width: 10.75px;
    height: 6px;
  }
}
.c-accordion-list__item-question {
  padding: 16px 4px 16px 59px;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item-question {
    padding: 8px 4px 8px 40px;
    font-size: 14px;
  }
}
.c-accordion-list__item-question::before {
  content: "Q";
  color: #FFFFFF;
  width: 35px;
  aspect-ratio: 1/1;
  background-color: #1D1E22;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item-question::before {
    width: 28px;
    font-size: 16px;
  }
}
.c-accordion-list__item-job {
  padding: 8px 4px 10px 78px;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
  line-height: 150%;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item-job {
    padding: 8px 4px 8px 44px;
    font-size: 14px;
  }
}
.c-accordion-list__item-job::before {
  content: "";
  background-image: url(../public/img/recruit/icon-all.svg);
  background-size: contain;
  width: 58px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item-job::before {
    width: 32px;
    height: 28px;
  }
}
.c-accordion-list__item-body {
  padding: 0 48px 0 80px;
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item-body {
    padding-left: 0;
    padding-right: 0;
  }
}
.c-accordion-list__item-answer {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-accordion-list__item-answer {
    padding: 16px;
    gap: 16px;
    font-size: 14px;
  }
}
.c-accordion-list__item-job__detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.c-accordion-list__item--all .c-job-table__data p:not(:last-child) {
  margin-bottom: 0;
}
.c-accordion-list__item--all .c-job-table__row:first-of-type .c-job-table__data p:first-child {
  margin-bottom: 8px;
}
.c-accordion-list__item--all .c-job-table__row:last-of-type .c-job-table__data p:first-child {
  margin-bottom: 16px;
}
.c-accordion-list__item--fe .c-accordion-list__item-job::before {
  background-image: url(../public/img/recruit/icon-fe.svg);
}
.c-accordion-list__item--be .c-accordion-list__item-job::before {
  background-image: url(../public/img/recruit/icon-be.svg);
}
.c-accordion-list__item--se .c-accordion-list__item-job::before {
  background-image: url(../public/img/recruit/icon-se.svg);
}
.c-accordion-list__item--designer .c-accordion-list__item-job::before {
  background-image: url(../public/img/recruit/icon-designer.svg);
}
.c-accordion-list__item--marketer .c-accordion-list__item-job::before {
  background-image: url(../public/img/recruit/icon-marketer.svg);
}
.c-accordion-list__item--director .c-accordion-list__item-job::before {
  background-image: url(../public/img/recruit/icon-director.svg);
}
.c-accordion-list__item--director .c-primary-button {
  display: none;
}

/*———————————–———————————–
アイテム・カード関連
———————————–———————————–*/
.c-post-card {
  position: relative;
}
.c-post-card__article {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-post-card__article {
    gap: 16px;
  }
}
@media (hover: hover) {
  .c-post-card__article:has(.c-post-card__link:hover) .c-post-card__title {
    background-size: 100% 1px;
  }
  .c-post-card__article:has(.c-post-card__link:hover) .c-post-card__title-multi {
    background-size: 100% 1px;
  }
  .c-post-card__article:has(.c-post-card__link:hover) .c-post-card__img img {
    scale: 115%;
  }
}
.c-post-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
}
.c-post-card__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 120ms ease-in;
}
.c-post-card__img--long {
  aspect-ratio: 2/3;
}
.c-post-card__detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-post-card__detail--blog {
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-post-card__detail--blog {
    gap: 8px;
  }
}
.c-post-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-post-card__date {
  color: #98A7AA;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .c-post-card__date--work {
    display: none;
  }
}
.c-post-card__title {
  font-weight: bold;
  line-height: 150%;
  width: fit-content;
  background-image: linear-gradient(#1D1E22, #1D1E22);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: 120ms ease-in;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.c-post-card__title:has(.c-post-card__title-multi) {
  background: none;
}
@media screen and (max-width: 767px) {
  .c-post-card__title {
    font-size: 12px;
  }
}
.c-post-card__title-multi {
  display: inline;
  background-image: linear-gradient(#1D1E22, #1D1E22);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: 120ms ease-in;
}
.c-post-card__client {
  font-size: 14px;
  line-height: 150%;
  color: #B8C4C6;
}
@media screen and (max-width: 767px) {
  .c-post-card__client {
    font-size: 10px;
  }
}
.c-post-card__link {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.c-post-card__tag-area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-post-card .c-tag-button {
  z-index: 1;
}

.c-post-news {
  width: 100%;
  position: relative;
}
.c-post-news__inner {
  width: 100%;
  position: relative;
}
.c-post-news__link {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
@media (hover: hover) {
  .c-post-news__link:hover + .c-post-news__article {
    border-color: #D3E0E0;
  }
  .c-post-news__link:hover + .c-post-news__article::after {
    background: #FFFFFF;
  }
  .c-post-news__link:hover + .c-post-news__article::before {
    background-color: #1D1E22;
  }
}
.c-post-news__article {
  display: flex;
  align-items: center;
  gap: min(2vw, 24px);
  padding: 24px 40px 24px 0;
  border-bottom: 2px solid #EEF0F0;
  box-sizing: border-box;
  position: relative;
  transition: 150ms ease-in;
}
@media screen and (max-width: 767px) {
  .c-post-news__article {
    flex-direction: column;
    align-items: start;
    gap: 8px;
    padding: 12px 40px 24px 0;
  }
}
.c-post-news__article::after {
  content: "";
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  position: absolute;
  background: #D3E0E0;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 8px;
  height: 14.33px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 150ms ease-in;
}
.c-post-news__article::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 150ms ease-in;
}
.c-post-news__info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-post-news__info .c-category-button {
  width: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-post-news__info .c-category-button {
    width: 58px;
    padding: 4px;
    gap: 8px;
  }
}
.c-post-news__date {
  font-size: 14px;
  font-weight: 500;
  color: #B8C4C6;
}
@media screen and (max-width: 767px) {
  .c-post-news__date {
    font-size: 12px;
  }
}
.c-post-news__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-post-news__title {
    font-size: 14px;
  }
}

.c-feature-group {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .c-feature-group:last-child:nth-child(odd) {
    grid-column: 1/3;
    width: 50%;
    justify-self: center;
  }
}
@media screen and (max-width: 767px) {
  .c-feature-group:last-child:nth-child(odd) {
    grid-column: 1/2;
    width: 100%;
  }
}
.c-feature-group__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .c-feature-group__top {
    flex-direction: column-reverse;
  }
}
.c-feature-group__img {
  width: 100%;
  margin: 0 auto;
  border-radius: 4px;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.c-feature-group__text {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3; /* B内のdivが3つ */
  gap: 16px;
}
.c-feature-group__text p {
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-feature-group__text p {
    font-size: 14px;
  }
}
.c-feature-group__list {
  padding: 20px 32px;
  border: 4px solid #FFFFFF;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .c-feature-group__list {
    border-width: 2px;
    padding: 20px;
  }
}
.c-feature-group__list li {
  line-height: 150%;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  padding-bottom: 4px;
}
.c-feature-group__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #B8C4C6;
}

.c-leaf-block {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  border-radius: 40px 8px 40px 8px;
  width: 100%;
  overflow: hidden;
  display: flex;
}
.c-leaf-block__inner {
  padding: 0 40px 40px 40px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-leaf-block__inner {
    padding: 0 12px 24px 12px;
  }
}
.c-leaf-block__sub-title {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .c-leaf-block__sub-title {
    margin-bottom: 24px;
    padding-left: 8px;
  }
}
.c-leaf-block__sub-title h3 {
  padding: 32px 16px 20px 0;
  background: linear-gradient(rgba(174, 186, 194, 0.85), rgba(174, 186, 194, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  height: 88px;
  box-sizing: border-box;
  position: relative;
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-leaf-block__sub-title h3 {
    padding: 24px 16px 20px 12px;
    height: 70px;
    font-size: 26px;
  }
}
.c-leaf-block__sub-title h3::before {
  content: "";
  width: 65px;
  height: inherit;
  position: absolute;
  left: -64px;
  top: 0;
  background: linear-gradient(rgba(174, 186, 194, 0.85), rgba(174, 186, 194, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
}
.c-leaf-block__sub-title h3::after {
  content: "";
  width: 69px;
  height: inherit;
  background: linear-gradient(rgba(174, 186, 194, 0.85), rgba(174, 186, 194, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  mask: url(../public/img/decoration/section-title-decoration-left.svg) right top/cover no-repeat;
  position: absolute;
  right: -68px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-leaf-block__sub-title h3::after {
    mask: url(../public/img/decoration/section-title-decoration-left--sp.svg) right top/cover no-repeat;
    width: 54px;
    right: -53px;
  }
}
.c-leaf-block__sub-title span {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-leaf-block__sub-title span {
    font-size: 12px;
  }
}

/*———————————–———————————–
テーブル（表）関連
———————————–———————————–*/
.c-tool-table {
  border-collapse: separate;
  border-spacing: 0 8px;
}
@media screen and (max-width: 767px) {
  .c-tool-table {
    border-spacing: 0 4px;
  }
}
.c-tool-table__row {
  background-color: #FFFFFF;
  height: 64px;
}
.c-tool-table__header {
  width: 168px;
  vertical-align: middle;
  background: linear-gradient(rgba(174, 186, 194, 0.85), rgba(174, 186, 194, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  border: 2px solid #FFFFFF;
  border-radius: 4px 0 0 4px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 150%;
  font-size: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-tool-table__header {
    font-size: 14px;
  }
}
@media screen and (max-width: 440px) {
  .c-tool-table__header {
    width: 120px;
  }
}
.c-tool-table__data {
  border-radius: 0 4px 4px 0;
  vertical-align: middle;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-tool-table__data {
    font-size: 14px;
  }
}
.c-tool-table__data ul {
  display: flex;
  padding: 0 12px;
  box-sizing: border-box;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-tool-table__data ul {
    padding: 16px 8px;
  }
}
.c-tool-table__data li {
  line-height: 150%;
  width: fit-content;
  display: inline;
}
.c-tool-table__data li:has(+ li)::after {
  content: "/";
  padding: 0 0.2em;
}

.c-job-table {
  border-collapse: separate;
  border-spacing: 8px 12px;
  font-size: 16px;
  line-height: 150%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-job-table {
    border-spacing: 0 12px;
    font-size: 14px;
  }
}
.c-job-table__header {
  padding: 20px 12px;
  box-sizing: border-box;
  width: 168px;
  background: linear-gradient(rgba(174, 186, 194, 0.85), rgba(174, 186, 194, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  border-radius: 4px 0 0 4px;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-job-table__header {
    width: 56px;
  }
}
.c-job-table__data {
  padding: 20px 12px;
  box-sizing: border-box;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  vertical-align: middle;
}
.c-job-table__data p {
  line-height: 150%;
}
.c-job-table__data p:not(:last-child) {
  margin-bottom: 12px;
}
.c-job-table__data span {
  font-size: 14px;
  color: #7B8B8D;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-job-table__data span {
    font-size: 12px;
  }
}

/*———————————–———————————–
CTA関連
———————————–———————————–*/
.c-cta-bottom {
  background: linear-gradient(rgba(227, 233, 234, 0.9), rgba(227, 233, 234, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  padding: 96px 0;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom {
    padding: 56px 0;
  }
}
.c-cta-bottom__inner {
  display: flex;
  position: relative;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__inner {
    flex-direction: column;
  }
}
.c-cta-bottom__item {
  display: flex;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__item {
    justify-content: center;
    padding-bottom: 40px;
    width: 100%;
  }
  .c-cta-bottom__item .c-primary-button--black {
    align-self: center;
  }
}
.c-cta-bottom__item:last-child {
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__item:last-child {
    justify-content: center;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__item + .c-cta-bottom__item {
    padding-top: 40px;
  }
}
.c-cta-bottom__item + .c-cta-bottom__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #B8C4C6;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__item + .c-cta-bottom__item::before {
    height: 1px;
    width: 100%;
  }
}
.c-cta-bottom__item-wrapper {
  width: 88%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__item-wrapper {
    gap: 32px;
    width: 100%;
  }
}
.c-cta-bottom__title {
  font-size: 26px;
  position: relative;
  margin-top: 0;
  color: #1D1E22;
  font-weight: 900;
  display: flex;
  gap: 16px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__title {
    flex-direction: row;
    align-items: end;
    justify-content: start;
    gap: 8px;
    font-size: 32px;
    position: relative;
  }
}
.c-cta-bottom__title > span {
  font-size: 12px;
  font-weight: bold;
  color: #9FB0B5;
  line-height: 150%;
}
.c-cta-bottom__title:not(span) {
  text-transform: uppercase;
}
.c-cta-bottom__title span.c-section-title__slash {
  margin-right: 4px;
}
.c-cta-bottom__title-contact {
  padding: 0 0 0 48px;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__title-contact {
    padding: 0 0 0 40px;
  }
}
.c-cta-bottom__title-contact::before {
  content: url(../public/img/icon/mail-icon.svg);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-cta-bottom__title-estimate {
  padding: 0 0 0 42px;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__title-estimate {
    padding: 0 0 0 34px;
  }
}
.c-cta-bottom__title-estimate::before {
  content: url(../public/img/icon/estimate-icon.svg);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-cta-bottom__text {
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-cta-bottom__text {
    font-size: 14px;
  }
}

.c-service-cta {
  background: linear-gradient(rgba(225, 230, 234, 0.85), rgba(225, 230, 234, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  border-radius: 16px;
  padding: 48px 64px;
  display: flex;
  align-items: center;
  gap: clamp(24px, -146.6666666667px + 16.6666666667vw, 56px);
  width: min(100%, 1062px);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-service-cta {
    flex-direction: column;
    padding: 32px 20px;
  }
}
.c-service-cta__img {
  width: clamp(160px, -80px + 31.25vw, 300px);
}
@media screen and (max-width: 767px) {
  .c-service-cta__img {
    width: 240px;
  }
}
.c-service-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-service-cta__inner {
    align-items: center;
  }
}
.c-service-cta__lead {
  width: fit-content;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-left: 8px;
  line-height: 150%;
  word-break: auto-phrase;
  line-break: strict;
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-service-cta__lead {
    padding-right: 16px;
    font-size: 20px;
  }
}
.c-service-cta__lead::after {
  content: "";
  width: calc(100% + 32px);
  height: 8px;
  background: #1D1E22;
  mask: url(../public/img/decoration/service-cta-title-line.svg) right top/auto 100% no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-service-cta__lead::after {
    width: 100%;
  }
}
.c-service-cta__text {
  padding-left: 8px;
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-service-cta__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 440px) {
  .c-service-cta__text br {
    display: none;
  }
}
.c-service-cta__button-area {
  display: flex;
  gap: clamp(12px, 5.1428571429px + 0.8928571429vw, 16px);
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .c-service-cta__button-area {
    flex-direction: column;
  }
}
@media screen and (max-width: 440px) {
  .c-service-cta__button-area {
    align-items: center;
  }
}
.c-service-cta__button-area .c-primary-button {
  text-wrap: nowrap;
}

/*———————————–———————————–
その他
———————————–———————————–*/
.c-flow__inner {
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-columns: 357px 1fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .c-flow__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
.c-flow__img-area {
  grid-row: 1/3;
}
@media screen and (max-width: 1023px) {
  .c-flow__img-area {
    grid-row: 2/3;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: clamp(336px, 167.2788906009px + 44.9922958398vw, 628px);
    box-sizing: border-box;
  }
}
.c-flow__img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .c-flow__img-area img {
    width: 80vw;
    height: 100%;
    border-radius: 8px 0 0 8px;
    margin-left: auto;
    margin-right: 0;
  }
}
.c-flow__list {
  margin-bottom: 120px;
}
@media screen and (max-width: 1023px) {
  .c-flow__list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-flow__list {
    margin-bottom: 96px;
  }
}
.c-flow__item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  box-sizing: border-box;
}
.c-flow__item:first-child .c-flow__item-step {
  min-height: 90px;
}
.c-flow__item:first-child .c-flow__item-step::before {
  mask: none;
  border-radius: 2px 2px 0 0;
}
.c-flow__item:nth-child(2) .c-flow__item-step {
  background: #98A7AA;
}
.c-flow__item:nth-child(3) .c-flow__item-step {
  background: #7B8B8D;
}
.c-flow__item:nth-child(4) .c-flow__item-step {
  min-height: 90px;
  background: #1D1E22;
}
.c-flow__item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: center;
}
.c-flow__item-step {
  background: #B8C4C6;
  width: 60px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 30px;
  color: #FFFFFF;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-flow__item-step {
    width: 47px;
  }
}
.c-flow__item-step span {
  font-size: 14px;
}
.c-flow__item-step::before, .c-flow__item-step::after {
  content: "";
  width: 100%;
  background: inherit;
  position: absolute;
  left: 0;
}
.c-flow__item-step::before {
  mask: url(../public/img/decoration/step-top.svg) right top/100% 100% no-repeat;
  top: -20px;
  height: 25px;
}
.c-flow__item-step::after {
  mask: url(../public/img/decoration/step-bottom.svg) right top/100% 100% no-repeat;
  bottom: -20px;
  height: 26px;
}
.c-flow__item-lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-flow__item-lead {
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
  }
}
.c-flow__item-lead p {
  font-size: 14px;
  color: #7B8B8D;
  font-weight: normal;
  padding: 2px 12px 4px 12px;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border: 1px solid #98A7AA;
  max-height: 27px;
  width: fit-content;
  display: flex;
  align-items: center;
}
.c-flow__item-lead p span:has(+ span) {
  margin-right: 2px;
}
@media screen and (max-width: 767px) {
  .c-flow__item-lead p {
    margin: 0;
    font-size: 12px;
    padding: 4px 8px;
  }
}
.c-flow__item-text {
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-flow__item-text {
    font-size: 14px;
  }
}
.c-flow.p-service-flow--marketing {
  background: linear-gradient(rgba(237, 239, 240, 0.85), rgba(237, 239, 240, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
}

.c-breadcrumb {
  background: linear-gradient(rgba(227, 233, 234, 0.9), rgba(227, 233, 234, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 90px;
}
@media screen and (max-width: 1023px) {
  .c-breadcrumb {
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.c-breadcrumb__inner {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 12px;
  color: #7B8B8D;
  flex-wrap: wrap;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__inner {
    font-size: 10px;
  }
  .c-breadcrumb__inner span:nth-child(2), .c-breadcrumb__inner span:nth-child(2) a {
    font-size: 12px;
  }
}
.c-breadcrumb a {
  color: #7B8B8D;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb a {
    font-size: 10px;
  }
}
.c-breadcrumb a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #7B8B8D;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
}
.c-breadcrumb a:hover::before {
  transform: scaleX(100%);
}

.c-section-decoration {
  position: absolute;
}
.c-section-decoration__text {
  font-family: "Antonio", sans-serif;
  font-size: clamp(160px, 97.5743162901px + 16.6468489893vw, 300px);
  font-weight: 500;
}
.c-section-decoration__text--white {
  background: #FFFFFF;
}
.c-section-decoration__text--white-30 {
  background: rgba(255, 255, 255, 0.3);
}
.c-section-decoration__text--white-90 {
  background: rgba(255, 255, 255, 0.9);
}
.c-section-decoration__text--fz-220 {
  font-size: clamp(160px, 133.2461355529px + 7.1343638526vw, 220px);
}
.c-section-decoration__text--vertical {
  writing-mode: vertical-rl;
}

.c-section-decoration--noise > .c-section-decoration__inner {
  position: relative;
  display: inline-block;
  font-weight: bold;
}
.c-section-decoration--noise > .c-section-decoration__inner .c-section-decoration__text {
  position: relative;
  z-index: 1;
}
.c-section-decoration--noise > .c-section-decoration__inner .c-section-decoration__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  z-index: 2;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  pointer-events: none;
  background-blend-mode: screen;
  mix-blend-mode: screen;
}

@supports (-webkit-touch-callout: none) {
  .c-section-decoration--noise > .c-section-decoration__inner .c-section-decoration__text {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.c-section-decoration--white > .c-section-decoration__inner .c-section-decoration__text,
.c-section-decoration--white-30 > .c-section-decoration__inner .c-section-decoration__text,
.c-section-decoration--white-90 > .c-section-decoration__inner .c-section-decoration__text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*———————————–———————————–
トップ
———————————–———————————–*/
.p-fv {
  width: 100%;
  height: clamp(820px, 80vh, 930px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: max(100vh, 667px);
  }
}
.p-fv__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-fv__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  background: linear-gradient(90deg, rgba(102, 100, 119, 0.9) 0%, rgba(102, 100, 119, 0) 70%);
  mix-blend-mode: multiply;
  height: 374px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-fv__inner::before {
    content: none;
  }
}
.p-fv__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 374px;
  border-bottom: 2px solid;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-image-slice: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-fv__inner::after {
    content: none;
  }
}
.p-fv__slideshow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-fv__slideshow-picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-fv__slideshow-picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-fv__container {
  width: min(90%, 1216px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .p-fv__container {
    width: min(84%, 1216px);
  }
}
.p-fv__text {
  font-weight: bold;
  font-size: clamp(16px, 8.8656361474px + 1.9024970273vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    gap: 12px;
  }
}
.p-fv__text span {
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__text span {
    gap: 4px;
  }
}
.p-fv__text span:has(strong) {
  align-items: end;
}
.p-fv__text strong {
  font-size: clamp(19.84px, 7.2835196195px + 3.3483947681vw, 48px);
}
.p-fv__text img {
  height: clamp(28px, 19.0820451843px + 2.3781212842vw, 48px);
  width: auto;
  vertical-align: middle;
  flex-shrink: 0;
}
.p-fv__link {
  z-index: 5;
  color: #FFFFFF;
  position: relative;
  width: fit-content;
  padding-right: 28px;
  font-size: 16px;
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: right bottom;
  padding-bottom: 15px;
  transition: 120ms ease-in;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-fv__link {
    padding-bottom: 9px;
    padding-right: 24px;
    font-size: 12px;
  }
}
@media (hover: hover) {
  .p-fv__link:hover {
    background-size: 0% 2px;
  }
  .p-fv__link:hover .p-fv__link-arrow {
    background-color: #FFFFFF;
  }
  .p-fv__link:hover .p-fv__link-arrow::after {
    background-color: #1D1E22;
  }
}
.p-fv__link-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: 120ms ease-in;
  background-color: transparent;
}
.p-fv__link-arrow::after {
  content: "";
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  background-color: #FFFFFF;
  width: 6px;
  height: 10.75px;
}
.p-fv__newsButton {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  height: 60px;
  width: min(90%, 1216px);
  background-color: #1D1E22;
  border-radius: 100px;
  border: 1px solid #FFFFFF;
  padding: 0 24px;
  box-sizing: border-box;
  overflow: hidden;
  transition: 200ms ease-in;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-fv__newsButton {
    bottom: 32px;
    height: auto;
    border-radius: 8px;
    padding: 16px;
  }
}
.p-fv__newsButton::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transform: scaleX(0);
  transition: 200ms ease-in;
  transform-origin: left top;
  z-index: -1;
}
@media (hover: hover) {
  .p-fv__newsButton:hover {
    background-color: #FFFFFF;
  }
  .p-fv__newsButton:hover::after {
    transform: scaleX(1);
  }
  .p-fv__newsButton:hover .p-fv__newsButton-label {
    background-color: #1D1E22;
    color: #FFFFFF;
  }
  .p-fv__newsButton:hover .p-fv__newsButton-time {
    color: #1D1E22;
  }
  .p-fv__newsButton:hover .p-fv__newsButton-time::after {
    background-color: #1D1E22;
  }
  .p-fv__newsButton:hover .p-fv__newsButton-title {
    color: #1D1E22;
  }
  .p-fv__newsButton:hover .p-fv__newsButton-wrapper::after {
    background-color: #1D1E22;
  }
}
.p-fv__newsButton-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 12px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv__newsButton-wrapper {
    gap: 12px;
  }
}
.p-fv__newsButton-wrapper::after {
  content: "";
  background-color: #FFFFFF;
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 9px;
  transition: 200ms ease-in;
}
.p-fv__newsButton-postInfo {
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 30px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-fv__newsButton-postInfo {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
}
.p-fv__newsButton-label {
  color: #1D1E22;
  padding: 8px;
  background-color: #FFFFFF;
  border-radius: 100px;
  font-weight: bold;
  transition: 200ms ease-in;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-fv__newsButton-label {
    padding: 4px 8px;
    font-size: 10px;
  }
}
.p-fv__newsButton-time {
  color: #98A7AA;
  padding-right: 38px;
  padding-left: 24px;
  position: relative;
  transition: 200ms ease-in;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-fv__newsButton-time {
    padding: 0;
    font-size: 10px;
  }
}
.p-fv__newsButton-time::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  content: "";
  height: 1px;
  width: 6px;
  background-color: #98A7AA;
}
@media screen and (max-width: 767px) {
  .p-fv__newsButton-time::after {
    content: none;
  }
}
.p-fv__newsButton-title {
  font-weight: bold;
  width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms ease-in;
  font-size: 12px;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .p-fv__newsButton-title {
    white-space: revert;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 制限したい行数が3の場合 */
    overflow: hidden;
    line-height: 1.5;
    font-size: 10px;
  }
}
.p-fv__newsButton-title span {
  margin-right: 4px;
}
.p-fv__newsButton-title span:last-child {
  margin-left: 4px;
}

.p-top__section .c-section-decoration {
  bottom: -61px;
  right: -30px;
}
.p-top__bg-img {
  width: 100%;
  height: min(25vw, 270px);
  background-image: url(../public/img/company/top_company_visual.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-top__description {
  width: min(100%, 792px);
  padding: 12px 0 12px 32px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 56px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-top__description {
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 8px 0 8px 12px;
  }
}
.p-top__description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(rgba(225, 230, 234, 0.85), rgba(225, 230, 234, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
}
@media screen and (max-width: 767px) {
  .p-top__description::before {
    width: 4px;
  }
}
.p-top__description > p {
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top__description > p {
    font-size: 12px;
  }
}
.p-top__service .c-section-decoration__text {
  font-size: clamp(120px, 39.7384066587px + 21.4030915577vw, 300px);
}
@media screen and (max-width: 767px) {
  .p-top__service .c-section-decoration {
    bottom: 0px;
    right: -10px;
  }
}
.p-top__service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
@media screen and (max-width: 1023px) {
  .p-top__service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, -2.7015457788px + 2.853745541vw, 32px);
  }
  .p-top__service-list .p-service__item:last-child:nth-child(odd) {
    grid-column: 1/3;
    justify-self: center;
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 440px) {
  .p-top__service-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .p-top__service-list .p-service__item:last-child:nth-child(odd) {
    grid-column: 1/2;
    justify-self: center;
    width: 100%;
  }
}
.p-top__service-card {
  height: 100%;
}
.p-top__service-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background-color: #FFFFFF;
  padding: 24px 24px 50px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #1D1E22;
  border: 2px solid #EEF0F0;
}
@media screen and (max-width: 767px) {
  .p-top__service-wrapper {
    padding: 8px 8px 44px 8px;
    gap: 20px;
  }
}
@media screen and (max-width: 440px) {
  .p-top__service-wrapper {
    padding: 24px 24px 44px 24px;
  }
}
@media (hover: hover) {
  .p-top__service-wrapper:hover .p-top__service-title::after {
    transform: scaleX(1);
  }
  .p-top__service-wrapper:hover .p-top__service-img img {
    scale: 110%;
  }
  .p-top__service-wrapper:hover .p-top__service-arrow::before {
    transform: scaleX(100%);
  }
}
.p-top__service-img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__service-img {
    aspect-ratio: 2/1;
    height: auto;
  }
}
@media screen and (max-width: 440px) {
  .p-top__service-img {
    aspect-ratio: revert;
  }
}
.p-top__service-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 150ms ease-in;
}
.p-top__service-title {
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__service-title {
    font-size: 16px;
  }
}
.p-top__service-title::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #1D1E22;
  transform: scaleX(0);
  transform-origin: left;
  transition: 150ms ease-in;
}
.p-top__service-description {
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top__service-description {
    font-size: 14px;
  }
}
.p-top__service-arrow {
  height: 66px;
  width: 66px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #1D1E22;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.p-top__service-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 66px;
  width: 66px;
  background-color: #B8C4C6;
  transform: scaleX(0);
  transition: 150ms ease-in;
  transform-origin: left top;
}
.p-top__service-arrow::after {
  content: "";
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  background: #FFFFFF;
  position: absolute;
  bottom: 17.25px;
  right: 17px;
  width: 6px;
  height: 10.75px;
}
@media screen and (max-width: 767px) {
  .p-top__service-arrow {
    height: 60px;
    width: 60px;
  }
  .p-top__service-arrow::before {
    width: 60px;
    height: 60px;
  }
  .p-top__service-arrow::after {
    bottom: 14.45px;
    right: 15.25px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__work .c-section-decoration {
    bottom: 0px;
    right: -25px;
  }
}
.p-top__work-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 72px;
}
@media screen and (max-width: 1023px) {
  .p-top__work-wrapper {
    flex-direction: column;
    gap: 32px;
  }
}
.p-top__work-wrapper .c-primary-button {
  align-self: center;
}
.p-top__work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 56px;
  align-items: stretch;
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .p-top__work-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-top__work-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 440px) {
  .p-top__work-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top__work-list + .c-primary-button {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-top__work-list + .c-primary-button {
    display: inherit;
  }
}
.p-top__work-list li:nth-last-child(2):nth-child(n+7), .p-top__work-list li:nth-last-child(1):nth-child(n+7) {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-top__work-list li:nth-last-child(2):nth-child(n+7), .p-top__work-list li:nth-last-child(1):nth-child(n+7) {
    display: inherit;
  }
}
@media screen and (max-width: 767px) {
  .p-top__work-list li:nth-last-child(2):nth-child(n+7), .p-top__work-list li:nth-last-child(1):nth-child(n+7) {
    display: none;
  }
}
.p-top__company .c-section-decoration__text {
  font-size: clamp(120px, 39.7384066587px + 21.4030915577vw, 300px);
}
@media screen and (max-width: 767px) {
  .p-top__company .c-section-decoration {
    bottom: 0px;
    right: -15.5px;
  }
}
.p-top__company-wrapper {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .p-top__company-wrapper {
    margin-top: 32px;
  }
}
.p-top__company-box {
  display: flex;
  gap: clamp(32px, 14.1640903686px + 4.7562425684vw, 72px);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top__company-box {
    flex-direction: column;
  }
}
.p-top__company-box .c-primary-button {
  align-self: flex-end;
}
.p-top__company-img {
  height: 240px;
  width: 40%;
  object-fit: cover;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .p-top__company-img {
    width: 100%;
    aspect-ratio: 2/1;
    height: auto;
  }
}
.p-top__company-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-top__company-text {
    gap: 20px;
  }
}
.p-top__company-title {
  font-weight: bold;
  font-size: 20px;
}
.p-top__company-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .p-top__company-content {
    gap: 16px;
  }
}
.p-top__company-content p {
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top__company-content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__media .c-section-decoration {
    bottom: -21px;
    right: -25px;
  }
}
.p-top__media-wrapper {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 61.2984542212px + 2.853745541vw, 96px);
}
.p-top__media-container {
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 25.7312722949px + 3.8049940547vw, 72px);
}
@media screen and (max-width: 1023px) {
  .p-top__media-container {
    flex-direction: column;
  }
}
.p-top__media-container .c-primary-button {
  align-self: center;
}
.p-top__media-blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(20px, 14.6492271106px + 1.4268727705vw, 32px);
  row-gap: clamp(24px, 9.7312722949px + 3.8049940547vw, 56px);
  align-items: stretch;
}
.p-top__media-blog-list li:nth-last-child(1):nth-child(n+4) {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top__media-blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-top__media-blog-list li:nth-last-child(1):nth-child(n+4) {
    display: inherit;
  }
}
@media screen and (max-width: 440px) {
  .p-top__media-blog-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-top__media-blog-list li:nth-last-child(1):nth-child(n+4) {
    display: none;
  }
}
.p-top__media-blog-list .c-post-card__title {
  font-size: 16px;
}
.p-top__media-news-list {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 16px;
  padding: 16px 40px 32px 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__media-news-list {
    padding: 16px 20px 20px 20px;
  }
}

/*———————————–———————————–
サービス
（システム・デザイン・マーケ）
———————————–———————————–*/
.p-service__mv {
  height: 464px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-service__mv {
    height: auto;
    flex-direction: column-reverse;
  }
}
.p-service__mv-img {
  flex: 1;
  height: 100%;
  width: 50%;
  object-fit: cover;
  -webkit-mask-image: url(../public/img/service/mv-mask.svg);
  mask-image: url(../public/img/service/mv-mask.svg);
}
@media screen and (max-width: 767px) {
  .p-service__mv-img {
    -webkit-mask-image: none;
    mask-image: none;
    width: 100%;
    height: 250px;
    flex: 0 0 auto;
  }
}
.p-service__mv-content {
  flex: 0.9;
  width: fit-content;
  padding-left: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-service__mv-content {
    padding: 32px 0 48px;
    width: 93.6%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-service__mv-text {
  display: flex;
  flex-direction: column;
  width: min(100%, 608px);
  gap: 32px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-service__mv-text {
    gap: 24px;
    width: 100%;
  }
}
.p-service__mv-text > p {
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-service__mv-text > p {
    font-size: 14px;
  }
}
.p-service__mv-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(24px, 10.2857142857px + 1.7857142857vw, 32px);
  font-weight: bold;
  color: #1D1E22;
}
.p-service__mv-title span {
  font-size: clamp(26px, 8.8571428571px + 2.2321428571vw, 36px);
  background-color: #1D1E22;
  color: #FFFFFF;
  padding: 8px 12px 12px 12px;
  border-radius: 8px;
  font-weight: 900;
  margin-right: 8px;
  display: inline-block;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-service__mv-title span {
    padding: 4px 8px 8px 8px;
    border-radius: 4px;
  }
}
.p-service__mv-title br:has(+ span) {
  display: none !important;
}
@media screen and (max-width: 1439px) {
  .p-service__mv-title br:has(+ span) {
    display: inherit !important;
  }
}
@media screen and (max-width: 767px) {
  .p-service__mv-title br:has(+ span) {
    display: none !important;
  }
}
@media screen and (max-width: 440px) {
  .p-service__mv-title br:has(+ span) {
    display: inherit !important;
  }
}
.p-service__mv-title br + span {
  margin-left: 8px;
}
@media screen and (max-width: 1439px) {
  .p-service__mv-title br + span {
    margin-top: 8px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service__mv-title br + span {
    margin-left: 8px;
  }
}
@media screen and (max-width: 440px) {
  .p-service__mv-title br + span {
    margin-top: 8px;
    margin-left: 0;
  }
}
.p-service__mv-services {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-service__mv-services {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-service__mv-example {
  padding-right: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-service__mv-example p {
  padding: 0 4px 2px 4px;
  text-wrap: nowrap;
  font-size: 14px;
}
.p-service__mv-example::after {
  content: "";
  background: #1D1E22;
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  width: 6px;
  height: 10.75px;
}
@media screen and (max-width: 767px) {
  .p-service__mv-example {
    padding-right: 4.42px;
  }
  .p-service__mv-example p {
    font-size: 10px;
  }
  .p-service__mv-example::after {
    width: 4px;
    height: 7.17px;
  }
}
.p-service__mv-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-service__mv-item {
  color: #3D494C;
  font-weight: bold;
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
  background-color: #D3E0E0;
}
@media screen and (max-width: 767px) {
  .p-service__mv-item {
    border-radius: 4px;
    font-size: 10px;
    padding: 4px;
  }
}

.p-service-about .c-section-decoration {
  bottom: -61px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-service-about .c-section-decoration {
    bottom: -18px;
    right: -4px;
  }
}
.p-service-about__inner {
  display: flex;
  gap: 72px;
}
@media screen and (max-width: 1439px) {
  .p-service-about__inner {
    flex-direction: column;
    gap: 56px;
  }
}
.p-service-about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 64px;
  column-gap: 48px;
  padding-top: 96px;
}
@media screen and (max-width: 1439px) {
  .p-service-about__wrapper {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service-about__wrapper {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }
}
.p-service-about__group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .p-service-about__group {
    gap: 16px;
  }
}
.p-service-about__group:first-child {
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  .p-service-about__group:first-child {
    grid-column: 1/2;
  }
}
.p-service-about__lead {
  font-weight: bold;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  word-break: auto-phrase;
  line-break: strict;
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-service-about__lead {
    font-size: 16px;
  }
}
.p-service-about__lead span {
  font-size: 60px;
  background: linear-gradient(rgba(227, 233, 234, 0.9), rgba(227, 233, 234, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-service-about__lead span {
    font-size: 50px;
  }
}
.p-service-about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-service-about__text p {
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-service-about__text p {
    font-size: 14px;
  }
}
.p-service-about__list {
  padding: 20px 32px;
  border: 4px solid #FFFFFF;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-service-about__list {
    padding: 20px 20px;
    border-width: 2px;
  }
}
.p-service-about__img {
  margin-top: 8px;
  border-radius: 4px;
  object-fit: cover;
  height: 428px;
}
@media screen and (max-width: 440px) {
  .p-service-about__img {
    height: 250px;
  }
}

.p-service-feature .c-section-decoration {
  top: 233px;
  left: calc(50% + 567px);
}
.p-service-feature .c-section-decoration__text {
  font-size: clamp(160px, 133.2461355529px + 7.1343638526vw, 220px);
}
@media screen and (max-width: 1023px) {
  .p-service-feature .c-section-decoration {
    bottom: 10px;
    top: inherit;
    right: -28px;
    left: inherit;
  }
}
.p-service-feature__wrapper {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (max-width: 1023px) {
  .p-service-feature__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-service-feature__wrapper {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 56px;
  }
}

.p-service-problem .c-section-decoration {
  top: -56px;
  left: calc(50% - 608px);
}
.p-service-problem .c-section-decoration__text {
  transform: rotate(180deg);
  font-size: clamp(120px, 75.4102259215px + 11.8906064209vw, 220px);
}
@media screen and (max-width: 1439px) {
  .p-service-problem .c-section-decoration {
    left: -20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-service-problem .c-section-decoration {
    left: -20px;
    top: 140px;
    font-size: clamp(120px, 75.4102259215px + 11.8906064209vw, 220px);
  }
}
.p-service-problem__inner {
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  column-gap: 64px;
}
@media screen and (max-width: 1023px) {
  .p-service-problem__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
.p-service-problem__img-area {
  grid-row: 1/3;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  .p-service-problem__img-area {
    grid-row: 2/3;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: clamp(380px, 236.7026194145px + 38.2126348228vw, 628px);
    box-sizing: border-box;
    padding: 22px 0;
  }
}
.p-service-problem__img-area img {
  width: clamp(290px, -30px + 31.25vw, 420px);
  margin-left: auto;
  margin-right: 0;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .p-service-problem__img-area img {
    width: 80vw;
    height: 100%;
    border-radius: 8px 0 0 8px;
  }
}
.p-service-problem__list {
  margin-bottom: 120px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-service-problem__list {
    margin-bottom: 96px;
    margin-top: 32px;
  }
}

.p-service-menu .c-section-decoration {
  top: 439.87px;
  right: calc(50% - 791px);
}
@media screen and (max-width: 767px) {
  .p-service-menu .c-section-decoration {
    right: -49px;
    top: 61px;
  }
}
.p-service-menu__inner {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-service-menu__inner {
    gap: 56px;
  }
}
.p-service-menu__wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-service-menu__wrapper {
    gap: 40px;
  }
}
.p-service-menu__img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  height: 425px;
}
@media screen and (max-width: 440px) {
  .p-service-menu__img {
    height: 223px;
  }
}
.p-service-menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .p-service-menu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-service-menu__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-service-menu__list .c-primary-button--black {
  padding: 12px 24px;
  font-size: 12px;
  align-self: center;
  margin-top: auto;
  margin-bottom: 0;
  width: min(100%, 238px);
}
.p-service-menu__list:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-service-menu__list:has(> :nth-child(4):last-child) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-service-menu__item {
  border-radius: 16px;
  padding: 24px 24px 40px 24px;
  background-color: #FFFFFF;
  border: 2px solid #EEF0F0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-service-menu__item {
    padding: 16px 20px 24px 16px;
  }
}
.p-service-menu__item-lead {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-service-menu__item-lead img {
  width: clamp(72px, 49.0992366412px + 6.106870229vw, 96px);
  object-fit: contain;
}
.p-service-menu__item-lead h3 {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-service-menu__item-lead h3 {
    font-size: 16px;
  }
}
.p-service-menu__item-text {
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-service-menu__item-text {
    font-size: 14px;
  }
}

.p-service-work .c-section-decoration {
  bottom: -50px;
  right: -50px;
}
@media screen and (max-width: 767px) {
  .p-service-work .c-section-decoration {
    right: 0;
    bottom: -22px;
  }
}
.p-service-work__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}
@media screen and (max-width: 1023px) {
  .p-service-work__inner {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service-work__inner {
    gap: 48px;
  }
}
.p-service-work__inner .c-primary-button {
  align-self: center;
}
.p-service-work__wrapper {
  display: flex;
  gap: 72px;
}
@media screen and (max-width: 1439px) {
  .p-service-work__wrapper {
    flex-direction: column;
    gap: 56px;
  }
}
.p-service-work .p-archive__work-list {
  padding-top: 96px;
  padding-bottom: 0;
}
@media screen and (max-width: 1439px) {
  .p-service-work .p-archive__work-list {
    padding-top: 0;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1023px) {
  .p-service-work .p-archive__work-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 440px) {
  .p-service-work .p-archive__work-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-service-work .p-archive__work-list li:nth-last-child(2):nth-child(n+7), .p-service-work .p-archive__work-list li:nth-last-child(1):nth-child(n+7) {
  display: none;
}
@media screen and (max-width: 1439px) {
  .p-service-work .p-archive__work-list li:nth-last-child(2):nth-child(n+7), .p-service-work .p-archive__work-list li:nth-last-child(1):nth-child(n+7) {
    display: inherit;
  }
}
@media screen and (max-width: 1023px) {
  .p-service-work .p-archive__work-list li:nth-last-child(2):nth-child(n+7), .p-service-work .p-archive__work-list li:nth-last-child(1):nth-child(n+7) {
    display: none;
  }
}

.p-service-flow .c-section-decoration {
  bottom: -29px;
  right: calc(50% - 608px);
}
.p-service-flow .c-section-decoration__text {
  font-size: 300px;
}
@media screen and (max-width: 1023px) {
  .p-service-flow .c-section-decoration {
    left: -20px;
    bottom: inherit;
    right: inherit;
    top: 197px;
  }
  .p-service-flow .c-section-decoration__text {
    font-size: clamp(120px, 75.4102259215px + 11.8906064209vw, 220px);
  }
}

.p-service-development .c-section-decoration {
  bottom: -61px;
  left: calc(50% + 608px);
}
@media screen and (max-width: 767px) {
  .p-service-development .c-section-decoration {
    bottom: -53px;
    left: 50%;
  }
}
.p-service-development__inner {
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-columns: 1fr 357px;
  grid-template-rows: auto auto;
  column-gap: 64px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .p-service-development__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
.p-service-development__img-area {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media screen and (max-width: 1023px) {
  .p-service-development__img-area {
    grid-row: 2/3;
    grid-column: 1/2;
    width: 100%;
  }
}
.p-service-development__img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .p-service-development__img-area img {
    width: 100%;
    aspect-ratio: 1.5/1;
  }
}
.p-service-development__table {
  margin-bottom: 120px;
}
@media screen and (max-width: 1023px) {
  .p-service-development__table {
    margin-bottom: 72px;
    padding: 32px 0;
  }
}
.p-service-development__title {
  align-items: end;
  padding-top: 128px;
}
.p-service-development__title .c-section-title__en {
  padding-left: 12px;
  padding-right: 0;
}
.p-service-development__title .c-section-title__en::before {
  left: inherit;
  right: -64px;
}
.p-service-development__title .c-section-title__en::after {
  right: inherit;
  left: -45px;
  mask: url(../public/img/decoration/section-title-decoration-left-inversion.svg) left top/cover no-repeat;
}
@media screen and (max-width: 1023px) {
  .p-service-development__title {
    align-items: start;
    padding-top: 48px;
  }
  .p-service-development__title .c-section-title__en {
    padding-right: 12px;
    padding-left: 0;
  }
  .p-service-development__title .c-section-title__en::before {
    left: -64px;
    right: inherit;
  }
  .p-service-development__title .c-section-title__en::after {
    right: -39px;
    left: inherit;
    mask: url(../public/img/decoration/section-title-decoration-left--sp.svg) right top/cover no-repeat;
  }
}

.p-service-price .c-section-decoration {
  top: 128px;
  left: -40px;
}
@media screen and (max-width: 767px) {
  .p-service-price .c-section-decoration {
    top: 87px;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
  }
}
.p-service-price__inner {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-service-price__inner {
    gap: 56px;
  }
}
.p-service-price__wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-service-price__wrapper {
    margin-bottom: 0;
  }
}
.p-service-price__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .p-service-price__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-service-price__list {
    grid-template-columns: 1fr;
  }
}
.p-service-price__list:has(> li:nth-child(-n+2):last-child) {
  display: flex;
  justify-content: center;
}
.p-service-price__list:has(> li:nth-child(-n+2):last-child) .p-service-price__group {
  width: min(100%, 680px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .p-service-price__group:last-child:nth-child(odd) {
    grid-column: 1/3;
    width: 50%;
    justify-self: center;
  }
}
@media screen and (max-width: 767px) {
  .p-service-price__group:last-child:nth-child(odd) {
    grid-column: 1/2;
    width: 100%;
  }
}
.p-service-price__table {
  border-collapse: collapse;
  border: 2px solid #FFFFFF;
  width: 100%;
}
.p-service-price__table th, .p-service-price__table td {
  border: 2px solid #FFFFFF;
}
.p-service-price__table-header {
  color: #FFFFFF;
  background-color: #1D1E22;
  vertical-align: middle;
  height: 48px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-header {
    height: 37px;
    font-size: 14px;
  }
}
.p-service-price__table-type {
  background: linear-gradient(rgba(225, 230, 234, 0.85), rgba(225, 230, 234, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 8px 12px;
  box-sizing: border-box;
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-type {
    font-size: 14px;
  }
}
.p-service-price__table-price {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  vertical-align: middle;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 16px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-price {
    font-size: 14px;
  }
}
.p-service-price__table-type, .p-service-price__table-price {
  height: 62px;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-type, .p-service-price__table-price {
    height: 45px;
  }
}
.p-service-price__attention {
  padding: 24px 32px;
  border-radius: 8px;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  align-self: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service-price__attention {
    padding: 20px;
  }
}
.p-service-price__attention-arrow {
  width: 40px;
  height: 16px;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.p-service-price__attention-text {
  font-size: 14px;
  line-height: 150%;
  padding-left: 20px;
  position: relative;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .p-service-price__attention-text {
    font-size: 12px;
  }
}
.p-service-price__attention-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #98A7AA;
}

.p-service-faq .c-section-decoration {
  top: 233px;
  left: calc(50% + 623px);
}
@media screen and (max-width: 1023px) {
  .p-service-faq .c-section-decoration {
    top: inherit;
    left: inherit;
    right: 0;
    bottom: 0;
  }
  .p-service-faq .c-section-decoration__text {
    writing-mode: horizontal-tb;
  }
}
.p-service-faq__list {
  margin-top: 64px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-service-faq__list {
    margin-bottom: 104px;
  }
}

.p-service-blog .c-section-decoration {
  bottom: -49px;
  right: -35px;
}
@media screen and (max-width: 767px) {
  .p-service-blog .c-section-decoration {
    right: -12.5px;
    bottom: -29px;
  }
}
.p-service-blog__inner {
  padding-bottom: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}
@media screen and (max-width: 767px) {
  .p-service-blog__inner {
    gap: 48px;
    padding-bottom: 62px;
  }
}
.p-service-blog__inner .c-primary-button {
  align-self: center;
}
.p-service-blog__wrapper {
  display: flex;
  gap: 72px;
}
@media screen and (max-width: 1439px) {
  .p-service-blog__wrapper {
    flex-direction: column;
    gap: 56px;
  }
}
.p-service-blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(20px, 14.6492271106px + 1.4268727705vw, 32px);
  row-gap: clamp(24px, 9.7312722949px + 3.8049940547vw, 56px);
  align-items: stretch;
  padding-top: 96px;
}
@media screen and (max-width: 1439px) {
  .p-service-blog__list {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service-blog__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-service-blog__list .c-post-card__title {
  font-size: 16px;
}

/*———————————–———————————–
実績 ・ お知らせ
———————————–———————————–*/
.p-archive__inner {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-archive__inner {
    padding-bottom: 72px;
  }
}
.p-archive__list-area {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-archive__list-area {
    gap: 48px;
  }
}
.p-archive__list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
@media screen and (max-width: 767px) {
  .p-archive__list-wrapper {
    gap: 40px;
  }
}
.p-archive__lead {
  padding-top: 8px;
  padding-bottom: 12px;
  width: 100%;
  border-radius: 8px;
  background-color: #2D2E34;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-archive__lead {
    padding-top: 4px;
    padding-bottom: 8px;
  }
}
.p-archive__lead::after {
  content: "";
  width: 32px;
  height: 12px;
  background: inherit;
  mask: url(../public/img/icon/fukidashi-polygon.svg) right top/100% 100% no-repeat;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-archive__lead::after {
    width: 30px;
    height: 10px;
    bottom: -8px;
  }
}
.p-archive__lead h2 {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-archive__lead h2 {
    font-size: 14px;
  }
}
.p-archive__pagination ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-archive__pagination ul {
    gap: 12px;
  }
}
.p-archive__pagination a.page-numbers, .p-archive__pagination span.page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #B8C4C6;
  transition: 150ms ease-in;
}
.p-archive__pagination span.current {
  background-color: #1D1E22;
  color: #FFFFFF;
}
.p-archive__pagination a.page-numbers:hover {
  background-color: #B8C4C6;
  color: #FFFFFF;
}
.p-archive__pagination a.prev, .p-archive__pagination a.next {
  border-radius: 0;
}
.p-archive__pagination a.prev::before, .p-archive__pagination a.next::before {
  content: "";
  width: 8px;
  height: 14px;
  mask: url(../public/img/icon/arrow-icon-left.svg) center/contain no-repeat;
  background-color: #B8C4C6;
}
.p-archive__pagination a.prev:hover, .p-archive__pagination a.next:hover {
  background-color: #1D1E22;
}
.p-archive__pagination a.prev:hover::before, .p-archive__pagination a.next:hover::before {
  background-color: #FFFFFF;
}
.p-archive__pagination a.next::before {
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-archive__pagination .current + li + li, .p-archive__pagination li:has(+ li + .current) {
    display: none;
  }
}
.p-archive__news-inner {
  margin-top: 48px;
}
.p-archive__news-wrapper {
  display: flex;
  gap: clamp(24px, 2.5969084423px + 5.707491082vw, 72px);
}
@media screen and (max-width: 1023px) {
  .p-archive__news-wrapper {
    flex-direction: column;
  }
}
.p-archive__news-list {
  width: 100%;
  padding-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .p-archive__news-list {
    padding-bottom: 0;
  }
}
.p-archive__work-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 72px;
}
@media screen and (max-width: 1023px) {
  .p-archive__work-wrapper {
    flex-direction: column;
    gap: 32px;
  }
}
.p-archive__work-wrapper .c-primary-button {
  align-self: center;
}
.p-archive__work-inner {
  padding-top: 72px;
}
@media screen and (max-width: 767px) {
  .p-archive__work-inner {
    padding-top: 40px;
  }
}
.p-archive__work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 56px;
  align-items: stretch;
  flex: 1;
  padding-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .p-archive__work-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-archive__work-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 440px) {
  .p-archive__work-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-single__article {
  margin-top: 32px;
  margin-bottom: 80px;
  width: min(90%, 832px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-single__article {
    margin-top: 0;
  }
}
.p-single__header {
  padding: 32px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-single__header {
    padding-bottom: 40px;
  }
}
.p-single__info {
  display: flex;
  gap: 24px;
}
.p-single__info-date {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: #7B8B8D;
}
.p-single__info-date::before {
  content: "";
  background: #7B8B8D;
  mask: url(../public/img/icon/schedule.svg) center/contain no-repeat;
  width: 14px;
  height: 14px;
  display: block;
}
.p-single__title {
  font-size: 24px;
  line-height: 150%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 20px;
  }
}
.p-single__content {
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  line-height: 150%;
}
.p-single__pagination {
  padding: 56px 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-single__pagination {
    padding: 20px 0;
  }
}
.p-single__prev {
  grid-column: 1/2;
}
.p-single__next {
  grid-column: 3/4;
}
.p-single__current {
  grid-column: 2/3;
  justify-self: center;
}
.p-single__prev, .p-single__next {
  padding-left: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 40px;
  position: relative;
}
.p-single__prev p, .p-single__next p {
  padding-bottom: 3px;
  color: #1D1E22;
  background: linear-gradient(#1D1E22, #1D1E22);
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: 120ms ease-in;
}
.p-single__prev::before, .p-single__next::before {
  content: "";
  display: block;
  mask: url(../public/img/icon/arrow-icon-left.svg) center/contain no-repeat;
  background: #1D1E22;
  width: 8px;
  height: 14.33px;
  z-index: 2;
  transition: 120ms ease-in;
}
.p-single__prev::after, .p-single__next::after {
  content: "";
  background-color: transparent;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  left: 8px;
  transition: 120ms ease-in;
}
.p-single__prev:hover p, .p-single__next:hover p {
  background-size: 100% 1px;
}
.p-single__prev:hover::before, .p-single__next:hover::before {
  background: #FFFFFF;
}
.p-single__prev:hover::after, .p-single__next:hover::after {
  background-color: #1D1E22;
}
.p-single__next {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 24px;
}
.p-single__next::before {
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  left: inherit;
}
.p-single__next::after {
  left: inherit;
  right: 8px;
}
.p-single__content p {
  margin-bottom: 24px;
}
.p-single__content a {
  color: #32A2C1;
  border-bottom: 1px solid #32A2C1;
  display: inline;
}
.p-single__content h2.wp-block-heading {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 12px 8px;
  font-size: 22px;
  font-weight: bold;
  line-height: 150%;
  border-bottom: 2px solid #1D1E22;
}
.p-single__content h3.wp-block-heading {
  margin-top: 24px;
  margin-bottom: 32px;
  padding: 8px 4px 8px 28px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  line-height: 150%;
  text-indent: 1em;
  margin-left: -1em;
}
.p-single__content h3.wp-block-heading::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 4px;
  left: calc(1em + 4px);
  top: 21px;
  background-color: #1D1E22;
}
.p-single__content .wp-block-image :where(figcaption) {
  font-size: 12px;
  color: #98A7AA;
}
.p-single__content .wp-block-list li {
  padding: 0 0 0 22px;
}
.p-single__content .wp-block-list li:not(:has(.wp-block-list)) {
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-list li:not(:has(.wp-block-list)) {
    padding-bottom: 4px;
  }
}
.p-single__content ul.wp-block-list {
  margin-bottom: 24px;
}
.p-single__content ul.wp-block-list li {
  position: relative;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-single__content ul.wp-block-list li {
    padding-left: 18px;
    font-size: 14px;
  }
}
.p-single__content ul.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #B8C4C6;
}
.p-single__content ul.wp-block-list > li ul.wp-block-list {
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__content ul.wp-block-list > li ul.wp-block-list {
    padding-top: 4px;
  }
}
.p-single__content ul.wp-block-list > li ul.wp-block-list > li::before {
  border: 1px solid #B8C4C6;
  box-sizing: border-box;
  background: #FFFFFF;
}
.p-single__content ul.wp-block-list > li ol.wp-block-list {
  padding-top: 8px;
  counter-reset: wp-block-list-counter-second;
}
@media screen and (max-width: 767px) {
  .p-single__content ul.wp-block-list > li ol.wp-block-list {
    padding-top: 4px;
  }
}
.p-single__content ul.wp-block-list > li ol.wp-block-list > li {
  counter-increment: wp-block-list-counter-second;
}
.p-single__content ul.wp-block-list > li ol.wp-block-list > li::before {
  content: counter(wp-block-list-counter-second);
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #B8C4C6;
  background-color: #FFFFFF;
  border: 1px solid #B8C4C6;
  box-sizing: border-box;
  border-radius: 50%;
  line-height: 1;
}
.p-single__content ol.wp-block-list {
  counter-reset: wp-block-list-counter;
  margin-bottom: 24px;
}
.p-single__content ol.wp-block-list > li {
  counter-increment: wp-block-list-counter;
  position: relative;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .p-single__content ol.wp-block-list > li {
    padding-left: 28px;
    font-size: 14px;
  }
}
.p-single__content ol.wp-block-list > li::before {
  content: counter(wp-block-list-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #B8C4C6;
  border-radius: 50%;
  line-height: 1;
}
.p-single__content ol.wp-block-list > li ul.wp-block-list {
  margin-left: -8px;
}
.p-single__content ol.wp-block-list > li ul.wp-block-list > li::before {
  background-color: #FFFFFF;
  border: 1px solid #B8C4C6;
  box-sizing: border-box;
}
.p-single__content ol.wp-block-list > li ol.wp-block-list {
  counter-reset: wp-block-list-counter-second;
  padding-top: 8px;
  margin-left: -8px;
}
@media screen and (max-width: 767px) {
  .p-single__content ol.wp-block-list > li ol.wp-block-list {
    padding-top: 4px;
  }
}
.p-single__content ol.wp-block-list > li ol.wp-block-list > li {
  counter-increment: wp-block-list-counter-second;
}
.p-single__content ol.wp-block-list > li ol.wp-block-list > li::before {
  content: counter(wp-block-list-counter-second);
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #B8C4C6;
  background-color: #FFFFFF;
  border: 1px solid #B8C4C6;
  box-sizing: border-box;
  border-radius: 50%;
  line-height: 1;
}
.p-single__content .has-text-align-center {
  text-align: center !important;
}
.p-single__content .has-text-align-right {
  text-align: right !important;
}
.p-single__content .has-text-align-left {
  text-align: left !important;
}
.p-single__content .wp-block-su-blogcard {
  margin-bottom: 32px;
}
.p-single__content .wp-blogcard {
  border-radius: 4px;
  border: 2px solid #EEF0F0;
  background-color: #FFFFFF;
  color: #1D1E22;
  position: relative;
}
.p-single__content .wp-blogcard::before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  content: "関連記事";
  padding: 8px 12px 10px;
  background-color: #1D1E22;
  color: #FFFFFF;
  display: block;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-blogcard::before {
    font-size: 10px;
  }
}
.p-single__content .wp-blogcard:has(.wp-blogcard-figure)::before {
  content: none;
}
.p-single__content .wp-blogcard:has(.wp-blogcard-figure) .wp-blogcard-content {
  padding: 28.5px 12px 28.5px 20px;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-blogcard:has(.wp-blogcard-figure) .wp-blogcard-content {
    padding: 6.5px 8px 6.5px 16px;
  }
}
.p-single__content .wp-blogcard:has(.wp-blogcard-figure) .wp-blogcard-title {
  padding-top: 8px;
}
.p-single__content .wp-blogcard:has(.wp-blogcard-figure) .wp-blogcard-domain {
  padding-bottom: 8px;
}
.p-single__content .wp-blogcard-content {
  padding: 12px 12px 16px 104px;
  gap: 4px;
  box-sizing: border-box;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-blogcard-content {
    padding: 8px 12px 12px 92px;
  }
}
.p-single__content .wp-blogcard-item {
  display: flex;
  flex-direction: row;
  border-bottom: none;
  min-width: 0;
  max-height: 184px;
}
.p-single__content .wp-blogcard-figure {
  aspect-ratio: auto;
  width: 184px;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-blogcard-figure {
    width: 88px;
  }
}
.p-single__content .wp-blogcard-description {
  display: none;
}
.p-single__content .wp-blogcard-favicon {
  display: none;
}
.p-single__content .wp-blogcard-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示したい行数 */
  overflow: hidden;
  width: 100%;
  color: #1D1E22;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-blogcard-title {
    font-size: 12px;
  }
}
.p-single__content .wp-blogcard-domain {
  line-height: 1.3;
  color: #98A7AA;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-blogcard-domain {
    font-size: 10px;
  }
}

.p-single-work {
  width: 100%;
  overflow-x: hidden;
}
.p-single-work__article {
  padding-top: 56px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-single-work__article {
    padding-top: 32px;
  }
}
.p-single-work__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-single-work__header-img {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: clamp(12px, -7.6195005945px + 5.2318668252vw, 56px);
  position: relative;
  z-index: 2;
  height: clamp(136px, -10.2544589774px + 39.0011890606vw, 464px);
  align-items: stretch;
}
.p-single-work__header-img img {
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  min-width: 0;
  border: 2px solid #FFFFFF;
  box-shadow: #eee 0 0 40px;
}
.p-single-work__header-img--sp {
  aspect-ratio: 1/2;
}
.p-single-work__header-img--pc {
  aspect-ratio: 2/1;
}
.p-single-work__header-content {
  position: relative;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  z-index: 1;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-single-work__header-content {
    flex-direction: column;
    gap: 24px;
    padding: 20px 0 44px;
  }
}
.p-single-work__header-content::before {
  content: "";
  position: absolute;
  width: 100vw;
  left: 50%;
  right: 50%;
  top: -64px;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #EEF0F0;
  height: calc(100% + 84px);
  display: block;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-single-work__header-content::before {
    bottom: 0;
    height: inherit;
  }
}
.p-single-work__title {
  max-width: 480px;
  flex: 1;
}
.p-single-work__title p {
  font-size: 14px;
  line-height: 150%;
  color: #7B8B8D;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-single-work__title p {
    margin-bottom: 0;
    font-size: 12px;
  }
}
.p-single-work__title h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-single-work__title h1 {
    font-size: 20px;
  }
}
.p-single-work__header-info {
  flex: 1;
}
.p-single-work__header-table {
  width: 100%;
}
.p-single-work__header-table tr {
  text-align: left;
  border-bottom: 1px solid #FFFFFF;
}
.p-single-work__header-table th {
  vertical-align: middle;
  padding-left: 12px;
  padding-right: 20px;
  font-size: 12px;
  color: #7B8B8D;
  font-weight: 500;
  width: clamp(80px, 62.1640903686px + 4.7562425684vw, 120px);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-single-work__header-table th {
    padding-left: 0;
    padding-right: 8px;
    font-size: 10px;
  }
}
.p-single-work__header-table td {
  vertical-align: middle;
  font-size: 14px;
  color: #2D2E34;
  width: fit-content;
  padding-top: 13.5px;
  padding-bottom: 13.5px;
}
@media screen and (max-width: 767px) {
  .p-single-work__header-table td {
    font-size: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .p-single-work__header-table td .c-category-button {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.p-single-work__header-link a {
  color: #2D2E34;
  border-bottom: 1px solid #2D2E34;
  width: fit-content;
}
.p-single-work__header-term span {
  color: #9FB0B5;
}
.p-single-work__header-category span, .p-single-work__header-technology span {
  border-bottom: 1px solid #2D2E34;
  line-height: 150%;
}
.p-single-work__header-category span a, .p-single-work__header-technology span a {
  display: inline;
}
.p-single-work__header-category span:has(+ span), .p-single-work__header-technology span:has(+ span) {
  margin-right: 8px;
  position: relative;
}
.p-single-work__header-category span:has(+ span)::after, .p-single-work__header-technology span:has(+ span)::after {
  content: "/";
  color: #9FB0B5;
  position: absolute;
  right: -12px;
}
.p-single-work__header-category span:has(+ span) + span, .p-single-work__header-technology span:has(+ span) + span {
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .p-single-work__header-category span:has(+ span), .p-single-work__header-technology span:has(+ span) {
    margin-right: 4px;
  }
  .p-single-work__header-category span:has(+ span)::after, .p-single-work__header-technology span:has(+ span)::after {
    right: -8px;
  }
  .p-single-work__header-category span:has(+ span) + span, .p-single-work__header-technology span:has(+ span) + span {
    margin-left: 4px;
  }
}
.p-single-work__body {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-single-work__body {
    padding-bottom: 64px;
  }
}
.p-single-work__detail-wrapper {
  padding-top: 20px;
}
.p-single-work__detail {
  padding: 56px 0;
  display: flex;
  gap: 40px;
  align-items: start;
}
.p-single-work__detail:has(+ .p-single-work__detail) {
  border-bottom: 1px solid #EEF0F0;
}
@media screen and (max-width: 767px) {
  .p-single-work__detail {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-single-work__section-title {
  font-size: 26px;
  color: #1D1E22;
  font-weight: bold;
  display: flex;
  gap: 8px;
  align-items: end;
  width: 280px;
}
.p-single-work__section-title > span {
  font-size: 14px;
  font-weight: bold;
  color: #98A7AA;
}
.p-single-work__section-title span.c-section-title__slash {
  margin-right: 4px;
  color: #9FB0B5;
}
@media screen and (max-width: 767px) {
  .p-single-work__section-title {
    font-size: 20px;
  }
  .p-single-work__section-title > span {
    font-size: 10px;
  }
}
.p-single-work__border-title {
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 150%;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-single-work__border-title {
    font-size: 16px;
    padding: 5px 0 5px 20px;
  }
}
.p-single-work__border-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: #1D1E22;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .p-single-work__border-title::before {
    width: 6px;
    border-radius: 1px;
  }
}
.p-single-work__detail-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.p-single-work__detail-content p {
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-single-work__detail-content p {
    font-size: 14px;
  }
}
.p-single-work__detail-check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-single-work__detail-check-list li {
  padding: 0 0 8px 32px;
  position: relative;
  line-height: 150%;
}
.p-single-work__detail-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  padding-top: 2px;
  background: #2D2E34;
  mask: url(../public/img/icon/ul-check-icon-outer.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-single-work__detail-check-list li {
    font-size: 14px;
    padding-left: 28px;
  }
}
.p-single-work__capture {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-top: 1px solid #EEF0F0;
}
@media screen and (max-width: 767px) {
  .p-single-work__capture {
    border-top: none;
  }
}
.p-single-work__capture-text {
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-single-work__capture-text {
    border-top: 1px solid #EEF0F0;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 32px;
  }
}
.p-single-work__capture-caption p {
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-single-work__capture-caption p {
    font-size: 14px;
  }
}
.p-single-work__capture-area {
  width: 100%;
  padding: clamp(16px, -1.8359096314px + 4.7562425684vw, 56px);
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.9476813317px + 4.2806183115vw, 56px);
}
.p-single-work__capture-area img {
  width: 100%;
  box-shadow: 0 0 40px #eee;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-single-work__capture-area img {
    border-radius: 4px;
  }
}
@media screen and (max-width: 767px) {
  .p-single-work__capture-area {
    background-color: #EEF0F0;
    border-radius: 4px;
  }
}
.p-single-work__capture-area--sp {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 375px);
  justify-content: center;
  align-items: center;
  gap: clamp(12px, -7.6195005945px + 5.2318668252vw, 56px);
}
.p-single-work__capture-area--sp img {
  object-fit: contain;
}
.p-single-work__capture-group {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 12.4328180737px + 0.9512485137vw, 24px);
}
.p-single-work__footer {
  padding-top: 56px;
}
@media screen and (max-width: 1023px) {
  .p-single-work__footer {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .p-single-work__footer .p-work__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 440px) {
  .p-single-work__footer .p-work__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-single-work__footer .p-work__list-item:last-child {
    display: none;
  }
}
.p-single-work__footer-wrapper {
  display: flex;
  gap: clamp(40px, -130.6666666667px + 16.6666666667vw, 72px);
}
.p-single-work__footer-wrapper + .c-primary-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-single-work__footer-wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  .p-single-work__footer-wrapper + .c-primary-button {
    display: inherit;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-single-work__footer-title {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 192px;
  padding-left: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-single-work__footer-title {
    width: 100%;
  }
}
.p-single-work__footer-title .p-single-work__section-title {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-single-work__footer-title .p-single-work__section-title {
    flex-direction: row;
  }
}
.p-single-work__footer-title .c-primary-button {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1023px) {
  .p-single-work__footer-title .c-primary-button {
    display: none;
  }
}
.p-single-work__other-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 56px;
  align-items: stretch;
  flex: 1;
  padding-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .p-single-work__other-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-single-work__other-list li:nth-last-child(1):nth-child(n+3) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-single-work__other-list {
    column-gap: 24px;
    row-gap: 24px;
    padding-bottom: 0;
  }
}

/*———————————–———————————–
採用
———————————–———————————–*/
.p-recruit__mv {
  height: 464px;
  position: relative;
  background-image: url(../public/img/recruit/recruit_mv.webp);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv {
    background-position: 0 center;
  }
}
.p-recruit__mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(227, 233, 234, 0.9), rgba(227, 233, 234, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.p-recruit__mv-content {
  width: min(90%, 1216px);
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  color: #FFFFFF;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv-content {
    padding: 98px 0;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-recruit__mv-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv-text {
    gap: 24px;
    width: 100%;
  }
}
.p-recruit__mv-text p {
  line-height: 150%;
}
.p-recruit__mv-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv-title {
    gap: 8px;
  }
}
.p-recruit__mv-title p {
  font-size: clamp(20px, -0.5714285714px + 2.6785714286vw, 32px);
  font-weight: bold;
  display: flex;
  align-items: center;
}
.p-recruit__mv-title p span {
  display: inline-block;
  font-size: clamp(20px, -7.4285714286px + 3.5714285714vw, 36px);
  background-color: #1D1E22;
  color: #FFFFFF;
  padding: 8px 12px 12px 12px;
  border-radius: 8px;
  font-weight: 900;
  margin-right: 8px;
  border: #FFFFFF 2px solid;
  box-sizing: border-box;
  line-height: 100%;
}
.p-recruit__mv-title p span:not(:first-child) {
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv-title p span {
    padding: 8px 8px 10px 8px;
    border-radius: 4px;
  }
}
.p-recruit__mv-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-recruit__mv-detail {
    gap: 16px;
    font-size: 12px;
  }
}

.p-recruit-wanted .c-section-decoration {
  bottom: -61px;
  right: -50px;
}
.p-recruit-wanted .c-section-decoration__text {
  font-size: clamp(120px, 39.7384066587px + 21.4030915577vw, 300px);
}
@media screen and (max-width: 767px) {
  .p-recruit-wanted .c-section-decoration {
    bottom: 32px;
  }
}
.p-recruit-wanted__inner {
  display: flex;
  gap: 72px;
  padding-bottom: 136px;
}
@media screen and (max-width: 1439px) {
  .p-recruit-wanted__inner {
    flex-direction: column;
    padding-bottom: 118px;
    gap: 88px;
  }
}
.p-recruit-wanted__list {
  background: #FFFFFF;
  margin-top: 96px;
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 800px);
}
@media screen and (max-width: 1439px) {
  .p-recruit-wanted__list {
    margin-top: 0;
  }
}

.p-recruit-feature .c-section-decoration {
  top: 233px;
  left: calc(50% + 567px);
}
.p-recruit-feature .c-section-decoration__text {
  font-size: clamp(120px, 75.4102259215px + 11.8906064209vw, 220px);
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature .c-section-decoration {
    bottom: 10px;
    top: inherit;
    right: -28px;
    left: inherit;
  }
}
@media screen and (max-width: 440px) {
  .p-recruit-feature .c-section-decoration {
    top: 1544px;
    right: -40px;
  }
  .p-recruit-feature .c-section-decoration__text {
    writing-mode: revert;
  }
}
.p-recruit-feature::after {
  content: attr(data-bg-font);
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Antonio", sans-serif;
  font-size: clamp(120px, 75.4102259215px + 11.8906064209vw, 220px);
  font-weight: 500;
  writing-mode: vertical-rl;
}
.p-recruit-feature__inner {
  display: flex;
  flex-direction: column;
  gap: 76px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__inner {
    gap: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__inner {
    padding-bottom: 64px;
  }
}
.p-recruit-feature__wrapper {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__wrapper {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
.p-recruit-feature__wrapper .c-feature-group {
  display: flex;
  flex-direction: column;
}
.p-recruit-feature__wrapper .c-feature-group__img {
  border: 2px solid #FFFFFF;
}
.p-recruit-feature__data-list {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 44fr 8fr 6fr 42fr;
  grid-template-rows: auto auto auto auto auto auto auto;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-list {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__data-list {
    gap: 12px;
  }
}
.p-recruit-feature__data-list + p {
  padding-top: 40px;
  padding-bottom: 16px;
  text-align: right;
  font-size: 12px;
  line-height: 150%;
  color: #98A7AA;
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__data-list + p {
    padding-top: 20px;
    padding-bottom: 8px;
  }
}
.p-recruit-feature__data-card {
  background-color: #FFFFFF;
  border: 2px solid #EEF0F0;
  padding: 24px 24px 32px 24px;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-card {
    padding: 20px 16px;
  }
}
.p-recruit-feature__data-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  height: 100%;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__data-inner {
    gap: 12px;
  }
}
.p-recruit-feature__data-inner + .p-recruit-feature__data-text {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__data-inner + .p-recruit-feature__data-text {
    display: block;
  }
}
.p-recruit-feature__data-card--reverse {
  background-color: #FFFFFF;
  border: 2px solid #EEF0F0;
  padding: 24px 24px 32px 24px;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-card--reverse {
    padding: 20px 16px;
  }
}
.p-recruit-feature__data-card--reverse .p-recruit-feature__data-inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-card--reverse .p-recruit-feature__data-inner {
    flex-direction: row;
  }
}
.p-recruit-feature__data-img {
  width: clamp(70px, -152.8571428571px + 29.0178571429vw, 200px);
  object-fit: cover;
  flex: 0 0 auto;
  border-radius: 4px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-img {
    width: max(120px, 44%);
  }
}
.p-recruit-feature__data-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__data-block {
    gap: 8px;
  }
}
.p-recruit-feature__data-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-content {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__data-content .p-recruit-feature__data-text {
    display: none;
  }
}
.p-recruit-feature__data-chart {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-chart {
    padding: 0;
  }
}
.p-recruit-feature__data-num {
  font-size: clamp(32px, -5.7142857143px + 4.9107142857vw, 54px);
  font-weight: 900;
  color: #3D494C;
  display: inline;
  text-wrap: nowrap;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-num {
    font-size: clamp(36px, 18.8244274809px + 4.5801526718vw, 54px);
  }
}
.p-recruit-feature__data-num span {
  font-size: clamp(12px, -1.7142857143px + 1.7857142857vw, 20px);
  color: #7B8B8D;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-num span {
    font-size: 14px;
  }
}
.p-recruit-feature__data-ratio {
  margin-top: 12px;
  letter-spacing: -0.2em;
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__data-ratio {
    margin-top: 6px;
  }
}
.p-recruit-feature__data-num--hasText {
  text-align: center;
  font-size: clamp(36px, 5.1428571429px + 4.0178571429vw, 54px);
  font-weight: 900;
  color: #3D494C;
  display: inline;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-num--hasText {
    font-size: clamp(36px, 18.8244274809px + 4.5801526718vw, 54px);
  }
}
.p-recruit-feature__data-num--hasText span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 12px;
  color: #7B8B8D;
  text-wrap: nowrap;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__data-num--hasText span {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-feature__data-num--hasText:nth-child(2) {
    color: #7B8B8D;
    font-size: 32px;
  }
}
.p-recruit-feature__data-text {
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  border: 1px solid #EEF0F0;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 150%;
}
.p-recruit-feature__faunded {
  grid-row: 1/2;
}
.p-recruit-feature__faunded .p-recruit-feature__data-img {
  width: clamp(120px, -17.1428571429px + 17.8571428571vw, 200px);
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__faunded .p-recruit-feature__data-img {
    width: max(120px, 44%);
  }
}
.p-recruit-feature__gender-ratio {
  grid-row: 2/3;
}
.p-recruit-feature__station {
  grid-column: 2/5;
  grid-row: 1/3;
}
.p-recruit-feature__occupation {
  grid-column: 1/3;
  grid-row: 3/5;
}
.p-recruit-feature__experience {
  grid-column: 3/5;
  grid-row: 3/4;
}
.p-recruit-feature__working-hours {
  grid-column: 3/5;
  grid-row: 4/5;
}
.p-recruit-feature__background {
  grid-column: 1/5;
  grid-row: 5/6;
}
.p-recruit-feature__background .p-recruit-feature__data-img {
  width: clamp(120px, 44%, 440px);
  max-height: 276px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__background .p-recruit-feature__data-img {
    width: max(120px, 44%);
  }
}
.p-recruit-feature__from {
  grid-column: 1/5;
  grid-row: 6/7;
}
.p-recruit-feature__from .p-recruit-feature__data-img {
  width: clamp(120px, 44%, 440px);
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__from .p-recruit-feature__data-img {
    width: max(120px, 44%);
  }
}
.p-recruit-feature__lunch-time {
  grid-column: 1/4;
  grid-row: 7/8;
}
.p-recruit-feature__lunch-place {
  grid-column: 4/5;
  grid-row: 7/8;
}
.p-recruit-feature__lunch-place .p-recruit-feature__data-img {
  width: clamp(50px, -207.1428571429px + 33.4821428571vw, 200px);
}
@media screen and (max-width: 1023px) {
  .p-recruit-feature__lunch-place .p-recruit-feature__data-img {
    width: max(120px, 44%);
    aspect-ratio: 4/3;
  }
}

.p-recruit-business .c-section-decoration {
  bottom: -50px;
  right: -50px;
}
.p-recruit-business .c-section-decoration__text {
  font-size: clamp(120px, 39.7384066587px + 21.4030915577vw, 300px);
}
@media screen and (max-width: 767px) {
  .p-recruit-business .c-section-decoration {
    bottom: -13px;
    right: -46px;
  }
}
.p-recruit-business__inner {
  display: flex;
  gap: 64px;
  flex-direction: column;
  padding-bottom: 136px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-recruit-business__inner {
    gap: 56px;
    padding-bottom: 90px;
  }
}
.p-recruit-business__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit-business__content {
    gap: 24px;
  }
}
.p-recruit-business__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit-business__group {
    gap: 12px;
  }
}
.p-recruit-business__group .c-check-list {
  background: #FFFFFF;
  padding: 32px;
  border: none;
}
.p-recruit-business__group .c-check-list::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-business__group .c-check-list {
    padding: 16px;
    border-radius: 4px;
  }
}
.p-recruit-business__group .c-tool-table__header {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-recruit-business__group .c-tool-table__header {
    width: 80px;
    padding: 16px 8px;
    font-size: 12px;
  }
}
.p-recruit-business__group .c-tool-table__data {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-recruit-business__group .c-tool-table__data {
    font-size: 12px;
  }
  .p-recruit-business__group .c-tool-table__data ul {
    padding: 12px 8px;
  }
}
.p-recruit-business__img {
  width: min(30%, 357px);
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-recruit-business__img {
    width: 100%;
    aspect-ratio: 1.8/1;
    object-fit: cover;
    margin-bottom: 32px;
  }
}

.p-recruit-office .c-section-decoration {
  bottom: -61px;
  right: 0;
}
.p-recruit-office .c-section-decoration__text {
  font-size: clamp(120px, 39.7384066587px + 21.4030915577vw, 300px);
}
@media screen and (max-width: 767px) {
  .p-recruit-office .c-section-decoration {
    right: -9px;
    bottom: -16px;
  }
}
.p-recruit-office__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding-bottom: 136px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-recruit-office__inner {
    padding-bottom: 70px;
  }
}
.p-recruit-office__inner .c-primary-button {
  align-self: center;
}
.p-recruit-office__wrapper {
  display: flex;
  gap: clamp(56px, 48.8656361474px + 1.9024970273vw, 72px);
}
@media screen and (max-width: 1439px) {
  .p-recruit-office__wrapper {
    flex-direction: column;
  }
}
.p-recruit-office__body {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 96px;
}
@media screen and (max-width: 1439px) {
  .p-recruit-office__body {
    gap: 40px;
    padding-top: 0;
  }
}
.p-recruit-office__group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-recruit-office__group-detail {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-recruit-office__group-detail {
    flex-direction: column;
    gap: 32px;
  }
}
.p-recruit-office__group-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-office__group-content {
    gap: 16px;
  }
}
.p-recruit-office__group-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-recruit-office__group-text {
    font-size: 14px;
    gap: 12px;
  }
}
.p-recruit-office__group-img {
  width: 100%;
  aspect-ratio: 1/0.45;
  object-fit: cover;
  border-radius: 4px;
}
@media screen and (max-width: 440px) {
  .p-recruit-office__group-img {
    aspect-ratio: revert;
    height: 240px;
  }
}

.p-recruit-flow .c-section-decoration {
  bottom: -29px;
  right: calc(50% - 608px);
}
.p-recruit-flow .c-section-decoration__text {
  font-size: 300px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-flow .c-section-decoration {
    left: -20px;
    bottom: inherit;
    right: inherit;
    top: 197px;
  }
  .p-recruit-flow .c-section-decoration__text {
    font-size: clamp(120px, 75.4102259215px + 11.8906064209vw, 220px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-flow .c-flow__img-area {
    padding: 0;
  }
}

.p-recruit-guide .c-section-decoration {
  top: 257px;
  left: calc(50% + 623px);
}
.p-recruit-guide .c-section-decoration__text {
  font-size: clamp(120px, 39.7384066587px + 21.4030915577vw, 300px);
}
@media screen and (max-width: 1023px) {
  .p-recruit-guide .c-section-decoration {
    bottom: -26.5px;
    right: -25px;
    top: inherit;
    left: inherit;
  }
  .p-recruit-guide .c-section-decoration__text {
    writing-mode: revert;
  }
}
.p-recruit-guide__inner {
  display: flex;
  gap: 64px;
  flex-direction: column;
  padding-bottom: 160px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-guide__inner {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-guide__inner {
    gap: 56px;
  }
}
.p-recruit-guide__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-guide__wrapper {
    gap: 20px;
  }
}
.p-recruit-guide__list {
  border: 2px solid #EEF0F0;
}
@media screen and (max-width: 767px) {
  .p-recruit-guide__list {
    padding-top: 12px;
  }
}

/*———————————–———————————–
会社概要
———————————–———————————–*/
.p-about__mv {
  height: 320px;
  position: relative;
  background-image: url(../public/img/about/about_mv.webp);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about__mv {
    height: auto;
  }
}
.p-about__mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.p-about__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-bottom: 40px;
  }
}
.p-about__inner .c-section-title--left {
  text-align: left;
}
.p-about__mv-content {
  width: min(90%, 1216px);
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about__mv-content {
    padding: 80px 0 64px;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-about__mv-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.p-about__mv-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-about__mv-detail p {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-about__mv-detail p {
    font-size: 12px;
  }
}
.p-about__mv-list {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .p-about__mv-list {
    gap: clamp(16px, -8px + 3.125vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-about__mv-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.p-about__mv-item {
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-about__mv-item .c-primary-button--black {
    padding-left: clamp(16px, -32px + 6.25vw, 32px);
    padding-right: clamp(16px, -32px + 6.25vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .p-about__mv-item .c-primary-button--black {
    padding: 12px 24px;
    font-size: 12px;
    width: 240px;
  }
}
.p-about__company-area {
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 2px solid #EEF0F0;
  border-radius: 8px;
  box-sizing: border-box;
}
.p-about__company-table {
  width: 100%;
}
.p-about__company-table tr {
  box-sizing: border-box;
}
.p-about__company-table tr:not(:last-child) {
  border-bottom: 2px solid #EEF0F0;
}
.p-about__company-table th, .p-about__company-table td {
  padding: 20px 0;
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-about__company-table th, .p-about__company-table td {
    font-size: 14px;
  }
}
.p-about__company-table th {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  width: clamp(70px, -9.3697978597px + 21.1652794293vw, 248px);
  padding-right: 48px;
  box-sizing: border-box;
  vertical-align: top;
  word-break: auto-phrase;
}
.p-about__company-table th br {
  display: none;
}
@media screen and (max-width: 440px) {
  .p-about__company-table th {
    padding-right: 20px;
    font-size: 14px;
  }
  .p-about__company-table th br {
    display: inline;
  }
}
.p-about__company-table img {
  object-fit: contain;
}
.p-about__company-table img:first-child {
  width: 200px;
}
.p-about__company-table img:nth-child(2) {
  width: 140px;
}
@media screen and (max-width: 440px) {
  .p-about__company-table img:nth-child(2) {
    width: 120px;
  }
}
.p-about__company-data__row {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__company-data__row {
    flex-direction: column;
    gap: 32px;
  }
}
.p-about__access {
  overflow-x: hidden;
}
.p-about__access-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-about__access-list {
    gap: 40px;
  }
}
.p-about__access-item {
  padding: 48px 32px;
  border-radius: 8px;
  border: 2px solid #EEF0F0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-about__access-item {
    padding: 24px 16px;
  }
}
.p-about__access-item iframe {
  width: min(50%, 600px);
  flex: 1;
}
.p-about__access-content {
  flex: 1;
}
.p-about__access-content .c-border-title {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-about__access-content .c-border-title {
    margin-bottom: 24px;
  }
}
.p-about__access-group {
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .p-about__access-group {
    padding-left: 0;
  }
}
.p-about__access-group iframe {
  padding: 0 8px;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  max-height: 251px;
  margin-bottom: 32px;
  margin-top: 20px;
}
.p-about__access-lead {
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-about__access-lead {
    padding: 8px;
    font-size: 16px;
  }
}
.p-about__access-text {
  padding: 16px 8px 40px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 150%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-about__access-text {
    gap: 8px;
    padding: 12px 8px 0 8px;
    font-size: 14px;
  }
}
.p-about__access-text span {
  color: #7B8B8D;
  font-size: 16px;
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-about__access-text span {
    font-size: 12px;
    padding-top: 8px;
  }
}
.p-about__access-text .c-point-list {
  padding-left: 12px;
}

/*———————————–———————————–
サイトマップ
———————————–———————————–*/
.p-sitemap__inner {
  padding-top: 80px;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .p-sitemap__inner {
    padding-top: 32px;
    padding-bottom: 48px;
  }
}
.p-sitemap__wrapper {
  padding: 32px;
  border-radius: 8px;
  background-color: #FFFFFF;
  display: flex;
  gap: min(3.35vw, 64px);
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-sitemap__wrapper {
    flex-direction: column;
    padding: 16px;
  }
}
.p-sitemap__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.p-sitemap__item-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 150%;
  border-bottom: 2px solid #EEF0F0;
  padding: 24px 16px;
  box-sizing: border-box;
  transition: ease-out 300ms;
}
@media screen and (max-width: 767px) {
  .p-sitemap__item-link {
    padding: 12px;
    font-size: 16px;
  }
}
.p-sitemap__item-link:hover {
  background-color: #EEF0F0;
}
.p-sitemap__item-link:hover .p-sitemap__item-arrow {
  background-color: #1D1E22;
}
.p-sitemap__item-arrow {
  width: 32px;
  height: 32px;
  background-color: #B8C4C6;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: ease-out 300ms;
}
.p-sitemap__item-arrow::after {
  content: "";
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  background-color: #FFFFFF;
  width: 6px;
  height: 10.75px;
}
@media screen and (max-width: 767px) {
  .p-sitemap__item-arrow {
    width: 24px;
    height: 24px;
  }
}
.p-sitemap__sublist {
  margin-top: 12px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .p-sitemap__sublist {
    padding-left: 20px;
  }
}
.p-sitemap__sublist-link {
  width: 100%;
  padding: 12px 16px 12px 36px;
  position: relative;
  line-height: 150%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  transition: ease-out 300ms;
}
@media screen and (max-width: 767px) {
  .p-sitemap__sublist-link {
    padding: 11px 8px 11px 32px;
    font-size: 12px;
  }
}
.p-sitemap__sublist-link:hover {
  background-color: #EEF0F0;
}
.p-sitemap__sublist-link::before {
  position: absolute;
  content: "";
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 2px;
  border-radius: 2px;
  background-color: #D3E0E0;
}
@media screen and (max-width: 767px) {
  .p-sitemap__sublist-link::before {
    left: 12px;
  }
}
.p-sitemap__sublist-link .p-sitemap__item-arrow {
  background-color: #FFFFFF;
}
.p-sitemap__sublist-link .p-sitemap__item-arrow::after {
  background-color: #D3E0E0;
}

/*———————————–———————————–
プライバシーポリシー
———————————–———————————–*/
.p-privacypolicy {
  background-color: #FFFFFF;
  padding-bottom: 96px;
}
.p-privacypolicy .l-section-w {
  width: min(90%, 1000px);
}
.p-privacypolicy__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-privacypolicy__title {
  padding: 16px 24px;
  border-radius: 2px;
  background-color: #1D1E22;
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy__title {
    margin-top: 48px;
    font-size: 20px;
    padding: 12px 16px;
  }
}
.p-privacypolicy__lead {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy__lead {
    font-size: 20px;
  }
}
.p-privacypolicy__text-content {
  line-height: 150%;
}
.p-privacypolicy__text-content > p {
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy__text-content > p {
    font-size: 14px;
  }
}
.p-privacypolicy__text-content address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy__text-content address {
    font-size: 14px;
  }
}
.p-privacypolicy__text-bg {
  padding: 32px;
  box-sizing: border-box;
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy__text-bg {
    padding: 20px 20px 24px 20px;
  }
}
.p-privacypolicy__list-container {
  border-radius: 8px;
  overflow: hidden;
}
.p-privacypolicy__list-container .p-privacypolicy__text-bg {
  padding-top: 24px;
}
.p-privacypolicy__list-lead {
  padding: 12px 24px;
  background-color: #98A7AA;
  font-weight: bold;
  color: #FFFFFF;
}

/*———————————–———————————–
お問い合わせ・応募
———————————–———————————–*/
.p-form {
  background-color: #EEF0F0;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-form {
    padding-top: 40px;
    padding-bottom: 56px;
  }
}
.p-form__inner {
  width: min(90%, 800px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-form__inner {
    width: 94%;
  }
}
.p-form__step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-form__step {
    padding-bottom: 40px;
  }
}
.p-form__step-item {
  height: 48px;
  background-color: #B8C4C6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  width: calc(100% - 20px);
}
@media screen and (max-width: 767px) {
  .p-form__step-item {
    gap: 8px;
    height: 36px;
    width: calc(100% - 12px);
  }
}
.p-form__step-item p {
  color: #FFFFFF;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-form__step-item p {
    font-size: 12px;
  }
}
.p-form__step-item.is-current {
  background-color: #1D1E22;
}
.p-form__step-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  clip-path: polygon(1px 0, 100% 50%, 1px 100%, 0 100%, 0 0);
  width: 25px;
  height: inherit;
  background-color: inherit;
}
@media screen and (max-width: 767px) {
  .p-form__step-item::after {
    width: 19px;
    right: -18px;
  }
}
.p-form__step-item:first-child::before {
  content: "";
  height: inherit;
  width: 11px;
  position: absolute;
  top: 0;
  left: -10px;
  background-color: inherit;
}
.p-form__step-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: -24px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 1px), calc(100% - 1px) 50%);
  width: 25px;
  height: inherit;
  background-color: inherit;
}
@media screen and (max-width: 767px) {
  .p-form__step-item:not(:first-child)::before {
    width: 19px;
    left: -18px;
  }
}
.p-form .p-form__confirm-text {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__confirm-text {
    font-size: 16px;
    text-align: left;
  }
}
.p-form .p-form__thanks-lead {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__thanks-lead {
    font-size: 22px;
  }
}
.p-form .p-form__thanks-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__thanks-text {
    font-size: 14px;
  }
}
.p-form .p-form__thanks-text span {
  font-size: 12px;
  color: #7B8B8D;
  display: block;
}
.p-form .p-form__thanks-text span:nth-child(n+2) {
  text-indent: 1em;
}
.p-form .c-primary-button {
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
}
.p-form .c-primary-button::after {
  content: none;
}
.p-form .p-form__content .wpcf7-form dt {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__content .wpcf7-form dt {
    margin-bottom: 12px;
  }
}
.p-form .p-form__content .wpcf7-form dt p {
  display: flex;
  align-items: center;
}
.p-form .p-form__content .wpcf7-form dd {
  margin-bottom: 24px;
}
.p-form .p-form__content .wpcf7-form dd p {
  line-height: 150%;
}
.p-form .p-form__content .wpcf7-form span.required {
  font-size: 12px;
  color: #FFFFFF;
  padding: 4px 8px 6px 8px;
  border-radius: 4px;
  background-color: #3D494C;
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__content .wpcf7-form span.required {
    font-size: 10px;
    padding: 4px;
  }
}
.p-form .p-form__content .wpcf7-form .wpcf7-text, .p-form .p-form__content .wpcf7-form .wpcf7-textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #D3E0E0;
  padding: 8px;
  line-height: 150%;
}
.p-form .p-form__content .wpcf7-form .wpcf7-textarea {
  min-height: 300px;
}
.p-form .p-form__content .wpcf7-form input::placeholder {
  color: #B8C4C6;
}
.p-form .p-form__content .wpcf7-form .flex {
  display: flex;
  gap: 16px;
}
.p-form .p-form__content .wpcf7-form .flex .left, .p-form .p-form__content .wpcf7-form .flex .right {
  width: 100%;
}
.p-form .p-form__content .wpcf7-form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-form .p-form__content .wpcf7-form .wpcf7-list-item {
  margin-left: 12px;
}
.p-form .p-form__content .wpcf7-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.p-form .p-form__content .wpcf7-form .wpcf7-list-item-label {
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__content .wpcf7-form .wpcf7-list-item-label {
    font-size: 14px;
  }
}
.p-form .p-form__content .wpcf7-form input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid #3D494C;
  appearance: none;
  background-color: #FFFFFF;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  margin: 0;
  box-sizing: border-box;
}
.p-form .p-form__content .wpcf7-form input[type=checkbox]:checked {
  background-color: #3D494C;
}
.p-form .p-form__content .wpcf7-form input[type=checkbox]:checked::after {
  content: "";
  mask: url(../public/img/icon/check.svg) center/contain no-repeat;
  height: 8px;
  width: 14px;
  background-color: #FFFFFF;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-form .p-form__content .wpcf7-form .wpcf7-radio {
  display: flex;
  flex-direction: column;
}
.p-form .p-form__content .wpcf7-form input[type=radio] {
  appearance: none;
  margin: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #3D494C;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
  position: relative;
}
.p-form .p-form__content .wpcf7-form input[type=radio]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3D494C;
}
.p-form .p-form__content .wpcf7-form .submit-button-container {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__content .wpcf7-form .submit-button-container {
    margin-top: 56px;
  }
}
.p-form .p-form__content .wpcf7-form .submit-button {
  border: none;
  color: #FFFFFF;
  padding: 16px 32px 18px 32px;
  font-size: 14px;
  font-weight: bold;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  position: relative;
  transition: 200ms ease-in;
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button) {
  width: fit-content;
  position: relative;
  background-color: #1D1E22;
  border-radius: 100px;
  border: 1px solid #FFFFFF;
  transition: 200ms ease-in;
  overflow: hidden;
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button)::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  transform-origin: left top;
  transform: scaleX(0);
  transition: 200ms ease-in;
  z-index: 1;
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button):hover {
  color: #1D1E22;
  border: 1px solid #1D1E22;
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button):hover::before {
  transform: scaleX(1);
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button):hover::after {
  background-color: #1D1E22;
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button):hover .submit-button {
  color: #1D1E22;
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button-arrow)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  background-color: #FFFFFF;
  width: 6px;
  height: 10.75px;
  mask: url(../public/img/icon/arrow-icon-right.svg) center/contain no-repeat;
  transition: 200ms ease-in;
  pointer-events: none;
  z-index: 2;
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button-arrow) .submit-button {
  padding-right: 52px;
}
.p-form .p-form__content .wpcf7-form p:has(.submit-button-back) {
  background-color: #7B8B8D;
}
.p-form .p-form__content .wpcf7-form .wpcf7-spinner {
  display: none !important;
}
.p-form .p-form__content .wpcf7-form .codedropz-upload-handler {
  background-color: #FFFFFF;
  border: 1px solid #D3E0E0;
}
.p-form .p-form__content .wpcf7-form .codedropz-upload-container {
  padding-top: 38.5px;
  padding-bottom: 38.5px;
}
.p-form .p-form__content .wpcf7-form .codedropz-upload-inner h3 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 32px;
}
.p-form .p-form__content .wpcf7-form .codedropz-upload-inner span {
  font-size: 14px;
  color: #7B8B8D;
}
.p-form .p-form__content .wpcf7-form .codedropz-upload-inner .cd-upload-btn {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 12px;
  background-color: #EEF0F0;
  border: 1px solid #B8C4C6;
  border-radius: 2px;
  margin-top: 8px;
  font-size: 12px;
  color: #7B8B8D;
  box-sizing: border-box;
  line-height: 1;
}
.p-form .p-form__content .wpcf7-form .dnd-upload-counter {
  display: none;
}
.p-form .form-confirm {
  background-color: #FFFFFF;
  margin-top: 32px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: min(25%, 200px) auto;
}
@media screen and (max-width: 767px) {
  .p-form .form-confirm {
    grid-template-columns: 1fr;
  }
}
.p-form .form-confirm dt, .p-form .form-confirm dd {
  margin-bottom: 0 !important;
  padding-top: 12px;
  padding-bottom: 12px;
}
.p-form .form-confirm dt:not(:last-of-type), .p-form .form-confirm dd:not(:last-of-type) {
  border-bottom: 2px solid #EEF0F0;
}
.p-form .form-confirm dd {
  padding-left: 48px;
}
@media screen and (max-width: 767px) {
  .p-form .form-confirm dd {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-form .form-confirm dt {
    padding-top: 20px;
    border-bottom: none !important;
  }
}
.p-form .form-confirm dt p {
  text-align: right;
  display: block !important;
}
@media screen and (max-width: 767px) {
  .p-form .form-confirm dt p {
    text-align: left;
  }
}
.p-form .form-confirm .flex {
  gap: 0 !important;
}
.p-form .form-confirm .left, .p-form .form-confirm .right {
  width: fit-content !important;
}
.p-form .form-confirm + .submit-button-container {
  margin-top: 56px !important;
}

.page-template-page-form {
  padding-top: 90px;
}
@media screen and (max-width: 1023px) {
  .page-template-page-form {
    padding-top: 56px;
  }
}

/*———————————–———————————–
404エラー
———————————–———————————–*/
.p-error {
  line-height: 150%;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-top: 48px;
  }
}
.p-error h2 {
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .p-error h2 {
    font-size: 30px;
  }
}
.p-error__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: min(90%, 832px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-error__inner {
    gap: 30px;
  }
}
.p-error__inner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .p-error__inner-text p {
    font-size: 14px;
  }
}
.p-error__inner-text .c-primary-button {
  height: 50px;
}

/**
* Layout
* ========================== */
.l-section-w {
  width: min(90%, 1216px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1439px) {
  .l-section-w {
    width: min(94%, 1320px);
  }
}
@media screen and (max-width: 767px) {
  .l-section-w {
    width: 90%;
  }
}

.l-section-w--bottom-medium {
  width: min(90%, 1216px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
  padding-bottom: 120px;
}
@media screen and (max-width: 1439px) {
  .l-section-w--bottom-medium {
    width: min(94%, 1320px);
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-section-w--bottom-medium {
    width: 90%;
    padding-bottom: 120px;
  }
}

.l-section-w--bottom-large {
  width: min(90%, 1216px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
  padding-bottom: 136px;
}
@media screen and (max-width: 1439px) {
  .l-section-w--bottom-large {
    width: min(94%, 1320px);
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-section-w--bottom-large {
    padding-bottom: 96px;
    width: 90%;
  }
}

.l-section-bg--light-noise {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
}
.l-section-bg--light-noise.js-bg-font-section {
  position: relative;
  overflow: hidden;
}

.l-section-bg--white {
  background: #FFFFFF;
}
.l-section-bg--white.js-bg-font-section {
  position: relative;
  overflow: hidden;
}

.l-section-bg--medium-light-noise {
  background: linear-gradient(rgba(237, 239, 240, 0.85), rgba(237, 239, 240, 0.85)) 0 0/100px repeat, url(../public/img/bg_noise_base.webp) center/20px 20px;
}
.l-section-bg--medium-light-noise.js-bg-font-section {
  position: relative;
  overflow: hidden;
}

/**
*※白背景の時(.js-l-header__wrapper)
*ハンバーガーボタンクリック時(.js-l-header__hamburger-button)
*はクラス名「active」を付与
*/
.l-header {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: 120ms ease-in;
}
@media screen and (max-width: 1023px) {
  .l-header {
    height: 56px;
  }
}
.l-header:has(.active) {
  background: rgba(255, 255, 255, 0.9);
}
.l-header:has(.active) + .l-header__back {
  display: none;
}
.l-header:has(.active) .l-header__logo {
  filter: invert(8%) sepia(12%) saturate(618%) hue-rotate(191deg) brightness(98%) contrast(90%);
}
.l-header:has(.active) .l-header__logo img {
  object-fit: contain;
}
.l-header:has(.active) .l-header__list-item > a, .l-header:has(.active) .l-header__list-item > button {
  color: #1D1E22;
}
.l-header:has(.active) .l-header__list-item > a::before, .l-header:has(.active) .l-header__list-item > button::before {
  background-color: #1D1E22;
}
.l-header:has(.active) .l-header__list-item > button::after {
  background-color: #1D1E22;
}
@media screen and (max-width: 1023px) {
  .l-header:has(.active) .l-header__list-item > button::after {
    background-color: #FFFFFF;
  }
}
.l-header:has(.active) .l-header__sublist-item a {
  color: #FFFFFF;
}
.l-header:has(.active) .l-header__hamburger-line {
  background-color: #1D1E22;
}
.l-header:has(.l-header__hamburger-button.active) .l-header__list-item a, .l-header:has(.l-header__hamburger-button.active) .l-header__list-item button {
  color: #FFFFFF;
}
.l-header__back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  mix-blend-mode: multiply;
  background: linear-gradient(to top, rgba(56, 56, 56, 0) 0%, rgba(56, 56, 56, 0.5) 50%, rgb(56, 56, 56) 100%);
  height: 56px;
  z-index: 998;
}
.l-header__wrapper {
  z-index: 1;
  width: min(95%, 1824px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  mix-blend-mode: revert;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-header__wrapper {
    width: 100%;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  width: clamp(96px, 76.3804994055px + 5.2318668252vw, 140px);
  height: clamp(15.77px, 12.5461593341px + 0.8596908442vw, 23px);
  filter: invert(100%) sepia(0%) saturate(3604%) hue-rotate(226deg) brightness(101%) contrast(110%);
  transition: 120ms ease-in;
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    margin-left: 16px;
  }
}
.l-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, -423.1578947368px + 42.1052631579vw, 40px);
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    opacity: 0;
    visibility: hidden;
    transition: 120ms ease-in;
    position: absolute;
    top: 56px;
    flex-direction: column;
    background-color: #1D1E22;
    width: 100%;
    padding: 32px 32px 40px 32px;
    box-sizing: border-box;
    height: auto;
  }
}
.l-header__list {
  display: flex;
  gap: min(0.63vw, 12px);
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__list {
    flex-direction: column;
    width: 100%;
    align-items: revert;
  }
}
.l-header__button-area {
  display: flex;
  gap: clamp(8px, -207.5789473684px + 21.0526315789vw, 24px);
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-header__button-area {
    gap: 16px;
  }
}
@media screen and (max-width: 440px) {
  .l-header__button-area .c-primary-button--black, .l-header__button-area .c-primary-button--gray {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.l-header__list-item {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__list-item {
    padding-bottom: 16px;
  }
  .l-header__list-item::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2D2E34;
    position: absolute;
    bottom: 8px;
  }
}
.l-header__list-item a, .l-header__list-item button {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: clamp(8px, -10.2857142857px + 1.7857142857vw, 24px);
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  text-align: left;
  transition: 120ms ease-in;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-header__list-item a, .l-header__list-item button {
    padding: 12px 0 12px 24px;
    justify-content: space-between;
    background: none;
  }
}
.l-header__list-item a::before, .l-header__list-item button::before {
  content: "";
  width: calc(100% - clamp(16px, -20.5714285714px + 3.5714285714vw, 48px));
  height: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  transform-origin: left top;
  transition: 120ms ease-in;
  position: absolute;
  bottom: 24.5px;
  transform: scaleX(0);
}
@media screen and (max-width: 1023px) {
  .l-header__list-item a::before, .l-header__list-item button::before {
    content: none;
  }
}
.l-header__list-item a:hover::before, .l-header__list-item button:hover::before {
  transform: scaleX(100%);
}
.l-header__sublist {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #3D494C;
  display: flex;
  justify-content: center;
  gap: 39px;
  border-bottom: 2px solid #FFFFFF;
  transition: 120ms ease-in;
}
@media screen and (max-width: 1023px) {
  .l-header__sublist {
    transition: 300ms ease-out;
    interpolate-size: allow-keywords;
    overflow-y: hidden;
    height: 0;
    flex-direction: column;
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    border-bottom: none;
    background-color: transparent;
    gap: 0;
  }
}
.l-header__sublist-item a {
  color: #FFFFFF;
  padding: 20px 16px;
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
}
.l-header__sublist-item a::after {
  position: absolute;
  right: -16px;
  content: "/";
}
@media screen and (max-width: 1023px) {
  .l-header__sublist-item a {
    padding: 16px 24px 16px 48px;
  }
  .l-header__sublist-item a::after {
    content: none;
  }
}
.l-header__sublist-item a::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 16px;
  width: calc(100% - 32px);
  height: 1px;
  background-color: #FFFFFF !important;
  transform: scaleX(0);
  transform-origin: left top;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .l-header__sublist-item a::before {
    content: none;
  }
}
.l-header__has-sublist button {
  gap: 8px;
  width: fit-content;
}
@media screen and (max-width: 1023px) {
  .l-header__has-sublist button {
    width: 100%;
    justify-content: space-between;
  }
}
.l-header__has-sublist button::before {
  width: calc(100% - (clamp(16px, -20.5714285714px + 3.5714285714vw, 48px) + 15px)) !important;
  background-color: #FFFFFF;
}
.l-header__has-sublist button::after {
  content: "";
  mask: url(../public/img/icon/arrow-icon-bottom.svg) center/contain no-repeat;
  background-color: #FFFFFF;
  width: 7px;
  height: 5px;
  transition: 300ms ease-out;
}
.l-header__has-sublist button:hover {
  color: #FFFFFF;
}
.l-header__has-sublist.active {
  visibility: visible;
  opacity: 1;
}
.l-header__has-sublist.active button {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .l-header__has-sublist.active button {
    background: none;
  }
}
.l-header__has-sublist.active button::before {
  background-color: #1D1E22;
  transform: scaleX(100%);
}
.l-header__has-sublist.active button::after {
  rotate: -180deg;
  background-color: #1D1E22;
}
@media screen and (max-width: 1023px) {
  .l-header__has-sublist.active button::after {
    background-color: #FFFFFF;
  }
}
.l-header__has-sublist.active .l-header__sublist {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .l-header__has-sublist.active .l-header__sublist {
    visibility: visible;
    opacity: 1;
    padding: 16px 0;
    height: auto;
  }
}
.l-header__has-sublist.active .l-header__sublist button::after {
  rotate: -180deg;
}
.l-header__hamburger-button {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__hamburger-button {
    display: block;
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    padding: 0;
    display: grid;
    place-items: center;
  }
}
.l-header__hamburger-block {
  width: 24px;
  height: 18px;
  position: relative;
}
.l-header__hamburger-line {
  position: absolute;
  height: 2px;
  width: 24px;
  left: 0;
  background-color: #FFFFFF;
  transition: 120ms ease-in;
  border-radius: 2px;
  transform: translate(0);
}
.l-header__hamburger-line:nth-child(2) {
  top: 8px;
}
.l-header__hamburger-line:last-child {
  top: inherit;
  bottom: 0px;
}
.l-header__hamburger-button.active {
  background-color: #1D1E22;
}
.l-header__hamburger-button.active .l-header__hamburger-line {
  background-color: #FFFFFF;
}
.l-header__hamburger-button.active .l-header__hamburger-line:first-child {
  transform: translate(6px, 6px);
  rotate: 45deg;
}
.l-header__hamburger-button.active .l-header__hamburger-line:nth-child(2) {
  rotate: -45deg;
}
.l-header__hamburger-button.active .l-header__hamburger-line:last-child {
  opacity: 0;
}
.l-header__hamburger-button.active + .l-header__nav {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  background-color: #1D1E22;
}
.l-footer__nav {
  padding-top: 80px;
  padding-bottom: 120px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 72px;
    padding-top: 56px;
    padding-bottom: 64px;
  }
}
.l-footer__logo-img {
  width: 140px;
  height: 23px;
  object-fit: contain;
  filter: invert(98%) sepia(5%) saturate(238%) hue-rotate(322deg) brightness(114%) contrast(100%);
}
.l-footer__logo-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #FFFFFF;
}
@media screen and (max-width: 1023px) {
  .l-footer__logo-link {
    align-items: center;
  }
}
.l-footer__address {
  font-weight: normal;
  font-size: 10px;
  color: #FFFFFF;
  margin-top: 32px;
  line-height: 150%;
}
@media screen and (max-width: 1023px) {
  .l-footer__address {
    display: none;
  }
}
.l-footer__category-list {
  display: flex;
  gap: clamp(24px, 13.2984542212px + 2.853745541vw, 48px);
}
@media screen and (max-width: 1023px) {
  .l-footer__category-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__category-item {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
  }
}
.l-footer__category-title {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 150%;
}
@media screen and (max-width: 1023px) {
  .l-footer__category-title {
    width: 80px;
  }
}
.l-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-footer__item {
  position: relative;
  padding-left: 24px;
}
.l-footer__item::before {
  content: "";
  position: absolute;
  left: 6px;
  width: 4px;
  height: 8px;
  border-bottom: 1px solid #3D494C;
}
.l-footer__link {
  font-size: 12px;
  font-weight: 500;
  color: #B8C4C6;
  padding-bottom: 9px;
  background: linear-gradient(#B8C4C6, #B8C4C6);
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: 120ms ease-in;
  width: fit-content;
}
@media (hover: hover) {
  .l-footer__link:hover {
    background-size: 100% 1px;
  }
}
.l-footer__foot {
  width: 100%;
  height: 60px;
  background-color: #7B8B8D;
  display: grid;
  place-items: center;
}
.l-footer__copyright {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
}