@charset "UTF-8";

/* =============================================
葉っぱのアニメーションのCSSはここから
============================================= */
.leaf {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .leaf h1 {
    font-size: 5rem;
    color: #E6E6FA;
  }

  .leaf li{
    position: absolute;
    list-style: none;
    top: -50px;
    background: #D6E4ED;
    border-radius: 50%;
  }


  @keyframes fall {
    to {
      top: 120%;
    }
  }

  @keyframes sway1 {
    from {
      transform: translateX(0px) rotate(0deg);
    }
    to {
      transform: translateX(200px) rotate(-45deg);
    }
  }

  @keyframes sway2 {
    from {
      transform: translateX(200px) rotate(-45deg);
    }
    to {
      transform: translateX(0px) rotate(0deg);
    }
  }

  .leaf li:nth-child(1){
    left: 0%;
    top: -60px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    animation: fall 10s linear infinite,
               sway1 3s ease-in-out infinite alternate;
    animation-delay: 2s;
  }

  .leaf li:nth-child(2){
    left: 5%;
    top: -70px;
    width: 13px;
    height: 13px;
    background-color: #F0F8FF;
    animation: fall 15s linear infinite,
               sway1 2s ease-in-out infinite alternate;
    animation-delay: 8s;
  }

  .leaf li:nth-child(3){
    left: 15%;
    top: -50px;
    width: 16px;
    height: 16px;
    background-color: #EBF6F7;
    animation: fall 9s linear infinite,
               sway1 3.5s ease-in-out infinite alternate;
    animation-delay: 13s;
  }

  .leaf li:nth-child(4){
    left: 30%;
    top: -70px;
    width: 10px;
    height: 10px;
    background-color: #F8F9FA;
    animation: fall 8s linear infinite,
               sway2 4s ease-in-out infinite alternate;
    animation-delay: 7s;
  }
  .leaf li:nth-child(5){
    left: 40%;
    top: -60px;
    width: 10px;
    height: 10px;
    animation: fall 10s linear infinite,
               sway1 4s ease-in-out infinite alternate;
    animation-delay: 0s;
  }
  .leaf li:nth-child(6){
    left: 55%;
    top: -50px;
    width: 15px;
    height: 15px;
    background-color: #E2E7E9;
    animation: fall 11s linear infinite,
               sway2 3s ease-in-out infinite alternate;
    animation-delay: 3s;
  }
  .leaf li:nth-child(7){
    left: 65%;
    top: -40px;
    width: 16px;
    height: 16px;
    animation: fall 7s linear infinite,
               sway2 3.5s ease-in-out infinite alternate;
    animation-delay: 7s;
  }
  .leaf li:nth-child(8){
    left: 50%;
    top: -60px;
    width: 9px;
    height: 9px;
    background-color: #F0F0F0;
    animation: fall 7s linear infinite,
               sway1 3s ease-in-out infinite alternate;
    animation-delay: 3s;
  }
  .leaf li:nth-child(9){
    left: 80%;
    top: -70px;
    width: 10px;
    height: 10px;
    animation: fall 10s linear infinite,
               sway2 4s ease-in-out infinite alternate;
    animation-delay: 4s;
  }

  @media screen and (max-width:1025px) {
    .leaf {
      display: none;
      }
    }

/* =============================================
コピーのCSSはここから
============================================= */
.concept {
    position: absolute;
    top: 100px;
    left: 8%;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    font-size: 3rem;
    width: 40px;
    height: 80vh;
  }

  .policy {
    position: absolute;
    top: 240px;
    left: 10%;
    width: auto;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 900;
  }

  @media screen and (max-width: 1025px){
    .policy {
      display: none;
    }
    .concept {
      font-size: 2.5rem;
    }
  }
  @media screen and (max-width: 431px){
    .concept {
      display: none;
    }
  }

  /* =============================================
  メインビジュアルのCSSはここから
  ============================================= */
  .mv {
    display: block;
    width: 100%;
    height: 130vh;
    z-index: 901;
    position: relative;
  }
  @media screen and (max-width:431px){
    .mv {
      height: 92vh;
    }
    }

  /*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

  /*スクロールダウン全体の場所*/
  .scrolldown{/*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom: 1%;
  z-index: 902;
  right:50%;/*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
  }

  /*下からの距離が変化して全体が下→上→下に動く*/
  @keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
  }

  /*Scrollテキストの描写*/
  .scrolldown span{
    /*描画位置*/
  position: absolute;
  left:-20px;
  bottom:200px;
    /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }

  /* 矢印の描写 */
  .scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 200px;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #000;
    transform: skewX(-31deg);
  }

  .scrolldown:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:200px;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#000;
  }

  @media screen and (max-width:431px){
    .scrolldown {
      display: none;
    }
    }

/* =============================================
mainのトップ装飾（スライダー直後）CSSはここから
============================================= */
.policy-main::before{
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 112% 76px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 476.62 100.69"><path fill="%23e6d5b8" d="M0 0v100.69L238.3 5.22l238.32 95.47V0Z"/></svg>');
  }

  @media screen and (min-width:768px){
  .policy-main::before{
  background-size: 167% 150px;
  background-position: 50% 0%;
  }
  }

  @media screen and (min-width:1025px){
  .policy-main::before{
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 131px;
  background-position: 50% 0%;
  }
  }

/* =============================================
カードのCSSはここから
============================================= */
.container {
width: 100%;
margin: 0 auto 2rem;
text-align: center;
padding: 15rem 1rem 1rem;
}

ul.item {
list-style: none;
display: flex;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
}

li.list {
width: 30%;
margin-right: 2.5rem;
position: relative;
box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

li.list:last-child {
margin-right: 0;
}

div.image img {
width: 100%;
height: 100%;
object-fit: contain;
position: absolute;
top: -200px;
}

h3.title {
font-weight: bold;
font-size: 1.8rem;
}

/* サービス内容 */
li.list {
display: flex;
flex-direction: column;
background: #FBFCFF;
}

li.list div.image {
width: 100%;
height: 140px;
}

h3.title {
width: 80%;
padding: 1rem 1rem 0.5rem;
border-bottom: dotted 3px #a3c9a8;
margin: 0 auto 15px;
padding: 0 0 3px 0;
}

p.content {
font-size: 1rem;
color: #333;
background-color: #f7f5e6;
line-height: 1.8;
padding: 0.3rem 1rem 2rem;
}

/* ====SPはここから======= */
@media screen and (max-width: 431px) {
ul.item {
  flex-wrap: wrap;
  max-width: 420px;
}

ul.item li.list {
  width: 100%;
  margin-right: 0;
  margin-bottom: 14rem;
}

ul.item li.list:last-child {
  margin-bottom: 2rem;
}

/* サービス内容 */
ul.item li.list {
  min-height: 380px;
}

ul.item li.list .image {
  height: 200px;
}
}

/* =============================================
mainの保育理念のCSSはここから
============================================= */
.policy-main {
  width: 100%;
  overflow:hidden;
  position:relative;
  padding-bottom: 4rem;
  z-index:10;
  background-color: #FBFCFF;
  }

.greeting {
  display: flex;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}

.greeting__text {
  text-align: left;
}

/* ====SPはここから======= */
@media screen and (max-width: 1025px) {
  .greeting {
    max-width: 100%;
  }
}

/* =============================================
タイムラインのCSSはここから
============================================= */
/* ==============タブ用==============*/
.tab-body {
    width: 65%;
    margin: 0 auto;
    align-items: center;
}

.tab02 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 50px;
  }
  .tab02:after {
    content: '';
    width: 100%;
    height: 3px;
    background:#f7f5e6;
    display: block;
    order: -1;
  }
  .tab_label {
    height: 60px;
    line-height: 60px;
    color:#000;
    background:#a3c9a8;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 30px 30px 0 0;
    flex: 1;
  }
  .tab_label:not(:last-of-type) {
    margin-right: 5px;
  }
  .tab_content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: #f7f5e6;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  /* アクティブタブ */
  .tab_active:checked+.tab_label {
    color:#333;
    background:#f7f5e6;
  }
  .tab_active:checked+.tab_label+.tab_content {
    height: auto;
    overflow: auto;
    padding: 40px;
    opacity: 1;
    transition: .5s opacity;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  }
  /* ラジオボタン非表示 */
  .tab_active {
    display: none;
  }

/*============ timeline04 レイアウト============*/
.timeline04 {
    width: 100%;
    margin: 0 auto;
  }

  .mb-5 {
    margin-bottom: 5rem;
  }

  .timeline04 .list,.timeline04 .list2, .timeline04 .list3 {
    padding-left: 4rem;
    padding-bottom: 6rem;
    counter-increment: section;
    position: relative;
  }

  .timeline04 .list:last-child ,  .timeline04 .list2:last-child,  .timeline04 .list3:last-child {
    padding-bottom: 3rem;
  }

  .timeline04 .list::before ,.timeline04 .list2::before,.timeline04 .list3::before {
    content: "";
    width: 4px;
    height: 100%;
    background-color: #a3c9a8;
    position: absolute;
    top: 0;
    left: 0;
  }

  .timeline04 .list::after, .timeline04 .list2::after,.timeline04 .list3::after {
    content: counter(section, decimal-leading-zero);
    font-size: 0.9rem;
    font-weight: bold;
    background-image: linear-gradient(120deg, #ffd700 0%, #a3c9a8 100%);
    color: #FBFCFF;
    border-radius: 10px;
    padding: 5px 8px;
    position: absolute;
    top: 0;
    left: -2.8rem;
  }

  @media screen and (max-width: 1025px) {
    .timeline04 .list::after, .timeline04 .list2::after,.timeline04 .list3::after {
      top: -20px;
    }
  }
  
  .timeline04 .time-title,.timeline04 .time-title2 {
    color: #4a4a4a;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: left;
  }

  .timeline04 .image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 1.3rem;
    bottom: 0;
    left: -3rem;
  }

  p.time-content, p.time-content2 {
    font-size: 1rem;
    text-align: left;
  }
  
  .baby__class,.kids__class {
    width: 60%;
    margin: 0 auto;
    align-items: center;
  }
/*============ timeline04 未満児クラス============*/
  .timeline04 .list:nth-child(1)::after, .timeline04 .list2:nth-child(1)::after {
    content: "7:00～";
  } 
  .timeline04 .list:nth-child(2)::after,.timeline04 .list2:nth-child(2)::after {
    content: "8:00～";
  }
  .timeline04 .list:nth-child(3)::after {
    content: "9:45～";
  }
  .timeline04 .list:nth-child(4)::after {
    content: "10:00～";
  }
  .timeline04 .list:nth-child(5)::after {
    content: "11:00～";
  }
  .timeline04 .list:nth-child(6)::after {
    content: "12:00～";
  } 
  .timeline04 .list:nth-child(7)::after {
    content: "14:45～";
  }
  .timeline04 .list:nth-child(8)::after {
    content: "～16:00";
  } 
  .timeline04 .list:nth-child(9)::after,.timeline04 .list2:nth-child(9)::after {
    content: "16:00～";
  } 
  .timeline04 .list:nth-child(10)::after,.timeline04 .list2:nth-child(10)::after {
    content: "18:00～";
  }
  .timeline04 .list:nth-child(11)::after, .timeline04 .list2:nth-child(11)::after {
    content: "18:30";
  }

/*============ timeline04 未満児クラス　保育内容============*/
  .timeline04 .list:nth-child(1) .image {
    background: url(../img/timeline01.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list:nth-child(2) .image {
    background: url(../img/timeline02.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list:nth-child(3) .image {
    background: url(../img/timeline07.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list:nth-child(4) .image {
    background: url(../img/timeline04.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list:nth-child(5) .image {
    background: url(../img/timeline05.png) no-repeat;
    background-size: cover;
  }
  .timeline04 .list:nth-child(6) .image {
    background: url(../img/timeline06.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list:nth-child(7) .image {
    background: url(../img/timeline03.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list:nth-child(8) .image {
    background: url(../img/timeline08.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list:nth-child(9) .image {
    background: url(../img/timeline09.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list:nth-child(10) .image {
    background: url(../img/timeline10.png) no-repeat;
    background-size: cover;
  }

/*============ timeline04 以上児クラス保育園部============*/
  .timeline04 .list2:nth-child(3)::after,.timeline04 .list3:nth-child(2)::after {
    content: "10:00～";
  }
  .timeline04 .list2:nth-child(4)::after,.timeline04 .list3:nth-child(3)::after {
    content: "10:15～";
  }
  .timeline04 .list2:nth-child(5)::after,.timeline04 .list3:nth-child(4)::after {
    content: "11:45～";
  } 
  .timeline04 .list2:nth-child(6)::after,.timeline04 .list3:nth-child(5)::after {
    content: "12:40～";
  }
  .timeline04 .list2:nth-child(7)::after,.timeline04 .list3:nth-child(6)::after {
    content: "14:30～";
  } 
  .timeline04 .list2:nth-child(8)::after,.timeline04 .list3:nth-child(7)::after {
    content: "14:55～";
  } 
  .timeline04 .list2:nth-child(9)::after {
    content: "～16:00";
  }
  .timeline04 .list2:nth-child(10)::after {
    content: "16:00～";
  }
  .timeline04 .list2:nth-child(11)::after {
    content: "18:00～";
  }
  .timeline04 .list2:nth-child(12)::after {
    content: "18:30";
  }

 /*============ timeline04 以上児クラス保育園部保育内容============*/
 .timeline04 .list2:nth-child(1) .image {
    background: url(../img/timeline12.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list2:nth-child(2) .image, .timeline04 .list3:nth-child(1) .image {
    background: url(../img/timeline13.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list2:nth-child(3) .image, .timeline04 .list3:nth-child(2) .image {
    background: url(../img/timeline.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list2:nth-child(4) .image, .timeline04 .list3:nth-child(3) .image {
    background: url(../img/timeline15.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list2:nth-child(5) .image, .timeline04 .list3:nth-child(4) .image {
    background: url(../img/timeline16.png) no-repeat;
    background-size: cover;
  }
  .timeline04 .list2:nth-child(6) .image, .timeline04 .list3:nth-child(5) .image {
    background: url(../img/timeline17.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list2:nth-child(7) .image, .timeline04 .list3:nth-child(6) .image {
    background: url(../img/timeline18.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list2:nth-child(8) .image, .timeline04 .list3:nth-child(7) .image {
    background: url(../img/timeline19.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list2:nth-child(9) .image, .timeline04 .list3:nth-child(8) .image {
    background: url(../img/timeline20.png) no-repeat;
    background-size: cover;
  }

  .timeline04 .list2:nth-child(10) .image {
    background: url(../img/timeline10.png) no-repeat;
    background-size: cover;
  }
  .timeline04 .list2:nth-child(11) .image {
    background: url(../img/timeline21.png) no-repeat;
    background-size: cover;
  }

 /*============ timeline04 以上児クラス幼稚園部============*/
  .timeline04 .list3:nth-child(1)::after {
    content: "9:00～";
  } 
  .timeline04 .list3:nth-child(8)::after {
    content: "15:00";
  } 

  @media screen and (max-width: 1025px) {
    .tab-body {
      width: 90%;
    }
    .timeline04 {
      width: 80%;
    }

    .timeline04 .list {
      padding-left: 3.4rem;
      padding-bottom: 4rem;
    }

    .timeline04 .time-title {
      font-size: 1rem;
    }

    .timeline04 .image {
      width: 80px;
      height: 80px;
      position: absolute;
      top: 0;
      bottom: 0;
      left: -2.3rem;
    }
  }
  @media screen and (max-width: 430px) {
    .tab-body {
      width: 100%;
    }
    .tab_label {
      border-radius: 10px;
    }
  }

/* =============================================
  年間行事CSSはここから
============================================= */
.event-area {
  padding: 2rem 0 1.5rem;
  background-color: #FBFCFF;
}

.overlap-sep-layout02 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    top: 40px;
    width: 70%;
    height: 400px;
    margin: 100px auto;
    text-align: center;
  }

  /* 春秋画像エリア */
  .overlap-sep01__img, .overlap-sep03__img {
    position: absolute;
    top: -24%;
    right: 14%;
    z-index: 2;
    width: 25%;
    height: auto;
    opacity: 80%;
  }
 /* 春秋文字 */
  .overlap-sep01__img img, .overlap-sep03__img img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .overlap-sep01__imgbox, .overlap-sep03__imgbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 1;
    width: 70%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .overlap-sep01__imgbox {
    background-image: url(../img/spring.jpg);
  }

  .overlap-sep03__imgbox {
    background-image: url(../img/autumn.jpg);
  }

  .overlap-sep01__text-area,.overlap-sep03__text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 28%;
    height: 100%;
  }
  .overlap-sep01__text, .overlap-sep03__text {
 text-align: left;
  }

  @media (max-width: 1025px) {
    .overlap-sep-layout02 {
      width: 90%;
      display: block;
      top: 30px;
      left: 0;
      margin: 2rem auto;
    }

    /* 春秋文字 */
    .overlap-sep01__img img, .overlap-sep03__img img {
      position: absolute;
      bottom: -350px;
      right: -100px;
    }

    .overlap-sep01__imgbox, .overlap-sep03__imgbox {
      width: 70%;
      padding: 0;
    }

    .overlap-sep01__text-area, .overlap-sep03__text-area {
      top: 20%;
      right: 0;
    }
  }

  @media (max-width: 768px) {
    /* 春秋文字 */
    .overlap-sep01__img img, .overlap-sep03__img img {
      bottom: -300px;
    }

    .overlap-sep01__text-area, .overlap-sep03__text-area {
      bottom: 0;
    }
  }

  @media (max-width: 431px) {
     /* 春秋文字 */
     .overlap-sep01__img img, .overlap-sep03__img img {
      position: absolute;
      top: 50px;
      right: -50px;
    }

    .overlap-sep01__text-area, .overlap-sep03__text-area {
      width: 70%;
      top: -200px;
      left: 0;
    }

    .overlap-sep01__imgbox, .overlap-sep03__imgbox {
      width: 95%;
      position: absolute;
      top: 60px;
      left: 4%;
    }
  }

 /* 夏冬画像エリア */
 .overlap-sep02__img2, .overlap-sep04__img2 {
  position: absolute;
  top: -24%;
  left: 14%;
  z-index: 2;
  width: 25%;
  height: auto;
  opacity: 80%;
}
   /* 夏冬文字 */
.overlap-sep02__img2 img, .overlap-sep04__img2 img {
  display: block;
  max-width: 100%;
  height: auto;
}
  /* 夏冬画像エリア画像 */
.overlap-sep02__imgbox2, .overlap-sep04__imgbox2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  right: -110px;
  bottom: 0;
  z-index: 1;
  width: 70%;
  height: 100%;
  margin-left: 17%;
  background-repeat: no-repeat;
  background-size: contain;
}

.overlap-sep02__imgbox2 {
  background-image: url(../img/summer.jpg);
}

.overlap-sep04__imgbox2 {
  background-image: url(../img/winter.jpg);
}

.overlap-sep02__text-area2, .overlap-sep04__text-area2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 28%;
  height: 100%;
  padding-right: 15px;
}
.overlap-sep02__title, .overlap-sep04__title {
  margin-bottom: 16px;
}
.overlap-sep02__text, .overlap-sep04__text {
  text-align: justify;
}

@media (max-width: 1025px) {
  .overlap-sep02__img2, .overlap-sep04__img2 {
    top: 0;
    left: -5%;
    z-index: 2;
  }
   /* 夏冬文字 */
  .overlap-sep02__img2 img, .overlap-sep04__img2 img {
    position: absolute;
    top: -10%;
    left: 70px;
  }
   /* 夏冬画像エリア画像 */
  .overlap-sep02__imgbox2, .overlap-sep04__imgbox2 {
    width: 70%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: -50px;
  }
  .overlap-sep02__text-area2, .overlap-sep04__text-area2 {
    bottom: -70px;
    left: 0;
  }
}
@media (max-width: 768px) {
  /* 夏冬文字 */
  .overlap-sep02__img2 img, .overlap-sep04__img2 img {
    position: absolute;
    top: -20%;
    left: 70px;
  }
  .overlap-sep02__text-area2, .overlap-sep04__text-area2 {
    bottom: -70px;
    left: 0;
  }
}
@media (max-width: 431px) {
    /* 夏冬文字 */
    .overlap-sep02__img2 img, .overlap-sep04__img2 img {
      position: absolute;
      top: -50px;
      left: 10px;
    }
    /* 夏冬画像エリア画像 */
  .overlap-sep02__imgbox2, .overlap-sep04__imgbox2 {
    width: 95%;
    bottom: -70px;
    right: 0;
  }
 
  .overlap-sep02__text-area2, .overlap-sep04__text-area2 {
    width: 70%;
    bottom: 200px;
    left: 110px;
  }
}
  
  /* =============================================
  子育て支援のCSSはここから
  ============================================= */
  .support-area {
    background-color: #e6d5b8;
    padding-top: 8rem;
  }

  .overlap-layout01 {
    display: flex;
    width: 70%;
    margin: 2rem auto 0;
    padding-bottom: 2rem;
    align-items: center;
  }

  .overlap01__img {
    width: 40%;
  }
  .overlap01__text-area {
    width: 60%;
    margin: 1rem 0 1rem 4rem ;
    text-align: left;
  }

@media (max-width: 1025px) {
  .overlap-layout01 {
    display: block;
    width: 100%;
  }
  .overlap01__img {
    display: block;
    width: 100%;
  }
  .overlap01__text-area {
    width: 80%;
    margin: 1rem auto ;
  }
  }

/* =============================================
  職員採用のCSSはここから
============================================= */
.recruit-text {
    padding: 1rem;
  }

.recruit-area {
  overflow:hidden;
  position:relative;
  background-color: #FBFCFF;
  padding: 8rem 0 4rem;
  }
  .recruit-area::before{ 
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw; 
  background-size: 100% 90px;
  background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 476.62 100.69"><path fill="%23e6d5b8" d="M0 0v100.69L238.3 5.22l238.32 95.47V0Z"/></svg>'); 
  }
     
    @media (min-width:768px){
    .shapedividers_com-6477::before{
    background-size: 100% 67px;
    background-position: 50% 0%;   
    }  
    }
     
    @media (min-width:1025px){
    .shapedividers_com-6477::before{ 
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw; 
    background-size: 100% 90px;
    background-position: 50% 0%;  
    }
    }
  
  /* =============================================
  Google MAPのCSSはここから
  ============================================= */
  .map-area {
    padding: 8rem 0 2rem;
    background-color: #FBFCFF;
  }
/*手書きノート風*/
.box {
  width: 70%;
  margin: 0 auto;
  text-align: center;
	position: relative;
	background: #f7f5e6; /*背景色*/
	padding: 4em 1em 3em; /*内側余白（上・左右・下）*/
  border-radius: 20px;
}

.box::before {
	position: absolute;
	content: "";
	width: 95%;
	height: 10px;
	top: 0.5em;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	border-top: dotted 20px #fff; /*ドットの形・大きさ・色*/
}
.box-title {
  width: 200px;
  height: 3rem;
	background-image: repeating-linear-gradient(-45deg,#F6EEEC 0, #F6EEEC 3px,#fafafa 3px,#fafafa 6px);/*ストライプ*/
	border-left: 2px dotted rgb(0 0 0 / .1);/* ギザギザ左*/
	border-right: 2px dotted rgb(0 0 0 / .1);/* ギザギザ右*/
	transform: rotate(-10deg);/*テープの傾き*/
	padding: 0 30px;/*タイトルの余白*/
  font-size: 2rem;
	position:absolute;/*配置(ここを動かす)*/
	top: -15px; /*上からの距離*/
	left: 20px; /*左からの距離*/
}
  .iframeWrapper {
    position: relative;
    width: 60%;
    margin: 1rem auto;
  }

  .iframeWrapper::before {
    content: "";
    display: block;
    padding-top: calc(9 / 16 * 100%);
  }

  .iframeWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .address {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
  .address-text {
    margin-right: 1rem;
  }

  @media (max-width:1025px){
    .map-area {
      padding: 8rem 0 0;
      background-color: #FBFCFF;
    }

    .box {
      width: 95%;
      border-radius: 20px;
    }

    .box::before {
      position: absolute;
      content: "";
      width: 95%;
      height: 10px;
      top: 0.5em;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto;
      border-top: dotted 20px #fff; /*ドットの形・大きさ・色*/
    }
    .address {
      display: flex;
      width: 100%;
      margin: 0 auto;
      justify-content: center;
    }
    .address-text {
      margin-right: 1rem;
    }
    }

    @media (max-width:768px){
      .iframeWrapper {
        width: 90%;
      }
      }
  
 