@charset "utf-8";
/* CSS Document */
html {
  -webkit-text-size-adjust: 100%;
}
* {
  box-sizing: border-box;
}
body {
  line-height: 1.5em;
  color: #707070;
  background: url("../img/bg.svg");
  font-family: 'Zen Maru Gothic', sans-serif;
}
#top {
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  display: block;
}
/*------------------------------
 ▼共通デザイン（モバイル向け）
 -------------------------------*/
/*共通アセット*/
/*ハンバーガーメニュー*/
.hide {
  display: none;
}
.humberger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.openbtn4 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #D54884;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: inline-block;
  float: right;
  margin: 10px 10px;
  z-index: 101;
}
.openbtn4 span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}
.openbtn4 span:nth-of-type(1) {
  top: 13px;
}
.openbtn4 span:nth-of-type(2) {
  top: 19px;
}
.openbtn4 span:nth-of-type(3) {
  top: 25px;
}
.openbtn4 span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: -2px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn4.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn4.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn4.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn4.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}
.menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, .8);
}
.menu_box {
  width: 220px;
  margin: 10% auto;
}
.menu ul {
  display: inline-block;
  width: 220px;
}
.menu li {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
  margin-top: 80px;
  padding: 10px;
  border-bottom: 1px solid #707070;
}
.menu li a:active {
  background-color: #ffb27a;
}
.menu li a:hover {
  background-color: #ffb27a;
}
nav ul li a {
  padding-top: 3px;
  padding-bottom: 5px;
  border-radius: 20px;
  text-align: center;
}
.close_menu {
  display: none;
}
.open_menu {
  display: block;
  position: fixed;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*ここまでハンバーガーメニュー*/
/*wrapper*/
.wrapper {
  width: 80%;
  margin: 80px auto 0;
  text-align: center;
  background-color: #fff;
}
.wrap {
  background-color: #fff;
}
/*ボタン*/
.button p {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px 25px;
  border: 1px solid #000;
  border-radius: 50px;
}
/*「避難場所に指定されています」　追加分*/
p.otoiawase::after {
  content: "※　ゆうひが丘保育園は、避難場所に指定されています。　また、積極的にオーガニック食材を取り入れています。";
  display: block;
  font-size: 0.8em;
  margin-top: 10px;
}
/*-------------下層ページのアイキャッチサークル---------------*/
.eyecath_circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: orange;
  line-height: 200px;
  text-align: center;
  margin: 40px auto 80px;
  position: relative;
}
.eyecath_circle h2 {
  font-size: 2rem;
  font-weight: bold;
}
.eyecath_circle::before {
  position: absolute;
  content: "";
  display: block;
  top: -5px;
  left: -5px;
  width: 200px;
  height: 200px;
  border: 5px dotted orange;
  border-radius: 50%;
  animation: ripple 2.5s ease-out infinite;
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(1, 1);
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: scale(1.3, 1.3);
  }
}
/*headerとfooter*/
header {
  background-color: #F8CCDD;
  height: 75px;
  width: 100%;
  clear: both;
  text-align: left;
  position: relative;
}
header img {
  float: left;
  line-height: 70px;
  margin: 3px 10px;
}
header h1 {
  font-size: 1.8rem;
  line-height: 70px;
  display: inline-block;
  font-family: 'Kaisei Decol', serif;
  font-weight: bold;
}
footer {
  text-align: center;
  margin-top: 80px;
  background-color: #f8ccdd;
}
footer .credit {
  padding-top: 40px;
}
footer .copy {
  font-size: 0.8rem;
  padding: 20px;
}
/*-------------------------
TOPページ
---------------------------*/
/*main*/
/*スライダー*/
.eyecatch img {
  width: 100%;
}
.slick-slide {
  height: auto !important;
}
.slick-next {
  right: 10px !important;
}
.slick-prev {
  left: 10px !important;
}
.slick-arrow {
  width: initial !important;
  height: initial !important;
  z-index: 2 !important;
}
.slick-arrow:before {
  font-size: 30px !important;
}
.slick-slide {
  margin-right: 1vw !important;
  margin-left: 1vw !important;
}
/*------------------------------*/
.box {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}
.catchphrase {
  margin-top: -40px;
  margin-bottom: 80px;
  line-height: 4rem;
}
.catchphrase h2 {
  width: 300px;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ff867a;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.catchphrase_sub {
  font-size: 1.5em;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.tel {
  display: block;
  margin: 80px auto 10px;
}
.tel p {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 20px 25px;
  border: 1px solid #000;
  border-radius: 50px;
  background-color: #fff57a;
  font-family: Arial, Helvetica, "sans-serif";
}
.tel p:active {
  opacity: 0.8;
}
.tel p:hover {
  opacity: 0.8;
}
.recruit {
  margin-top: 80px;
}
.recruit p {
  background-color: #fff57a;
}
.recruit p:active {
  opacity: 0.8;
}
.recruit p:hover {
  opacity: 0.8;
}
.otoiawase {
  font-size: 1.2rem;
  font-weight: bold;
}
.contents1 h2 {
  font-size: 1.8rem;
  margin: 40px auto 20px;
  padding-top: 40px;
  line-height: 1.8rem;
}
.contents1 .sub_text {
  margin-bottom: 60px;
  text-align: center;
}
.contents1 p {
  margin-bottom: 40px;
  text-align: left;
}
.contents1 .img1, .contents1 .img2 {
  display: inline-block;
  width: 40%;
  margin-right: 10%;
}
.contents1 .img2 {
  margin-right: 0;
}
.contents2 {
  margin: 80px auto;
  line-height: 1.5;
  padding-bottom: 40px;
}
.contents2 .wrapper {
  /*  background-color: #d8f7ef;*/
  width: 100%;
  padding-bottom: 40px;
}
.contents2 h2 span {
  font-size: 1.8rem;
}
.contents2 h2 {
  margin-bottom: 40px;
  padding-top: 40px;
  line-height: 2.2rem;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
.circle {
  width: 170px;
  height: 170px;
  padding: 5px;
  border-radius: 50%;
  color: #fff;
  margin-right: 0;
  margin-bottom: 20px;
}
.circle:nth-of-type(2n){
    padding-top: 15px;
}
.circle:nth-of-type(3){
    padding-top: 15px;
}
.circle h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 10px auto 5px;
}
.ja {
  background-color: #92cd9e;
}
.mu {
  background-color: #ffb27a;
}
.ar {
  background-color: #839ae6;
}
.en {
  background-color: #FBB7D1;
}
.gyouji {
  margin-top: 40px;
}
.gyouji p {
  background-color: #fff57a;
}
.gyouji p:active {
  opacity: 0.8;
}
.gyouji p:hover {
  opacity: 0.8;
}
.contents3 h2, .contents4 h2 {
  display: inline-block;
  padding-bottom: 20px;
  margin: 120px auto 0px;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}
.recruit_teacher {
  margin-top: 120px;
}
.recruit_teacher p {
  font-size: 1.2rem;
    font-weight: bold;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.recruit_teacher p::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff57a;
  position: absolute;
  left: -60px;
  top: -40px;
  z-index: -1;
}
.recruit_teacher p::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 52% 48% 24% 76% / 37% 43% 57% 63%;
  background-color: #d8f7ef;
  position: absolute;
  right: 0px;
  top: -20px;
}
.contents3 h2::after, .contents4 h2::after {
  content: "";
  display: block;
  width: 100px;
  border-top: 3px solid #707070;
  margin-top: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.map {
  margin-top: 40px;
}
.address {
  margin-top: 80px;
}
.address p {
  width: 300px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
}
/*----------------------------------
募集ページ #recruit
------------------------------------*/
#recruit .PR {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 3em;
  letter-spacing: -0.1em;
}
#recruit .PR span {
  font-size: 2em;
  font-weight: bold;
  color: orangered;
  letter-spacing: 0.05em;
}
#recruit .description {
  line-height: 1.5;
  margin-top: 80px;
  font-size: 1.5rem;
}
#recruit .description span {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 11%;
  position: relative;
  left: -20px;
  z-index: 0;
}
#recruit .description span::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #fff57a;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  left: -25px;
  top: 0px;
}
#recruit .circle {
  width: 18vw;
  height: 18vw;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  margin-right: 5%;
  margin-bottom: 20px;
  margin-top: 40px;
  position: relative;
}
#recruit .circle p {
  text-align: center;
  font-weight: bold;
  line-height: 18vw;
  font-size: 3.2vw;
}
#recruit .variety ul {
  display: flex;
  justify-content: space-around;
}
#recruit .variety {
  width: 80%;
  margin: 0 auto;
}
#recruit .open {
  margin: 40px;
}
#recruit .open p + p {
  margin-top: 40px;
}
#recruit .data {
  margin-top: 80px;
}
#recruit .hoiku h2 {
  background-color: #f8ccdd;
  border-radius: 20px 20px 0 0;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 20px;
}
#recruit .gakudou h2 {
  background-color: #ffd47a;
  border-radius: 20px 20px 0 0;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 20px;
}
#recruit dt {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #FAFAFA;
}
#recruit dd {
  font-size: 1.3rem;
  text-align: left;
  padding-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #FAFAFA;
  border-bottom: 1px solid #ddd;
}
#recruit dd:nth-child(3n) {
  padding-bottom: 40px;
  border-radius: 0 0 20px 20px;
}
/*----------------------------------
年間行事計画ページ #schedule 
------------------------------------*/
#schedule .schedule {
  background-color: bisque;
  height: 150px;
  width: 100%;
}
#schedule .schedule:nth-of-type(even) {
  background-color: #fff;
  height: 150px;
}
#schedule .schedule_circle {
  width: 100px;
  height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: orange;
  float: left;
  margin: 25px 0 25px 5%;
}
#schedule .schedule_circle h3 {
  line-height: 100px;
  font-size: 1.5rem;
}
#schedule .schedule p {
  display: inline-block;
  margin-top: 30px;
  margin-left: 15%;
}
#schedule .schedule:last-of-type p {
  margin-top: 10px;
}
#schedule .schedule p.april {
  position: relative;
  margin-top: 50px;
}
#schedule .schedule p.april::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../img/asset1.png") no-repeat;
  background-size: contain;
  position: absolute;
  right: -40px;
  top: 0px;
}
#schedule .schedule p.may {
  margin-top: 50px;
}
#schedule .schedule p.june {
  margin-top: 40px;
}
#schedule .schedule p.july {
  position: relative;
  margin-top: 50px;
}
#schedule .schedule p.july::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../img/asset2.png") no-repeat;
  background-size: contain;
  position: absolute;
  right: -70px;
  top: 10px;
}
#schedule .schedule p.august {
  margin-top: 60px;
}
#schedule .schedule p.september {
  margin-top: 50px;
}
#schedule .schedule p.october {
  position: relative;
  margin-top: 40px;
}
#schedule .schedule p.october::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../img/asset3.png") no-repeat;
  background-size: contain;
  position: absolute;
  right: -100px;
  top: 20px;
}
#schedule .schedule p.november {
  margin-top: 60px;
}
#schedule .schedule p.december {
  margin-top: 60px;
}
#schedule .schedule p.december::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../img/asset4.png") no-repeat;
  background-size: contain;
  float: right;
  margin-left: 30px;
}
#schedule .schedule p.january {
  margin-top: 60px;
}
#schedule .schedule p.february {
  margin-top: 50px;
}
#schedule .schedule p.march {
  position: relative;
  margin-top: 40px;
}
#schedule .schedule p.march::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../img/asset5.png") no-repeat;
  background-size: contain;
  position: absolute;
  right: -80px;
  margin-left: 10px;
}
#schedule .paragraph {
  background-color: #fff;
  font-size: 1.2em;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
}
/*------------------------------------------------------------------------------------------------------------------
             ▼中型画面向けデザイン（タブレットなど）
 -------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
  .circle {
    font-size: 16px;
  }
  .humberger {
    display: none;
  }
  .gNav {
    display: inline-block;
    float: right;
    margin-top: 20px;
    margin-right: 40px;
  }
  .gNav ul {
    display: flex;
    width: 400px;
    justify-content: space-around;
  }
  .gNav li, .gNav_footer li {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .gNav li a, .gNav_footer li a {
    padding: 5px 10px;
  }
  .gNav li a:active, .gNav_footer li a:active {
    background-color: #ffb27a;
  }
  .gNav li a:hover, .gNav_footer li a:hover {
    background-color: #ffb27a;
  }
  .gNav_footer {
    display: inline-block;
    margin-top: 20px;
  }
  .gNav_footer ul {
    display: flex;
    width: 400px;
    justify-content: space-around;
  }
  .box img {
    margin-top: -10px;
  }
  .catchphrase {
    margin-top: -120px;
    margin-bottom: 80px;
    line-height: 8rem;
  }
  .catchphrase h2 {
    width: 600px;
    font-size: 8rem;
    font-weight: bold;
    margin-bottom: 60px;
  }
  .catchphrase_sub {
    font-size: 1.5em;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 180px;
  }
  .contents1 {
    /*    margin-top: 100px;*/
    margin-bottom: 200px;
  }
  .recruit_teacher p {
    font-size: 1.8rem;
  }
  /*-----------------
    募集要項ページ
-------------------*/
  #recruit .PR {
    font-size: 2em;
    font-weight: bold;
    line-height: 3em;
    letter-spacing: -0.1em;
  }
  #recruit .PR span {
    font-size: 3em;
    font-weight: bold;
    color: orangered;
    letter-spacing: 0.05em;
  }
  #recruit .description {
    line-height: 1.7;
    margin-top: 80px;
    font-size: 1.7rem;
  }
  #recruit .description span {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 50px;
    position: relative;
    left: -20px;
    z-index: 0;
  }
  #recruit .description span::before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #fff57a;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    left: -35px;
    top: -5px;
  }
  #recruit .circle {
    width: 140px;
    height: 140px;
    padding: 0;
    border-radius: 50%;
    color: #fff;
    margin-right: 5%;
    margin-bottom: 60px;
    margin-top: 60px;
  }
  #recruit .circle p {
    text-align: center;
    font-weight: bold;
    line-height: 140px;
    font-size: 1.5rem;
  }
}
/*-----------------------------------------------------------------------------------------------------------------
             ▼大型画面向けデザイン（PCなど）
 ---------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
  .wrap {
    width: 1200px;
    margin: 0 auto;
    background-color: #fff;
  }
  .wrapper {
    width: 1200px;
  }
  .eyecath_circle {
    margin: 120px auto;
  }
  /*------------------
    TOPページ
    -------------------*/
  .contents1 {
    position: relative;
    height: 700px;
    margin-top: 200px;
    margin-bottom: 200px;
    background: url("../img/aozora.png") no-repeat right top;
  }
  .contents1_text_zone {
    padding-top: 100px;
    width: 580px;
    position: relative;
    left: 500px;
  }
  .contents1_text_zone h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
  .contents1_text_zone p {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
  .contents1 .img1 {
    position: absolute;
    left: -20px;
    top: 20px;
  }
  .contents1 .img2 {
    position: absolute;
    left: 20px;
    bottom: -40px;
  }
  .contents2 .wrapper {
    width: 700px;
    background-color: #fff;
    float: right;
    margin-right: 5%;
  }
  .gyouji {
    float: right;
  }
  .contents2::after {
    content: "";
    display: block;
    clear: both;
  }
  .contents2_copy {
    text-align: left;
    position: relative;
    z-index: 1;
  }
  .contents2_copy::before {
    content: "";
    display: block;
    width: 600px;
    height: 840px;
    background: url("../img/alphabet.png") no-repeat;
    position: absolute;
    left: -500px;
    top: -40px;
    z-index: -1;
  }
  .contents2 {
    margin-top: 200px;
  }
  .contents2 h2 {
    font-size: 1.2rem;
    line-height: 2.8rem;
  }
  .contents2 h2 span {
    font-size: 2rem;
  }
  .flex {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .recruit_teacher_images {
    position: relative;
  }
  .recruit_teacher {
    margin-top: 300px;
  }
  .recruit_teacher_img1 {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: url("../img/hoikusi.png") no-repeat right top;
    position: absolute;
    left: 80px;
    top: -40px;
  }
  .recruit_teacher_img2 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: url("../img/train.png") no-repeat right top;
    position: absolute;
    right: 150px;
    top: -150px;
  }
  .contents3 {
    margin-top: 200px;
  }
  /*------------------
    募集要項ページ　#recruit
    ------------------*/
  #recruit .data {
    width: 580px;
    float: left;
  }
  #recruit .hoiku {
    margin-right: 40px;
  }
  #recruit .cleatfix {
    clear: both;
  }
  /*----------------
    年間行事計画ページ
    ----------------*/
  #schedule .schedule {
    width: 600px;
    float: left;
  }
  /*  交互にバックグラウンドの色変えるやつ  */
  #schedule .schedule:nth-of-type(n+2):nth-of-type(-n+3), #schedule .schedule:nth-of-type(n+6):nth-of-type(-n+7), #schedule .schedule:nth-of-type(n+10):nth-of-type(-n+11) {
    background-color: #fff;
  }
  #schedule .schedule:first-of-type, #schedule .schedule:nth-of-type(n+4):nth-of-type(-n+5), #schedule .schedule:nth-of-type(n+8):nth-of-type(-n+9), #schedule .schedule:last-of-type {
    background-color: bisque;
  }
  /* ここまで 交互にバックグラウンドの色変えるやつ  */
  #schedule .schedule_circle {
    width: 150px;
    height: auto;
    background-color: inherit;
    margin: 40px 0 25px 5%;
  }
  #schedule .schedule .schedule_circle h3 {
    font-size: 2.8rem;
    line-height: 2.3rem;
  }
  #schedule .schedule_circle h3:after {
    content: attr(data);
    display: block;
    font-size: 1.2rem;
  }
  #schedule .clearfix {
    clear: both;
  }
}
@media screen and (max-width: 370px){
    .clearfix h1{
        font-size: 1.5rem;
    }
    .contents1 h2 {
  font-size: 1.5rem;
}
}