@charset "utf-8";

/* Foundation */
:root {
  --color-text: #0f0f0f;
  --color-text-muted: #898989;
  --color-accent: #b59c54;
  --color-border: #dddddd;
  --color-bg-primary: #f5f7f9;
  --color-bg-secondary: #f5f5f5;
  --color-surface: #ffffff;
  --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.08);
  --container-width: 1346px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg-primary);
  line-height: 1.7;
}

h1,
h2,
h3,
.c-logo,
.c-cta__title {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: .4s;
}

a:hover{
  opacity: .6;
}

ul {
  padding-left: 1.2em;
}

/* Layout */
.l-container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding: 0 24px;
}

.l-section {
  padding: 72px 0 96px;
}

.l-header {
  background: var(--color-surface);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.c-burger{
  display: none;
}

.l-footer {
  background: var(--color-text);
  color: var(--color-surface);
  padding: 66px 0 80px;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.l-footer__brand {
  max-width: 320px;
}

.l-footer__address {
  margin: 9px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 170%;
}

.l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 23px;
  font-size: 13px;
  color: #898989;
  margin: 68px auto 0;
  position: relative;
}

.l-footer__bottom::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 1px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1296px;
}


.l-footer__policy {
  color: var(--color-text-muted);
}

/* Object - Component */
.c-megamenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.4);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
}

.c-megamenu-overlay.is-show {
  opacity: 1;
  visibility: visible;
}

.c-logo {
  font-size: 36px;
  font-weight: 700;
}

.c-logo--footer {
  color: var(--color-surface);
}

.c-global-nav__listwrap{
  display: flex;
  gap: 33px;
}

.c-global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 33px;
  flex-wrap: wrap;
  align-items: center;
}

.c-global-nav__item {
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

.c-global-nav__item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}

.c-global-nav__item.is-accent {
  color: var(--color-accent);
}


.c-global-nav__child{
  display: none;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  position: absolute;
  top: 46px;
  left: 0;
  width: 133px;
  /* height: 125px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  display: none;
  padding: 10px 1.2em;
  z-index: 10;
}

.c-global-nav__child a{
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
}

.c-global-nav__caret {
  position: relative;
  display: inline-block;
  width: 13.3px;
  height: 7.7px;
}

.c-global-nav__caret::before,
.c-global-nav__caret::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 7px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 50% calc(100% - 1px);
}

.c-global-nav__caret::before {
  transform: rotate(45deg);
}

.c-global-nav__caret::after {
  transform: rotate(-45deg);
}

.c-section-title {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 32px;
}

.c-section-lead {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  margin: 36px 0 12px;
}

.c-section-lead::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--color-text);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 999px;
  border: 1px solid #000;
  background: var(--color-text);
  color: var(--color-surface);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .4s;
  cursor: pointer;
  height: 60px;
  width: 225px;

}

.c-btn::after {
  content: "";
  background-image: url(../images/common/cta-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  transition: .4s;
}

.c-btn:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}

.c-btn:hover::after {
  background-image: url(../images/common/cta-arrow-black.svg);
}


.c-btn--sm {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.c-btn--light {
  background: var(--color-surface);
  color: var(--color-text);
}

.c-cta {
  padding: 122px 0 123px;
  text-align: center;
}

.c-cta__title {
  font-size: 96px;
  line-height: 120%;
  font-weight: 700;
  margin: 0 0 26px;
}

.c-cta__actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 824px;
  width: 100%;
  margin: 37px auto 0;
}

.c-cta__actions .c-btn{
  height: 90px;
  width: calc(100% / 2 - (30px / 2));
  font-size: 20px;
}

.c-footer-nav {
  display: flex;
  gap: 12px 87px;
  font-size: 16px;
  line-height: 1;
  margin-top: 7px;
}

.c-footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-footer-nav__col .-nocolor{
  line-height: .4;
  color: #898989;
}

.c-footer-nav__col .sp-only{
  display: none;
}

.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 22px;
  border-radius: 4px;
  background: #E74B4B;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
}

.c-panel {
  border-radius: 20px;
  background: var(--color-surface);
  padding: 27px 37px 22px;
}

.c-panel.-panel1 .c-panel__list{
  display: flex;
  flex-wrap: wrap;
}

.c-panel.-panel1 .c-panel__list li:nth-of-type(odd){
  min-width: 169px;
}

.c-panel__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 170%;
  font-weight: 700;
}

.c-panel__list {
  margin: 0;
  padding-left: 0px;
  font-size: 16px;
  line-height: 170%;
  list-style: none;
}

.c-panel__list li{
  position: relative;
  padding-left: 19px;
}

.c-panel__list li::after{
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #DDDDDD;
  border-radius: 50px;
  left: 0;
  top: 8px;
}

.c-form {
  display: grid;
  gap: 40px;
  max-width: 864px;

}

.c-form .c-btn{
  position: relative;
}

.c-form .c-btn::after{
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.c-form .c-btn input{
  width: 100%;
  height: 100%;
  background: unset;
  color: #fff;
  border: unset;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  padding: 0 50px;
}

.c-form .c-btn:hover input{
  color: #000;
}


.c-field {
  display: grid;
  gap: 8px;
}

.c-field__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
}

.c-input,
.c-select,
.c-textarea {
  width: 100%;
  padding: 25px 16px;
  border-radius: 5px;
  background-color: var(--color-surface);
  font-size: 16px;
  border: unset;
}

.c-input::placeholder,.c-textarea::placeholder{
  color: #999999;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.c-textarea {
  min-height: 175px;
  resize: vertical;
}

.c-select:has(option:checked[value=""]) {
  color: #999999;
}

.c-select {
  -webkit-appearance: none; /* Chrome / Safari */
  -moz-appearance: none;    /* Firefox */
  appearance: none;         /* 標準 */
  background-image: url(../images/common/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  font-family: "Noto Sans JP", sans-serif;
}

.c-form__note {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.c-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.c-summary {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.c-summary .c-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  align-items: start;
  font-size: 18px;
  line-height: 170%;
}

.c-summary .c-field__label {
  font-weight: 600;
  color: var(--color-text);
  width: 230px;
}

.c-summary .c-input {
  color: var(--color-text-muted);
}

/* Object - Project */
.p-mv {
  padding: 95px 0 92px;
}

.p-mv__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.p-mv__title {
  font-size: 96px;
  font-weight: 700;
  line-height: calc(121 / 96);
  margin: 0;
}

.p-mv__sub {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0 0;
}

.p-mv__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 8px;
}

.p-mv__lead {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin: 10px 0 0;
}

.p-mv__headline {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 10px;
}

.p-mv__text {
  margin: 0;
  max-width: 520px;
  color: var(--color-text);
}

.p-mv__visual {
  display: flex;
  justify-content: flex-end;
}

.p-mv--service {
  position: relative;
  overflow: hidden;
}

.p-mv--simple .p-mv__inner {
  grid-template-columns: 1fr;
}

.p-mv--service::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 55%;
  background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.p-mv__diagram {
  position: relative;
  width: 220px;
  height: 220px;
  z-index: 1;
}

.p-mv__diagram::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  border-radius: 4px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-mv__node {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.3;
}

.p-mv__node--ai {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-mv__node--web3 {
  bottom: 0;
  left: 0;
}

.p-mv__node--products {
  bottom: 0;
  right: 0;
}

.p-message__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
}

.p-message__text {
  margin: 0;
  max-width: 720px;
  color: var(--color-text);
}

.p-value__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.p-member__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.p-member__item{
  display: flex;
  flex-direction: column;
}

.p-member__photo {
  overflow: hidden;
  border-radius: 8px;
}

.p-member__item img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center 30%;
}

.p-member__name{
  padding-top: 20px;
}

.p-member__name h3{
  margin: 4px 0 0 0;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.p-member__name span{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #f4d020;
  margin-bottom: 0;
}

.p-member__bio {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.c-modal__outer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: 0.3s;
}

.c-modal__outer.is-open {
  display: flex;
}

.c-modal__inner {
  background: #fff;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-radius: 16px;
  padding: 40px;
}

.c-modal__inner__header {
  position: absolute;
  right: 40px;
  top: 20px;
}

.c-modal__closebtn {
  cursor: pointer;
  font-size: 24px;
  font-size: 40px;
}

.c-modal__inner__container span{
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f4d020;
  margin-bottom: 0.41666664vw;
}

.c-modal__inner__container h4{
  font-size: 18px;
  letter-spacing: .04em;
  margin: 0 0 0 0;
}



.p-overview__table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.p-overview__table th,
.p-overview__table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  font-size: 14px;
}

.p-overview__table th {
  width: 180px;
  color: var(--color-text);
  font-weight: 700;
  text-align: left;
}

.p-overview__table td {
  color: var(--color-text);
}

.p-access__address {
  margin: 0 0 18px;
}

.p-access__map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  background: var(--color-border);
}

.p-issues {
  background: var(--color-surface);
}

.p-issues__lead {
  margin: 0 0 28px;
  color: var(--color-text-muted);
  max-width: 640px;
}

.p-issues__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

.p-issue-card {
  padding: 20px 16px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  min-height: 120px;
}

.p-issue-card__icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  display: inline-block;
  margin-bottom: 10px;
  background: var(--color-bg-secondary);
}

.p-issue-card__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
}

.p-issue-card__text {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.p-offering {
  background: var(--color-surface);
}

.p-offering__list {
  border-top: 1px solid var(--color-border);
}

.p-offering__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.p-offering__index {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
}

.p-offering__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.p-offering__text {
  margin: 0;
  font-size: 13px;
}

.p-cases {
  background: var(--color-bg-secondary);
}

.p-cases__slider {
  margin-top: 0;
}

.p-cases__slider .splide__arrow {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  opacity: 1;
  width: 40px;
  height: 40px;
  top: 33%;
}

.p-cases__slider .splide__arrow svg {
  fill: var(--color-text);
}

.p-cases__slider .splide__arrow:hover {
  background: var(--color-text);
}

.p-cases__slider .splide__arrow:hover svg {
  fill: var(--color-surface);
}

.p-cases__slider .splide__arrow--prev {
  left: -20px;
}

.p-cases__slider .splide__arrow--next {
  right: -20px;
}

.p-case-card {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.p-case-card__thumb {
  height: 160px;
  background: var(--color-border);
  border-radius: 6px;
  margin-bottom: 14px;
}

.p-case-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.p-case-card__tag {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
}

.p-case-card__text {
  margin: 0;
  font-size: 13px;
  color: var(--color-text);
}

.p-cases__action {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.p-flow__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.p-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-flow__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.p-flow__index {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-border);
}

.p-flow__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.p-flow__text {
  margin: 0;
  font-size: 13px;
}

.p-faq {
  background: var(--color-bg-secondary);
}

.p-faq__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.p-faq__list {
  display: grid;
  gap: 12px;
}

.p-faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 14px 16px;
}

.p-faq__label {
  font-weight: 700;
  color: var(--color-accent);
  min-width: 16px;
}

.p-faq__answer {
  margin: 12px 0 0;
  display: none; /* ← 必須 */
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.p-works__list {
  padding: 0;
}

.p-works__filters {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.p-works__filter-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.p-works__filter-item.is-active {
  color: var(--color-text);
  font-weight: 700;
}

.p-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 62px 44px;
}

.p-works-card {
  padding: 0 0 20px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.p-works-card__thumb {
  background: #D9D9D9;
  margin-bottom: 12px;
  aspect-ratio: 626 / 405;
}

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

.p-works-card__tags {
  padding: 0 10px;
}

.p-works-card__title {
  padding: 0 10px;
}

.p-works-card__text {
  margin: 10px 0 0;
  padding: 0 10px;
  font-size: 14px;
  line-height: 170%;
  color: var(--color-text-muted);
}

.p-works-card__tag {
  margin: 0 0 9px;
  font-size: 15px;
  color: var(--color-accent);
  text-transform: uppercase;
}

.p-works-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 170%;
  font-weight: 700;
}

.p-pagination {
  margin-top: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.p-pagination__numbers {
  display: flex;
  gap: 16px;
}

.p-pagination__arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #898989;
}

.p-pagination__arrow.-active {
  color: var(--color-text);
}

.p-pagination .current {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-text);
  color: var(--color-surface);
}

.p-pagination a.page,.p-pagination a.first,.p-pagination a.last {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.p-pagination .extend{
  display: flex;
  align-items: flex-end;
}

.p-news.-single{
  padding: 63px 0 96px;
}

.p-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.p-news__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 23.5px 0;
  border-bottom: 1px solid var(--color-border);
}

.p-news__date {
  font-size: 15px;
  color: var(--color-text-muted);
}

.p-news__title {
  margin: 0;
  font-size: 16px;
  line-height: 170%;
  font-weight: 700;
  color: var(--color-text);
}

.p-news__singletitle{
  font-size: 40px;
  line-height: 130%;
}

.p-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px 44px;
}

.p-blog-card__thumb {
  border-radius: 16px;
  background: var(--color-border);
  margin-bottom: 20px;
  aspect-ratio: 403 / 260;
}

.p-blog-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.p-blog-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 170%;
  font-weight: 700;
}

.p-download__content{
  border-top: 1px solid var(--color-border);
}

.p-download__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  margin-bottom: 28px;
}


.p-download__media {
  background: var(--color-border);
  border-radius: 12px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 12px;
}

.p-download__info {
  display: grid;
  gap: 26px;
}

.p-download__lead {
  font-size: 16px;
  line-height: 170%;
  margin: 0;
  font-weight: 700;
}

.p-download__cards {
  display: grid;
  gap: 14px;
}

.p-download__form-note {
  font-size: 16px;
  line-height: 170%;
  font-weight: 700;
  margin: 97px auto 8px;
  max-width: 863px;
}

.p-download .c-form{
  margin: 30px auto 0;
}

.p-contact__content{
  border-top: 1px solid var(--color-border);
  padding: 56px 0 96px;
}

.p-contact__leadwrap{
  margin: 0 auto;
  max-width: 865px;
}

.p-contact__lead {
  font-size: 16px;
  line-height: 170%;
  font-weight: 700;
  margin-right: -30px;
}

.p-contact__lead > span{
  display: block;
}

.p-contact__lead .-border{
  text-decoration: underline;
}

.p-contact .c-form{
  margin: 40px auto 0;
}

.p-confirm__content{
  border-top: #DDDDDD 1px solid;
}


.p-confirm__note {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 42px;
}

.p-confirm .c-summary {
  max-width: 865px;
  margin: 0 auto;
}

.p-confirm .c-form__actions {
  margin-top: 24px;
}

.p-confirm .c-form{
  gap: 24px;
}

.p-confirm .c-form__note{
  display: none;
}

.p-status__body {
  padding: 72px 0 96px;
  border-top: 1px solid var(--color-border);
}

.p-status__inner {
  max-width: 895px;
  margin: 0 auto;
}

.p-status__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}

.p-status__text span{
  display: block;
}

.p-status__actions {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.p-recruit-hero {
  background: var(--color-surface);
  padding: 64px 0;
}

.p-recruit-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.p-recruit-hero__title {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}

.p-recruit-hero__text {
  margin: 0;
  font-size: 13px;
  color: var(--color-text);
}

.p-recruit-hero__media {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(130deg, var(--color-text) 0%, var(--color-accent) 70%, var(--color-bg-secondary) 100%);
  box-shadow: var(--shadow-soft);
}

.p-recruit-mission {
  text-align: center;
  padding: 60px 0;
  background: var(--color-bg-secondary);
}

.p-recruit-mission__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
}

.p-recruit-mission__lead {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.p-recruit-mission__text {
  margin: 0 auto;
  max-width: 620px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.p-recruit-team {
  background: var(--color-bg-primary);
  padding: 64px 0;
}

.p-recruit-member {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.p-recruit-member__photo {
  height: 160px;
  border-radius: 12px;
  background: var(--color-border);
  margin-bottom: 12px;
}

.p-recruit-member__photo--primary {
  background: linear-gradient(130deg, var(--color-bg-secondary), var(--color-accent));
}

.p-recruit-member__role {
  margin: 0 0 4px;
  font-size: 11px;
  color: var(--color-accent);
}

.p-recruit-member__name {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.p-recruit-member__text {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

.p-recruit-data {
  background: var(--color-surface);
  padding: 64px 0;
  text-align: center;
}

.p-recruit-data__list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.p-recruit-data__item {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.p-recruit-data__value {
  font-size: 28px;
  font-weight: 700;
}

.p-recruit-data__unit {
  font-size: 12px;
  color: var(--color-text-muted);
}

.p-recruit-data__label {
  font-size: 11px;
  color: var(--color-text-muted);
}

.p-recruit-jobs {
  background: var(--color-bg-secondary);
  padding: 64px 0;
}

.p-recruit-jobs__list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.p-recruit-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.p-recruit-job__info {
  display: grid;
  gap: 4px;
}

.p-recruit-job__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.p-recruit-job__meta {
  margin: 0;
  font-size: 11px;
  color: var(--color-text-muted);
}

.p-recruit-job__tag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--color-bg-secondary);
  color: var(--color-text-muted);
}

.p-recruit-job__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-muted);
}

.p-recruit-cta {
  color: #333;
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.p-recruit-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(181, 156, 84, 0.28) 0%, rgba(181, 156, 84, 0) 60%);
  opacity: 0.7;
  pointer-events: none;
}

.p-recruit-cta__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.p-recruit-cta__text {
  margin: 0 0 20px;
  font-size: 12px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.p-recruit-cta__btn{
  border: #0042CD 1px solid;
}

.p-recruit-cta__btn:hover{
  border: #fff 1px solid;
}

.p-recruit-cta .c-btn {
  position: relative;
  z-index: 1;
}

.p-top-hero {
  background: var(--color-surface);
  padding: 96px 0 88px;
}

.p-top-hero__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}

.p-top-hero__lead {
  margin: 17px 0 0px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.p-top-hero__text {
  margin: 0;
  max-width: 520px;
  font-size: 13px;
  color: var(--color-text);
}

.p-top-metrics {
  padding: 95px 0;
}

.p-top-metrics__title{
  font-size: 64px;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0 0;
}

.p-top-metrics__lead .sp-only{
  display: none;
}

.p-top-metrics__lead {
  margin: 16px 0 0px;
  font-size: 24px;
  line-height: 170%;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.p-top-metrics__grid {
  display: flex;
  justify-content: center;
  gap: 98px;
  text-align: center;
  margin-top: 34px;
  padding-right: 68px;
}

.p-top-metrics__value {
  margin: 0 0 6px;
  font-size: 96px;
  line-height: 1;
  font-weight: 700;
  filter: drop-shadow(4px 4px 0 rgba(181, 156, 84, 0.4));
}

.p-top-metrics__value span{
  font-size: 64px;
}

.p-top-metrics__value span.-item1{
  font-size: 100px;
  margin-left: 10px;
}

.p-top-metrics__value span.-item2{
  margin-left: 10px;
}

.p-top-metrics__value span.-item3{
  font-size: 100px;
  margin-left: 10px;
}

.p-top-metrics__label {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.p-top-metrics__disc {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.p-top-metrics__trust {
  margin-top: 87px;
  text-align: center;
}

.p-top-metrics__trust-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 110%;
  color: #B59C54;
  font-weight: 700;
}


.p-top-metrics__btn {
  margin-top: 8px;
}

.p-top-concept {
  background: var(--color-bg-primary);
  padding: 98px 0;
}


.p-top-concept__title {
  margin: 0 0 12px;
  font-size: 64px;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
}

.p-top-concept__title span{
  color: #B59C54;
}

.p-top-concept__text {
  margin: 0 auto;
  font-size: 16px;
  line-height: 170%;
  font-weight: 700;
  max-width: 500px;
  text-align: center;
}

.p-top-concept__text .sp-only{
  display: none;
}


.p-top-proof {
  color: var(--color-surface);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.p-top-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-color: #0f0f0f;
}

.p-top-proof__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.p-top-proof__tags {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.p-top-proof__tag {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  color: var(--color-surface);
}


.p-top-section-head__title {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 110%;
}

.p-top-works {
  background: var(--color-bg-primary);
  padding: 97px 0;
}

.p-top-works__slider {
  margin-top: 30px;
}

.p-top-works__slider .splide__slide {
  padding: 0 0 20px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.p-top-works__card {
  display: block;
}

.p-top-works__card-link {
  display: block;
}

.p-works__grid .p-top-works__card {
  padding: 0 0 20px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

/* .p-top-works__slider .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  position: absolute;
  bottom: 0;
  right: 20px;
} */

.p-top-works__slider .splide__arrow {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  opacity: 1;
  width: 44px;
  height: 44px;
  top: 33%;
}

.p-top-works__slider .splide__arrow svg {
  fill: var(--color-text);
}

.p-top-works__slider .splide__arrow:hover {
  background: var(--color-text);
}

.p-top-works__slider .splide__arrow:hover svg {
  fill: var(--color-surface);
}

.p-top-works__slider .splide__arrow--prev {
  left: -22px;
}

.p-top-works__slider .splide__arrow--next {
  right: -22px;
}


.p-top-works__thumb {
  background: var(--color-border);
  margin-bottom: 15px;
  aspect-ratio: 626 / 405;
}

.p-top-works__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.p-top-works__industry {
  width: fit-content;
  margin: 0 10px 10px;
  padding: 2px 8px;
  color: #fff;
  background: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  border-radius: 4px;
}
.p-top-works__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 10px;
}

.p-top-works__tag {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  text-decoration: none;
}

.p-top-works__title {
  margin: 0 0 10px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 170%;
  color: var(--color-text);
}

.p-top-works__text {
  margin: 10px 0 0;
  padding: 0 10px;
  font-size: 14px;
  line-height: 170%;
  color: var(--color-text-muted);
}

.p-top-works__btn,.p-top-blog__btn,.p-top-news__btn{
  margin: 38px 0 0 auto;
  display: flex;
}


.p-top-blog {
  padding: 96px 0 ;
}


.p-top-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 44px;
  margin-top: 30px;
}

.p-top-blog__card {
  background: rgba(255, 255, 255, 0.06);
}

.p-top-blog__thumb {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 20px;
  aspect-ratio: 403 / 260;
}

.p-top-blog__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.p-top-blog__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 170%;
}

.p-top-news {
  padding: 98px 0 0 ;
}

.p-top-news__list {
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.p-top-news__item {
  display: grid;
  grid-template-areas:
    "date title"
    ". excerpt";
  grid-template-columns: 90px 1fr;
  gap: 0 46px;
  padding: 23px 0;
  border-bottom: 1px solid var(--color-border);
}

.p-top-news__date {
  grid-area: date;
  font-size: 15px;
  color: #898989;
}

.p-top-news__title {
  grid-area: title;
  margin: 0;
  font-size: 16px;
  line-height: 170%;
  font-weight: 700;
}

.p-top-news__excerpt {
  grid-area: excerpt;
  margin: 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.p-top-recruit {
  background: var(--color-text);
  color: var(--color-surface);
  padding: 56px 0;
}

.p-top-recruit__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.p-top-recruit__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.p-top-recruit__text {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

.p-top-recruit__btn{
  border: 1px solid;
  transition: .4s;
}

.p-top-recruit__btn:hover{
  background-color: #000;
  color: #fff;
}

.p-top-recruit__btn:hover::after {
      background: url(../images/common/cta-arrow.svg) no-repeat center center / cover;
}

.p-top .c-cta {
  background: var(--color-surface);
}

.p-top-dx__action{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-top-dx__action .c-btn{
  width: fit-content;
}

.p-index {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.p-index__inner {
  padding: 80px 0;
}

.p-index__title {
  font-size: 24px;
}

.p-index__lead {
  margin: 16px 0 0;
}

.p-index__action {
  margin: 20px 0 0;
}

/* 詳細ページ　*/
.p-single{
  padding: 86px 0;
}

.p-single.-news{
  padding: 90px 0 0;
}


.p-single__inner{
  max-width: 864px;
  margin: 0 auto;
}

.p-single__header.-border{
  border-bottom: #DDDDDD 1px solid;
  padding-bottom: 37px;
}

.p-single__time{
  font-size: 15px;
  line-height: 110%;
  color: #898989;
}

.p-single__cate{
  display: flex;
  gap: 10px;
  list-style: none;
  padding-left: unset;
}

.p-single__cate li{
  font-size: 15px;
  color: #B59C54;
}

.p-single__title{
  font-size: 30px;
  line-height: 150%;
  font-weight: 700;
  margin: 12px 0 0;
}

.p-single__eyecatch{
  margin: 28px 0 0 0;
}

.p-single__eyecatch img{
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.p-single__contants{
  padding: 13px 0 0;
}

.p-single__contants h2{
  font-size: 26px;
  line-height: 150%;
  font-weight: 700;
  padding-left: 18px;
  position: relative;
  margin: 36px 0 0 0;
}

.p-single__contants h2::after{
  position: absolute;
  background-color: #000;
  content: "";
  width: 3px;
  height: 120%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-single__contants h3{
  font-size: 22px;
  line-height: 150%;
  font-weight: 700;
  margin: 36px 0 0 0;
}

.p-single__contants h4{
  font-size: 20px;
  line-height: 150%;
  font-weight: 700;
  margin: 36px 0 0 0;
}

.p-single__contants h5{
  font-size: 16px;
  line-height: 150%;
  font-weight: 700;
  margin: 23px 0 0 0;
}

.p-single__contants p,.p-single__contants li{
  font-size: 15px;
  line-height: 180%;
  margin: 26px 0 0 0;
}

.p-single__contants img{
  width: 100%;
  height: auto;
  margin: 36px 0 0 0;
}

.p-single__contants.-work{
    padding: 73px 0 0;
}

.p-single__contants.-work section{
  margin: 0 0 38px 0;
}

.p-single__contants.-work h2{
  font-size: 40px;
  line-height: 130%;
  padding-left: unset;
  margin: 0 0 0 0;
}

.p-single__contants.-work h2::after{
  position: unset;
}

.p-single__button{
  width: 225px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  margin: 72px 0 96px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #000;
}

.p-single__button::after{
  content: "";
  background-image: url(../images/common/cta-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}

.p-single__button:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}

.p-single__button:hover::after {
  background-image: url(../images/common/cta-arrow-black.svg);
}

/* ===============================
   diagram
=============================== */
.p-top-concept__diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin: 24px auto 0;
    position: relative;
}

.p-top-concept__node {
    width: 200px;
    height: 200px;
    border: 1px solid #000;
    border-radius: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    font-size: 22px;
    line-height: 110%;
    font-weight: 700;
    box-shadow: 0 0px 20px rgba(182,182,182,0.2);
}

.p-top-concept__node--center {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    box-shadow: 0 0px 20px rgba(182,182,182,0.2);
    z-index: 3;
    font-size: 32px;
}

.p-top-concept__node--center .p-top-concept__node-sub{
  color: #fff;
}

.p-top-concept__node--left{
  overflow: hidden;
}

.p-top-concept__node--right{
  border: #B59C54 1px solid;
  box-shadow: 0 0px 20px rgba(181,156,84,0.2);
  background-color: #FFFBEE;
  color: #B59C54;
}

.p-top-concept__node--left .p-top-concept__node-sub{
  position: relative;
  z-index: 2;
}

.p-top-concept__node--right .p-top-concept__node-sub{
  color: #B59C54;
}


.p-top-concept__node-sub {
    display: block;
    font-size: 17px;
    line-height: 170%;
    font-weight: 400;
    color: #B0B0B0;
    margin-top: 10px;
}

/* Value Shine */
.p-top-concept__node-value .value-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197,160,89,0.2), transparent 60%);
    animation: rotateShine 10s linear infinite;
}

/* Lines */
.p-top-concept__line {
    width: 100px;
    height: 2px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.p-top-concept__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: #000;
    animation: flowMove 1.5s linear infinite;
}

/* Reuse animations */
@keyframes flowMove { 0%{left:-30%;} 100%{left:100%;} }
@keyframes rotateShine { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }

/* ===============================
   privacy
=============================== */
.p-privacy__contents .l-section{
  padding: 55px 0 96px;
}

.p-privacy__inner{
  max-width: 856px;
  margin: 0 auto;
}

.p-privacy__date{
  display: block;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 !important;
  padding-bottom: 1.7em;
  text-align: center;
}

.p-privacy__label{
  display: block;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 !important;
  padding-bottom: 1.7em;
  text-align: left;
}

.p-privacy__inner section{
  margin: 74px 0 0 0;
}

.p-privacy__inner h2{
  font-size: 20px;
  line-height: 150%;
  font-weight: 700;
  margin: 0 0 7px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.p-privacy__inner p{
  font-size: 15px;
  line-height: 170%;
  margin: 0;
}

/* ===============================
   slider
=============================== */
.c-marquee {
  margin: 0 calc(50% - 50vw);
	width: 100vw;
  overflow: hidden;
}

.c-marquee__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.c-marquee__item {
  width: 225px;
  white-space: nowrap;
}

.c-marquee__item.toho-gas {
  width: 350px;
}
.c-marquee__item.chintai {
  width: 170px;
}
.c-marquee__item.odkk {
  width: 150px;
}
.c-marquee__item.gates {
  width: 150px;
}
.c-marquee__item.coly {
  width: 200px;
}
.c-marquee__item.mercury {
  width: 150px;
}
.c-marquee__item.cmind {
  width: 170px;
}

.c-marquee__item figure,.c-marquee__item img{
  width: 100%;
  height: auto;
}

/* 左に流れ続ける */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ===============================
   Loader
=============================== */
.c-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

.c-loader__logo {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #000;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.c-loader__line {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #b59c54;
  transform: scaleX(0);
  transform-origin: left;
  animation: c-loader-line 1.5s forwards;
}

@keyframes c-loader-line {
  to {
    transform: scaleX(1);
  }
}


.c-loader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Object - Utility */
.u-text-gold {
  color: var(--color-accent);
}

.u-text-center {
  text-align: center;
}

.u-bg-white{
  background-color: #fff;
}

.fade-up { opacity: 0; transform: translateY(60px); transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1020px) {
  body.is-open{
    overflow-y: hidden;
  }

  .l-header__inner {
    gap: 12px;
    padding: 16px 20px;
  }

  .l-header__inner .c-logo {
    font-size: 28px;
  }

  .c-global-nav {
    display: flex;
    justify-content: center;
    min-width: 24px;
    position: fixed;
    z-index: 90;
    left: 0;
    top: 80px;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    display: none;
  }

  .c-global-nav__listwrap{
    gap: 50px;
    padding: 34px 20px 0;
  }

  .c-global-nav__list{
    flex-direction: column;
    gap: 12px;
    width: 50%;
  }

  .c-global-nav__item{
    width: 100%;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
  }

  .c-global-nav__caret{
    display: none;
  }

  .c-global-nav__child{
    box-shadow: unset;
    background-color: unset;
    display: block;
    position: unset;
    width: unset;
    height: unset;
    border-radius: unset;
    padding-left: unset;
    padding: unset;
    margin: 10px 0 0 0;
  }

  .c-global-nav__child a{
    color: #898989;
    font-size: 20px;
    font-weight: 400;
  }

  .c-burger{
    display: block;
    position: relative;
    height: 20px;
    width: 20px;
    cursor: pointer;
  }

  .c-burger__border{
    width: 20px;
    height: 2px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .2s;
  }

  .c-burger__border--top{
    top: 0;
  }

  .c-burger__border--mid{
    top: 50%;
    transform: translate(-50%,-50%);
  }

  .c-burger__border--bottom{
    bottom: 0;
  }

  .c-burger.is-active .c-burger__border--top{
    rotate: -45deg;
    top: 1px;
  }

  .c-burger.is-active .c-burger__border--mid{
    opacity: 0;
  }

  .c-burger.is-active .c-burger__border--bottom{
    rotate: 45deg;
    bottom: 3px;
  }
}

@media (max-width: 973px) {
  .c-panel.-panel1 .c-panel__list li:nth-of-type(odd){
    min-width: 100%;
  }
}

@media (max-width: 940px) {
  .p-contact__lead {
    margin-right: 0px;
  }
  .p-top-metrics__grid{
    padding-right: unset;
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .p-mv__inner {
    grid-template-columns: 1fr;
  }

  .p-mv__visual {
    justify-content: center;
  }

  .p-issues__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-download__intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .p-download__info{
    gap: 24px;
  }

  .c-panel.-panel1 .c-panel__list li:nth-of-type(odd){
    min-width: unset;
    width: 41%;
  }


  .p-recruit-hero__inner {
    grid-template-columns: 1fr;
  }

  .p-recruit-data__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-works__grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .p-flow__inner,
  .p-faq__inner {
    grid-template-columns: 1fr;
  }

  .p-top-hero__title {
    font-size: 36px;
  }

  .p-top-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-top-metrics__logos {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .p-top-concept__inner {
    grid-template-columns: 1fr;
  }

  .p-top-innovation__inner {
    grid-template-columns: 1fr;
  }

  .p-top-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 750px) {
  .l-container{
    padding: 0 20px;
  }

  .p-company .p-message {
    background: var(--color-text);
    color: var(--color-surface);
    padding: 56px 0;
  }

  .p-company .p-message__title {
    color: var(--color-accent);
    font-size: 26px;
  }

  .p-company .p-message__text {
    color: var(--color-surface);
  }

  .p-company .c-section-lead {
    color: var(--color-text-muted);
  }

  .p-company .c-section-lead::before {
    background: var(--color-text-muted);
  }

  .p-company .p-value__list {
    color: var(--color-surface);
  }

  .p-company .c-section-title {
    color: var(--color-surface);
  }

  .p-company .p-overview {
    background: var(--color-text);
    color: var(--color-surface);
    padding: 56px 0;
  }

  .p-company .p-overview__table,
  .p-company .p-overview__table tbody,
  .p-company .p-overview__table tr,
  .p-company .p-overview__table th,
  .p-company .p-overview__table td {
    display: block;
    width: 100%;
  }

  .p-company .p-overview__table th {
    padding-bottom: 6px;
    color: var(--color-text-muted);
  }

  .p-company .p-overview__table td {
    padding-top: 0;
    color: var(--color-surface);
  }

  .p-company .p-access {
    background: var(--color-text);
    color: var(--color-surface);
    padding: 56px 0;
  }

  .p-company .p-access__map iframe {
    border-radius: 8px;
  }

  .c-modal__inner{
    padding: 30px 20px;
  }

  .p-member__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .c-modal__inner__header{
    right: 20px;
    top: 10px;
  }

  .c-modal__inner__container p{
    font-size: 15px;
  }

  .p-top-hero {
    padding: 72px 0 64px;
  }

  .p-top-hero__title {
    font-size: 30px;
  }

  .p-top-metrics__grid {
    grid-template-columns: 1fr;
  }

  .p-top-metrics__logos {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .p-top-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .p-top-recruit__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .p-blog-card__title{
    font-size: 16px;
    line-height: 170%;
  }

  .p-single{
    padding: 60px 0 0;
  }

  .p-single.-news{
    padding: 54px 0 0;
  }

  .p-single__title{
    font-size: 26px;
  }

  .p-single__cate{
    margin: 0 0 0 0;
  }

  .p-single__contants h2{
    font-size: 22px;
    padding-left: 22px;
  }

  .p-single__contants h2::after {
    height: 114%;
  }

  .p-single__contants h3{
    font-size: 20px;
    margin: 46px 0 0 0;
  }

  .p-single__contants h4{
    font-size: 18px;
  }

  .p-single__contants.-work{
    padding: 40px 0 0;
  }

  .p-single__contants.-work h2{
    font-size: 32px;
    line-height: 130%;
  }

  .p-single__contants.-work p{
    margin: 18px 0 0 0;
  }

  .p-single__button{
    margin: 40px 0 60px;
  }

  .c-form{
    gap: 24px;
  }

  .c-form__note{
    margin: 2px 0 0 0;
  }

  .c-form__actions{
    margin-top: 16px;
  }

  .p-news.-single{
    padding: 33px 0 60px;
  }

  .p-news__singletitle{
    font-size: 32px;
    margin-bottom: 33px;
  }

  .p-contact__leadwrap{
    margin: -12px auto 0;
  }

  .p-contact__lead{
    display: flex;
    flex-direction: column;
    gap: 27px;
  }

  .p-contact .c-form {
    margin: 30px auto 0;
  }

  .c-panel{
    padding: 20px 29px 20px;
  }

  .c-panel.-panel1 .c-panel__list li:nth-of-type(odd){
    width: 47%;
  }

  .p-download__form-note{
    margin: 59px auto 8px;
  }

  .p-confirm__note {
    text-align: left;
    margin: 0 0 36px;
  }

  .c-summary .c-field{
    flex-direction: column;
    gap: 8px;
  }

  .p-confirm .c-summary {
    max-width: 865px;
    margin: 0 auto;
  }

  .p-confirm .c-form__actions {
    margin-top: 24px;
  }

  .p-confirm .c-form{
    gap: 27px;
  }

  .p-top-metrics {
      padding: 58px 0;
  }

  .p-top-metrics__title{
    font-size: 40px;
  }

  .p-top-metrics__lead {
    margin: 16px 0 0px;
    font-size: 16px;
    line-height: 170%;
  }

  .p-top-metrics__lead .sp-only{
    display: inline-block;
  }

  .p-top-metrics__trust-title{
    font-size: 20px;
    line-height: 110%;
  }

  .p-top-metrics__grid{
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    gap: 16px;
  }

  .p-top-metrics__trust{
    margin-top: 32px;
  }

  .p-top-metrics__value{
    font-size: 76px;
    margin: 0 0 4px;
  }

  .p-top-metrics__value span{
    font-size: 40px;
  }

  .p-top-metrics__value span.-item1{
    font-size: 64px;
  }

  .p-top-concept{
    padding: 58px 0;
  }

  .p-top-concept__title {
    font-size: 40px;
    margin: 0 0 17px;
  }

  .p-top-concept__text .sp-only{
    display: inline-block;
  }

  .p-top-concept__diagram {
    flex-direction: column;
    margin: 31px auto 0;
    gap: 12px;
  }

  .p-top-concept__node{
    width: 200px;
    height: 100px;
    font-size: 20px;
  }

  .p-top-concept__node--center{
    width: 176px;
    height: 176px;
    font-size: 28px;
  }

  .p-top-concept__line {
    width: 2px;
    height: 40px;
  }

    .p-top-concept__line::after {
    width: 100%;
    height: 30%;
    left: 0;
    top: 0;
    animation: flowMoveVertical 1.5s linear infinite;
  }

  @keyframes flowMoveVertical {
    0%   { top: -30%; }
    100% { top: 100%; }
  }


  .p-top-section-head__title{
    font-size: 40px;
    margin: 0 0 19px;
  }

  .p-top-works__btn,.p-top-news__btn{
    margin: 32px 0 0 auto;
  }

  .p-top-works {
    padding: 59px 0;
  }

  .p-top-works__title{
    font-size: 16px;
  }

  .p-top-blog{
    padding: 60px 0 ;
  }

  .p-top-blog__grid {
    grid-template-columns: repeat(2, 1fr);
        gap: 32px;
  }

  .p-top-blog__title{
    font-size: 16px;
  }


  .p-top-blog__btn{
    margin: 40px 0 0 auto;
  }

  .p-top-news {
    padding: 0 0 60px;
  }

  .p-top-news__item {
    display: block;
    padding: 25px 0;
  }

  .p-top-dx__action .c-btn{
    font-size: 12px;
  }

  .p-top-works__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
  }

  .p-top-works__industry {
    margin-inline: 0;
  }

  .p-top-works__title {
    padding-inline: 0;
  }

  .p-top-works__card {
    display: flex;
    flex-direction: column;
  }

  .p-top-works__tags {
    margin: 0;
  }

  .p-privacy__contents .l-section{
    padding: 62px 0 60px;
  }

  .p-privacy__inner section{
      margin: 33px 0 0 0;
  }

  .p-privacy__inner h2{
    font-size: 20px;
    line-height: 150%;
    font-weight: 700;
    margin: 0 0 7px 0;
    font-family: "Noto Sans JP", sans-serif;
  }

  .p-privacy__inner p{
    line-height: 173%;
  }
}

@media (max-width: 680px) {
  .l-section{
    padding: 57px 0 60px;
  }
  .c-section-title {
    font-size: 40px;
  }

  .c-cta{
    padding: 86px 0 86px;
  }

  .c-cta__title {
    font-size: 46px;
    margin: 0 -1px;
  }

  .c-cta__actions{
    flex-direction: column;
    max-width: 280px;
    margin: 27px auto 0;
    gap: 24px;
  }

  .c-cta__actions .c-btn{
    height: 65px;
    width: 100%;
    font-size: 16px;
  }

  .p-mv{
    padding: 60px 0 57px;
  }

  .p-mv__title {
    font-size: 52px;
  }

  .p-recruit-hero__title {
    font-size: 26px;
  }

  .p-message__title {
    font-size: 26px;
  }

  .p-overview__table,
  .p-overview__table tbody,
  .p-overview__table tr,
  .p-overview__table th,
  .p-overview__table td {
    display: block;
    width: 100%;
  }

  .p-overview__table th {
    padding-bottom: 6px;
    color: var(--color-text-muted);
  }

  .p-overview__table td {
    padding-top: 0;
  }

  .p-issues__list {
    grid-template-columns: 1fr;
  }

  .p-news__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 25px 0;
  }

  .p-blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 43px;
  }

  .p-recruit-data__list {
    grid-template-columns: 1fr;
  }

  .p-offering__item {
    grid-template-columns: 60px 1fr;
  }

  .p-flow__item {
    grid-template-columns: 50px 1fr;
  }

  .p-works__filters {
     gap: 3px 16px;
    margin: 0 0 42px;
  }

  .p-works-card__thumb{
    aspect-ratio: 335 / 217;
  }

  .p-works-card__title{
    font-size: 16px;
    line-height: 170%;
  }

  .c-summary__row {
    grid-template-columns: 1fr;
  }

  .p-status__body {
    padding: 60px 0 60px;
  }

  .p-status__text span + span{
    margin-top: 27px;
  }

  .p-status__actions{
    margin-top: 40px;
  }

  .l-footer {
    padding: 78px 0 84px;
  }

  .l-footer__inner{
    gap: 18px;
  }

  .l-footer__bottom{
    font-size: 13px;
    margin: 48px auto 0;
    padding-top: 22px;
  }

   .l-footer__bottom::after{
     width: calc(100% - 40px);
   }

  .c-footer-nav{
    gap: 12px 60px;
  }

  .c-footer-nav__col .sp-only{
    display: block;
  }

  .c-footer-nav__col.pc-only{
    display: none;
  }

  .p-pagination{
    gap: 4px;
    margin-top: 32px;
  }

  .p-pagination__numbers{
    gap: 4px;
  }

  .p-pagination__arrow{
    margin: 0 0 0 0;
  }

  .p-pagination a.page{
    width: 40px;
    height: 40px;
  }

  .p-pagination__numbers{
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (max-width: 520px) {

  .p-mv__diagram {
    width: 190px;
    height: 190px;
  }

  .p-mv__node {
    width: 120px;
    height: 120px;
  }

  .p-recruit-data__item {
    width: 140px;
    height: 140px;
  }
}

.tech-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.ai-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #4A90E2; /* 好きな色に */
  border-radius: 50%;
  animation: aiPop 2s infinite;
}

@keyframes aiPop {
  0% { transform: scale(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1); opacity: 0; }
}
