@charset "utf-8";
/* CSS Document */
.loader{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 9999;
}
.loader img{
	max-width: 180px;
}
body.gjs-dashed .loader{display: none;}
.head_nav,.header_logo,.menu_box,.top_news,.fix_sns_box{
	opacity: 0;
	animation-name: fadein;
	animation-delay: 3.4s;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
body.gjs-dashed .head_nav,body.gjs-dashed .header_logo,body.gjs-dashed .menu_box,body.gjs-dashed .top_news,body.gjs-dashed .fix_sns_box{opacity: 1;}
.fv{
	position: relative;
	height: 180vh;
}

.fv .fv_item{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
body.gjs-dashed .fv .fv_item{
	position: static;
}
.fv .fv_item img{
	width: 80%;
	outline: 100vh solid #000;
}
body.on .fv .fv_item img{
	-ms-filter: blur(20px);
	filter: blur(20px);
	animation-name: blurin3;
	animation-delay: 1.5s;
	animation-duration: 2.0s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
@keyframes blurin3 {
	0% {
		-ms-filter: blur(20px);
		filter: blur(20px);
	}
	100% {
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}

.section01{
	justify-content: space-around;
	align-items: flex-start;
}
.section01 .img1{
	width: 25%;
	margin-left: 75%;
	margin-bottom: 20px;
}
.section01 .img2{
	width: 35%;
	margin-top: 10%;
}
.section01 .txtbox{
	width: 50%;
	padding-top: 0;
	padding-right: 5%;
}
body.on .section01 .img1,body.on .section01 .img2{
	position: relative;
}
body.on .section01 .img1::after,body.on .section01 .img2::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #050505;
	background: linear-gradient(65deg, rgba(5, 5, 5, 0.9) 1%, rgba(0, 0, 0, 0.2) 100%);
}

.section02 .boxwrap{
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: flex-start;

  /* 3D表現の土台（子要素が傾いた時に奥行きが出る） */
  perspective: 1000px;
  perspective-origin: 50% 40%;
}

/* カード本体（ホログラム化） */
.section02 .boxwrap .box{
  width: 45%;
  flex-direction: column;
  gap: 20px;

  position: relative;
  border-radius: 18px;
  overflow: hidden;

  /* 背景と枠 */
	/*
  background: rgba(10, 18, 35, 0.75);
  border: 1px solid rgba(120, 180, 255, 0.16);
	*/

  /* 3D */
  transform-style: preserve-3d;
  will-change: transform;

  /* hover時の見栄え */
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
	/*
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
	*/
}

/* 交互の段差は維持 */
.section02 .boxwrap .box:nth-of-type(even){
  margin-top: 10%;
}

/* 光のホログラムレイヤー（poke-holoの“虹色光”っぽい） */
.section02 .boxwrap .box::before{
  content:"";
  position:absolute;
  inset:-60%;
  background:
    linear-gradient(120deg,
      transparent 30%,
      rgba(0, 210, 255, .22),
      rgba(255, 0, 200, .18),
      rgba(120, 255, 160, .14),
      transparent 70%
    );
  opacity: 0;
  transition: opacity .25s ease;
  mix-blend-mode: screen;
  pointer-events:none;
  transform: translateZ(1px);
}

/* 微細なグリッド/粒子（それっぽさ増し） */
/*
.section02 .boxwrap .box::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.07), transparent 40%),
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.06) 0px,
      rgba(255,255,255,.06) 1px,
      transparent 2px,
      transparent 7px
    );
  opacity: .12;
  pointer-events:none;
  mix-blend-mode: overlay;
}
*/
/* hover時：光が出る + 影が強くなる
   ※ 回転（傾き）はJSで transform を上書きする想定 */
.section02 .boxwrap .box:hover{
  border-color: rgba(160, 220, 255, 0.35);
  box-shadow:
    0 40px 90px rgba(0,0,0,.55),
    0 0 40px rgba(0, 210, 255, .22);
	opacity: 1;
}

.section02 .boxwrap .box:hover::before{
  opacity: 1;
}

/* 画像枠：必ずクリップする */
.section02 .boxwrap .box .imgbox{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  isolation: isolate;          /* blendの影響をこの要素内に閉じ込める */
  backface-visibility: hidden; /* 3D時のちらつき対策 */
}

/* 暗めグラデ（そのままでもOK） */
body.on .section02 .boxwrap .box .imgbox::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.18) 55%,
    rgba(0,0,0,.45) 100%
  );
}

/* 光の筋：はみ出しを作らない＆境界が出ないように */
.section02 .boxwrap .box .imgbox::before{
  content:"";
  position:absolute;
  inset: 0;                   /* ← これ重要：-60% みたいに広げない */
  z-index: 3;
  pointer-events:none;

  background:
    linear-gradient(120deg,
      transparent 40%,
      rgba(0, 220, 255, .28) 48%,
      rgba(255, 0, 200, .20) 55%,
      rgba(120, 255, 190, .16) 62%,
      transparent 70%
    );

  opacity: 0;
  transform: translateX(-120%); /* 左から入れる */
  mix-blend-mode: screen;

  /* 枠っぽい輪郭が出るのを抑える */
  filter: blur(0.6px);
  will-change: transform, opacity;
}

/* hoverで光が入る */
.section02 .boxwrap .box:hover .imgbox::before{
  opacity: 1;
  animation: holoSweep 0.9s ease-out both;
}

@keyframes holoSweep{
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

body.on .section02 .boxwrap .box .txtbox{
	padding: 0px 10px 30px;
	flex-direction: column;
	gap: 20px;
}

.section03{
	background-color: rgba(33,33,33,0.90);
}
.section03 .contents .titlebox{
	width: 300px;
	align-items: flex-start;
	flex-direction: column;
	gap: 50px;
}
.section03 .contents .cms_area{
	width: calc(100% - 300px);
}
.section03 .contents .cms_area .webgene-blog .webgene-item:not(:last-of-type){
	margin-bottom: 20px;
}
.section03 .contents .cms_area .webgene-blog .webgene-item a .date{
	width: 110px;

}
.section03 .contents .cms_area .webgene-blog .webgene-item a h3{
	width: calc(100% - 110px);
	padding-left: 20px;
	border-left: 1px solid #575A5D;
}

.section04{
	position: relative;
}
.section04::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background: #212121;
	background: radial-gradient(circle, rgba(33, 33, 33, 0.2) 1%, rgba(29, 29, 29, 0.3) 50%, rgba(26, 26, 26, 1) 100%);
}
.section04 .txtbox{
	position: relative;
	z-index: 2;
}
.section04 .txtbox p{
	font-size: clamp(26px, 8.4vw, 84px);
	font-weight: 600;
	margin-bottom: 20px;
}

.top_news.swiper-container {
	position: absolute;
	height: 40px;
	width: 80%;
	max-width: 550px;
	top: 100vh;
	transform: translateY(-200%);
	left: 5%;
	overflow: hidden;
}
.top_news .webgene-blog .swiper-slide{opacity: 1;}
.top_news .webgene-blog .webgene-item:not(:last-of-type){
}
.top_news .webgene-blog .webgene-item a .date{
	width: 110px;
}
.top_news .webgene-blog .webgene-item a .title{
	width: calc(100% - 110px);
	padding-left: 20px;
	border-left: 1px solid #575A5D;
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.section01{
		justify-content: space-between;
	}
	.section01 .img1{
		width: 30%;
		margin-left: 70%;
		margin-bottom: 30px;
	}
	.section01 .img2{
		width: 35%;
		margin-top: 10%;
		margin-left: 5%;
	}
	.section01 .txtbox{
		width: 55%;
		padding-top: 0;
		padding-right: 5%;
	}
	.section02 .boxwrap{
		gap: 50px;
	}
	.section02 .boxwrap .box{
		width: calc(50% - 25px);
	}
	.section03 .contents .titlebox{
		width: 240px;
		gap: 50px;
	}
	.section03 .contents .cms_area{
		width: calc(100% - 240px);
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.fv{
		height: 150vh;
	}
	.fv .fv_item img{
		width: 100%;
		outline: 100vh solid #000;
	}
	.section01{
		padding-left: 20px;
		padding-right: 20px;
		justify-content: space-around;
	}
	.section01 .img1{
		width: 40%;
		margin-left: auto;
		order: 2;
		margin-bottom: 30px;
	}
	.section01 .img2{
		width: 55%;
		margin-top: 10%;
		margin-left: 0;
		order: 1;
	}
	.section01 .txtbox{
		width: 100%;
		padding-top: 50px;
		padding-right: 0;
		order: 3;
	}
	
	.section02 .boxwrap{
		gap: 60px;
	}
	.section02 .boxwrap .box{
		width: 100%;
	}
	.section02 .boxwrap .box:nth-of-type(even){
		margin-top: 0;
	}
	.section03 .contents .titlebox{
		width: 100%;
		align-items: center;
		text-align: center;
		gap: 0px;
		margin-bottom: 50px;
	}
	.section03 .contents .cms_area{
		width: 100%;
	}
	.section03 .contents .cms_area .webgene-blog .webgene-item a .date{
		width: 88px;

	}
	.section03 .contents .cms_area .webgene-blog .webgene-item a h3{
		width: calc(100% - 88px);
		padding-left: 10px;
		border-left: 1px solid #575A5D;
	}
	.top_news .webgene-blog .webgene-item a .date{
		width: 88px;

	}
	.top_news .webgene-blog .webgene-item a .title{
		width: calc(100% - 88px);
		padding-left: 10px;
		border-left: 1px solid #575A5D;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

