/*--------------------------------------------------------------
# リンクリスト
--------------------------------------------------------------*/
.group_link .link_list {
  display: flex;
  flex-wrap: wrap;
  border-top: 0.1rem solid #D9D9D9;
  border-left: 0.1rem solid #D9D9D9;
  & li {
    color: var(--fc-base);
    flex-grow: 1;
    text-align: center;
    border-right: 0.1rem solid #D9D9D9;
    border-bottom: 0.1rem solid #D9D9D9;
    & a {
      display: block;
      color: inherit;
      font-size: 112%;
      padding: 0.2em 1em;
      &:hover {
        box-shadow: 0 0 0.4rem var(--accent-green);
      }
    }
    &.current {
      color: #FFF;
      background: var(--accent-green);
    }
  }
}
@media (min-width:768px) {
  .group_link .link_list li.kg {
    width: 50%;
  }
  .group_link .link_list li.nursery {
    width: 50%;
  }
}
/*--------------------------------------------------------------
# 一日の流れ
--------------------------------------------------------------*/
.daily_content {
  padding-bottom: 0;
  @media (min-width:768px) {
    padding-top: 9rem;
  }
}
.daily_content .section_title {
  font-size: clamp( 2rem, calc( 1.5714285714285715rem + 1.1904761904761905vw ), 3rem );
  text-align: center;
  margin-bottom: 2em;
}
.daily_content .time_schedule {
  position: relative;
  &::before {
    display: block;
    content: "";
    width: 0.1rem;
    height: calc(100% - 1rem);
    background: var(--key-color);
    position: absolute;
    top: 1rem;
    left: calc(50% - 0.05rem);
  }
  > div {
    width: 50%;
    padding: 0 1.5em 2em;
    position: relative;

    &.right dt::before, &.left dt::after {
      display: inline-block;
      content:"";
      width: 2rem;
      height: 1.3rem;
      background: #FFF;
      border: 0.1rem solid var(--key-color);
      border-radius: 50%;
      position: absolute;
      top: 0.3em;
    }
    & dt {
      font-family: var(--ff-en);
      font-size: clamp( 2rem, calc( 1.5714285714285715rem + 1.1904761904761905vw ), 3rem );
      line-height: 1;
      word-break: keep-all;
      overflow-wrap: anywhere;
      margin-bottom: 0.3em;
    }
    & dd p {
      font-size: clamp( 1.3rem, calc( 1.1714285714285715rem + 0.35714285714285715vw ), 1.6rem );
      line-height: 1.43;
      word-break: keep-all;
      overflow-wrap: anywhere;
      &.large {
        font-size: clamp( 1.6rem, calc( 1.4285714285714285rem + 0.4761904761904762vw ), 2rem );
        margin-bottom: 0.3em;
      }
    }
    &.right {
      margin: 0 0 0 auto;
      & dt::before {
        right: calc(100% - 1rem);
      }
    }
    &.left {
      text-align: right;
      & dt::after {
        left: calc(100% - 1rem);
      }
      & dd {
        justify-content: right;
      }
    }
    &.img {
      & dt {
        margin-top: min(10vw,10rem);
      }
      & dd {
        container-type: inline-size;
        margin-bottom: min(10vw,10rem);
      }
      .img_wrap {
        width: min(38vw, 30rem);
        position: absolute;
        top: -10vw;
        @container (min-width: 400px) {
          top: -45%;
        }
      }
      &.right {
        .img_wrap {
          text-align: right;
          right: calc(100% + 2em);
        }
      }
      &.left {
        .img_wrap {
          left: calc(100% + 2em);
        }
      }
    }
  }
}
.daily_content .time_schedule div:nth-child(1) .img_wrap{
  top:0;
}