@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1,
h2,
h3,
h4 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

.hero__title,
.philosophy__title,
.service__title,
.ai-policy__title,
.schedule__label,
.cta__title,
.page-head__title,
.single-article__title {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

a {
  transition: opacity 0.25s ease, color 0.25s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

.is-en {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-inner {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 24px;
  }
}

.l-inner--narrow {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 80px;
}
@media screen and (max-width: 767px) {
  .l-inner--narrow {
    padding-inline: 24px;
  }
}

.site-main {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 40px;
  background: #fff;
  border-bottom: 1px solid #c7c7c7;
}
@media screen and (max-width: 767px) {
  .site-header {
    padding: 16px 20px;
  }
}

.site-logo {
  display: inline-flex;
  align-items: center;
}
.site-logo__img {
  display: block;
  width: auto;
  height: 52px;
}
@media screen and (max-width: 767px) {
  .site-logo__img {
    height: 36px;
  }
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.global-nav__link {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .global-nav__link {
    font-size: 16px;
  }
}
.global-nav__home {
  display: none;
}
@media screen and (max-width: 767px) {
  .global-nav__home {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .global-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .global-nav__list {
    flex-direction: column;
    gap: 28px;
  }
  .global-nav__link {
    font-size: 22px;
  }
  .is-nav-open .global-nav {
    opacity: 1;
    visibility: visible;
  }
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 110;
  width: 32px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span:nth-child(3) {
  bottom: 0;
}
.is-nav-open .nav-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.is-nav-open .nav-toggle span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.site-footer {
  padding: 64px 0 48px;
  border-top: 1px solid #d9d9d9;
}
.site-footer__inner {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .site-footer__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__inner {
    padding-inline: 24px;
  }
}
.site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
}
.site-footer__logo-img {
  display: block;
  width: auto;
  height: 40px;
}
.site-footer__nav {
  display: flex;
  gap: 28px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .site-footer__nav {
    flex-wrap: wrap;
    gap: 16px 28px;
  }
}
.site-footer__copy {
  margin-top: 40px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 12px;
  color: #555;
  text-align: center;
}

.btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 110px;
  height: 110px;
  padding: 10px;
  background: #1a1a1a;
  color: #fff;
}
.btn-square__label {
  display: flex;
  align-items: center;
  height: 48px;
  padding-right: 10px;
  border-right: 1px solid #d9d9d9;
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}
.btn-square__arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
}
@media (hover: hover) {
  .btn-square:hover {
    opacity: 1;
    background: #333;
  }
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.btn-text::after {
  content: "→";
  transition: transform 0.25s ease;
}
@media (hover: hover) {
  .btn-text:hover {
    opacity: 1;
  }
  .btn-text:hover::after {
    transform: translateX(4px);
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 280px;
  padding: 20px 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.btn-cta::after {
  content: "→";
}
@media (hover: hover) {
  .btn-cta:hover {
    opacity: 1;
    background: #fff;
    color: #1a1a1a;
  }
}

.btn-cta--dark {
  border-color: #1a1a1a;
  color: #1a1a1a;
}
@media (hover: hover) {
  .btn-cta--dark:hover {
    background: #1a1a1a;
    color: #fff;
  }
}

.section-label {
  position: relative;
  flex-shrink: 0;
  width: 128px;
  transition: background-color 0.7s ease, color 0.7s ease;
}
.section-label__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: inherit;
}
@media screen and (max-width: 1024px) {
  .section-label {
    width: 72px;
  }
  .section-label__text {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .section-label {
    width: auto;
    display: grid;
    place-items: center;
    padding: 16px 24px;
  }
  .section-label__text {
    position: static;
    transform: none;
    display: block;
    font-size: 20px;
    letter-spacing: 0.08em;
    text-align: center;
  }
}

.js .section-label {
  background-color: #fff;
  color: #1a1a1a;
}

.js .section-label.is-inview {
  background-color: #1a1a1a;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .section-label {
    transition: none;
  }
}
.step-card {
  flex: 1;
  padding: 28px 24px;
  border: 1px solid #d9d9d9;
}
.step-card__num {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #555;
}
.step-card__title {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 500;
}
.step-card__text {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.75;
  color: #555;
}

.num-card {
  flex: 1;
  padding: 32px 28px;
  border: 1px solid #d9d9d9;
}
.num-card__num {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.num-card__title {
  margin-top: 18px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}
.num-card__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}

.anim-heading .char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.anim-heading .char__in {
  display: inline-block;
  will-change: transform;
}

.js .anim-heading .char__in {
  transform: translateY(110%);
}

.js .anim-heading.is-inview .char__in {
  animation: niar-char-up 0.9s cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: calc(var(--i) * 0.04s);
}

.js.wf-loading .anim-heading.is-inview .char__in {
  animation: none;
}

@keyframes niar-char-up {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js .anim-heading .char__in {
    transform: none;
    animation: none;
  }
}
.anim-heading--sp-break .anim-heading__br {
  display: none;
}

@media screen and (max-width: 767px) {
  .anim-heading--sp-break .anim-heading__br {
    display: inline;
  }
}
.js .anim-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (min-width: 768px) {
  .js .anim-stagger.is-inview > * {
    opacity: 1;
    transform: translateY(0);
  }
  .js .anim-stagger.is-inview > *:nth-child(1) {
    transition-delay: 0s;
  }
  .js .anim-stagger.is-inview > *:nth-child(2) {
    transition-delay: 0.1s;
  }
  .js .anim-stagger.is-inview > *:nth-child(3) {
    transition-delay: 0.2s;
  }
  .js .anim-stagger.is-inview > *:nth-child(4) {
    transition-delay: 0.3s;
  }
  .js .anim-stagger.is-inview > *:nth-child(5) {
    transition-delay: 0.4s;
  }
  .js .anim-stagger.is-inview > *:nth-child(6) {
    transition-delay: 0.5s;
  }
  .js .anim-stagger.is-inview > *:nth-child(7) {
    transition-delay: 0.6s;
  }
  .js .anim-stagger.is-inview > *:nth-child(8) {
    transition-delay: 0.7s;
  }
}
@media screen and (max-width: 767px) {
  .js .anim-stagger > * {
    transform: translateY(16px);
    transition-duration: 0.5s;
  }
  .js .anim-stagger > *.is-inview {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js .anim-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.page-index {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-index {
    display: block;
    margin: 0 24px 38px;
    padding: 20px 22px;
    background: #f4f4f4;
    scroll-margin-top: 76px;
  }
}
.page-index__label {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #555;
}
.page-index__list {
  margin-top: 10px;
  border-top: 1px solid #d9d9d9;
}
.page-index__item {
  border-bottom: 1px solid #d9d9d9;
}
.page-index__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 2px;
}
.page-index__num {
  flex-shrink: 0;
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 13px;
  color: #555;
}
.page-index__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.page-index__en {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #555;
}
.page-index__ja {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
.page-index__arrow {
  flex-shrink: 0;
  font-size: 13px;
  color: #555;
}

@media screen and (max-width: 767px) {
  #philosophy,
  #strategy,
  #design,
  #development,
  #schedule,
  #ai-policy {
    scroll-margin-top: 76px;
  }
}
.index-fab {
  display: none;
}
@media screen and (max-width: 767px) {
  .index-fab {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
}
.index-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.index-fab__arrow {
  font-size: 14px;
  line-height: 1;
}
.index-fab__label {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.is-nav-open .index-fab {
  opacity: 0;
  visibility: hidden;
}

.hero {
  background: #fff;
}
.hero__inner {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .hero__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding-inline: 24px;
  }
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    align-items: stretch;
    padding-block: 48px;
  }
}
.hero__title {
  width: 100%;
  font-size: clamp(72px, 13.8vw, 200px);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: clamp(102px, 13.8vw, 200px);
  }
}
.hero__lead {
  font-size: 17px;
  line-height: 1.85;
  text-align: right;
}
.hero__lead p + p {
  margin-top: 1.2em;
}
@media screen and (max-width: 1024px) {
  .hero__lead {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .hero__lead {
    text-align: left;
  }
  .hero__lead br {
    display: none;
  }
}
.hero__cta {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .hero__cta {
    align-self: flex-end;
  }
}

.philosophy__inner {
  display: flex;
  margin-inline: auto;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 1024px) {
  .philosophy__inner {
    flex-direction: column;
  }
}
.philosophy__col {
  flex: 1;
  padding: 80px;
}
.philosophy__col + .philosophy__col {
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 1024px) {
  .philosophy__col {
    padding: 56px 40px;
  }
  .philosophy__col + .philosophy__col {
    border-left: none;
    border-top: 1px solid #d9d9d9;
  }
}
@media screen and (max-width: 767px) {
  .philosophy__col {
    padding: 40px 24px;
  }
}
.philosophy__title {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .philosophy__title {
    font-size: clamp(32px, 3vw, 40px);
  }
}
.philosophy__text {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.85;
}

.philosophy__tags-label {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #555;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.philosophy__tags-label + .tag-list {
  margin-top: 12px;
}
.tag-list__item {
  padding: 4px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
}

.service__row {
  display: flex;
  margin-inline: auto;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .service__row {
    flex-direction: column;
  }
}
.service__body {
  flex: 1;
  min-width: 0;
  padding: 80px;
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 1024px) {
  .service__body {
    padding: 56px 40px;
  }
}
@media screen and (max-width: 767px) {
  .service__body {
    padding: 32px 24px 48px;
    border-left: none;
  }
}
.service__title {
  font-size: clamp(32px, 5.2vw, 70px);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: clamp(57px, 5.2vw, 70px);
  }
}
.service__desc {
  margin-top: 36px;
  font-size: 15px;
  line-height: 1.85;
  color: #555;
}
@media screen and (max-width: 767px) {
  .service__desc {
    margin-top: 16px;
  }
}

.step-flow {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 40px;
}
.step-flow__arrow {
  display: flex;
  align-items: center;
  font-size: 21px;
  color: #555;
}
@media screen and (max-width: 1024px) {
  .step-flow {
    flex-wrap: wrap;
  }
  .step-flow__arrow {
    display: none;
  }
  .step-flow .step-card {
    flex: 1 1 calc(50% - 7px);
  }
}
@media screen and (max-width: 767px) {
  .step-flow {
    flex-direction: column;
  }
  .step-flow .step-card {
    flex: 1 1 100%;
  }
}

.num-grid {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .num-grid {
    flex-direction: column;
  }
}

.schedule {
  border-top: 1px solid #d9d9d9;
}
.schedule__inner {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .schedule__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .schedule__inner {
    padding-inline: 24px;
  }
}
.schedule__inner {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .schedule__inner {
    padding-block: 48px;
  }
}
.schedule__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}
.schedule__icon {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.schedule__label {
  font-size: 34px;
}
.schedule__list {
  display: flex;
  gap: 0;
}
@media screen and (max-width: 1024px) {
  .schedule__list {
    flex-wrap: wrap;
    gap: 32px 0;
  }
}
@media screen and (max-width: 767px) {
  .schedule__list {
    flex-direction: column;
    gap: 28px;
  }
}

.schedule-step {
  flex: 1;
  padding: 0 24px;
}
.schedule-step + .schedule-step {
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 1024px) {
  .schedule-step {
    flex: 1 1 50%;
  }
}
@media screen and (max-width: 767px) {
  .schedule-step + .schedule-step {
    border-left: none;
    border-top: 1px solid #d9d9d9;
    padding-top: 24px;
  }
}
.schedule-step__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule-step__num {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px;
}
.schedule-step__term {
  padding: 3px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 13px;
}
.schedule-step__title {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
}
.schedule-step__text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.75;
  color: #555;
}

.ai-policy {
  border-top: 1px solid #d9d9d9;
}
.ai-policy__inner {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .ai-policy__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .ai-policy__inner {
    padding-inline: 24px;
  }
}
.ai-policy__inner {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .ai-policy__inner {
    padding-block: 48px;
  }
}
.ai-policy__label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
}
.ai-policy__title {
  margin-top: 28px;
  font-size: clamp(32px, 5.2vw, 70px);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .ai-policy__title {
    font-size: clamp(44px, 5.2vw, 70px);
  }
}
.ai-policy__text {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.85;
}
.ai-policy__cols {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .ai-policy__cols {
    flex-direction: column;
  }
}

.ai-card {
  flex: 1;
  padding: 30px 28px;
  border: 1px solid #d9d9d9;
  background: #f4f4f4;
}
.ai-card__head {
  font-size: 18px;
  font-weight: 500;
}
.ai-card__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-card__item {
  display: flex;
  gap: 10px;
  font-size: 15px;
}
.ai-card__item::before {
  content: "—";
  color: #555;
}

.cta {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}
.cta__inner {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .cta__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .cta__inner {
    padding-inline: 24px;
  }
}
.cta__inner {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    padding-block: 64px;
  }
}
.cta__title {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.4;
}
.cta__text {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
}
.cta__btn {
  margin-top: 40px;
}

.cv {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.cv__inner {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cv__inner {
    flex-direction: column;
  }
}
.cv__col {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 100px 80px;
}
@media screen and (max-width: 1024px) {
  .cv__col {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 767px) {
  .cv__col {
    padding: 56px 24px;
  }
}
.cv__col--about {
  background: #1a1a1a;
  color: #fff;
}
.cv__col--contact {
  background: #fff;
  color: #1a1a1a;
}
.cv__label {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.cv__title {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.4;
}
.cv__text {
  font-size: 15px;
  line-height: 1.85;
}
.cv__col--about .cv__text {
  color: rgba(255, 255, 255, 0.8);
}
.cv__btn {
  margin-top: 8px;
}

.blog-section__inner {
  width: 100%;
  margin-inline: auto;
  padding: 64px 160px;
}
@media screen and (max-width: 1024px) {
  .blog-section__inner {
    padding: 56px 40px;
  }
}
@media screen and (max-width: 767px) {
  .blog-section__inner {
    padding: 40px 24px;
  }
}
.blog-section__head {
  margin-bottom: 24px;
}
.blog-section__en {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #555;
}
.blog-section__title {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 700;
}
.blog-section__foot {
  margin-top: 32px;
}

.news-list {
  border-top: 1px solid #d9d9d9;
}
.news-list__item {
  border-bottom: 1px solid #d9d9d9;
}
.news-list__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .news-list__link {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}
.news-list__date {
  flex-shrink: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #555;
}
.news-list__cat {
  flex-shrink: 0;
  padding: 3px 14px;
  border: 1px solid #d9d9d9;
  font-size: 12px;
}
.news-list__ttl {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .news-list__ttl {
    flex-basis: 100%;
  }
}

.about-intro__inner {
  width: 100%;
  padding: 96px 160px;
}
@media screen and (max-width: 1024px) {
  .about-intro__inner {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-intro__inner {
    padding: 48px 24px;
  }
}
.about-intro__title {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(40px, 6.25vw, 90px);
  line-height: 1.4;
}
.about-intro__text {
  margin-top: 40px;
  max-width: 1120px;
  font-size: 16px;
  line-height: 1.95;
}

.member-grid {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .member-grid {
    flex-direction: column;
  }
}

.member-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
.member-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.member-card__avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #f4f4f4;
}
.member-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.member-card__role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #555;
}
.member-card__role-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .member-card__role-link:hover {
    color: #1a1a1a;
  }
}
.member-card__name {
  margin-top: 4px;
  font-size: 19px;
  font-weight: 700;
}
.member-card__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.85;
}
.member-card__bio {
  font-size: 15px;
  line-height: 1.95;
}
.member-card__bio p + p {
  margin-top: 1.4em;
}
.member-card__sns {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}
.member-card__sns-link {
  display: inline-flex;
  color: #1a1a1a;
  transition: opacity 0.2s ease;
}
.member-card__sns-link svg {
  display: block;
}
@media (hover: hover) {
  .member-card__sns-link:hover {
    opacity: 0.55;
  }
}

.about-info {
  border-top: 1px solid #d9d9d9;
}
.about-info__inner {
  width: 100%;
  padding: 80px 160px;
}
@media screen and (max-width: 1024px) {
  .about-info__inner {
    padding: 56px 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-info__inner {
    padding: 48px 24px;
  }
}
.about-info__title {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
}
.about-info__note {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

.info-table {
  margin-top: 48px;
  border-top: 1px solid #d9d9d9;
}
.info-table__row {
  display: flex;
  gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .info-table__row {
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
  }
}
.info-table__label {
  flex-shrink: 0;
  width: 180px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .info-table__label {
    width: auto;
    color: #555;
    font-size: 13px;
  }
}
.info-table__value {
  font-size: 16px;
  line-height: 1.85;
}

.works-intro__inner {
  width: 100%;
  padding: 96px 160px 48px;
}
@media screen and (max-width: 1024px) {
  .works-intro__inner {
    padding: 64px 40px 32px;
  }
}
@media screen and (max-width: 767px) {
  .works-intro__inner {
    padding: 48px 24px 24px;
  }
}
.works-intro__title {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(40px, 6.25vw, 90px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.works-intro__lead {
  margin-top: 28px;
  max-width: 880px;
  font-size: 16px;
  line-height: 1.95;
}
.works-intro__lead + .works-intro__lead {
  margin-top: 20px;
}
.works-intro__lead strong {
  font-weight: 700;
}
.works-intro__btn {
  margin-top: 40px;
}

.works-list__inner {
  width: 100%;
  padding: 24px 160px 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .works-list__inner {
    padding: 16px 40px 64px;
  }
}
@media screen and (max-width: 767px) {
  .works-list__inner {
    padding: 8px 24px 56px;
  }
}
.works-list__note {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}
.works-list__empty {
  padding: 64px 0;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #555;
}

.work-card {
  padding: 40px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
@media screen and (max-width: 767px) {
  .work-card {
    padding: 28px 24px;
  }
}
@media (hover: hover) {
  .work-card:hover {
    border-color: #c7c7c7;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }
}
.work-card__top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .work-card__top {
    flex-direction: column;
    gap: 20px;
  }
}
.work-card__intro {
  flex: 1 1 auto;
  min-width: 0;
}
.work-card__thumb {
  flex: 0 0 40%;
  max-width: 360px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .work-card__thumb {
    flex: none;
    width: 100%;
    max-width: none;
  }
}
.work-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.work-card__thumb-placeholder {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #555;
}
.work-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.work-card__num {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #555;
}
.work-card__category {
  padding: 5px 14px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.work-card__title {
  margin-top: 20px;
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
}
.work-card__lead {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}
.work-card__detail {
  margin-top: 24px;
  border-top: 1px solid #d9d9d9;
}
.work-card__row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .work-card__row {
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
  }
}
.work-card__label {
  flex-shrink: 0;
  width: 120px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .work-card__label {
    width: auto;
    color: #555;
    font-size: 13px;
  }
}
.work-card__value {
  font-size: 15px;
  line-height: 1.9;
}
.work-card__value--result {
  font-weight: 700;
}
.work-card__scope {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-card__tag {
  padding: 6px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #555;
}
.work-card__link {
  margin-top: 24px;
}
.work-card__voice {
  margin-top: 28px;
  padding: 22px 24px;
  background: #f4f4f4;
  border-left: 3px solid #1a1a1a;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .work-card__voice {
    padding: 20px;
  }
}

.works-skills {
  background: #f4f4f4;
  border-top: 1px solid #d9d9d9;
}
.works-skills__inner {
  width: 100%;
  padding: 96px 160px;
}
@media screen and (max-width: 1024px) {
  .works-skills__inner {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 767px) {
  .works-skills__inner {
    padding: 56px 24px;
  }
}
.works-skills__title {
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
}
.works-skills__text {
  margin-top: 24px;
  max-width: 880px;
  font-size: 16px;
  line-height: 1.95;
}

.skill-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .skill-grid {
    grid-template-columns: 1fr;
  }
}

.skill-card {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
.skill-card__name {
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
  font-family: fot-udkakugoc60-pro, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.skill-card__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skill-card__item {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.7;
}
.skill-card__item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #555;
}

.blog-archive {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .blog-archive {
    padding-bottom: 72px;
  }
}
.blog-archive__inner {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .blog-archive__inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .blog-archive__inner {
    padding-inline: 24px;
  }
}
.blog-archive__empty {
  padding-block: 64px;
  text-align: center;
  color: #555;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}
@media screen and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}
@media screen and (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.blog-card__link {
  display: block;
}
@media (hover: hover) {
  .blog-card__link:hover .blog-card__thumb img {
    transform: scale(1.04);
  }
  .blog-card__link:hover .blog-card__title {
    opacity: 0.65;
  }
}
.blog-card__thumb {
  aspect-ratio: 8/5;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  background: #f4f4f4;
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card__noimage {
  display: grid;
  place-items: center;
  height: 100%;
  font-family: "Bruno Ace", sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #555;
}
.blog-card__date {
  display: block;
  margin-top: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #555;
}
.blog-card__title {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  transition: opacity 0.3s ease;
}

.page-head {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .page-head {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-head {
    padding-inline: 24px;
  }
}
.page-head {
  padding-block: 80px 48px;
}
@media screen and (max-width: 767px) {
  .page-head {
    padding-block: 48px 32px;
  }
}
.page-head__en {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #555;
}
.page-head__title {
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 44px);
}

.archive-list {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .archive-list {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .archive-list {
    padding-inline: 24px;
  }
}
.archive-list {
  padding-bottom: 96px;
  border-top: 1px solid #d9d9d9;
}
.archive-list__item {
  border-bottom: 1px solid #d9d9d9;
}
.archive-list__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .archive-list__link {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}
.archive-list__date {
  flex-shrink: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #555;
}
.archive-list__cat {
  flex-shrink: 0;
  padding: 3px 14px;
  border: 1px solid #d9d9d9;
  font-size: 12px;
}
.archive-list__ttl {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .archive-list__ttl {
    flex-basis: 100%;
  }
}

.single-article {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding: 0 80px 96px;
}
@media screen and (max-width: 767px) {
  .single-article {
    padding: 0 24px 64px;
  }
}
.single-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.single-article__date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  color: #555;
}
.single-article__cat {
  padding: 3px 14px;
  border: 1px solid #d9d9d9;
  font-size: 12px;
}
.single-article__title {
  font-size: clamp(32px, 3.4vw, 38px);
  line-height: 1.5;
}
.single-article__thumb {
  margin-bottom: 40px;
}

.entry-content {
  line-height: 1.9;
}
.entry-content > * + * {
  margin-top: 1.5em;
}
.entry-content h2 {
  position: relative;
  margin-top: 2.5em;
  font-size: 24px;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #d9d9d9;
}
.entry-content h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: #1a1a1a;
}
.entry-content h3 {
  margin-top: 2em;
  padding-left: 14px;
  font-size: 20px;
  border-left: 3px solid #1a1a1a;
}
.entry-content a {
  text-decoration: underline;
}
.entry-content img {
  height: auto;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content blockquote {
  padding-left: 20px;
  border-left: 3px solid #d9d9d9;
  color: #555;
}

.pagination {
  width: 100%;
  padding-inline: 80px;
}
@media screen and (max-width: 1024px) {
  .pagination {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .pagination {
    padding-inline: 24px;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 96px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d9d9d9;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
}
.pagination .page-numbers.current {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.page-body {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding: 0 80px 96px;
}
@media screen and (max-width: 767px) {
  .page-body {
    padding: 0 24px 64px;
  }
}

.contact-body {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding: 0 80px 96px;
}
@media screen and (max-width: 767px) {
  .contact-body {
    padding: 0 24px 64px;
  }
}
.contact-body__lead {
  margin-bottom: 40px;
  line-height: 1.9;
}
/*# sourceMappingURL=main.css.map */
