@charset "utf-8";

/*------------------------------------------*/
/* 園の1日
/*------------------------------------------*/

.life-schedule {
  position: relative;
}

@media screen and (max-width: 833px) {
  .life-schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 834px), print {
  .life-schedule {
    height: 1150px;
  }
}

@media screen and (min-width: 1000px), print {
  .life-schedule {
    height: 1200px;
  }
}


/* 時間 --------------------------------*/
.life-schedule__time {
  color: #78909F;
  font-weight: bold;
  position: absolute;
  top: 0;
}

.life-schedule__time span {
  display: block;
  transform: rotate(90deg) scale(-1, 1);
}

@media screen and (max-width: 833px) {
  .life-schedule__time {
    font-size: 1.8rem;
    left: 40px;
  }
}

@media screen and (max-width: 580px) {
  .life-schedule__time {
    font-size: 1.2rem;
    left: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .life-schedule__time {
    font-size: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 時間 線 --------------------------------*/
.life-schedule__time li {
  position: relative;
  line-height: 1;
}

.life-schedule__time li::after {
  content: '';
  display: inline-block;
  background: #78909F;
  width: 4px;
  position: absolute;
  top: 1.5em;
  left: 50%;
  transform: translateX(-50%);
}

.life-schedule__time li:nth-of-type(5)::after {
  display: none;
}

@media screen and (max-width: 833px) {
  .life-schedule__time li::after {
    height: 220px;
  }

  .life-schedule__time li:nth-of-type(2),
  .life-schedule__time li:nth-of-type(3),
  .life-schedule__time li:nth-of-type(4),
  .life-schedule__time li:nth-of-type(5) {
    margin-top: 250px;
  }
}

@media screen and (max-width: 580px) {
  .life-schedule__time li::after {
    height: 230px;
  }

  .life-schedule__time li:nth-of-type(3)::after {
    height: 190px;
  }

  .life-schedule__time li:nth-of-type(4)::after {
    height: 170px;
  }

  .life-schedule__time li:nth-of-type(2),
  .life-schedule__time li:nth-of-type(3) {
    margin-top: 250px;
  }

  .life-schedule__time li:nth-of-type(4) {
    margin-top: 210px;
  }

  .life-schedule__time li:nth-of-type(5) {
    margin-top: 190px;
  }
}

@media screen and (min-width: 834px), print {
  .life-schedule__time li::after {
    height: 210px;
  }

  .life-schedule__time li:nth-of-type(2)::after {
    height: 190px;
  }

  .life-schedule__time li:nth-of-type(3)::after {
    height: 150px;
  }

  .life-schedule__time li:nth-of-type(4)::after {
    height: 190px;
  }

  .life-schedule__time li:nth-of-type(5)::after {
    top: 3.5em;
    height: 100px;
  }

  .life-schedule__time li:nth-of-type(2) {
    margin-top: 240px;
  }

  .life-schedule__time li:nth-of-type(3) {
    margin-top: 220px;
  }

  .life-schedule__time li:nth-of-type(4) {
    margin-top: 180px;
  }

  .life-schedule__time li:nth-of-type(5) {
    margin-top: 220px;
  }
}

/* 内容 --------------------------------*/
.life-schedule__cont {
  text-align: left;
}

@media screen and (max-width: 833px) {
  .life-schedule__cont {
    display: inline-block;
    width: 100%;
    margin-left: 200px;
  }

  .life-schedule__cont {
    margin-top: 20px;
  }

  .life-schedule__cont.first {
    margin-top: 0;
  }
}

@media screen and (max-width: 580px) {
  .life-schedule__cont {
    margin-left: 100px;
  }
}

@media screen and (min-width: 834px), print {
  .life-schedule__cont {
    width: 40%;
  }

  .life-schedule__cont.left {
    float: left;
  }

  .life-schedule__cont.right {
    float: right;
  }

  .life-schedule__cont.left,
  .life-schedule__cont.right {
    margin-top: 140px;
  }

  .life-schedule__cont.left.first {
    margin-top: 0;
  }

  .life-schedule__cont.right.second {
    margin-top: 200px;
  }

  .life-schedule__cont:after {
    content: '';
    display: block;
    clear: both;
  }
}

/* 画像 --------------------------------*/
.life-schedule__cont figure img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 833px) {
  .life-schedule__cont figure {
    height: 200px;
    overflow: hidden;
  }
}

@media screen and (max-width: 580px) {
  .life-schedule__cont figure {
    height: auto;
  }
}

@media screen and (min-width: 834px), print {
  .life-schedule__cont figure {
    animation: bounceIn;
    animation-duration: 1s;
  }
}

/* リスト --------------------------------*/
.life-schedule__list {
  margin-top: 10px;
}

.life-schedule__list li {
  position: relative;
  padding-left: 1.2em;
}

.life-schedule__list li::before {
  content: '●';
  display: inline-block;
  color: #78909F;
  position: absolute;
  top: 0;
  left: 0;
}

/*------------------------------------------*/
/* 項目
/*------------------------------------------*/

@media screen and (max-width: 767px) {
  .life-others li:not(:first-child) {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px), print {
  .life-others li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 0;
  }

  .life-others li::after {
    content: "";
    display: inline-block;
    background: radial-gradient(circle farthest-side, #363636, #363636 40%, transparent 40%, transparent);
    background-size: 6px 6px;
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

/* 見出し --------------------------------*/
.info-heading {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .info-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .info-heading {
    text-align: left;
    width: 12em;
    font-size: 1.4rem;
    margin-left: 1.5em;
  }
}

@media screen and (min-width: 834px), print {
  .info-heading {
    font-size: 1.4rem;
  }
}


/* イラスト --------------------------------*/
.life-others__img.lunch {
  display: inline-block;
  background: url(img/life_lunch.png) no-repeat;
  background-size: 100%;
}

.life-others__img.extend {
  display: inline-block;
  background: url(img/life_extend.png) no-repeat;
  background-size: 100%;
}

.life-others__img {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 833px) {
  .life-others__img {
    width: calc(228px / 3);
    height: calc(180px / 3);
  }
}

@media screen and (max-width: 767px) {
  .life-others__img {
    width: calc(228px / 4);
    height: calc(180px / 4);
  }
}

@media screen and (min-width: 834px), print {
  .life-others__img {
    width: calc(228px / 2);
    height: calc(180px / 2);
    animation: bounceIn;
    animation-duration: 3s;
  }
}

/* テキスト --------------------------------*/

@media screen and (min-width: 768px), print {
  .life-others li .text {
    width: 100%;
  }
}


/*------------------------------------------*/
/* 年間行事
/*------------------------------------------*/

@media screen and (min-width: 834px), print {
  .life-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

/*  --------------------------------*/
.life-event__box {
  position: relative;
  padding-top: 50px;
}

@media screen and (max-width: 833px) {

  .life-event__box.second,
  .life-event__box.third {
    margin-top: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .life-event__box {
    width: 30%;
  }
}

/*  --------------------------------*/
.life-event__cont {
  text-align: left;
  background: #F6F6F6;
  border-radius: 20px;
  padding: 20px 15px;
}

@media screen and (min-width: 834px), print {
  .life-event__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
}

/* 見出し --------------------------------*/
.life-event__heading {
  font-weight: bold;
}

.first .life-event__heading {
  color: #E884B5;
}

.second .life-event__heading {
  color: #2973A8;
}

.third .life-event__heading {
  color: #a68dc1;
}

@media screen and (max-width: 833px) {
  .life-event__heading {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .life-event__heading {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 834px), print {
  .life-event__heading {
    width: 100%;
    font-size: 1.6rem;
  }
}

/* 定義リスト --------------------------------*/
.life-event__list {
  padding-top: 10px;
}

.life-event__list dt,
.life-event__list dd {
  padding-top: 15px;
}

.life-event__list dt {
  text-align: right;
  font-weight: bold;
  width: 3em;
  float: left;
}

.first .life-event__list dt {
  color: #E884B5;
}

.second .life-event__list dt {
  color: #2973A8;
}

.third .life-event__list dt {
  color: #a68dc1;
}

.life-event__list dd {
  margin-left: 4em;
}

.life-event__list dd:after {
  content: '';
  display: block;
  clear: both;
}

/* リスト アイコン --------------------------------*/
.life-event__list ul li {
  position: relative;
  padding-left: 1em;
}

.life-event__list ul li:not(:first-child) {
  margin-top: 0.3em;
}

.life-event__list ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 0.8em;
  transform: translateY(-50%);
  left: 0;
}

.first .life-event__list ul li::before {
  background: #E884B5;
}

.second .life-event__list ul li::before {
  background: #2973A8;
}

.third .life-event__list ul li::before {
  background: #a68dc1;
}

/* 桜 --------------------------------*/
.life-event__1 {
  display: inline-block;
  background: url(img/life_event1.png) no-repeat;
  background-size: 100%;
  width: calc(120px / 2);
  height: calc(120px / 2);
  position: absolute;
  top: 0;
  left: 0;
}

/* 柿 --------------------------------*/
.life-event__2 {
  display: inline-block;
  background: url(img/life_event2.png) no-repeat;
  background-size: 100%;
  width: calc(128px / 2);
  height: calc(120px / 2);
  position: absolute;
  top: 0;
  left: 0;
}

/* 針葉樹 --------------------------------*/
.life-event__3 {
  display: inline-block;
  background: url(img/life_event3.png) no-repeat;
  background-size: 100%;
  width: calc(112px / 2);
  height: calc(120px / 2);
  position: absolute;
  top: 0;
  left: 0;
}

/* もぐら --------------------------------*/
.life-event__mole {
  background: url(img/life_mole.png) no-repeat;
  background-size: 100%;
  width: calc(170px / 2);
  height: calc(116px / 2);
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 1;
}


@media screen and (min-width: 834px), print {
  .life-event__mole {
    animation: bounceIn;
    animation-duration: 3s;
  }
}

/* うさぎ --------------------------------*/
.life-event__rabbit {
  background: url(img/life_rabbit.png) no-repeat;
  background-size: 100%;
  width: calc(192px / 2);
  height: calc(154px / 2);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 834px), print {
  .life-event__rabbit {
    animation: bounceIn;
    animation-duration: 3s;
  }
}

/* くま --------------------------------*/
.life-event__bear {
  background: url(img/life_bear.png) no-repeat;
  background-size: 100%;
  width: calc(290px / 2);
  height: calc(218px / 2);
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 834px), print {
  .life-event__bear {
    animation: bounceIn;
    animation-duration: 3s;
  }
}