@charset "UTF-8";
/* ====== 全体スタイル ====== */
body {
    font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif, ; /* フォント設定 */
    margin: 0; /* ページ全体の余白をリセット */
    padding: 0;
    background-color: #f5ead6; /* 背景色（ベージュ） */
    color: #333; /* テキストカラー */
  }
  
  /* ====== ヘッダーのスタイル ====== */
  header {
    display: flex; /* 横並びに配置 */
    justify-content: space-between; /* 両端に配置 */
    align-items: center; /* 中央揃え */
    padding: 10px 20px; /* ヘッダー内の余白 */
    background-color: #e9d8b6; /* ヘッダー背景色 */
    border-bottom: 2px solid #ccc; /* 下線 */
  }
  header .logo {
    font-size: 24px; /* ロゴのフォントサイズ */
    font-weight: bold; /* 太字 */
    color: #5a8531; /* ロゴカラー（グリーン） */
  }
  nav {
    display: flex;
    gap: 20px; /* 各リンクの間隔 */
    border: solid 1px #454545;
    background: #f8f3e0;
    border-radius: 8px;
    margin-right: 60px;
  }
  nav a {
    text-decoration: none; /* 下線を消す */
    font-size: 35px; /* フォントサイズ */
    font-weight: bold; /* 太字 */
    color: #333; /* 通常時の文字色 */
    transition: color 0.3s ease; /* カラー変更のアニメーション */
  }
  nav a:hover {
    color: #5a8531; /* ホバー時のカラー */
    transition: .3s;
  }
  nav a {
    transition: .3s;
  }
  
  /* ====== ヒーローセクションのスタイル ====== */
  .hero {
    background-image: url('https://example.com/your-background-image.jpg'); /* 背景画像 */
    background-size: cover; /* 画像を全体に拡大 */
    background-position: center; /* 中央寄せ */
    padding: 100px 20px; /* 上下に広い余白 */
    text-align: center; /* テキスト中央揃え */
    color: #ffffff; /* テキスト色 */
    background-image: url(../img/top/AdobeStock_321983650.jpeg);
  }
  .hero h1 {
    font-size: 60px; /* タイトルのフォントサイズ */
    font-weight: bold; /* 太字 */
    color: #333;
    margin: 0; /* 余白なし */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* 影を付ける */
    text-align: right;
    padding-right: 75px;
  }
  
  /* ====== メインコンテンツのスタイル ====== */
  .content {
    padding: 40px 20px; /* 内側の余白 */
    text-align: center; /* テキスト中央寄せ */
    display: flex;
  }
  .content1{
    background-image: url(../img/top/AdobeStock_388685791.jpeg);
    background-size: cover;
    background-position: center;
    width: 500px;
    height: 500px;
  } 
  .main-message {
    font-size: 35px; /* サブタイトルのフォントサイズ */
    font-weight: bold; /* 太字 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* 影 */
    margin: 30px;
  }
  .content h2 {
    font-size: 40px; /* 見出しのフォントサイズ */
    color: #5a8531; /* 見出しのカラー */
    margin-bottom: 20px; /* 下の余白 */
  }
  .content p {
    font-size: 40px; /* 本文のフォントサイズ */
    line-height: 1.8; /* 行間 */
  }
  .message{
    font-weight: bold; /* 太字 */
    margin: 30px;
  }
  
  .time{
    font-size: 30px;
    position: relative;
    margin: 10px;
    text-align: center;
    margin-top: 20px;
  }
  .time1{
    font-size: 60px;
    text-align: center;
  }
  .time p{
    font-weight: bold;
  }
  
  .access{
    display: flex;
    background-color: #5a8531;
  }
  .access1 h2{
    font-size: 60px;
    text-align: center;
    margin-top: 20px;
  }
  .access img{
    width: 480px;
    height: 450px;
    margin: 50px 0 30px 20px;
  }
  .address p{
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    
  }
  .address {
    margin: 100px 40px 0 30px;
  }
  /* ====== キッズスペースセクション ====== */
  .Kids-Space {
    margin-top: 30px; /* 上の余白 */
    /* background-color: #d3f4c7; /* 背景色（淡いグリーン） */
    background-size: cover;
    padding: 30px; /* 内側の余白 */
    border-radius: 15px; /* 角丸 */
    text-align: center; /* 中央揃え */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ボックスの影 */
    background-image: url(../img/top/AdobeStock_126790874.jpeg);
    margin: 5px;
  }
  .Kids-Space h3 {
    font-size: 34px; /* サブ見出しのフォントサイズ */
    margin-bottom: 10px; /* 下の余白 */
    color: #5a8531; /* カラー */
  }
  .Kids-Space p {
    font-size: 18px; /* 本文フォントサイズ */
    font-weight: bold;
  }
  
  .box{
    background-image: url(../img/top/AdobeStock_284419555.jpeg);
    background-position: center;
    background-size: cover;
    display: flex;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    border-radius: 2%;
    margin: 5px 0 5px 0;
  }
  
  /* ====== フッターのスタイル ====== */
  footer {
    padding: 20px;
    text-align: center; /* テキスト中央揃え */
    background-color: #e9d8b6; /* フッター背景色 */
    color: #333; /* フォントカラー */
    font-size: 20px; /* フォントサイズ */
    font-weight: bold;
  }


  /* ==== イベントCSS ==== */
  .content2{
    margin: 0 0 0 350px;
  }
  .main-event{
    text-align: center;
    font-size: 50px;
  }
  .box10{
    display: block;
  }
  .event1 img{
    width: 1000px;
    height: 500px;
    margin: 0 50px 0 150px;
    position: relative;
  }
  .sweets1{
    width: 450px;
    height: 150px;
    position: absolute;
    right: 200px;
    top: 620px;
  }
  .sweets2{
    width: 450px;
    height: 150px;
    position: absolute;
    left: 230px;
    top: 680px;
  }
  .event2 img{
    width: 1000px;
    height: 500px;
    margin: 0 50px 0 150px;
    position: relative;
  }
  .coffee2{
    width: 450px;
    height: 150px;
    position: absolute;
    left: 230px;
    top: 1230px;
  }
  .coffee1{
    width: 450px;
    height: 150px;
    position: absolute;
    right: 200px;
    top: 1300px;
  }
  .event3 img{
    width: 1000px;
    height: 500px;
    margin: 0 50px 0 150px;
    position: relative;
  }
  .drink1{
    width: 450px;
    height: 150px;
    position: absolute;
    left: 230px;
    bottom: -1270px;
  }
  .drink2{
    width: 450px;
    height: 150px;
    position: absolute;
    right: 200px;
    bottom: -1320px;
  }
  .box2{
    background-image: url(../img/event/kasi.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 70%;
    width: 100%;
    height: 400px;
  }


  /* ==== メニュー表css ==== */
  .menu1{
    display: flex;
    flex-wrap: wrap;
    margin: 15px;
  }
  .pancakes{
    background-image: url(../img/menu/AdobeStock_314159628.jpeg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 560px;
    height: 380px;
    margin: 0 30px 0 10px;
    border-radius: 25%;
    border: solid rgb(255, 255, 255) 8px;
  }
  .hamburger{
    background-image: url(../img/menu/AdobeStock_473998016.jpeg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 560px;
    height: 380px;
    margin: 0 0 0 60px;
    border-radius: 25%;
    border: solid rgb(255, 255, 255) 8px;
  }
  .menu-points1{
    display: flex;
  }
  .menu2{
    /* justify-content: center; */
    margin-left: 20px;
  }
  .menu-points2{
    text-align: center;
    font-weight: bold; 
    font-size: 42px;
    margin: 20px;
  }
  .s1{
    line-height: 80px;
  }
  .hit{
    color: rgb(255, 59, 59);
  }
  .s2{
    line-height: 80px;
  }
  .shaved{
    background-image: url(../img/menu/AdobeStock_525343548.jpeg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 560px;
    height: 380px;
    margin: 0 30px 0 10px;
    border-radius: 25%;
    border: solid rgb(255, 255, 255) 8px;
  }
  .menu-coffee{
    background-image: url(../img/menu/AdobeStock_366681503.jpeg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 560px;
    height: 380px;
    margin: 0 0 0 60px;
    border-radius: 25%;
    border: solid rgb(255, 255, 255) 8px;
  }
  .menu3{
    display: flex;
  }

  /* ＝＝＝ お問い合わせ === */
  * {
    box-sizing: border-box;
  }  
  .contact{
    width: 960px;
    margin: 0 auto;
    padding: 60px 0;
  }
  .contact-ttl{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
  }
  .contact-table {
    width: 960px;
    margin-bottom: 20px;
    margin: 0 auto;
  }
  .contact-item,
  .contact-body {
  padding: 20px;
  border: 1px solid #949494;
}
.contact-item {
  text-align: center; /* テキスト左寄せ */
  width: 30%; /* 横幅30%指定（グレーの背景色部分） */
  background-color: #d3d3d3; /* グレーの背景色 */
}
.contact-body {
  width: 70%; /* 横幅70%指定（白背景色部分） */
  background-color: #ffffff;
}
.form-text {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 800px;
}
.form-textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.contact-submit {
  width: 250px; /* 横幅指定 */
  background-color: #0e3c5d; /* 背景色 */
  color: #fff; /* 文字色 */
  font-weight: bold; /* 文字の太さ */
  display: block; /* インライン要素をブロック要素に変更 */
  margin: 0 auto; /* 中央寄せ */
  font-size: 16px; /* 文字の大きさ */
  padding: 15px; /* 内側の余白 */
  border-radius: 100vh; /* 角丸指定 */
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* ＝＝＝ キッズスペース ＝＝＝ */
.Kids-Space0{
  display: block;
}
.Kids-Space1{
  background-image: url(../img/kidspece/AdobeStock_265450316.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 80%;
  width: 100%;
  height: 700px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.Kids-Space0 {
  position: relative;
  }
.Kids-Space0 p {
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(233, 233, 233);
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  }
  .Kids-Space4{
    width: 100%;
    height: 330px;
    background-color: yellowgreen;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .Kids-Space4 p{
    font-size: 40px;
  font-weight: bold;
  position: absolute;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(233, 233, 233);
  top: 185%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  }
  .img1{
    background-image: url(../img/kidspece/AdobeStock_140558964.jpeg);
    background-size: cover;
    border-radius: 10px;
    margin: 30px;
    width: 350px;
    height: 250px;
  }
  .img2{
    background-image: url(../img/kidspece/AdobeStock_399015446.jpeg);
    background-size: cover;
    border-radius: 10px;
    margin: 30px 0 0 480px;
    width: 350px;
    height: 250px;
  }





  
  /* レスポンシブ */
/* *{
  border: solid 1px red;
} */
  @media screen and (max-width:768px){
    body {
      font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif, ; /* フォント設定 */
      margin: 0; /* ページ全体の余白をリセット */
      padding: 0;
      background-color: #f5ead6; /* 背景色（ベージュ） */
      color: #333; /* テキストカラー */
    }
    
    /* ====== ヘッダーのスタイル ====== */
    header {
      display: flex; 
      justify-content: space-between; 
      flex-wrap: wrap;
      align-items: center; /* 中央揃え */
      padding: 5px 10px; /* ヘッダー内の余白 */
      background-color: #e9d8b6; /* ヘッダー背景色 */
      border-bottom: 2px solid #ccc; /* 下線 */
      padding-left: 8%;
    }
    header .logo {
      font-size: 12px; /* ロゴのフォントサイズ */
      font-weight: bold; /* 太字 */
      color: #5a8531; /* ロゴカラー（グリーン） */
    }
    nav {
      display: flex;
      gap: 12px; /* 各リンクの間隔 */
      border: solid 1px #454545;
      background: #f8f3e0;
      border-radius: 8px;
      margin-right: 10px;
    }
    nav a {
      text-decoration: none; /* 下線を消す */
      font-size: 18px; /* フォントサイズ */
      font-weight: bold; /* 太字 */
      color: #333; /* 通常時の文字色 */
      transition: color 0.3s ease; /* カラー変更のアニメーション */
    }
    nav a:hover {
      color: #5a8531; /* ホバー時のカラー */
      transition: .3s;
    }
    nav a {
      transition: .3s;
    }
    
    .access{
      flex-direction: column;
      align-items: center;
    }
    .address{
      margin-top: 20px;
      text-align: center;
    }
  
    /* ====== ヒーローセクションのスタイル ====== */
    .hero {
      background-image: url('https://example.com/your-background-image.jpg'); /* 背景画像 */
      background-size: cover; /* 画像を全体に拡大 */
      background-position: center; /* 中央寄せ */
      padding: 25px 10px; /* 上下に広い余白 */
      text-align: center; /* テキスト中央揃え */
      color: #ffffff; /* テキスト色 */
      background-image: url(../img/top/AdobeStock_321983650.jpeg);
    }
    .hero h1 {
      font-size: 25px; /* タイトルのフォントサイズ */
      font-weight: bold; /* 太字 */
      color: #333;
      margin: 0; /* 余白なし */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* 影を付ける */
      text-align: right;
      padding-right: 10px;
    }
    
    /* ====== メインコンテンツのスタイル ====== */
    .content {
      padding: 10px 5px; /* 内側の余白 */
      text-align: center; /* テキスト中央寄せ */
      display: flex;
    }
    .content1{
      background-image: url(../img/top/AdobeStock_388685791.jpeg);
      background-size: cover;
      background-position: center;
      width: 250px;
      height: 250px;
    } 
    .main-message {
      font-size: 25px; /* サブタイトルのフォントサイズ */
      font-weight: bold; /* 太字 */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* 影 */
      text-align: center;
      margin: 30px;
    }
    .content h2 {
      font-size: 40px; /* 見出しのフォントサイズ */
      color: #5a8531; /* 見出しのカラー */
      margin-bottom: 20px; /* 下の余白 */
    }
    .content p {
      font-size: 40px; /* 本文のフォントサイズ */
      line-height: 1.8; /* 行間 */
    }
    .message{
      font-weight: bold; /* 太字 */
      margin: 15px;
    }
    
    .time{
      font-size: 30px;
      position: relative;
      margin: 5px;
      text-align: center;
      margin-top: 10px;
    }
    .time1{
      font-size: 20px;
      text-align: center;
    }
    .time p{
      font-weight: bold;
    }
    
    .access{
      background-color: #5a8531;
    }
    .access1 h2{
      font-size: 60px;
      text-align: center;
      margin-top: 20px;
    }
    .access img{
      width: 400px;
      height: 400px;
      margin: 50px 0 30px 20px;
    }
    .address p{
      font-size: 25px;
      font-weight: bold;
      text-align: center;
    }
    /* ====== キッズスペースセクション ====== */
    .Kids-Space {
      margin-top: 30px; /* 上の余白 */
      /* background-color: #d3f4c7; /* 背景色（淡いグリーン） */
      background-size: cover;
      padding: 30px; /* 内側の余白 */
      border-radius: 15px; /* 角丸 */
      text-align: center; /* 中央揃え */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ボックスの影 */
      background-image: url(../img/top/AdobeStock_126790874.jpeg);
      margin: 5px;
    }
    .Kids-Space h3 {
      font-size: 30px; /* サブ見出しのフォントサイズ */
      margin-bottom: 10px; /* 下の余白 */
      color: #5a8531; /* カラー */
    }
    .Kids-Space p {
      font-size: 18px; /* 本文フォントサイズ */
      font-weight: bold;
    }
    
    .box{
      background-image: url(../img/top/AdobeStock_284419555.jpeg);
      background-position: center;
      background-size: cover;
      display: flex;
      width: 100%;
      height: 150px;
      background-repeat: no-repeat;
      border-radius: 2%;
      margin: 5px 0 5px 0;
    }
    
    /* ====== フッターのスタイル ====== */
    footer {
      padding: 20px;
      text-align: center; /* テキスト中央揃え */
      background-color: #e9d8b6; /* フッター背景色 */
      color: #333; /* フォントカラー */
      font-size: 20px; /* フォントサイズ */
      font-weight: bold;
    }
  
  
    /* ==== イベントCSS ==== */
    .main-event{
      text-align: center;
      font-size: 25px;
    }
    .box10{
      display: block;
    }
    .event1 img{
      width: 300px;
      height: 300px;
      margin: 0 50px 0 40px;
      position: relative;
    }
    .sweets1{
      width: 150px;
      height: 50px;
      position: absolute;
      left: 80px;
      top: 360px;
    }
    .sweets2{
      width: 150px;
      height: 50px;
      position: absolute;
      left: 160px;
      top: 460px;
    }
    .event2 img{
      width: 300px;
      height: 300px;
      margin: 0 50px 0 40px;
      position: relative;
    }
    .coffee2{
      width: 150px;
      height: 50px;
      position: absolute;
      left: 160px;
      top: 710px;
    }
    .coffee1{
      width: 150px;
      height: 50px;
      position: absolute;
      left: 80px;
      top: 800px;
    }
    .event3 img{
      width: 300px;
      height: 300px;
      margin: 0 50px 0 40px;
      position: relative;
    }
    .drink1{
      width: 150px;
      height: 50px;
      position: absolute;
      left: 150px;
      top: 1060px;
    }
    .drink2{
      width: 150px;
      height: 50px;
      position: absolute;
      right: 160px;
      top: 1170px;
    }
    .box2{
      background-image: url(../img/event/kasi.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 50% 70%;
      width: 100%;
      height: 400px;
    }
  
  
    /* ==== メニュー表css ==== */
    .menu1{
      display: flex;
    }
    .pancakes{
      background-image: url(../img/menu/AdobeStock_314159628.jpeg);
      background-size: contain;
      background-repeat: no-repeat;
      width: 35%;
      height: 100px;
      border-radius: 10%;
      border: solid rgb(255, 255, 255) 0px;
    }
    .hamburger{
      background-image: url(../img/menu/AdobeStock_473998016.jpeg);
      background-size: contain 170px 100px;
      background-repeat: no-repeat;
      width: 35%;
      height: 100px;
      border-radius: 10%;
      border: solid rgb(255, 255, 255) 0px;
    }
    .menu2{
      margin-left: 5px;
    }
    .menu-points2{
      text-align: center;
      font-weight: bold; 
      font-size: 15px;
      margin: 5px;
    }
    .s1{
      line-height: 20px;
    }
    .hit{
      color: rgb(255, 59, 59);
    }
    .s2{
      line-height: 30px;
    }
    .shaved{
      background-image: url(../img/menu/AdobeStock_525343548.jpeg);
      background-size: contain;
      background-repeat: no-repeat;
      width: 180px;
      height: 130px;
      margin: 0 5px 0 3px;
      border-radius: 15%;
      border: solid rgb(255, 255, 255) 3px;
    }
    .menu-coffee{
      background-image: url(../img/menu/AdobeStock_366681503.jpeg);
      background-size: contain;
      background-repeat: no-repeat;
      width: 180px;
      height: 130px;
      margin: 0 0 0 10px;
      border-radius: 15%;
      border: solid rgb(255, 255, 255) 3px;
    }
    .menu3{
      display: flex;
    }
  
    /* ＝＝＝ お問い合わせ === */
    * {
      box-sizing: border-box;
    }  
    .contact{
      width: 300px;
      margin: 0 auto;
      padding: 60px 0;
    }
    .contact-ttl{
      font-size: 40px;
      font-weight: bold;
      margin-bottom: 40px;
      text-align: center;
    }
    .contact-table {
      width: 360px;
      margin-bottom: 20px;
      margin: 0 auto;
    }
    .contact-item,
    .contact-body {
    padding: 20px;
    border: 1px solid #949494;
  }
  .contact-item {
    text-align: center; /* テキスト左寄せ */
    width: 30%; /* 横幅30%指定（グレーの背景色部分） */
    background-color: #d3d3d3; /* グレーの背景色 */
  }
  .contact-body {
    width: 70%; /* 横幅70%指定（白背景色部分） */
    background-color: #ffffff;
  }
  .form-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 800px;
  }
  .form-textarea {
    width: 100%;
    padding: 10px;
    height: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .contact-submit {
    width: 250px; /* 横幅指定 */
    background-color: #0e3c5d; /* 背景色 */
    color: #fff; /* 文字色 */
    font-weight: bold; /* 文字の太さ */
    display: block; /* インライン要素をブロック要素に変更 */
    margin: 0 auto; /* 中央寄せ */
    font-size: 16px; /* 文字の大きさ */
    padding: 15px; /* 内側の余白 */
    border-radius: 100vh; /* 角丸指定 */
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  
  /* ＝＝＝ キッズスペース ＝＝＝ */
  .Kids-Space0{
    display: block;
  }
  .Kids-Space1{
    background-image: url(../img/kidspece/AdobeStock_265450316.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 80%;
    width: 100%;
    height: 400px;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .Kids-Space0 {
    position: relative;
    }
  .Kids-Space0 p {
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(233, 233, 233);
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    }
    .Kids-Space4{
      width: 100%;
      height: 330px;
      background-color: yellowgreen;
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
    .Kids-Space4 p{
      font-size: 27px;
    font-weight: bold;
    position: absolute;
    text-align: center;
    -webkit-text-stroke-width: .7px;
    -webkit-text-stroke-color: rgb(233, 233, 233);
    top: 100%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    }
    .img1{
      background-image: url(../img/kidspece/AdobeStock_140558964.jpeg);
      background-size: cover;
      border-radius: 10px;
      margin: 10px;
      width: 180px;
      height: 100px;
    }
    .img2{
      background-image: url(../img/kidspece/AdobeStock_399015446.jpeg);
      background-size: cover;
      border-radius: 10px;
      margin: 60px 0 0 180px;
      width: 180px;
      height: 80px;
      bottom: 10px;
    }
  }