@charset "UTF-8";
/* title
================================================== */
#life .ud-nav-list {
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #life .ud-nav-list {
    gap: 10px;
    max-width: 400px;
  }
}

/* schedule */
#schedule {
  position: relative;
}

#schedule .ud-sec-ttl img {
  max-width: 520px;
  width: 60vw;
}
#schedule .sch-inr {
  padding-top: 64px;
}

#schedule .sch-ttl-desc {
  flex-wrap: nowrap;
  gap: 40px;
}

#schedule .sch-ttl-desc p {
  width: calc(100% - 228px - 40px);
  font-weight: 800;
}

#schedule .sch-ttl-img {
  position: relative;
  margin-top: -80px;
}
#schedule .sch-ttl-img::before {
  position: absolute;
  content: "";
  background: url(../../img/life/img_sch_img.webp) no-repeat center center /
    cover;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 440px;
  width: 20vw;
  height: auto;
  aspect-ratio: 440 / 360;
}
#schedule .sch-ttl-img-txt {
  max-width: 228px;
  width: 20vw;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 1200px) {
  #schedule .sch-ttl-img::before {
    width: 25vw;
  }
}

@media screen and (max-width: 960px) {
  #schedule .sch-ttl-desc {
    gap: 20px;
  }
  #schedule .sch-ttl-desc p {
    width: calc(100% - 160px - 20px);
  }
  #schedule .sch-ttl-img::before {
    width: 30vw;
  }
}

@media screen and (max-width: 768px) {
  #schedule .sch-inr {
    padding-top: 40px;
  }
  #schedule .sch-ttl-desc {
    flex-direction: column-reverse;
  }
  #schedule .sch-ttl-desc p {
    width: 100%;
  }
  #schedule .sch-ttl-img {
    margin-top: 40px;
  }
  #schedule .sch-ttl-img-txt {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  #schedule .sch-ttl-img {
    margin-top: 16px;
  }
  #schedule .sch-ttl-img::before {
    width: 160px;
  }
  #schedule .sch-ttl-img-txt {
    width: 120px;
  }
}

/* time-table */
#schedule .time-table {
  padding-top: 60px;
  position: relative;
  z-index: 1;
}

#schedule .time-table::before {
  position: absolute;
  content: "";
  background-color: var(--color-white);
  width: calc(((100% - 1090px) / 2) + 1090px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 100px 0 0;
}
#schedule .time-table .inr {
  position: relative;
}
#schedule .time-table .inr::after {
  position: absolute;
  content: "";
  background: url(../../img/common/img_green_dotted.svg) no-repeat center center /
    contain;
  width: 74px;
  height: 100%;
  top: 0;
  left: calc((100% - 1090px + 38px) / 2);
  z-index: -1;
}
#schedule .time-table-item {
  gap: calc(40px + 0.5em);
}

#schedule .time-time img {
  width: 114px;
}

#schedule .time-content {
  padding-top: 40px;
  padding-right: 56px;
  width: calc(100% - 114px - 40px - 0.5em);
  flex-wrap: nowrap;
  gap: 40px;
  border-bottom: 12px solid var(--color-green-3);
}

#schedule .time-table-item:last-of-type .time-time {
  width: 114px;
}
#schedule .time-table-item:last-of-type .time-content {
  border-bottom: none;
}

#schedule .time-ttl {
  font-family: var(--font-mplus-rounded);
  font-weight: 800;
  color: var(--color-green-4);
  font-size: var(--fs-md);
  padding-bottom: 32px;
  letter-spacing: 0.2em;
  margin-left: -0.5em;
}

#schedule .time-img {
  aspect-ratio: 308 / 203;
  max-width: 308px;
  border-radius: 0 50px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

#schedule .time-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  #schedule .time-table::before {
    width: calc(((100% - 1090px) / 2) + 1090px - 30px);
  }
  #schedule .time-table .inr::after {
    left: calc(30px + 38px);
    transform: translateX(-25%);
  }
  #schedule .time-content {
    padding-right: 30px;
  }
}

@media screen and (max-width: 1090px) {
  #schedule .time-table::before {
    width: calc(100% - 30px);
  }
}

@media screen and (max-width: 960px) {
  #schedule .time-table .inr::after {
    left: calc(30px + 20px);
  }
  #schedule .time-table-item:last-of-type .time-time {
    width: 80px;
  }
  #schedule .time-ttl {
    padding-bottom: 20px;
  }
  #schedule .time-time img {
    width: 80px;
  }
  #schedule .time-content {
    padding-right: 20px;
    padding-top: 20px;
  }
}

@media screen and (max-width: 880px) {
  #schedule .time-table {
    padding-top: 40px;
  }
  #schedule .time-table .inr::after {
    display: none;
  }
  #schedule .time-table-item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #schedule .time-content {
    text-align: center;
    padding-top: 0;
    padding-right: 0;
    width: 100%;
    padding-right: 30px;
    margin-bottom: 40px;
  }

  #schedule .time-ttl {
    margin-left: initial;
  }

  #schedule .time-desc {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  #schedule .time-content {
    gap: 20px;
  }
  #schedule .time-ttl {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  #schedule .time-table-item {
    gap: 10px;
  }

  #schedule .time-content {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  #schedule .time-ttl {
    font-size: var(--fs-md-lg);
  }

  #schedule .time-time {
    padding-right: 30px;
  }

  #schedule .time-text {
    max-width: 300px;
  }
}

/* childcare */
#schedule .care {
  position: relative;
  z-index: 1;
}

#schedule .care::before {
  position: absolute;
  content: "";
  background-color: var(--color-white);
  width: calc(((100% - 1090px) / 2) + 1090px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

#schedule .care-inr {
  position: relative;
  padding-top: 80px;
}

#schedule .care-inr::before {
  position: absolute;
  content: "";
  background-color: var(--color-beige);
  width: calc(((100% - 1090px) / 2) + 1090px - 56px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

#schedule .care-main {
  gap: 32px;
  justify-content: center;
  width: calc(((100% - 1090px) / 2) + 1090px - 56px - 30px);
  max-width: 760px;
}

#schedule .care-ttl-wrap {
  padding-right: 40px;
  border-right: 10px solid var(--color-white);
}

#schedule .care-ttl {
  font-family: var(--font-mplus-rounded);
  font-weight: 800;
  font-size: var(--fs-xlg);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

#schedule .care-time {
  font-size: var(--fs-xl);
  padding-right: 0.5em;
  font-weight: 800;
}

#schedule .care-unit {
  font-size: var(--fs-md4);
}

#schedule .care-sub {
  flex-shrink: 0;
}
#schedule .care-sub-ttl {
  width: 120px;
  font-size: var(--fs-md2);
  text-align: justify;
  text-align-last: justify;
  display: inline-block;
}

#schedule .care-sub .care-time {
  font-size: var(--fs-lg);
}

#schedule .care-note {
  text-align: center;
  display: block;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: var(--color-white);
  border-radius: 50px;
  font-size: var(--fs-md3);
  font-weight: 800;
}

@media screen and (max-width: 1200px) {
  #schedule .care::before {
    width: calc(((100% - 1090px) / 2) + 1090px - 30px);
  }
  #schedule .care-inr::before {
    width: calc(((100% - 1090px) / 2) + 1090px - 60px);
  }
}

@media screen and (max-width: 1090px) {
  #schedule .care::before {
    width: calc(100% - 30px);
  }
  #schedule .care-inr::before,
  #schedule .care-main {
    width: calc(100% - 60px);
  }

  #schedule .care-main {
    max-width: initial;
  }
}

@media screen and (max-width: 960px) {
  #schedule .care-ttl-wrap {
    padding-right: 30px;
  }

  #schedule .care-sub-ttl {
    width: 100px;
  }
}

@media screen and (max-width: 768px) {
  #schedule .care-inr {
    padding-top: 40px;
  }
  #schedule .care-main {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #schedule .care-ttl-wrap {
    border-right: none;
    border-bottom: 6px solid var(--color-white);
    padding-right: 0;
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
  }

  #schedule .care-note {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  #schedule .care-ttl {
    font-size: var(--font-size-20);
  }
  #schedule .care-unit,
  #schedule .care-sub .care-time,
  #schedule .care-note {
    font-size: var(--font-size-14);
  }
  #schedule .care-time,
  #schedule .care-sub-ttl {
    font-size: var(--font-size-16);
  }
}

@media screen and (max-width: 480px) {
  #schedule .care-main {
    gap: 10px;
  }
  #schedule .care-ttl-wrap {
    padding-bottom: 10px;
  }
}

/* event 
================================================== */

/* title */
#event .eve-hd-wrap {
  gap: 24px;
  align-items: flex-end;
}

#event .eve-hd-img {
  max-width: 243px;
  width: 30vw;
}

#event .eve-hd-text-wrap {
  width: calc(100% - 243px - 24px);
}

#event .eve-hd-ttl img {
  padding-bottom: 8px;
}

#event .eve-hd-desc {
  text-align: justify;
}

@media screen and (max-width: 1200px) {
  #event .eve-hd-img {
    max-width: 243px;
    width: 25vw;
  }
}

@media screen and (max-width: 960px) {
  #event .eve-hd-img {
    max-width: 243px;
  }
  #event .eve-hd-wrap {
    gap: 16px;
  }
  #event .eve-hd-text-wrap {
    width: calc(100% - 25vw - 16px);
  }
}

@media screen and (max-width: 860px) {
  #event .eve-hd-wrap {
    padding-top: 8px;
  }
}

@media screen and (max-width: 768px) {
  #event .eve-hd-wrap {
    flex-direction: column;
    align-items: center;
    gap: initial;
  }
  #event .eve-hd-img {
    max-width: 160px;
    width: 20vw;
  }
  #event .eve-hd-text-wrap {
    margin-top: -32px;
    width: 100%;
  }
  #event .eve-hd-ttl {
    margin-right: 0;
    margin-left: auto;
    width: 100%;
    max-width: 500px;
  }
  #event .eve-hd-ttl img {
    margin-right: 0;
    margin-left: auto;
  }
}

/* event card */
#event .cards {
  gap: 16px;
  padding-top: 40px;
}
#event .card {
  width: calc(33.333333333333336% - 16px);
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 10px;
  position: relative;
}

#event .card::before {
  position: absolute;
  content: "";
  background-color: var(--color-white);
  width: 17px;
  height: 17px;
  top: 10px;
  left: 10px;
}

#event .card-hd {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 180px;
}
#event .card-hd-img {
  max-height: 120px;
  height: 100%;
  width: auto;
}

#event .card-ttl {
  font-size: var(--fs-md3);
  font-weight: 800;
  letter-spacing: 0.01em;
  padding-bottom: 16px;
  line-height: 1.2;
}

#event .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50px 50px 0 0;
}

#event .card-desc {
  height: 172px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

#event .card-desc p {
  text-align: justify;
  padding-bottom: 10px;
  line-height: 1.5;
}

#event .card-desc p.text2 {
  padding-top: 10px;
  border-top: 2px solid var(--color-white);
}

#event .card-body-ttl {
  font-size: var(--fs-md3);
}

#event .card-body-img {
  width: 100%;
  height: 187px;
  object-fit: cover;
  aspect-ratio: 292/187;
}

/* 4月 */
#event .card-4 {
  background-color: #f3d9e4;
}
#event .card-4::before {
  background-color: #eb6568;
}

/* 5月 */
#event .card-5 {
  background-color: #d6eaf3;
}
#event .card-5::before {
  background-color: #3a9ef2;
}

/* 6月 */
#event .card-6 {
  background-color: #d6e1bf;
}
#event .card-6::before {
  background-color: #41b862;
}

/* 7月 */
#event .card-7 {
  background-color: #bddcd9;
}
#event .card-7::before {
  background-color: #14a78a;
}

/* 8月 */
#event .card-8 {
  background-color: #f6efcb;
}
#event .card-8::before {
  background-color: #1e80ea;
}

/* 9月 */
#event .card-9 {
  background-color: #f5dac1;
}
#event .card-9::before {
  background-color: #e98042;
}

/* 10月 */
#event .card-10 {
  background-color: #e2d4aa;
}
#event .card-10::before {
  background-color: #9c774d;
}

/* 11月 */
#event .card-11 {
  background-color: #d4c9dd;
}
#event .card-11::before {
  background-color: #856088;
}

/* 12月 */
#event .card-12 {
  background-color: #bbcad4;
}
#event .card-12::before {
  background-color: #6b7680;
}

/* 1月 */
#event .card-1 {
  background-color: #ffefcd;
}
#event .card-1::before {
  background-color: #d9a00b;
}

/* 2月 */
#event .card-2 {
  background-color: #f3d9e4;
}
#event .card-2::before {
  background-color: #1e80ea;
}

/* 3月 */
#event .card-3 {
  background-color: #d2e6da;
}
#event .card-3::before {
  background-color: #e888a5;
}

@media screen and (max-width: 1100px) {
  #event .card-hd-img {
    max-height: 100px;
  }

  #event .card-desc {
    height: 140px;
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 960px) {
  #event .cards {
    justify-content: center;
  }
  #event .card {
    max-width: 300px;
    width: 100%;
    margin: initial;
  }
}

@media screen and (max-width: 768px) {
  #event .card {
    max-width: 400px;
  }
  #event .card-hd {
    height: auto;
  }
  #event .card-hd-img {
    max-height: 80px;
  }

  #event .card-desc {
    height: auto;
    margin-bottom: 15px;
  }
}

/* life-slider
================================================== */
#life-sl {
  background-color: var(--color-green-3);
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  #life-sl {
    padding-top: 40px;
  }
}

/* 共通コンテンツ（food,sign,english,drum,hiphop）
================================================== */
#life .lf-cm-sec {
  padding-top: 60px;
}

/* title */
#life .lf-cm-ttl {
  height: 120px;
  display: inline-block;
  padding-left: 56px;
  margin-bottom: 32px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
#life .lf-cm-ttl img {
  height: 100%;
  object-fit: contain;
}

#life .lf-cm-ttl-desc {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #e4e9e9;
  border-radius: 50px 50px 0 0;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
  margin: 0 auto;
}

#life .lf-cm-ttl-desc-txt {
  height: 34px;
  object-fit: contain;
  padding-left: 72px;
}

#life .lf-cm-ttl-desc-img {
  position: absolute;
  bottom: 100%;
  right: 15%;
  transform: translateX(50%);
  object-fit: contain;
  width: 440px;
  height: auto;
}

#life .lf-cm-ttl-desc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1090px) {
  #life .lf-cm-sec {
    padding-top: 40px;
  }
  #life .lf-cm-ttl {
    height: 100px;
    margin-bottom: 20px;
  }
  #life .lf-cm-ttl-desc {
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 30px 30px 0 0;
  }
  #life .lf-cm-ttl-desc-txt {
    padding-left: 40px;
  }

  #life .lf-cm-ttl-desc-img {
    width: 300px;
  }
}

@media screen and (max-width: 960px) {
  #life .lf-cm-ttl {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  #life .lf-cm-ttl {
    height: 80px;
  }
  #life .lf-cm-ttl-desc {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #life .lf-cm-ttl-desc-img {
    width: 260px;
  }
}

@media screen and (max-width: 599px) {
  #life .lf-cm-ttl {
    height: 60px;
    margin-bottom: 10px;
  }
  #life .lf-cm-ttl-desc {
    max-width: 100%;
  }
  #life .lf-cm-ttl-desc-img {
    width: 160px;
    right: -15px;
    transform: initial;
  }
}

/* content */
#life .lf-cm-cont-inr {
  padding-top: 60px;
  background-image: url(../../img/common/img_check_bg.webp);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  padding-top: 80px;
}

#life .lf-cm-cont p {
  font-family: var(--font-mplus-rounded);
  font-size: var(--fs-md-lg);
  font-weight: 800;
  letter-spacing: 0.01em;
  max-width: calc(100% - 100px);
  margin: 0 auto;
}

#life .lf-cm-cont-img {
  width: 100%;
  margin: 0 auto;
}

#life .lf-cm-cont-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#life .lf-cm-cont-img.lf-cm-cont1-img {
  position: relative;
  z-index: 2;
}

#life .lf-cm-cont-img .lf-cm-cont1-img-1 {
  box-shadow: 16px 16px 8px rgba(0, 0, 0, 0.2);
}

#life .lf-cm-cont-img .lf-cm-cont1-img-2 {
  position: absolute;
  bottom: -8px;
  left: 0;
  z-index: 1;
  width: 136px;
  height: 136px;
}
#life .lf-cm-cont.lf-cm-cont2 {
  position: relative;
  z-index: 1;
}
#life .lf-cm-cont.lf-cm-cont2::before {
  position: absolute;
  content: "";
  background-color: var(--color-white);
  width: calc(1090px + 200px);
  height: calc(100% + 100px);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 100px;
  box-shadow: 17px 17px 6px rgba(0, 0, 0, 0.2);
}

#life .lf-cm-cont-img.lf-cm-cont2-img {
  gap: 24px;
  height: 308px;
}

#life .lf-cm-cont-img.lf-cm-cont2-img img {
  width: calc(50% - 12px);
}

@media screen and (max-width: 1400px) {
  #life .lf-cm-cont.lf-cm-cont2::before {
    width: calc(1090px + 100px);
  }
}

@media screen and (max-width: 1300px) {
  #life .lf-cm-cont-img {
    width: calc(100% - 60px);
  }
  #life .lf-cm-cont.lf-cm-cont2::before {
    width: calc(((100% - 1090px) / 2) + 1090px);
  }
}

@media screen and (max-width: 1200px) {
  #life .lf-cm-cont.lf-cm-cont2::before {
    width: 100%;
    border-radius: 50px;
  }
  #life .lf-cm-cont-img {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 960px) {
  #life .lf-cm-cont-img .lf-cm-cont1-img-2 {
    width: 100px;
    height: 100px;
  }
  #life .lf-cm-cont-img.lf-cm-cont2-img {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  #life .lf-cm-cont-inr {
    padding-top: 30px;
  }
  #life .lf-cm-cont-img {
    width: calc(100% - 60px);
  }

  #life .lf-cm-cont-img .lf-cm-cont1-img-2 {
    width: 80px;
    height: 80px;
  }
  #life .lf-cm-cont-img.lf-cm-cont2-img {
    gap: 8px;
    height: 180px;
  }

  #life .lf-cm-cont.lf-cm-cont2::before {
    height: calc(100% + 60px);
    top: -60px;
  }
  #life .lf-cm-cont-img.lf-cm-cont2-img img {
    width: calc(50% - 6px);
  }
}

@media screen and (max-width: 599px) {
  #life .lf-cm-cont-img.lf-cm-cont1-img {
    height: 160px;
  }
  #life .lf-cm-cont-img .lf-cm-cont1-img-2 {
    width: 60px;
    height: 60px;
  }
  #life .lf-cm-cont-img.lf-cm-cont2-img {
    height: 100px;
  }
}

/* 各descの横幅 */
#life .lf-cm-ttl-desc,
#life .lf-cm-cont p {
  max-width: calc(100% - 240px);
}

@media screen and (max-width: 1200px) {
  #life .lf-cm-ttl-desc,
  #life .lf-cm-cont p {
    max-width: calc(100% - 200px);
  }
}

@media screen and (max-width: 960px) {
  #life .lf-cm-ttl-desc,
  #life .lf-cm-cont p {
    max-width: calc(100% - 120px);
  }
  #life .lf-cm-ttl-desc-txt {
    padding-left: 24px;
    height: 32px;
  }
}

@media screen and (max-width: 768px) {
  #life .lf-cm-ttl-desc,
  #life .lf-cm-cont p {
    max-width: calc(100% - 60px);
  }
  #life .lf-cm-ttl-desc-txt {
    height: 22px;
  }
  #life .lf-cm-cont.lf-cm-cont2::before {
    border-radius: 30px;
  }
}
@media screen and (max-width: 599px) {
  #life .lf-cm-ttl-desc,
  #life .lf-cm-cont p {
    max-width: 100%;
  }
  #life .lf-cm-cont.lf-cm-cont2 p {
    max-width: calc(100% - 60px);
  }
  #life .lf-cm-ttl-desc-txt {
    height: 18px;
    max-width: calc(100% - 16px);
  }
}

/* sign
================================================== */
#life #sign .sign-cont2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* drum
================================================== */
#life #drum .lf-cm-ttl-desc-img {
  width: 172px;
  bottom: calc(100% + 92px);
  right: 0;
}

@media screen and (max-width: 1090px) {
  #life #drum .lf-cm-ttl-desc-img {
    width: 120px;
    bottom: calc(100% + 60px);
  }
}

@media screen and (max-width: 768px) {
  #life #drum .lf-cm-ttl-desc-img {
    width: 100px;
    bottom: calc(100% + 50px);
  }
}

@media screen and (max-width: 599px) {
  #life #drum .lf-cm-ttl-desc-img {
    width: 64px;
    bottom: calc(100% + 40px);
    right: -15px;
  }
}

/* hiphop */
@media screen and (max-width: 599px) {
  #life #hiphop .lf-cm-ttl {
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
  }
}
