@charset "utf-8";
/* CSS Document */
/****#1b1464***紫*/
/****#008aea****青*/
/****#ff8235***オレンジ*/
/****#0064f3***青*/
/****#154793***紺*/
/******#e50038**赤**/
/****#fea75e***オレンジ*/
/***#c2e2ff****背景水色*/
/****#8cc2ca***背景緑*/
br.sp {
  display: none;
}
br.pc {
  display: block;
}


body {
  margin: 0;
  overflow-x: hidden !important; 
  position : relative; 
  padding: 0; 
  background-color: #56a9f7;
  height: 200vh; 
  color: #212529;
}

.appear {
  opacity: 0;
}

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 img {
  margin: 0 auto;
  max-width: 35%;
}
.page1 {
  background: linear-gradient(to top, #bdd8ef, #fffcfc); 
  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;
  overflow: hidden; 
}

.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;
}

@keyframes cloud {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 800px;
  }
}

#logo1 img {
  max-width: 100%; 
   height: auto; 
  display: block; 
  margin: 36px auto; 
}

.sec0p {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 3rem;
}
.sec1p {
  font-size: 1.2rem;
}
.sec1p {
  margin: 1rem 0;
}
.sec2p {
  margin-top: 2rem;
}

.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;
 
  font-family:  "Roboto", sans-serif;
  line-height: 1.5;
  z-index: 1;
}


.comnum {
  font-size: 7rem !important; 
  color: #ffd438;
  -webkit-text-stroke: 2px black;
  font-weight: bold; 
display: inline !important;
}

.companytt h2 , .section2 h2 {
  font-size: 5rem;
}

.comcap {
  font-size: 1.5rem;
}
.companytt span {
  position: relative;
  display: inline-block;
  overflow: hidden; 
}
.sp_br {
  display: none;
}
.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: 0% 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); /* 拡大 */
}

/*******************画像の真ん中に文字****************/
.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;
}

.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;
}



/*2026年度版追記こっから */

.wrap{
 font-family: "YakuHanJP","Roboto","Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: .05em;
}

 .info_text span {
  font-size: 0;
}



.info_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.info_img img {
 display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* メリットセクション */
.merits {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
    width: 100%;
    margin-top: 2rem;
    border: 1px solid #58B2F4 ;
    text-align: center;
    align-items: center;
  }

h2{
  font-size: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top:0.5rem;
  text-align: center;
  font-weight: 900;
}

.merits p {
 font-size: 2rem;
 font-weight: 800;
 
}


.flow h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}


.flow h2::before,
.flow h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #000;
}

.flow h2::before {
  margin-right: 10px;
}

.flow h2::after {
  margin-left: 10px;
}


.flow,
.flow::before,
.flow::after {
  box-sizing: content-box !important;
}


@media (max-width: 768px) {
h2 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  }
}



.merit_container  {
  display: grid;
grid-template-columns: repeat(4, 1fr);
   align-items: start;
  text-align: center;
  gap: 20px;              
   padding:0 2rem 1rem;
  list-style: none;
  max-width: 1000px;
  margin: 1rem auto;  
}

@media (max-width: 768px) {
  .merit_container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.merit {
  justify-content: center !important;
}
.merit img {
    display: block;
    text-align: center;
    margin-bottom: 5%;
      width: 100%;

}
.merit span {
  font-size: 1.5rem;
  font-weight: bold;
 margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
 .merit span {
  font-size: 1.5rem;
  }
}
.merit_container p {
  font-size: 0.9rem;
   margin-top: 0.5rem;
}
@media (max-width: 768px) {
 .merit_container p {
  font-size: 0.9rem;
  }
}



/* flowセクション */

.flow {
  margin-top: 5rem;
}

.flow ul {
  margin: 10% 10%;

}

.tittle_time_icon {
  text-align: center;
}




.schedule_listitem {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 3rem;
  position: relative;
}


.schedule_listitem:after {
  content: "";
  position: absolute;
  left: 92px;
  top: 5px;
  width: 17px;
  height: 17px;
  border-radius: 100%;
  background-color: #0068b6;
  border: 3px solid #94d4f2;
}

.schedule_listitem:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 100px;
  width: 3px;
  height: 130%;
background: linear-gradient(
  to bottom,
  rgba(16, 149, 167, 0.5) 0%,
  rgba(16, 149, 167, 0.3) 50%,
  rgba(16, 149, 167, 0) 100%
);

}

.schedule_listitem:last-child::before {
  display: none;
}

.schedule_time {
  margin-bottom: 8px;
  font-size: 2rem;
  position: relative;
  left: 0;
  
}

.schedule_listitem img {
  width: 80px;
  height: auto;
  position: relative;

}

.left {
  display: flex;
  flex-direction: column; 
  align-items: center;
  margin-right: 5%;
}
.left img {
  max-width: 50px;
  height: auto;
}
.schedule_paragraph h3 {
  font-size: 2rem;
   position: relative;
   
}



.schedule_paragraph h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #fd2626;

  transition: width 0.4s ease;
}


.schedule_paragraph h3:hover::after {
  width: 100%;
}

.schedule_paragraph p {
  font-size: 1.5rem;
  line-height: 2;
}

.theme_example {  
  background-color: #FCF4F5;
  border-radius: 10px;
  position: relative;
  padding: 0.8rem;
  margin-top: 1rem;
  width: 100%;
  height: auto;
}


.theme_example:before, .theme_example:after {
   position: absolute;
  left: 0;
  width: 100%;
  content: '';
  border-top: 2px dotted #E48A9B;
}

.theme_example:before {
  top: 6px;
}
.theme_example:after {
  bottom: 6px;
}
.theme_example h4 {
  font-size: 1.8rem;
  padding-top: 1rem;
  color: #E48A9B;
}


.theme_example ul {
  margin: 1rem 2.5rem;
  line-height: 2;
}

.theme_example li {
  font-size: 1.5rem;
  list-style-type: circle !important;
}










.clock {
  width: 80px;
  height: 80px;
  border: 4px solid #333;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
}


.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
}

.minute {
  width: 4px;
  height: 20px;
  background:  #333;
  animation: spin-minute 5s linear infinite;
   border-radius: 2px;
}

.hour {
  width: 4px;
  height: 30px;
  background: #333;
  animation: spin-hour 60s linear infinite;
   border-radius: 2px;
}

@keyframes spin-minute {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


@keyframes spin-hour {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}



.section1, .section2, .section3 {
  height: 100%; 
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
  color: #333;
  margin-top: 5rem;
}



/* 申し込み */

.apply {
    background-color: #f9ffff;
  border-radius: 20px;
    width: 70%;
    margin-top: 2rem;
    padding-bottom: 2rem;
    border: 1px solid #333 ;
    align-items: center;
  display: block;
  margin: 0 auto;
   margin-top: 10rem;
}

.apply h2 {
  font-size: 3rem;
}

.apply_contents {
  display: flex;
justify-content: center;
align-items: center
}

.apply_contents img {
  max-width: 50rem;
  height: auto;
  opacity: 0;
}

.apply_contents img.is-visible {
  animation: flyRotate 1s  ease-out forwards;
}

@keyframes flyRotate {
  100% {
    opacity: 1;
    transform:  translateX(-10%) rotate(350deg) scale(1);
  }

}




@media (max-width: 768px) {
.apply_contents img {
  max-width: 150px;
  height: auto;
}
}


.apply_contents li {
  padding-top: 2rem;
  font-size: 3rem;
  font-weight: 800;
    position: relative;
}

@media (max-width: 768px) {
  .apply_contents {
    flex-direction: column;
  }
}



.apply_contents li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #F6D000;
  transition: width 0.4s ease;
}


.apply_contents li:hover::after {
  width: 100%;
}


.apply_contents li::before {
  content: "★";           
  color: #F6D000;         
  font-size: 2.5rem;       
  margin-right: 8px;
}

.apply button {
  background-color: #de3d3d;
  display: block;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 2% 8%;
  text-align: center;
  margin: 0 auto;
  margin-top: 2rem;
  transform: 0.5s;
}

.apply button:hover {
     box-shadow: 0 0 10px #F6D000, 0 0 20px #F6D000;
transform: scale(1.05);
}
.apply button a {
  color: #fff;
  font-size: 3rem;
}




.company-logo {
  width: 100%;
  aspect-ratio: 10 / 3;  
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.col-md-3 {
  margin: 1rem;
}


.section2 {
  position: relative;
}

.section2 h2 {
  font-size: 4rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1200px)  {
  
}

.section2 h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15%;
  background: rgba(251, 255, 4, 0.7);
  z-index: -2;

}

.section2 h2:hover::before {
  transform: scaleX(1);
}

.section2 p {
  font-size: 3rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}


.companytt h2 span {
  display: inline-block;
}