@charset "utf-8";
/* CSS Document */
/****#1b1464***紫*/
/****#008aea****青*/
/****#ff8235***オレンジ*/
/****#0064f3***青*/
/****#154793***紺*/
/******#e50038**赤**/
/****#fea75e***オレンジ*/
/***#c2e2ff****背景水色*/
/****#8cc2ca***背景緑*/
br.sp {
  display: none;
}
br.pc {
  display: block;
}
html {}
body {
  margin: 0;
  overflow-x: hidden !important; /* 水平方向のオーバーフローを非表示にする */
  position: relative; /* 親要素が基準になるように */
  padding: 0; /* 不要なパディングを取り除く */
  background-color: #c2e2ff;
  height: 200vh; /* スクロールを有効にするための高さ */
}
.row {}
/*スライド*/
.appear {
  opacity: 0;
}
a:hover {}
ul {
  padding: 0;
}
li {
  list-style: none;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
br.sp {
  display: none;
}
#rocket {
  display: block;
}
#page_top {
  display: none;
}
/**************************************/
.logo {
  margin: 1rem;
}
.page1 {
  background: linear-gradient(to top, #87ceeb, #1e90ff); /* 空のような背景色 */
  padding: 10% 0;
}
.rocket {
  position: fixed; /* ロケットを画面に固定 */
  top: 0; /* 上からの位置 */
  left: 0; /* 左右中央揃え */
  right: 10%;
	z-index: 100;
}
#rocket {
  transform-origin: center; /* 回転の中心を設定 */
}
#rocket img {
  width: 100%; /* ロケット画像のサイズ */
  transform-origin: center; /* 回転の中心を設定 */
}
/* コンテナ全体を相対位置に設定 */
#container {
  width: 100%; /* 必要に応じて調整 */
  height: auto; /* SVG全体を高さに合わせる */
  overflow: hidden; /* コンテナ外に要素がはみ出さないようにする */
}
/* 1. 雲が浮かぶ空を作成 */
.sky {
  animation: cloud 30s linear infinite;
  background: url("images/cloud-2.svg");
  background-position-x: 0%;
  background-position-y: 35%;
  background-repeat: repeat-x;
  background-size: 800px auto;
  height: auto;
}
/* 2. keyframeを使って、雲が流れるように。 */
@keyframes cloud {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 800px;
  }
}
/* 1. 雲が浮かぶ空を作成 */
#logo1 {}
/* ロゴ画像のスタイル */
#logo1 img {
  max-width: 100%; /* ロゴが親要素の幅を超えない */
  height: auto; /* アスペクト比を維持 */
  display: block; /* 不要な余白を防ぐ */
  margin: 0 auto; /* 中央揃えにしたい場合 */
}
#logo2 {
  text-align: center;
  padding-top: 3rem;
}
.title00 {
  font-family: "ryo-gothic-plusn", sans-serif;
  padding-bottom: 4rem;
  text-align: center;
  color: #fff;
}
.sec0p {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 3rem;
}
.sec1p {
  font-size: 1.2rem;
}
.sec1p {
  margin: 1rem 0;
}
.sec2p {
  margin-top: 2rem;
}
.title01 {
  font-family: "ryo-gothic-plusn", sans-serif;
  margin: 3rem 0;
  text-align: center;
}
.secpp2 {
  font-size: 1.2rem;
}
.secpp2span {
  font-size: 2rem;
  font-weight: bold;
  color: #c2e2ff;
  padding: 1.5rem 0;
}
/***文字１行ずつ蛍光色線***/
.company-bubble {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.companytt {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  color: #fff;
  font-family: "ryo-gothic-plusn", sans-serif;
  line-height: 1.5; /* 行間を設定 */
  z-index: 1;
}
.companytt span {
  position: relative;
  display: inline-block;
  overflow: hidden; /* 各行にアニメーションを適用 */
}
.companytt span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%; /* 蛍光ペンの高さ調整 */
  background: rgba(0, 255, 255, 0.5); /* 蛍光ペンの色 */
  transform: scaleX(0); /* 初期状態 */
  transform-origin: left;
  transition: transform 1s ease-out; /* アニメーションの時間と動き */
  z-index: -1;
}
.companytt span.visible::before {
  transform: scaleX(1); /* アニメーションで線を表示 */
}
/***文字１行ずつ蛍光色線***/
.company {
  padding: 8% 0 4%;
}
.itembox {
  margin-top: 2rem;
  width: 100%;
  height: auto;
}
.page-item {
  position: relative;
  z-index: 1;
  border: 2px solid #8cc2ca;
  width: 100%;
  height: auto;
  background-color: #fff;
}
.company-logo img {
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.company-logo:hover img {
  transform: scale(1.1); /* 拡大 */
}
.section1, .section2, .section3 {
  height: 100%; /* 各セクションを画面全体の高さに設定 */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* 子要素を縦に並べる */
  color: #fff;
}
.section1 {}
.section2 {}
/*******************画像の真ん中に文字****************/
.cloud-bubble {
  position: relative;
  text-align: center;
}
.cloud-bubble p {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #008aea;
  font-family: "ryo-gothic-plusn", sans-serif;
}
/*******************画像の真ん中に文字****************/
/**********video**************/
.video-container {
  position: relative;
  width: 100%;
  max-width: 560px; /* 必要に応じて変更 */
  aspect-ratio: 16 / 9; /* 動画コンテナの比率を固定 */
  background-color: #000; /* 背景色を黒に設定 */
  overflow: hidden; /* 子要素のはみ出しを隠す */
  cursor: pointer;
  border: 2px solid #8cc2ca;
}
.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 親要素にフィットさせる */
  display: block; /* 余計な隙間を防ぐ */
}
.video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; /* ボタンの幅 */
  height: 48px; /* ボタンの高さ */
  background-color: rgba(255, 255, 255, 0.9); /* 白い背景 */
  border-radius: 4px; /* ボタンの角丸 */
}
.video-container .play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 16px solid #8cc2ca; /* 三角形の色 */
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
/**********video**************/
.page2 {
  margin-bottom: 2rem;
}
.page2-inbox {
  padding: 5% 0 15%;
}
.item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
padding: 0.5rem;
}
.box{
	
}
.part {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.part-p {
  text-align: center;
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "ryo-gothic-plusn", sans-serif;
}
.fukiimg{
	margin-bottom: 1rem;
}
/*****2ページアニメーション**********/
.boxbox {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  position: relative;
  
  padding-top: 3rem;
}
.rec {
  height: 80px;
  width: 80px;
  position: absolute;
  top: 8%;
  left: 8%;
  animation: animate 5s linear infinite;
  background: transparent;
  border: solid 3px rgba(255, 255, 255, 0.8);
}
.rec:nth-child(1) {
  top: 18%;
  left: 18%;
  animation: animate 15s linear infinite;
}
.rec:nth-child(2) {
  top: 27%;
  left: 87%;
  animation: animate 10s linear infinite;
}
.rec:nth-child(3) {
  top: 80%;
  left: 90%;
  animation: animate 5s linear infinite;
}
.rec:nth-child(4) {
  top: 60%;
  left: 70%;
  animation: animate 9s linear infinite;
}
.rec:nth-child(5) {
  top: 88%;
  left: 12%;
  animation: animate 9s linear infinite;
}
.rec:nth-child(6) {
  top: 70%;
  left: 33%;
  animation: animate 8s linear infinite;
}
.rec:nth-child(7) {
  top: 33%;
  left: 66%;
  animation: animate 8s linear infinite;
}
.rec:nth-child(8) {
  top: 70%;
  left: 60%;
  animation: animate 16s linear infinite;
}
.rec:nth-child(9) {
  top: 26%;
  left: 53%;
  animation: animate 7s linear infinite;
}
.rec:nth-child(10) {
  top: 45%;
  left: 15%;
  animation: animate 12s linear infinite;
}

@keyframes animate {
  0% {
    transform: scale(0) translateY(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) translateY(-90px) rotate(360deg);
    opacity: 0;
  }
}
/*****アニメーション**********/
/*****吹き出し**********/
.balloon1 {
  position: relative;
  margin: 5% auto 4% auto;
  padding: 0 15px;
  width: 80%;
  height: auto;
  color: #fff;
  line-height: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  background: #6cdeff;
  border-radius: 60px;
  z-index: 0;
}
.balloon1:before {
  content: "";
  position: absolute;
  bottom: -17px;
  right: 15px;
  margin-right: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: #6cdeff;
  border-radius: 50%;
  z-index: 0;
}
.balloon1:after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 25px;
  margin-right: 0;
  display: block;
  width: 8px;
  height: 8px;
  background: #6cdeff;
  border-radius: 50%;
  z-index: 0;
}
/*****吹き出し**********/
/*****吹き出し**********/
.balloon0 {
  position: relative;
  margin: 7% auto 3% auto;
  padding: 0 15px;
  width: 40%;
  height: auto;
  color: #fff;
  line-height: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  background: #6cdeff;
  border-radius: 60px;
  z-index: 0;
}
.balloon0:before {
  content: "";
  position: absolute;
  bottom: -17px;
  right: 15px;
  margin-right: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: #6cdeff;
  border-radius: 50%;
  z-index: 0;
}
.balloon0:after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 25px;
  margin-right: 0;
  display: block;
  width: 8px;
  height: 8px;
  background: #6cdeff;
  border-radius: 50%;
  z-index: 0;
}
/*****吹き出し**********/
.copy {
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding-bottom: 0.5rem;
}