@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*
i-functions
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
home
-----------------------------------------------------*/
.p-home {
  /*メインスライド*/
  /*お知らせ*/
  /*園について*/
  /*保育について*/
  /*入園について*/
  /**無限スライド*/
}
.p-home .-heding_icn {
  margin-bottom: 1.5em;
}
.p-home .-heding_icn img {
  display: block;
  width: auto;
  height: 88px;
  margin: 0 auto;
}
.p-home h2.-dotline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  margin-bottom: clamp(64px, 1.07vw + 60.6px, 78px);
}
.p-home h2.-dotline:before, .p-home h2.-dotline:after {
  content: "";
  width: 140px;
  height: 12px;
  background: url("../../assets/img/common/bg_dots.svg") no-repeat 50% 50%;
}
.p-home h2.-dotline:before {
  background-position: 50% 0;
}
.p-home h2.-dotline:after {
  background-position: 0 0;
}
.p-home h2.-dotline img {
  display: block;
  width: auto;
  height: 50px;
}
.p-home h2.-dotline.-w:before, .p-home h2.-dotline.-w:after {
  background-image: url("../../assets/img/common/bg_dots_w.svg");
}
.p-home .-slide {
  position: relative;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .p-home .-slide {
    height: auto;
  }
}
.p-home .-slide .main-slide {
  width: 100vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
}
@media screen and (min-width: 768px) {
  .p-home .-slide .main-slide {
    height: 56.25vw;
  }
}
.p-home .-slide .slick-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-home .-slide .slick-slide img {
    height: auto;
    -o-object-fit: none;
       object-fit: none;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.p-home .-slide .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
.p-home .-slide p {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home .-slide p {
    display: block;
    position: absolute;
    width: auto;
    left: 0;
    top: calc(50% - 1.45em);
    z-index: 3;
    font-size: 32px;
    line-height: 2;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 2rem 1.5rem 5rem;
    border-radius: 0 1rem 1rem 0;
  }
}
.p-home .-news .l-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5em 0;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-home .-news .l-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-home .-news .l-wrapper h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .p-home .-news .l-wrapper h2 {
    width: 24%;
  }
}
.p-home .-news .l-wrapper h2:before {
  content: "";
  background: url("../img/common/icn_pencil.png") no-repeat 0 0;
  background-size: contain;
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
}
.p-home .-news .l-wrapper h2 img {
  display: block;
  width: auto;
  height: 34px;
  margin-bottom: 20px;
}
.p-home .-news .l-wrapper dl {
  width: 100%;
  font-weight: normal;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-home .-news .l-wrapper dl {
    width: 72%;
  }
}
.p-home .-news .l-wrapper dl > a {
  display: block;
  position: relative;
  padding: 0.5em 1em;
}
@media screen and (min-width: 768px) {
  .p-home .-news .l-wrapper dl > a {
    padding: 0.5em 0;
  }
}
.p-home .-news .l-wrapper dl > a:before, .p-home .-news .l-wrapper dl > a:after {
  content: "";
  position: absolute;
  right: 1.5em;
}
.p-home .-news .l-wrapper dl > a:before {
  top: 50%;
  width: 26px;
  height: 1px;
  background-color: #e6e0db;
}
.p-home .-news .l-wrapper dl > a:after {
  top: calc(50% - 0.5px);
  width: 8px;
  height: 1px;
  background-color: #e6e0db;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.p-home .-news .l-wrapper dl > a:not(:last-of-type) {
  border-bottom: 1px solid #e6e0db;
}
.p-home .-news .l-wrapper dl > a div {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-home .-news .l-wrapper dl > a div {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-home .-news .l-wrapper dl > a div dt {
    width: 11em;
    display: flex;
    justify-content: space-between;
    margin-right: 1rem;
    align-items: center;
  }
}
.p-home .-news .l-wrapper dl > a div dt span.data {
  font-size: 10px;
}
.p-home .-news .l-wrapper dl > a div dt span.cat {
  font-size: 10px;
  color: #fff;
  background: #7abf85;
  margin-left: 1em;
  padding: 0.2em 1em;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-home .-news .l-wrapper dl > a div dd {
    width: calc(100% - 11em);
  }
}
.p-home .-about ul li {
  margin-bottom: clamp(80px, 0.61vw + 78.1px, 88px);
}
@media screen and (min-width: 768px) {
  .p-home .-about ul li {
    display: flex;
    align-items: center;
    gap: 36px 10px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-home .-about ul li {
    flex-direction: row;
    gap: 66px 76px;
  }
}
.p-home .-about ul li .-img {
  width: 100%;
  margin-bottom: clamp(0px, -3.82vw + 62.3px, 50px);
}
@media screen and (min-width: 768px) {
  .p-home .-about ul li .-img {
    width: 60%;
  }
}
.p-home .-about ul li .-txt {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-home .-about ul li .-txt {
    width: 33%;
  }
}
.p-home .-about ul li .-txt h3 {
  font-size: clamp(34px, 0.15vw + 33.6px, 36px);
  margin-bottom: clamp(32px, -0.15vw + 34.4px, 34px);
}
@media screen and (min-width: 768px) {
  .p-home .-about ul li:nth-child(even) .-img {
    order: 2;
  }
  .p-home .-about ul li:nth-child(even) .-txt {
    order: 1;
  }
}
.p-home .-childcare ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 36px 10px;
}
@media screen and (min-width: 768px) {
  .p-home .-childcare ul {
    flex-direction: row;
    gap: 66px 76px;
  }
}
.p-home .-childcare ul li {
  width: calc(50% - 5px);
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-home .-childcare ul li {
    width: calc(50% - 38px);
  }
}
.p-home .-childcare ul li a {
  display: block;
  background: #fff;
  border-radius: 20px;
}
.p-home .-childcare ul li a .-img {
  width: 100%;
}
.p-home .-childcare ul li a .-img img {
  border-radius: 20px 20px 0 0;
}
.p-home .-childcare ul li a .-txt {
  padding: 5%;
}
@media screen and (min-width: 768px) {
  .p-home .-childcare ul li a .-txt {
    padding: 2em;
  }
}
.p-home .-childcare ul li a .-txt h3 {
  text-align: center;
  font-size: clamp(20px, 0.76vw + 17.6px, 30px);
}
@media screen and (min-width: 768px) {
  .p-home .-childcare ul li a .-txt h3 {
    text-align: left;
  }
}
.p-home .-childcare ul li a .-txt p {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home .-childcare ul li a .-txt p {
    display: block;
    margin-top: 1em;
  }
}
.p-home .-admission {
  padding-bottom: 10vw;
}
@media screen and (min-width: 768px) {
  .p-home .-admission {
    padding-bottom: 3vw;
  }
}
.p-home .-admission .l-wrapper > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #038c3e;
  color: #fff;
  border-radius: 20px;
  margin-bottom: clamp(32px, 2.9vw + 22.7px, 70px);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-home .-admission .l-wrapper > a {
    flex-direction: row;
    background: #038c3e url("../../assets/img/common/bg_dots.svg") no-repeat 95% 50%;
    background-size: 100px 10px;
  }
}
.p-home .-admission .l-wrapper > a:hover {
  background-color: #7abf85;
}
.p-home .-admission .l-wrapper > a .-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-home .-admission .l-wrapper > a .-img {
    width: 50%;
  }
}
.p-home .-admission .l-wrapper > a .-img img {
  border-radius: 20px 20px 0 0;
}
@media screen and (min-width: 768px) {
  .p-home .-admission .l-wrapper > a .-img img {
    border-radius: 20px 0 0 20px;
  }
}
.p-home .-admission .l-wrapper > a .-txt {
  padding: 1em;
  font-size: clamp(28px, 0.46vw + 26.5px, 34px);
}
@media screen and (min-width: 768px) {
  .p-home .-admission .l-wrapper > a .-txt {
    width: 50%;
    text-align: center;
  }
}
.p-home .-admission .l-wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px 0;
}
@media screen and (min-width: 768px) {
  .p-home .-admission .l-wrapper ul {
    flex-direction: row;
    gap: 0 30px;
  }
}
.p-home .-admission .l-wrapper ul li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-home .-admission .l-wrapper ul li {
    width: 50%;
  }
}
.p-home .-admission .l-wrapper ul li a {
  display: block;
  text-align: center;
  border-radius: 20px;
  font-size: clamp(28px, 0vw + 28px, 28px);
  background: #038c3e;
  color: #fff;
  padding: 1em;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-home .-admission .l-wrapper ul li a {
    text-align: left;
    padding: 1em 2em;
    background: #038c3e url("../../assets/img/common/bg_dots.svg") no-repeat 95% 50%;
    background-size: 100px 10px;
  }
}
.p-home .-admission .l-wrapper ul li a:hover {
  background-color: #7abf85;
}
.p-home .-admission .-icn_children {
  padding: 0 5%;
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(60px, -3.82vw + 122.3px, 110px);
}
.p-home .-admission .-icn_children img {
  width: 77%;
}
@media screen and (min-width: 768px) {
  .p-home .-admission .-icn_children img {
    width: 30%;
  }
}/*# sourceMappingURL=home.css.map */