@charset "UTF-8";



.bg-video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover; /* 画面いっぱいにフィット */
  z-index: -1;       /* 背景にする */
}





.area__concept {
	margin-bottom: 150px;
}
.area__concept .inner {
	padding: 150px 0;
}
.area__concept dl {
	width: 750px;
	margin: 0 auto;
}
.area__concept dl dt {
	font-size: 2.8rem;
	float: left;
	margin-top: 200px;
}
.area__concept dl dd {
	font-size: 1.6rem;
	float: right;
	line-height: 2.4;
}

.area__product {
	margin-bottom: 150px;

	width: 100%;
	aspect-ratio: 1920 / 1500;
	background: url("../img/bg_product.webp") no-repeat center;
	background-size: cover;
}


/* ===== セクション ===== */
.works-showcase {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 80px 30px;
}

/* 背景 */
.works-showcase__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.75;
  will-change: transform;
}

/* 左 */
.blob--1 {
  width: 260px;
  height: 260px;
  left: 6%;
  top: 22%;
  background: rgba(255, 255, 255, 1);
  animation: blobFloat1 3s ease-in-out infinite alternate;
}

/* 中央 */
.blob--2 {
  width: 40%;
  height: 40%;
  left: 34%;
  top: 30%;
  background: rgba(255, 255, 255, 1);
  animation: blobFloat2 3s ease-in-out infinite alternate;
}

/* 右 */
.blob--3 {
  width: 250px;
  height: 250px;
  right: 6%;
  top: 26%;
  background: rgba(255, 255, 255, 1);
  animation: blobFloat3 3s ease-in-out infinite alternate;
}

@keyframes blobFloat1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(22px, -12px, 0) scale(2);
  }
}

@keyframes blobFloat2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-18px, 14px, 0) scale(2);
  }
}

@keyframes blobFloat3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-14px, -10px, 0) scale(2);
  }
}





/* ===== 流れるタイトル ===== */
.works-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
	height: 200px;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.works-title.is-visible {
  opacity: 1;
}

.works-title-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 14s linear infinite;
}

.works-title-text {
  flex: 0 0 auto;
  margin: 0;
  padding-right: 1.2em;
  font-size: clamp(42px, 8vw, 110px);
  font-weight: 700;
  line-height: 1;
  color: #FFF;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== グリッド ===== */
.works-grid {
  position: relative;
  max-width: 1400px;
  height: 950px;
  margin: 0 auto;
  z-index: 2;
}

.work-card {
  position: absolute;
  display: block;
  text-decoration: none;
  overflow: hidden;
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}
.work-card.video {
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
.work-card.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* 仮ボックス */
.work-card__box {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.1);
}

/* hover状態 */
.works-grid.is-hover .work-card {
  opacity: 0.2;
}

.works-grid.is-hover .work-card.active {
  opacity: 1;
  z-index: 3;
}

/* 配置 */
.work-card--1 { top: 350px; left: 00px; width: 50%; }
.work-card--2 { top: 200px; right: 100px; width: 30%; }
.work-card--3 { top: 550px; right: 30px; width: 40%; }
.work-card--4 { top: 670px; left: 35%; width: 35%; }
.work-card--5 { top: 680px; left: 220px; width: 30%; }
.work-card--6 { bottom: -50px; left: 50%; width: 20%; }
.work-card--7 { bottom: 60px; right: 5%; width: 20%; }

/* 拡大対応 */
.works-grid.is-hover .work-card--4.active,
.works-grid.is-hover .work-card--6.active,
.works-grid.is-hover .work-card--7.active {
  transform: scale(1.05);
}

.works-grid.is-hover .work-card:not(.work-card--4):not(.work-card--6):not(.work-card--7).active {
  transform: scale(1.05);
}
	
@media screen and (max-width: 1023px) {
	
	
.area__product {
	margin-bottom: 150px;

	width: 100%;
	aspect-ratio: auto;
	background: url("../img/bg_product_sp.webp") no-repeat center;
	background-size: cover;

}
.area__product {
	margin-bottom: 150px;

	width: 100%;
	aspect-ratio: auto;
	background: url("../img/bg_product_sp.webp") no-repeat center;
	background-size: cover;
	padding-bottom: 30px;

}
	
	
	
	
  .works-showcase {
    min-height: auto;
    padding: 56px 12px 56px;
  }


  /* スマホでは流れる文字は非表示 */
  .works-title {
    display: none;
  }

  .works-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: auto;
    max-width: 100%;
  }

  .work-card {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: 1;
	  
	  margin-bottom: 10px;

  }

  .work-card img,
  .work-card__box {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
	  margin: 0 auto;
  }


  /* hover演出はスマホでは切る */
  .works-grid.is-hover .work-card {
    opacity: 1 !important;
  }

  .works-grid.is-hover .work-card.active {
    transform: none !important;
  }
}



.image-tone {
  position: relative;
  overflow: hidden;
  background: #efefef;
  isolation: isolate;
}

.image-tone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.image-tone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #6356A3;
  mix-blend-mode: color;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

.image-tone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #6356A3;
  mix-blend-mode: screen;
  opacity: 0.78;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
  z-index: 2;
}

.service-panel a:hover .image-tone::after,
.service-panel a:focus-visible .image-tone::after {
  transform: scaleX(1);
}

.service-panel a:hover .image-tone img,
.service-panel a:focus-visible .image-tone img {
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.16);
}

.service-title::before {
  background: #6356A3;
}








.area__service {
}
.area__service .flex {
	padding: 0 0 0 5%;
}
.area__service .flex .js-scroll-rise {
	width: 50%;
}
.area__service .flex dl {
	width: 40%;
	padding-left: 10%;
}
.area__service .flex dt {
	font-size: 2.0rem;
	margin-bottom: 60px;
}
.area__service .flex dd {
	font-size: 1.2rem;
}


.area__service {
	margin-bottom: 250px;
}
.area__service .title__default {
}
#servicesStack {
	position: relative;
}

.services-stack {
  position: relative;
	margin-bottom: 100px;
}

@media (min-width: 769px) {
  .services-pin {
    position: relative;
    height: 100vh;
    overflow: hidden;
  background: #FFF;
  }

  .service-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  border-top: 1px solid #d9dfe5;
  background: #FFF;
  }
}


@media (max-width: 768px) {
  .services-pin {
    height: auto;
    overflow: visible;
  }

  .service-panel {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none !important;
  border-top: 1px solid #d9dfe5;
  background: #FFF;

  }

  .service-panel + .service-panel {
    margin-top: 0;
  }

  .service-panel-measure {
    height: auto;
  }
}


.service-panel-measure {
	position: relative;
	width: 100%;
	padding-bottom: 80px;
}
.service-panel-measure .btn__default  {
	bottom: 80px;
}

.service-title {
	position: relative;
	padding: 30px 60px 20px 60px;
	font-size: 2.8rem;
	margin-bottom: 0 !important;
	line-height: 1;
}
.service-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  
  width: 30px;       /* 線の長さ */
  height: 1px;       /* 線の太さ */
  background: #6656b3;  /* 色（調整OK） */
}

.service-body {
}




.area__clients {
	margin-bottom: 300px;
	text-align: center;
}

.area__clients img {
	margin: 0 auto;
	width: 1200px;
	max-width: 90%;
}




/* 1200px */
@media screen and (max-width: 1350px) {


}





/* max 1023px */
@media screen and (max-width: 1023px) {


#mv {
	padding-top: 0;
}
.bg-video {
  position: relative;
  top: -80px;
  left: 0;
  width: 100%;
  height: calc(100vh + 80px);
  object-fit: cover; /* 画面いっぱいにフィット */
  z-index: -1;       /* 背景にする */
}





.area__concept {
	margin-bottom: 150px;
}
.area__concept .inner {
	padding: 100px 0;
}
.area__concept dl {
	width: 100%;
	margin: 0 auto;
}
.area__concept dl dt {
	font-size: 2rem;
	float: none;
	margin-top: 0;
	margin-bottom: 40px;
}
.area__concept dl dd {
	float: none;
	font-size: 1.4rem;
}
	
	
	
.area__service {
}
.area__service .flex {
	padding:0;
}
.area__service .flex .js-scroll-rise {
	width: 100%;
	margin-bottom: 10px;
}
.area__service .flex dl {
	width: 100%;
	padding-left: 0;
}
.area__service .flex dt {
	font-size: 1.4rem;
	margin-bottom: 10px;
}
.area__service .flex dd {
	font-size: 1.1rem;
}

	
.services-stack {
	margin-bottom: 0;
}

.area__service {
	margin-bottom: 200px;
}
.area__service .inner {
}
.area__service .title__default {
	margin-bottom: 50px;
}
.service-panel-measure .btn__default  {
	bottom: 40px;
}
.area__service .btn__default.all  {
	bottom: -50px !important;
}

.service-title {
	position: relative;
	padding: 35px 60px 35px 30px;
	font-size: 1.6rem;
	margin-bottom: 0 !important;
	line-height: 1;
}
.service-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 47%;
  transform: translateY(-50%);
  
  width: 20px;       /* 線の長さ */
  height: 1px;       /* 線の太さ */
  background: #6656b3;  /* 色（調整OK） */
}

.service-body {
}




.area__clients {
	margin-bottom: 150px;
	text-align: center;
}

.area__clients img {
	margin: 0 auto;
	max-width: 90%;
}

	
	
}