@charset "utf-8";
/* CSS Document */
/* kids_index.css */
/*
 * window size
 * PC 768px--
 * tab 521px--767px
 * sp --520px
 */

/* -------------------------
  common
--------------------------*/

h1.logo {         
  width:100%;
  height:auto;
  margin: 0 auto 20px auto;
  padding: 0;
  background: none;
}

h1.logo img {
  width:100%;
}

h2.center {
  background: unset;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 30px;
}

.separate {
  margin: 6em 0;
}

.separate img {
  width: 100%;
}

rt {
  font-weight: normal;
}
  


/* -------------------------
  contents
--------------------------*/

.container {
  margin: 0 0 2em;  
}

.flexbox, .flex_tab, .flex_sp {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.col2, .col4 {
  flex: 1;
}

.item {
  position: relative;
  border-radius: 15px;
  margin: 30px auto 10px;
  height: 140px;
  text-align: center;
  display: table;
  padding: 20px 10px 10px 10px;
  transition:0.3s;
}

.item:hover {
  transform: scale(1.05);
}

.item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inner_txt {
  display: table-cell;
  vertical-align: middle;
}

h2.top {
  padding: unset;
  background: unset;
  margin: unset;
  font-size: 1.35em;
}

h2.top span {
  font-weight: normal;
  font-size: 0.8em;
}

.inner_ill {
  position: absolute;
  width:100px;
  height: 60px;
  left: 0;
  right: 0;
  top: -28px;
  margin: 0 auto;
}

.inner_ill img {
  height: 60px;
  width: auto;
}



.bk_yel {
  background: #fdfbc1;
}
.bk_blu {
  background: #e6f4fd;
}
.bk_red {
  background: #ffe7e3;
}
.bk_grn {
  background: #e2f7e7;
}

.bk_yel:hover {
  background: #fffca7;
}
.bk_blu:hover {
  background: #c9e3f3;
}
.bk_red:hover {
  background: #f9d1ca;
}
.bk_grn:hover {
  background: #caf5d5;
}



@media (max-width: 767px) {/* tab */
  .flex_tab {
    display: block;
  }
}

@media (max-width: 520px) {/* sp */
  .flex_sp {
    display: block;
  }
  .col2 {
    width: 100%;
  }
  .item {
    height: 120px;
  }
  .flex_sp .item {
    margin: 40px auto 10px;
  }
}




/* -------------------------
  news
--------------------------*/

.news {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 5em;
}
  
.news dt,
.news dd {
  display: flex;
  font-size: 1.2em;
  padding: 20px 10px;
  border-bottom: dotted 1px #ccc;
  align-items: center;
}

.news dt {
  font-weight: normal;
  width:16%;
}
.news dd {
  width:84%;
}
  
@media (max-width: 767px) {/* tab */
  .news {
    display: block;
  }
  .news dt {
    width:100%;
    border-bottom: unset;
    padding: 15px  10px 0;
   }
  .news dd {
    width:100%;
    padding: 5px 10px 15px;
  }
}


/* -------------------------
  movie
--------------------------*/

.mv {
  margin: 0em auto 5em;
  text-align: center;
  max-width: 600px;
}

.mv .youtube iframe {
  border-radius: 15px;
  border: 1px solid #ddd;
}


/* -------------------------
  ruze
--------------------------*/

.ruze .item {
  width:100%;
  max-width: 400px;
  margin: 100px auto 10px;
}

.inner_ruze {
  position: absolute;
  width:190px;
  height: 130px;
  left: 0;
  right: 0;
  top: -100px;
  margin: 0 auto;
}

.inner_ruze img {
  height: 130px;
  width: auto;
}



/* -------------------------
  footer
--------------------------*/

.footer_ill {
  margin-top: 3em;
}

.footer_ill img {
  width: 100%;
}

