@charset "UTF-8";
/*
 * 機能：clamp関数の文字列を返す
 * 引数：$size-at-min-width サイズ(フォントサイズなど)の最小値(pxやremなどの単位は必須)
 * 　　　$size-at-max-width サイズ(フォントサイズなど)の最大値(pxやremなどの単位は必須)
 * 　　　$min-width [省略可]サイズが最小値に到達する画面幅
 * 　　　$max-width [省略可]サイズが最大値に到達する画面幅
 * 使用方法：
 *　　デフォルトの最小画面幅$min-width-defaultと最大画面幅$max-width-defaultを事前に指定しておく
 *　　最小幅と最大幅をデフォルト以外にしたい場合は、引数にそれぞれ単位付きの画面幅を入れる
 */
/* ブレイクポイント
 =============================================== */
@media screen and (min-width: 960px) {
  .pc {
    display: inherit !important;
  }
}
@media screen and (max-width: 959px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tab {
    display: inherit !important;
  }
}
@media screen and (max-width: 480px) {
  .tab {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .sp {
    display: inherit !important;
  }
}

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

@media screen and (min-width: 960px) {
  .tabsp {
    display: none !important;
  }
}

:root {
  --theme-color: #CB050C;
  --content-width: 1500px;
  --content-gutter: clamp(32px, 5vw, 80px);
  --content-max-width: calc(100% - var(--content-gutter) * 2);
  --breakpoint: calc(var(--content-width) + var(--content-gutter) * 2 + 1px);
  --_global--container-max-width: 1340px;
}

/* Hero */
.hero {
  /* ヒーローはデザイン準拠で高さを抑制 */
  min-height: 100vh;
  min-height: 100svh; /* モバイルUI表示時 */
  min-height: 100dvh; /* 動的UIを除外した安定高さ */
  padding: 0 0 160px; /* ヘッダー分の余白 */
  position: relative;
  overflow: hidden;
  /* （任意）動きを控える設定に配慮 */
}
.hero__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 480px) {
  .hero__inner {
    max-width: 100%;
  }
}
.hero__media {
  /* 画像を全面に配置（テキストの背面） */
  --top-margin: 140px;
  padding-top: var(--top-margin);
  position: absolute; /* ← これで最初からフロー外 */
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
  height: 100dvh;
  z-index: -1;
  pointer-events: none; /* 背景扱い */
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .hero__media {
    --top-margin: 80px;
  }
}
.hero__media::before {
  position: absolute;
  width: 100%;
  height: calc(100% - var(--top-margin));
  content: "";
  bottom: 0;
  left: 0;
  z-index: -4;
}
.hero__media-motion {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.hero__abstract {
  position: absolute;
  pointer-events: none;
  z-index: -999;
  --reveal-dur: 1500ms;
  --reveal-ease: cubic-bezier(.1,.29,0,.71);
  will-change: clip-path;
}
.hero__abstract svg {
  width: 100%;
}
.hero__abstract.stroke {
  bottom: -5vh;
  left: calc(var(--content-gutter) * -1 - 16px);
  width: 40vw;
  --reveal-dur: 7000ms;
  animation: reveal-stroke var(--reveal-dur) var(--reveal-ease) both infinite;
  animation-delay: 1.1s; /* ← 0.5秒遅らせる */
}
@media screen and (max-width: 959px) {
  .hero__abstract.stroke {
    width: inherit;
  }
}
.hero__abstract.circle {
  top: -30vw;
  left: -10vw;
  width: 40vw;
  animation: reveal-anticlockwise var(--reveal-dur) var(--reveal-ease) both, spin 120s linear infinite reverse;
  animation-delay: 1.4s; /* ← 0.5秒遅らせる */
}
@media screen and (max-width: 959px) {
  .hero__abstract.circle {
    top: -50vw;
    width: inherit;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes reveal-ltr {
  from {
    /* 右100%で全隠し： inset(top right bottom left) */
    clip-path: inset(0 100% 0 0);
  }
  to {
    /* 全面表示 */
    clip-path: inset(-20% -20% -20% -20%);
  }
}
@keyframes reveal-stroke {
  0% {
    /* 完全に隠れている（右端からスタート） */
    clip-path: inset(0 100% 0 0);
  }
  10% {
    /* 完全に隠れている（右端からスタート） */
    clip-path: inset(0 100% 0 0);
  }
  30% {
    /* 全面表示 */
    clip-path: inset(0 0 0 0);
  }
  70% {
    /* まだ全面表示のまま少しキープ */
    clip-path: inset(0 0 0 0);
  }
  90% {
    /* 左から右にまた隠れていく（左100%で全部消える） */
    clip-path: inset(0 0 0 100%);
  }
  100% {
    /* 左から右にまた隠れていく（左100%で全部消える） */
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes reveal-anticlockwise {
  0% {
    clip-path: polygon(50% 50%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 50% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 50% 0%);
  }
  37.5% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 50% 0%);
  }
  50% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 0%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 0%);
  }
  75% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 100% 100%, 100% 50%, 100% 50%, 100% 50%, 50% 0%);
  }
  87.5% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 100% 100%, 100% 0%, 100% 0%, 100% 0%, 50% 0%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 100% 100%, 100% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .reveal-clip {
    animation: none;
    clip-path: inset(0);
  }
}
.hero__slider {
  width: 70%;
  height: 100%;
  pointer-events: auto;
  background-color: #FFFFFF;
  --reveal-dur: 2000ms;
  --reveal-ease: cubic-bezier(0.11, 0.48, 0.14, 0.72);
  will-change: clip-path;
  animation: reveal-ltr var(--reveal-dur) var(--reveal-ease) both;
  animation-delay: 0.5s;
}
@media screen and (max-width: 959px) {
  .hero__slider {
    width: 80%;
    height: 70%;
  }
}
.hero__slider .splide__track,
.hero__slider .splide__list,
.hero__slider .splide__slide {
  height: 100%;
}
.hero__slide {
  height: 100%;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__slide.is-active .hero__image {
  animation: scale 6s linear 0s normal both;
}
@keyframes scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.hero__leadcontainer {
  left: 0;
  bottom: 30vh;
  position: absolute;
  transform: rotate(357deg);
}
@media screen and (max-width: 480px) {
  .hero__leadcontainer {
    bottom: 140px;
    left: var(--content-gutter);
    transform: rotate(359deg);
  }
}
.hero__lead {
  font-size: clamp(32px, 22.355px + 2.243vw, 56px);
  text-shadow: 4px 4px 0px #FFFFFF;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .hero__lead {
    text-shadow: 2.5px 2.5px 0px #FFFFFF;
  }
}
@media screen and (min-width: 2000px) {
  .hero__lead {
    font-size: 4rem;
  }
}
.hero__title {
  margin: 0;
  font-size: clamp(30px, 13.121px + 3.925vw, 72px);
  line-height: 1.4;
  text-shadow: 3px 3px 0px #f2f2f2;
}
@media screen and (max-width: 480px) {
  .hero__title {
    text-shadow: 2.5px 2.5px 0px #f2f2f2;
  }
}
@media screen and (min-width: 2000px) {
  .hero__title {
    font-size: 5rem;
  }
}
.hero__catchcopy { /* 互換のため残置 */
  position: relative;
  height: 100vh;
  z-index: 2;
}
.hero__body {
  display: grid;
  gap: 160px;
  position: relative;
  z-index: 2; /* テキストを上に重ねる */
  margin-top: 240px;
}
@media screen and (max-width: 959px) {
  .hero__body {
    gap: 120px;
  }
}
@media screen and (max-width: 480px) {
  .hero__body {
    gap: 80px;
    max-width: var(--content-max-width);
    margin-inline: auto;
    margin-top: 120px;
  }
}
.hero__bodytext {
  font-size: clamp(18px, 13.981px + 0.935vw, 28px);
  display: grid;
  gap: 80px;
}
@media screen and (min-width: 2000px) {
  .hero__bodytext {
    font-size: 2rem;
  }
}
.hero__paragraph {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.hero .fademask {
  --hero-mask-progress: 0%;
  mask-image: linear-gradient(120deg, rgb(0, 0, 0) calc(var(--hero-mask-progress) - 50%), rgba(0, 0, 0, 0) var(--hero-mask-progress));
  -webkit-mask-image: linear-gradient(120deg, rgb(0, 0, 0) calc(var(--hero-mask-progress) - 50%), rgba(0, 0, 0, 0) var(--hero-mask-progress));
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 0% center;
  -webkit-mask-position: 0% center;
  text-shadow: 1px 1px 0px #eeeeee;
}
.hero__block {
  grid-column: 1/-1;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__media {
    grid-column: 1/-1;
    grid-row: 1;
  }
}

.what-we-do {
  padding: 120px 0;
}
.what-we-do__title {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto 80px;
}
.what-we-do__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.what-we-do__layout {
  display: grid;
  grid-template-columns: 1fr clamp(320px, 35vw, 520px);
  gap: 48px;
  align-items: start;
}
@media screen and (max-width: 959px) {
  .what-we-do__layout {
    grid-template-columns: 1fr;
  }
}
.what-we-do__left {
  display: grid;
  gap: 40px;
}
.what-we-do__right {
  align-self: start;
  position: sticky;
  top: 100px;
}
.what-we-do__media {
  position: sticky;
  top: 100px; /* 固定開始位置（ヘッダー考慮） */
  width: 100%;
  height: 640px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
}
@media screen and (max-width: 959px) {
  .what-we-do__media {
    display: none;
  }
}
.what-we-do__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Teams */
.home .teams {
  padding: 120px 0;
  /* マスク対応ブラウザでのみ表示 */
  /* Banner */
}
.home .teams__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
  display: grid;
  gap: 80px;
  justify-items: center;
  scroll-margin-top: 80px;
}
.home .teams__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px;
  gap: min(10vw, 160px);
  align-items: start;
}
@media screen and (max-width: 959px) {
  .home .teams__layout {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .home .teams__layout {
    gap: 80px;
  }
}
.home .teams__left {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 80px;
  /* 円の基準（::before とマスクで共有） */
  --c-left: -25vw;
  --c-top: -24vw;
  --c-width: clamp(400px,55vw,1200px);
  --c-radius: calc(var(--c-width) / 2);
  --cx: calc(var(--c-left) + var(--c-radius));
  --cy: calc(var(--c-top) + var(--c-radius));
}
@media screen and (max-width: 959px) {
  .home .teams__left {
    position: relative;
    top: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 480px) {
  .home .teams__left {
    gap: 40px;
    --c-left: -60%;
    --c-top: -50%;
    --c-width: 480px ;
  }
}
.home .teams__left::before {
  content: "";
  position: absolute;
  top: var(--c-top);
  left: var(--c-left);
  width: var(--c-width);
  aspect-ratio: 1;
  background-color: var(--theme-color);
  border-radius: 50%;
  opacity: var(--teams-circle-opacity, 1);
  transform: scale(var(--teams-circle-scale, 1));
  transform-origin: center;
  transition: var(--teams-circle-transition, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease-out);
  will-change: transform, opacity;
  z-index: -1;
  pointer-events: none;
}
.home .teams__left-copy {
  position: absolute;
  inset: 0;
  display: none; /* マスク非対応環境では無効化 */
  gap: 80px;
  color: #fff;
  pointer-events: none;
  /* マスク: 円内のみ表示 */
  -webkit-mask-image: radial-gradient(circle var(--c-radius) at var(--cx) var(--cy), #000 100%, transparent 100%);
  mask-image: radial-gradient(circle var(--c-radius) at var(--cx) var(--cy), #000 100%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .home .teams__left-copy {
    gap: 40px;
  }
}
@supports ((-webkit-mask-image: radial-gradient(circle 10px at 10px 10px, #000 100%, transparent 100%)) or (mask-image: radial-gradient(circle 10px at 10px 10px, #000 100%, transparent 100%))) {
  .home .teams .teams__left-copy {
    display: grid;
  }
}
.home .teams__lead {
  font-size: clamp(16px, 13.766px + 0.519vw, 20px);
}
.home .teams__more {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.home .teams__more-arrow {
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--theme-color);
  border-radius: 50%;
  position: relative;
}
.home .teams__more-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-70%, -50%) rotate(45deg);
}
.home .teams__right {
  display: grid;
  gap: 56px;
  z-index: 2;
}
.home .teams__banner {
  overflow: hidden;
  width: 100%;
  height: 800px;
  margin-bottom: 200px;
}
@media screen and (max-width: 959px) {
  .home .teams__banner {
    height: 600px;
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 480px) {
  .home .teams__banner {
    height: 460px;
    margin-bottom: 80px;
  }
}
.home .teams__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .home .teams__left::before {
    transition: none;
    transform: scale(1);
    opacity: 1;
  }
}

/* Commitment */
.commitment {
  position: relative;
  overflow: hidden;
}
.commitment__wrap {
  position: relative;
  height: 100dvh;
}
.commitment__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 600px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
  border: 1px solid var(--theme-color);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .commitment__halo {
    width: 480px;
  }
}
.commitment__texts {
  z-index: 1;
  height: 100dvh;
}
.commitment__text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  color: #28262F;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 959px) {
  .commitment__text {
    font-size: 1.2em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .commitment__text {
    opacity: 1 !important;
  }
}

/* Information */
.home .information {
  padding: 120px 0;
  background-color: #f8f8f8;
}
.information__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.information .section-title {
  margin-bottom: clamp(40px, 5vw, 80px);
}
.information__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.information__item {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 480px) {
  .information__item {
    flex-direction: column;
  }
}
.information__date {
  flex-shrink: 0;
  width: 120px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 40px;
}
@media screen and (max-width: 480px) {
  .information__date {
    color: #797979;
  }
}
.information__text {
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.6;
}

/* WHAT WE DO: カード */
.wwd-card {
  position: relative;
  background: #fff;
  border: 3px solid #E9E9EE;
  border-radius: 16px;
  padding: 120px 64px;
  overflow: hidden;
  transition: border 0.3s;
}
.wwd-card.active {
  border: 3px solid color-mix(in srgb, var(--theme-color) 60%, white);
}
.wwd-card__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-size: clamp(22px, 18.649px + 0.779vw, 28px);
  color: var(--theme-color);
}
.wwd-card__body p {
  margin: 0;
}
.wwd-card__index {
  position: absolute;
  right: 8px;
  bottom: -0.2em;
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 40px + 6vw, 120px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-color);
  opacity: 0.1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .wwd-card {
    padding: 44px 32px;
  }
}

/* Blog */
.home .blog {
  padding: 120px 0;
  background-color: #f8f8f8;
}
.home .blog__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
  scroll-margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-template-rows: max-content max-content;
  gap: 80px;
}
@media (width < 470px) {
  .home .blog__inner {
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content;
    gap: 40px;
  }
  .home .blog__inner .splide {
    order: 2;
  }
  .home .blog__inner .blog__more {
    justify-self: flex-end;
    order: 3;
  }
}
.home .blog__inner .splide {
  min-width: 0;
  grid-column: 1/-1;
}
.home .blog__inner .splide:not(.is-overflow) .splide__arrows {
  display: none;
}
.home .blog__inner .blog__more {
  align-self: end;
}
.home .blog .blog-card {
  position: relative;
}
.home .blog .blog-card__link {
  color: #28262F;
  position: absolute;
  width: 100%;
  height: 100%;
}
.home .blog .blog-card__link:hover ~ .blog-card__body .blog-card__title {
  color: var(--theme-color);
}
.home .blog .blog-card__link:hover ~ .blog-card__figure .blog-card__image {
  opacity: 0.85;
}
.home .blog .blog-card__figure {
  aspect-ratio: 1;
  margin-bottom: 1.5em;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .home .blog .blog-card__figure {
    margin-bottom: 1em;
    border-radius: 8px;
  }
}
.home .blog .blog-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s;
}
.home .blog .blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}
.home .blog .blog-card__cat {
  position: relative;
  padding: 4px 24px;
  color: #FFF;
  background-color: var(--theme-color);
  font-size: 0.8em;
  transition: background-color 0.3s;
}
.home .blog .blog-card__cat:hover {
  background-color: color-mix(in srgb, var(--theme-color) 90%, #000000);
}
.home .blog .blog-card__date {
  font-size: 0.8em;
  color: #A2A2A2;
}
.home .blog .blog-card__title {
  font-size: 21px;
  transition: color 0.3s;
}
@media screen and (max-width: 959px) {
  .home .blog .blog-card__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .home .blog .blog-card__title {
    font-size: 16px;
  }
}/*# sourceMappingURL=home.css.map */