@charset "UTF-8";



/*共通部分
------------------------------- */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
}
body{
    font-size: 1.6rem;
    font-family:"Noto Sans", sans-serif;
    line-height: 2;
    letter-spacing: 1.3px;
    color: #fff;
    background-color: #0D0D2F;
}

@media screen and (max-width: 640px) {/* 640px以下*/
  body {
      font-size: 1.4rem;/*14px*/
      line-height: 1.8;
      letter-spacing: 1px;
  }
}
a {
    text-decoration: none;
    color:inherit
}
a:hover {
    opacity: 0.8;
    transition: 0.3s;
}
img {
    max-width: 100%;
}
table {
    width: 100%;
}
.wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 3%;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
hr {
  display: none;
}

/* 調整用スタイル */
ul,
li {
  list-style: none;
}

/*スマホだけ改行（brにclassを付与して使用する）*/
.br-sp{ display: none; }
@media screen and (max-width: 767px) {
  .br-sp{ display: block; }
}

/*PCだけ改行*/
.br-pc{ display: block; }
@media screen and (max-width: 767px) {
  .br-pc{ display: none; }
}

/*ページ内リンク　位置調整*/
.jump::before{
  content:'';
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

@media print, screen and (min-width: 768px) {/*--768pxより大きい場合-- */
.jump::before{
  content:'';
  display: block;
  padding-top: 160px;
  margin-top: -160px;
}
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


/* ボタン
------------------------------- */
.btn,
a.btn,
button.btn {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 15px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 15px;
  width: 270px;
}


/* header
------------------------------- */
.header-area {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
}
.header-area-in {
    display: flex;
    justify-content: right;
    padding: 30px 30px;
    position: relative;
}
/* レスポンシブ（スマホ対応） */
@media print, screen and (max-width: 767px) {
  .header-area-in {
      padding: 20px 10px;
  }
}

.sp__nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #04041D;
  transition: ease .4s;
	z-index:200;
}
.spmenu{
  padding: 70px 5%;
}
.spmenu h2{
  font-size: 3rem;
  font-family: 'Outfit';
  color: #AD01FE;
  line-height: normal;
  margin-bottom: 10px;
}
.spmenu ul{
  margin-bottom: 15px;
  color: #fff;
}
.spmenu ul li {
  border-bottom: 5px solid #171447;
  padding: 10px 0px;
  position: relative; 
}
.spmenu ul li a {
  font-size: 1.7rem;
  font-weight: 500;
  display: block;
  padding-left: 5px;
  position: relative;
}

@media screen and (min-width: 767px) {
	.sp__nav {
		left: 50%;
		width: 50%;
	}
}



/* ハンバーガーメニュー */
.sp-menu-bl{
  display: flex;
  align-items: center;
}
.sp-info{
  margin-right: 10px;
  font-weight: 600;
}
.sp-info dt {
  min-width: 70px;
  text-align: center;
  color: #B9DBA0;
  background-color: #675555;
  border-radius: 5px;
  font-size: 10px;
}
.sp-info dd {
  margin: 0;
  font-size: 12px;
  letter-spacing: normal;
}
.header__hamburger {
  width: 60px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.sp__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}


/*  main image 
------------------------------- */
#main_image {
  position: relative;
  overflow: hidden;
}
.mainBlock{
  position: relative;
}
.main_v{
  text-align: center;
  background-image: url(../images/kidsclub-main.jpg);
  width: 100%;
  height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.main_v h1{
  position: absolute;
  top: 680px;
  right: 0;
  left: 0;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  max-width: 830px;
}
.date_bl{
  padding-top: 250px;
}
.date_bl p{
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
}


/* ほわほわした光のアニメーション */
.kira-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.kira-container span {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: radial-gradient(#00fadc, rgba(0, 250, 220, 0.2));
  border-radius: 50%;
  opacity: 0.8;
  animation: floatUp 6s ease-in-out infinite;
  box-shadow: 0 0 15px #00fadc, 0 0 30px #00fadc88;
}
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-800px) scale(0.5);
    opacity: 0;
  }
}


/* レスポンシブ（タブレット以下対応） */
@media print, screen and (max-width: 767px) {
  .main_v{
    height: 600px;
  }
  .main_v h1{
    top: 510px;
  }
  .date_bl{
    padding-top: 170px;
  }
  .date_bl p{
    font-size: 1.6rem;
    text-align: left;
  }
}
/* レスポンシブ（タブレット以下対応） */
@media print, screen and (max-width: 575px) {
  .date_bl{
    padding-top: 100px;
  }
}


/* スクロールダウン */
.scroll {
  position: absolute;
  right: 50px;
  top: 50%;
  writing-mode: vertical-rl;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #ffffff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* レスポンシブ（スマホ対応） */
@media print, screen and (max-width: 767px) {
  .scroll {
    position: absolute;
    right: 0;
    top: 50%;
  }
}


/*  活動について
------------------------------- */
.toplead-bl{
  padding-top: 20%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.lead-txt{
  background-image: url(../images/date_logo.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.lead-txt h2{
  font-size: 7rem;
  color: #AD01FE;
  font-weight: 700;
}
.intro-movie {
  width: 100%;
  max-width: 600px; /* 必要に応じて */
  margin: 0 auto;
}
/* 縦動画（9:16）用のレスポンシブ対応 */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.77%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


@media screen and (max-width: 768px) {
  .toplead-bl {
    grid-template-columns: 1fr;
  }
  .lead-txt h2 {
      font-size: 4rem;
  }
  .intro-movie{
    margin: 0 auto;
  }
}


/*  title btn 共通CSS
------------------------------- */
.sc_item_h3{
  color: #00FADC;
  font-size: 4rem;
  text-align: center;
  padding: 2rem 0;
}

@media screen and (max-width: 768px) {
  .sc_item_h3{
    font-size: 3rem;
  }
}

.btn-link {
  width: 270px;
  display: inline-block;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin: 3% 0;
  padding: 15px;
  background-image: linear-gradient(90deg, rgba(13, 113, 255, 1), rgba(185, 0, 247, 1));
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}
.btn-link.kiran::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-20deg);
}
.btn-link.kiran:hover::before {
  animation: shine 0.8s ease forwards;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}





/*  活動計画  */
.actionplan{
  padding: 15% 0;
}
.actionplan h3{
  color: #00FADC;
  font-size: 3rem;
  text-align: center;
  padding: 2rem 0;
}
.schedule-row {
  display: flex;
  align-items: center;
  border-top: 1px solid #666;
  padding:0.8em 0;
  flex-wrap: wrap;
  font-weight: 500;
}
.schedule-row:last-child{
  border-bottom: 1px solid #666;
}
.meta {
  display: flex;
  gap: 1em;
  flex-wrap: nowrap;
  flex-shrink: 0;
  min-width: 20em;
  width: 35%;
}
.label,
.date,
.circles {
  min-height: 30px;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
.label {
  flex-basis: 6em;
  justify-content: center;
  border: 1px solid #bbb;
  padding: 0.5em;
}
.date {
  padding: 0.4em 1em;
  justify-content: center;
}
.circles {
  flex: 1;
  white-space: nowrap;
  padding: 0.4em 1em;
  text-align: left;
}
.note {
  font-size: 0.85em;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .actionplan h3{
    font-size: 2rem;
    line-height: normal;
  }
  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .label,
  .date,
  .circles {
    min-height: 10px;
  }
  .meta, .circles {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
  .meta {
    margin-bottom: 0.5em;
  }
}


/*  次の活動プログラム  */
.nextprogram{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; 
  padding-bottom: 10%;
}
.np-bl{
    padding: 5%;
    background-image: linear-gradient(90deg, rgba(13, 113, 255, 1), rgba(185, 0, 247, 1));
}
.np-bl-label{
    border: 1px solid #fff;
    width: 110px;
    font-size: 1.9rem;
    text-align: center;
    font-weight: 500;
}
.np-bl-ttl{
    font-size: 2.5rem;
    line-height: normal;
    margin: 1em 0;
    font-weight: 600;
}
.np-bl-schedule li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.np-bl_label {
  background-color: #000;
  padding: 0.5em;
  color: #F246E0;
  text-align: center;
  margin-right: 10px;
  width: 80px;
  flex-shrink: 0;
}
.np-bl_desc {
  flex: 1;
  line-height: normal;
}


@media screen and (max-width: 768px) {
  .nextprogram{
    grid-template-columns: 1fr;
    gap: 0px; 
  }
}


/*  前回の活動プログラム  */
.prevprogram{
  padding-top:10%;
}
.prev-bl{
    border: 1px solid #666;
    padding: 2% 5% 5% 5%;
}
.program-section {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.program-text {
  flex: 1 1 300px;
  min-width: 280px;
}
.program-label{
    display: flex;
    align-items: center;
}
.pr-label{
  border: 1px solid #666;
  width: 100px;
  text-align: center;
  font-weight: 500;
  margin-right: 15px;
}
.pr-date{
  font-size: 1.9rem;
  margin-left: 15px;
}
.program-title{
    font-size: 2.5rem;
    line-height: normal;
    padding: 10px 0;
    border-left: 5px solid #ad01fe;
    padding-left: 15px;
    margin: 20px 0;
}
.program-slider {
	flex: 1 1 300px;
	min-width: 200px;
	width: 100%;
	box-sizing: border-box;
}

.slider1 {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.slider1 li {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}
.slider1 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 768px) {
  .program-section {
    flex-direction: column;
  }
.program-title{

    border-left: none;
    padding-left: 0;
}
  .program-text,
  .program-slider {
    width: 100%;
    min-width: auto;
    flex: unset;
  }
  .program-text{
    text-align: center;
  }
  .program-label{
    display: block;
  }
  .np-bl-label{
    display: inline-block;
    margin-bottom: 5px;
  }
}



/*  活動記録  */
.activitylog{
  padding-top: 10%;
}
.activitylog-img {
  position: relative;
  background-image: url(../images/action.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: space-around;
  height: 500px;
  z-index: 0;
  overflow: hidden;
}

/* 暗くするオーバーレイ */
.k-yearlog::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.i-yearlog::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.k-yearlog,
.i-yearlog {
  flex: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.k-yearlog a,
.i-yearlog a {
  text-decoration: none;
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
}

.k-yearlog:hover:before {
  opacity: 0;
}
.i-yearlog:hover:before {
  opacity: 0;
}

@media (max-width: 768px) {
  .k-yearlog a,
  .i-yearlog a {
    font-size: 2rem;
  }
}


/*  クラブ員募集中
------------------------------- */
.membership{
  padding: 10% 0;
}
.ms-ttl h3{
  text-align: center;
  font-size: 4rem;
  line-height: normal;
  color: #ad01fc;
  padding: 3rem 0;
}
.ms-ttl p{
  text-align: center;
} 

/*  募集要項  */
.membership-list{
  padding-top: 10%;
}
.L_h4_bl{
  text-align: center;
  font-size: 3rem;
  padding: 3rem 0;
}
.guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guidelines-list li {
  border: 1px solid #666;
  border-radius: 50px;
  padding: 1.5rem 2rem;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.gl_label {
  width: 11em;
  font-weight: 600;
  font-size: 2rem;
  display: flex;
  align-items: center;
}
.gl_label::before {
  content: "";
  background-image: url(../images/checkmark.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-right: 15px;
  flex-shrink: 0;
}
.desc {
  flex: 1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .guidelines-list li {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
  }
  .gl_label {
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }
  .desc {
    width: 100%;
    font-size: 1.5rem;
  }
  .ms-ttl h3 {
    font-size: 3rem;
  }
}

/*  お申し込み  */
.txt-lead{
  text-align: center;
  padding: 3rem 0;
}
.c-f{
  margin:5% 0;
}
.L_h5_bl{
  font-size: 2rem;
  border-left: 2px solid #AD01FC;
  border-bottom: 2px solid #00FADC;
  padding: 0.5em 1em;
  margin-bottom: 3rem;
}
.btn-bl{
  text-align: center;
}
.download-list {
  margin: 3% 0;
  padding: 0;
  list-style: none;
}
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
    color: #a3c1bb;
}
.download-link::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.download-link.pdf::before {
  background-image: url(../images/pdf.png);
}
.download-link.word::before {
  background-image: url(../images/word.png);
}

@media (max-width: 768px) {
  .txt-lead{
    text-align: justify;
  }
  .btn-bl{
    text-align: center;
    margin: 7% 0;
  }
  .download-list {
    margin: 7% 0;
  }
}


/*  よくある質問  */
.faq-bl{
  border: 1px solid #AD01FC;
  padding: 1.8rem;
    margin-bottom: 20px;
}
.L_h6_bl{
    border-left: 2px solid #AD01FC;
    padding: 0 0.8em;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 0.5em;
}



/* footer
------------------------------- */
.page-footer{
  background-image: linear-gradient(90deg, rgba(13, 113, 255, 1), rgba(185, 0, 247, 1));
  padding: 5% 0;
  text-align: center;
}
.page-footer h2,
.all-footer h2{
    font-size: 2.5rem;
    padding: 3% 0;
}
.page-footer h3{
    font-size: 1.8rem;
    line-height: normal;
    margin-bottom: 30px;
}

.all-footer {
  width: fit-content; 
  margin: 0 auto; 
  text-align: left;
  flex-wrap: wrap;
  padding: 5% 0;
}
.footerlist{
    margin-top: 30px;
  font-size: 1.3rem;
}

.small {
  text-align: center;
  border-top: 1px solid #18696d;
}
.copyright {
    font-size: 1rem;
    padding: 20px 0 5%;
}



/* ---------------------------- */
/* page
------------------------------- */
.main_column{
    padding: 5% 0;
}

/* page-header */
.header-area-page{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  height: 88.41px;
}
.header-area-page-in {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}
.header-left img{
  width: 200px;
}

/* page-block */
.page_title_block{
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/kidsclub-main.jpg);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10% 0;
}
#page_title{
  margin-bottom: 5%;
}
.page_title_block h2{
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 3px;
  color: #00FADC;
}



/* これまでの活動
------------------------------- */
.ac-A-bl {
  width: 100%;
}
.a-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 基本は5列 */
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.a-list li {
  border: 1px solid #9D19FB;
  text-align: center;
  padding: 0.5em 0;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.a-list a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.a-list li:hover {
  background-image: linear-gradient(90deg, rgba(13, 113, 255, 1), rgba(185, 0, 247, 1));
  transition: 0.3s;
}

/* スマホ対応：768px以下では2列 */
@media (max-width: 768px) {
  .a-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


.prev-page-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 40px;
  margin: 10% 0px;
}
.pp-slide-ttl {
  margin-bottom: 20px;
    font-weight: bold;
    padding: 0.5em 1em;
    border-top: 2px solid #00fadc;
    border-bottom: 2px solid #00fadc;
    overflow: hidden;
    position: relative;
}
.pp-slide-ttl::before {
content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: #00fadc #0d0c2f #00fadc;
}
.pp-slide-ttl::after {
content: '';
    position: absolute;
    right: 0;
    top: 0;
    border-width: 10px 0 0 10px;
    border-style: solid;
    border-color: #00fadc #0d0c2f #00fadc;
}


@media screen and (max-width: 768px) {
  .prev-page-slide {
    grid-template-columns: 1fr;
  }
}


