@charset "UTF-8";
/*----------------------------------------
表示を切り替える幅
----------------------------------------*/
/*----------------------------------------
フォント
----------------------------------------*/
/*----------------------------------------
カラー
----------------------------------------*/
/*----------------------------------------
ブレークポイント
----------------------------------------*/
/****トップビジュアル*****/
/* 動画を包むコンテナ（画面いっぱいのサイズにする場合） */
.top-video-area {
  position: relative;
  width: 100%;
  height: calc(100vh - 200px);
  min-height: 560px;
  overflow: hidden;
  background-color: #000;
  /* 動画読み込み前の背景色 */
  /*	&:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(48, 148, 248, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	mix-blend-mode: multiply;
} */
}
.top-video-area video {
  /* 動画自体のスタイル */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: calc(100vh + 200px);
  /* 縦横比を崩さず、画面いっぱいにトリミングして表示する（超重要） */
  object-fit: cover;
  z-index: 1;
}
.top-video-area .bg_img {
  /*	position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
		opacity: 0.7;
		mix-blend-mode: screen;
		width: auto;
		height: 100%; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: auto;
  height: auto;
  min-height: 400px;
  right: 0;
  width: 100%;
}
.top-video-area .bg_img img {
  width: 600px;
  height: auto;
  opacity: 0.8;
}
.top-video-area .bg_img .inner_1200 {
  text-align: right;
}
/* 動きのパターンを定義 */
@keyframes floatWindow {
  0% {
    transform: translateY(0) rotate(0deg);
    filter: brightness(1);
  }
  50% {
    /* 15px上に上がりながら、右に1.5度だけ傾く */
    transform: translateY(-10px) rotate(1.5deg);
    filter: brightness(1.6);
  }
  100% {
    transform: translateY(0) rotate(0deg);
    filter: brightness(1);
  }
}
/* 動画の上に重ねるテキストのスタイル */
.video-overlay {
  position: absolute;
  mix-blend-mode: screen;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  z-index: 2;
  /* 動画（z-index: 1）より前面に出す */
  /*	.text_box {
	position: static;
	//	position: absolute;
	bottom: 48px;
	width: calc(100% - 56px);
	max-width: 1200px;
	text-align: left;
	padding: 0 28px;
	margin-left: 88px;
	.inner {
	width: 100%;
	max-width: 512px;
	p {
	line-height: 24px;
}
}
}
	*/
}
.video-overlay .main_box {
  width: calc(100% - 56px);
  max-width: 1200px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video-overlay .main_box h1 {
  font-size: 32px;
  line-height: 46px;
  font-weight: 100;
  margin: 0 0 24px;
  padding-top: 24px;
  letter-spacing: 6px;
}
.video-overlay .main_box .text_box {
  width: 50%;
}
.video-overlay .main_box .text_box .inner {
  max-width: 512px;
  margin-left: auto;
  margin-right: 0;
}
.video-overlay .main_box .img_box {
  width: 50%;
}
.video-overlay .main_box .img_box img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.8;
}
.join .inner_640 {
  color: white;
}
.circle {
  margin-left: 0;
}
/**** 背景設定 *****/
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  margin: 0 0 24px;
}
h2.white {
  color: #ffffff;
}
h2.icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
}
h2.icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}
/* --- パララックスのコンテナ（3D空間の定義） --- */
.parallax-container {
  /*	height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	perspective: 1px; // 視点からの距離（奥行き感）
	*/
  /* --- 各セクションのグループ設定 --- */
}
.parallax-container .inner_1200 {
  padding: 0;
  width: 100%;
}
.parallax-container .inner_1200 > h2 {
  margin-left: 0;
}
.parallax-container .news h2 {
  margin-bottom: 24px;
}
.parallax-container h2 {
  margin-bottom: 48px;
  color: white;
}
.parallax-container .group {
  position: relative;
  overflow: hidden;
  height: auto;
  padding: 48px 60px 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* --- 背景レイヤー（ここが遅れて動く） --- */
}
.parallax-container .group:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(48, 148, 248, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.parallax-container .group.news {
  padding-bottom: 84px;
}
.parallax-container .group .para-bg {
  position: absolute;
  /*	top: 0%;
			left: 0;
			width: 100%;
			height: 100%; */
  background-size: cover;
  top: -30%;
  left: 0;
  width: 100%;
  height: 140%;
  background-position: center 50%;
  background-repeat: no-repeat;
  z-index: -1;
  background-position: center 0%;
  /*	transition: background-position 1s ease-out; */
  /* 各背景画像の設定（ネスト内で個別クラスを定義） */
}
.parallax-container .group .para-bg.bg_scroll {
  background-position: center 5%;
  transition: background-position 1s ease-out;
}
.parallax-container .group .para-bg.bg-a {
  background-image: url("../media/images/top/back_news.jpg");
}
.parallax-container .group .para-bg.bg-b {
  background-image: url("../media/images/top/back_research.jpg");
}
.parallax-container .group .para-bg.bg-b:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(48, 148, 248, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}
.parallax-container .group .para-bg.bg-c {
  background-image: url("../media/images/top/back_join.jpg");
}
.parallax-container .content {
  width: 100%;
  z-index: 5;
}
/****** news *******/
.box_white {
  background: rgba(255, 255, 255, 0.64);
  border-radius: 20px;
  padding: 56px 60px 0;
  max-height: 304px;
  overflow: hidden;
  overflow-y: scroll;
}
.inner_640.white {
  color: #ffffff;
}
.inner_640.center h3 {
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin: 0 0 30px;
}
.bg_white {
  padding: 48px 0;
  background: #CEE6FE;
}
.news_list .tag_top_none {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-video-area {
    height: 560px;
  }
  .top-video-area .bg_img {
    height: 310px;
    top: 77px;
    right: -40px;
  }
  .top-video-area video {
    height: calc(100% + 200px);
  }
  .video-overlay {
    display: block;
    height: auto;
    bottom: 32px;
    top: auto;
  }
  .video-overlay .main_box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    max-width: none;
    padding: 0 28px;
  }
  .video-overlay .main_box h1 {
    padding: 0;
    font-size: 28px;
    line-height: 40px;
    width: 100%;
    margin-bottom: 20px;
  }
  .video-overlay .main_box h1 span {
    display: block;
  }
  .video-overlay .main_box .text_box {
    width: 100%;
    margin: 0;
  }
  .video-overlay .main_box .text_box .inner {
    margin: 0;
    max-width: 100%;
  }
  .video-overlay .main_box .img_box {
    width: 100%;
    text-align: right;
  }
  .video-overlay .main_box .img_box img {
    width: 343px;
    margin-right: -50px;
  }
  .video-overlay .text_box {
    position: static;
    margin-top: 18px;
  }
  .video-overlay .text_box .inner p {
    line-height: 19px;
  }
  .parallax-container .group {
    padding: 32px 16px 72px;
  }
  .parallax-container .group.news {
    padding-bottom: 24px;
  }
  .parallax-container .news h2, .parallax-container h2 {
    margin-bottom: 16px;
  }
  .box_white {
    padding: 32px 24px 0;
    max-height: 412px;
  }
  .inner_640.center {
    padding: 0 12px;
  }
  .inner_640.center h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .map iframe {
    height: 375px;
  }
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
  h2.icon img {
    width: 21px;
    height: 21px;
  }
  .bg_white {
    padding: 32px 0 24px 0;
  }
}
/***20260715 トップインスタ用追記***/
#wholewrapper {
  /* スマホ画面（横幅768px以下）の時だけ適用 */
}
@media (max-width: 768px) {
  #wholewrapper .crt-widget-grid .crt-feed {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    /* 強制的に2列 */
    gap: 16px 0px !important;
    height: auto !important;
  }
  #wholewrapper .crt-widget-grid .crt-feed .crt-grid-post {
    width: 100% !important;
    position: static !important;
    /* JavaScriptの absolute 配置を解除 */
    float: none !important;
    display: block !important;
  }
  #wholewrapper .crt-widget-grid .crt-feed-window {
    height: auto !important;
  }
  #wholewrapper .crt-widget-grid .crt-feed:before, #wholewrapper .crt-widget-grid .crt-feed:after {
    display: none !important;
  }
}
/*# sourceMappingURL=./top.css.map */