@charset "utf-8";
/* CSS Document */

/* 予約フォームなど */
.belle_image_area {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 750px;
    margin: auto;

}

.belle_image_column:nth-of-type(2) {
  margin-right: 20px;
}

.belle_image_column {
  flex: 0 0 calc(50% - 10px);
  margin-bottom: 20px;
}

.belle_image_column:first-child {
  flex-basis: 100%;
}

.belle_image_column img {
  display: block;
  width: 100%;
  height: auto;
}

/* 上部テキスト */
.shop-description {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  margin-top: 80px; /* 上部の余白 */
  margin-bottom: 80px; /* 下部の余白 */
}


.shop-description {
  text-align: center;
}

.shop-description h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 50px;
  letter-spacing: 11px;
}

.shop-description p {
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}


.shop-description {
  opacity: 0; /* 初期状態で非表示にする */
  animation: fadeIn 1s ease-in-out forwards; /* フェードインアニメーションを設定 */
}



@media screen and (max-width: 768px){
    
    .belle_image_area {
    width: 80%;
    }
    .shop-description p {
        font-size: 13px;}
    .belle_image_column:nth-of-type(2) {
  margin-right: 20px;
}

    
}
    




@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* 20px下に移動させる */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻す */
  }
}

/* ページをスクロールした時の遅延設定 */
@keyframes fadeInDelay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ページがロードされてから0.5秒後にフェードインアニメーションを開始する */
.shop-description {
  animation-delay: 0.5s;
}

/* スクロール時の遅延設定 */
.shop-description.animated {
  animation-delay: 0s;
}