@charset "utf-8";

.header__logo {
  margin-top: 8px;
  width: 120px;
  height: auto;
}

.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header {
  margin-bottom: 100px;

}

.reserveBtn {
  position: fixed;
  right: 0;
  top: 30%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  background-color: var(--primary-orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 30px 20px;
  border-radius: 25px 0 0 25px;
  transition: background-color 0.3s;
  z-index: 1000;
  text-orientation: upright;
  letter-spacing: 0.2em;

}

.reserveBtn:hover {
  background-color: #FF8769;
}

.reserveBtn__icon {
  width: 1.1em;
  height: auto;
  vertical-align: middle;
  transform: translateX(-0.2em);
  margin-top: -5px;
}

.reserveBtn:hover {
  background-color: #FF8769;
}



.section__title {
  z-index: 1000;
}





@media (max-width: 767px) {

  .header__logo img {
    width: 100px;
    height: auto;
    margin-top: 5px;
    transition: none;
  }

  .header.shrink .header__logo img {
    display: none;

  }

  .Edu_toy {
    line-height: 1;
  }

  .section__txt {
    font-size: 1.6rem;
    padding-top: 20px;
    margin: 0 auto;
  }

  .reserve-tab {
    display: none;

  }

  .reserveBtn {
    position: fixed;
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    transform: none;
    margin: 0 auto;
    width: 55%;
    height: 50px;
    border-radius: 20px 20px 0 0;
    background-color: var(--primary-orange);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    z-index: 9999;
    padding: 0;
    letter-spacing: 0.1em;
      max-width: 300px;
  }

  .reserveBtn__icon {
    width: 1em;
    height: auto;
    margin-left: 0.5em;
    transform: translateY(0.2em);
  }


}

@media (max-width: 1110px) and (min-width: 768px) {
  .inner {
    padding-right: 30px;
  }
}



/* Play */

.section--play {
  padding-bottom: 150px;
  position: relative;
  margin-top: 180px;

}


.play__list {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;

}

.play__img {
  width: 100%;
  max-width: 30%;
  height: auto;
  display: block;
}

.custom-shape-divider-bottom-1760628123 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
}

.custom-shape-divider-bottom-1760628123 svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 122px;
}

.custom-shape-divider-bottom-1760628123 .shape-fill {
  fill: #FFFFFF;
}

@media (max-width: 767px) {

  .section--play {
    margin-top: 140px;
  }

  .play__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .play__img {
    max-width: 80%;
  }
}


/* アニメーション */
.play__img {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.8s ease;
}

.play__img.active {
  opacity: 1;
  transform: translateY(0);
}

/* 左から順番にディレイをつける */
.play__img:nth-child(1) {
  transition-delay: 0s;
}
.play__img:nth-child(2) {
  transition-delay: 0.4s;
}
.play__img:nth-child(3) {
  transition-delay: 0.8s;
}


/* toy */

.section--toys {
  background-color: #fff;
  padding-bottom: 70px;
  padding-top: 150px;
}

.toy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1200px;
  margin: 50px auto 0;
  text-align: center;
}

.toy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.toy__img {
  width: 100%;
  max-width: 330px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.toy__name {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #E94A1A;
}

.toy__line {
  width: 175px;
  height: auto;
  margin-bottom: 8px;
}

.toy__company {
  font-size: 1.6rem;
  color: #E94A1A;
  margin-bottom: 12px;
}

.toy__desc {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #444;
  max-width: 280px;
}

.toy__comment {
  display: flex;
  align-items: center;
  justify-content: flex-end;  
  gap: 12px;
  max-width: 1200px;          
  margin: 0 auto;        
  padding-right: 2%;          
}

.toyComment__txt {
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: right;
  margin-top: 60px;
}



@media (max-width: 767px) {
  .toy__list {
    grid-template-columns: 1fr;
    max-width: 80%;
  }

  .toyComment__txt {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: start;
  }


}




/* footer color */
.footer {
  background-color: #F8F1EE;
}

.custom-shape-divider-top-1760021289 .shape-fill {
  fill: #fff;
}