@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  /*スムーズスクロール*/
}

body {
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  min-height: 100vh;
  background-color: #fffae8;
}


a:hover {
  opacity: 0.5;
}

.none {
  display: none;
}


.main-contener ul, .main-contener ol, .main-contener li, .main-contener table, .main-contener p, .main-contener jpg, .main-contener png, .main-contener gif {
  margin-bottom: 30px;
}


img {
  max-width: 100%;
  height: auto;
}

.sp-none {
  display: block;
}

.pc-none {
  display: none;
}
@media(max-width:768px) {
  .sp-none {
    display: none;
  }

  .pc-none {
    display: block;
  }
}

/**************/
/* リンク矢印*/
/**************/

.mae-yajirushi {
  display: flex;
  line-height: normal;
 }

.mae-yajirushi:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/assets/img/yajirusi.png") no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0.5em;
  flex-shrink: 0;
}

/**************/
/* ヘッダー*/
/**************/

.header {
  max-width: 944px;
  color: #fff;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fffae8;
}


.header-section_top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 20px 0 0 0;
}

@media(max-width:860px) {
  .header-section_top {
    flex-direction: column;
  }
}

.logo img {
  width: 100%;
  }

  .sns {
    display: flex;
    align-items: center;
    margin: 0 0 0 100px;
    }

  .sns_img_1 {
    width: 80px;
    margin: 0 10px 0 0;
}

.sns_img_2 {
  width: 60px;
  margin-bottom: 10px;
}

@media(max-width:860px) {
  .header-section_top {
    justify-content: center;
  }

  .logo img {
    width: 80%;
    margin-top: 20px;
    }

  .sns {
    margin:20px 0 0 0;
  }

  .sns_img_2 {
    margin: 0;
  }
}

.header-section_bottom {
  display: flex;
  justify-content: space-around;
  margin: 30px 0 0 0;
}

.header-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  color: #ff6fff;
  font-size: 1.6rem;
  padding: 5px;
  margin: 5px;
  text-decoration: none;
}

.header-menu p{
  margin: 20px;
}


.header_marulink {
  display: flex;
  gap: 10px;
  align-items: center;
}

.marulink {
  margin: 0;
}

.marulink_1 {
  background: #ff6fff;
  border: solid 1px #ff6fff;
  color: #fff;
  border-radius: 50px;
  padding: 16px;
}

.marulink_2 {
  border: solid 1px #ff6fff;
  color: #584a3d;
  border-radius: 50px;
  padding: 16px;
}

@media(max-width:860px) {
  .header-section_bottom {
    display:none;
  }

  .header_marulink {
    display:none;
  }
}

/**************/
/*　ハンバーガーボタン　*/
/**************/
@media(max-width:860px) {
.hamburger {
  display: block;
  position: fixed;
  z-index: 999;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  color: #000;
  background-image:
  url("/assets/img/migi.png"), url("/assets/img/hidari.png"), url("/assets/img/middle.png");
  background-position: right top, left top, left top;
  background-repeat: repeat-y, repeat-y, repeat;
  background-blend-mode: multiply;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  padding: 30px;
}

nav.globalMenuSp ul {
  margin: 0 10%;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  width: 100%;
  font-size: 2.0rem;
  display:flex;
  justify-content: flex-start;
  align-items: center;
  gap:20px;
}


nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  opacity: 0.5;
  text-decoration: underline;
}

.sp-logo{
  width: 40%;
  margin: 0 auto;
  }

  .profile-section__chara{
    margin: 5px 0 0 0;
    }
 
.header-menu_list{
margin:0 auto;
  }

.header-menu__icon {
  width: 50px;
  height: 50px;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 30px 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}
}

/**************/
/* メインコンテンツ*/
/**************/
main{
  background-image:url("/assets/img/migi.png"), url("/assets/img/hidari.png"), url("/assets/img/middle.png");
background-position: right top, left top, left top;
background-repeat: repeat-y, repeat-y, repeat;
background-blend-mode: multiply;
}

.main-contener {
  max-width: 944px;
  margin: 0 auto;
  height: auto;
  text-align: left;
  line-height: inherit;
  font-weight: 600;
  padding: 0 0 10px;
}

.cyousei {
  margin: 50px 0 0 0;
 }

 section {
 position: relative;
 }

/**************/
/* 見出し　*/
/**************/
.midasi {
  width: 100%;
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  height: auto;
  align-items: flex-end;
  font-size: 4.0rem;
  padding: 4em 0 0;
  background-image: url(/assets/img/title2.png);
  line-height: 250%;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

@media(max-width:768px) {
  .midasi{
    height: 200px;
    padding: 0 0 30px;
    font-size: 2.0rem;
    line-height: 150%;
  }
}

/****************/
/*　空白　*/
/****************/
.kuuhaku {
margin: 0 0 30px  0;
 }

/****************/
/*　リンク　*/
/****************/

.button-048 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width:250px;
  margin: 30px auto 0;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #ff6fff;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.button-048::before {
  position: absolute;
  right: calc(2em + 2.5px);
  transform: translateX(50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  content: '';
}

.button-048::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 3px solid #ff6fff;
  border-right: 3px solid #ff6fff;
  content: '';
}

.button-048ni {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background-color: #ff6fff;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.button-048ni::before {
  position: absolute;
  right: calc(1em + 6.5px);
  transform: translateX(50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  content: '';
}

.button-048ni::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 3px solid #ff6fff;
  border-right: 3px solid #ff6fff;
  content: '';
}

.button-048word {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px auto 0;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #2a579a;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.button-048word::before {
  position: absolute;
  right: calc(2em + 2.5px);
  transform: translateX(50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  content: '';
}

.button-048word::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 3px solid #2a579a;
  border-right: 3px solid #2a579a;
  content: '';
}

.button-048pdf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px auto 0;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #ff6fff;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.button-048pdf::before {
  position: absolute;
  right: calc(2em + 2.5px);
  transform: translateX(50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  content: '';
}

.button-048pdf::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 3px solid #ff6fff;
  border-right: 3px solid #ff6fff;
  content: '';
}


/****************/
/*　リスト　*/
/****************/

.list_style {
  list-style: disc;
  padding: 10px 0 0 30px;
}

.swiper-cover-ue {
    position: absolute;
    bottom: 30;
    width: 100%;
    z-index: 2;
}

.swiper-cover-sita {
  position: absolute;
  bottom: 30;
  width: 100%;
  z-index: 2;
}

.swiper-cover-sita::after {
  content: "";
  position: absolute;
  display: block;
  height: 102px;
  width: 100%;
  background: url(/assets/img/footer-img.png) repeat-x;
  bottom: 0;
  left: 0;
  background-position: -80px -11px;
  z-index: -10;
}

.cover-ue{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  background-size: cover;
  width: 100%;
  height: 80px;
}

.cover-sita{
  display: block;
  content: '';
  position: absolute;
  left: 0;
  background-size: cover;
  width: 100%;
  height: 80px;
  bottom: -1px;
}

.ookina_moji {
  font-size: 24px;
  line-height: 1.6;
 color: #ff6fff;
  font-weight: 600;
  text-align: center;
  margin: 0 0 10px 0;
}

.ookina_moji-migi {
  font-size: 24px;
  line-height: 1.6;
 color: #ff6fff;
  font-weight: 600;
}

.kasen_moji {
  font-size: 22px;
  line-height: 2.0;
  border-bottom: 2px dotted #ff6fff;
  font-weight: 600;
}

.kasen {
  text-decoration:underline;
}

/****************/
/*　記事を描いたブロック　*/
/****************/

.kiji_center{
  margin: 0 0 100px 0;
  gap: 50px;
  background-color: #fff;
  padding: 50px;
  border-radius: 30px;
}

.kiji_center__pic{
  width: 100%;
  border-radius: 30px;
}


.kiji{
  display: flex;
  justify-content: center;
  position: relative;
  gap: 50px;
  background-color: #fff;
  padding: 50px;
  border-radius: 30px;
  margin: 0 0 100px 0;
}

.kiji_pink{
  margin: 0 0 50px 0;
  gap: 50px;
  background-color: #fae1e0;
  padding: 50px;
  border-radius: 30px;
}

.kiji__div{
  flex: 1;
}

.kiji__img{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  flex: 1;
}

.text{
  text-align: left;
}

.kiji__pic{
  width: 400px;
  border-radius: 30px;
  margin: 0px 5px 0;;
}

.kiji__pic-bottom{
  width: 400px;
  border-radius: 30px;
  margin: 20px 5px 0;;
}

.kiji__pic-bottom2{
  width: 400px;
  border-radius: 30px;
  margin: 50px 5px 0;;
}

.kiji__migi{
  text-align: right;
}

.kiji__title {
  margin: 10px 0 40px;
  padding: 10px 0 8px 18px;
  font-size: 22px;
  line-height: 1.6;
  border-left: solid 5px #ff6fff;
  font-weight: 600;
}

.mini-text{
  text-align: center;
  padding: 8px;
}


@media(max-width:768px) {
  .kiji{
    display: block;
    text-align: center;
    margin:0 20px;
  }

  .kiji_pink{
    margin: 80px 20px;
  }

  .kiji__img{
    flex-direction: column;
  }

  .kiji_center{
    margin: 20px 20px;
  }

  .kiji__migi{
    margin: 20px 30px;
  }

  .kiji__pic{
    margin-top: 20px;
  }
}

/****************/
/*　メモ風　*/
/****************/

.memo {
  margin: 70px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: dotted 1px #1f1f1f;
}

.memo-title {
  margin: 0 0 5px 0;
  background: #ff6fff;
  border-radius: 25px;
  color: #fff;
  padding: 5px 20px;
}

.memo-naiyou {
  display: flex;
  flex-shrink: 1;
  margin: 0 0 0 20px;
}

/****************/
/*　採用情報　*/
/****************/
.saiyou-top {
  position: relative;
  background: #ddd url(/assets/pic/top/saiyo.jpg) no-repeat center center;
  height: 500px;
}

#saiyou-top__text {
  color: #fff;
  text-align: center;
  line-height: 1.6;
  padding: 100px 20px 0;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, 0-1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}

.saiyou-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin: 150px 0;
}

.saiyou-menu-on {
  background-color: #fae1e0;
  border-radius: 6px;
  color: #ff6fff;
  font-size: 2.6rem;
  padding: 50px;
  text-align: center;
  flex: 1;
}

.saiyou-menu-off {
  background: #999999;
  border-radius: 6px;
  color: #666666;
  font-size: 2.6rem;
  padding:50px;
  margin: 10px;
  flex: 1;
}

@media(max-width:768px) {
  .saiyou-menu {
    flex-direction: column;
     margin: 20px 0;
  }
  }


/****************/
/*　保育園の一日　*/
/****************/
.day {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6fff;
  font-size: 1.6rem;
  margin: 100px 0 50px;
  gap: 50px;
}

.day p {
 text-align: center;
}

.day-menu {
  background-color: #fff;
  padding: 20px 20px 0;
 }

 .day-img {
width:400px;
height: 268px;
 }

 .day-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}


@media(max-width:768px) {
  .day {
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  }
  

/****************/
/*　イベント　*/
/****************/
.season {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6fff;
  font-size: 1.6rem;
  margin: 100px 0 50px;
  gap: 50px;
}

.season p {
 text-align: center;
}

.season-menu {
  background-color: #fff;
  padding: 20px 20px 0;
 }

.kiji_haru{
  display: flex;
  justify-content: center;
  margin: 0 0 50px 0;
  gap: 50px;
  padding: 50px;
  border-radius: 30px;
  background-color: #fae1e0;
}

.kiji_natu{
  display: flex;
  justify-content: center;
  margin: 0 0 50px 0;
  gap: 50px;
  padding: 50px;
  border-radius: 30px;
  background-color: #e8fae0;
}

.kiji_aki{
  display: flex;
  justify-content: center;
  margin: 0 0 50px 0;
  gap: 50px;
  padding: 50px;
  border-radius: 30px;
  background-color: #fef4e1;
}

.kiji_huyu{
  display: flex;
  justify-content: center;
  margin: 0 0 50px 0;
  gap: 50px;
  padding: 50px;
  border-radius: 30px;
  background-color: #e3e0fa;
}

.center-zoroe{
  text-align: center;
  padding: 0 0 10px 0;
}

@media(max-width:768px) {
  .season {
    display: flex;
    margin: 0 20px;
    flex-direction: row;
    gap: 5px;
  }
  

  .kiji_haru{
    display: block;
    margin:80px 40px;
  }
  
  .kiji_natu{
    display: block;
    margin:80px 40px;
  }
  
  .kiji_aki{
    display: block;
    margin:80px 40px;
  }
  
  .kiji_huyu{
    display: block;
    margin:80px 40px;
  }
}

/****************/
/*　step　*/
/****************/
.step {
  margin: 0 0 50px;
}

/****************/
/*　グーグルマップ　*/
/****************/
@media(max-width:768px) {
  .map {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    }

    .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    }
  }

/****************/
/*　テーブル関連　*/
/****************/

.table_style {
  border-collapse: collapse;
  /* セルの線を重ねる */
  margin: 40px 0 40px 0;
  table-layout: fixed;
  width: 100%;
  border: 1px solid #ff6fff;
	word-break: break-all;
	word-wrap: break-all;
}

th, td {
  padding: 10px;
  border: 1px solid #ff6fff;
}

.table-style__row th {
  background-color: #ff6fff;
  color: #fff;
  padding: 20px;
}

.table-style__row th, tr {
  margin: 0 auto;
}

.table-style__column {
  background-color: #ff6fff;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px;
  width:30%;
}

@media(max-width:768px) {
  .table_style {
    margin: 0;
  }

  .table-style__row {
    display: none;
  }



  .table_style [data-title]::before {
    color: #666;
    content: attr(data-title);
    font-weight: bold;
    display: block;
    background-color: #ff6fff;
    text-align: center;
    color: #fff;
  }

  .koumoku-color {
    background-color: #ff6fff;
    color: #fff;
  }
}

.table-style__column {
  background-color: #ff6fff;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px;
}

/****************/
/*　あしらい　トップウサギ*/
/****************/
.top-usagi {
  position: relative;
  right: 0;
  z-index: 10;
}

.top-usagi-img {
  position: absolute;
  left: 116px;
  width: 147px;
  height: 300px;
  bottom: -2px;
}

.top-usagi-img2 {
  position: absolute;
right: 116px;
  width: 171px;
  height: 300px;
  bottom: -2px;
}

@media(max-width:768px) {
  .top-usagi-img {
       left: 10px;
    width: 88px;
    height: 180px;
    bottom: -2px;
  }

  .top-usagi-img2 {
    position: absolute;
  right: 20px;
    width: 103px;
    height: 180px;
    bottom: -2px;
  }
}

/****************/
/*　あしらい　ツクシイバラ*/
/****************/

.top-bara_hidari {
  position: absolute;
    right: 0;
  z-index: 1;
  left: 10px;
}

.top-bara_hidari img {
  width: 113px;
  height: 200px;
}

@media(max-width:768px) {
  .top-bara_hidari {
    position: absolute;
    right: 0;
    bottom: 10px;
    z-index: 1;
  }

  .top-bara_hidari img {
  width: 68px;
  height: 120px;
}
  }

.top-bara_migi {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 1;
}

.top-bara_migi {
  width: 113px;
  height: 200px;
}

@media(max-width:1020px) {
  .top-bara_migi {
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
  
  .top-bara_migi {
    width: 68px;
  height:120px;
  }
  }



/****************/
/*　フッター　*/
/****************/

.footer {
  width: 100%;
  background-color: #ff6fff;
  color: #fff;
  box-sizing: border-box;
  position: sticky;
  top: 100%;
  z-index: 99;
}

.footer-contener {
  display: flex;
  justify-content: center;
  background-color: #ff6fff;
  color: #fff;
  padding: 80px;
  align-items: center;
  gap: 50px;
}


.footer-contener::after {
  content: "";
  position: absolute;
  display: block;
  height: 59px;
  width: 100%;
  background: url(/assets/img/footer-img.png) repeat-x;
  bottom: 0;
  left: 0;
  background-position: -80px -11px;
  z-index: 50;
}

.footer-logo {
  flex:1;
  }

.footer-div {
text-align: left;
flex:1;
}

.footer-sita {
  position: relative;
  width: 500px;
  height: 500px;
  }

  .footer-img {
    position: absolute;
    top: 100px;
    left: 100px;
    }

    @media(max-width:768px) {
      .footer-contener {
        flex-direction: column;
      }
      }


/* 上に戻る */


#scroll-top a {
  bottom: 20px;
  position: fixed;
  right: 0;
  z-index: 100;
   }

#scroll-top img {
  width:150px;
  height: 150px;
}