body {
    margin: 0;
    font-family: 'Kiwi Maru', sans-serif;
    background-color: #fff1f4; /* 統一されたやさしい背景色 */
    color: #5a3e36;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
  }
  
  h1 {
    font-size: 2rem;
    font-weight: 500;
    color: #5a3e36;
    display: inline-block;
    border-bottom: 4px dotted #eec5d2; /* 統一されたピンク */
    padding-bottom: 5px;
    margin: 5px;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .shop-button {
    text-decoration: none;
    padding: 16px 28px;
    background-color: #ffffff; /* 統一されたメインピンク */
    color: #5a3e36;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    justify-content: center;
  
    /* 内側の白っぽい線（インナーライン） */
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.5),
      0 6px 12px rgba(232, 185, 200, 0.3);
  
    transition: all 0.3s ease;
  }
  
  .shop-button:hover {
    background-color: #dba8b7; /* hover時の濃いめピンク */
    color: #fff;
    transform: translateY(-2px);
  }
  
  .shop-logo {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%; /* 角丸（真円） */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .subtitle {
    font-size: 1rem;
    color: #a85e73; /* やさしいピンクブラウン */
    margin: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .shop-name {
    font-weight: bold;
    font-size: 1.05rem;
    color: #a85e73; /* 統一感のあるアクセントピンク */
    letter-spacing: 0.4px;
  }
  
  @media (max-width: 600px) {

    h1{
        font-size: 1.5rem;
    }

    .shop-button {
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        justify-content: flex-start;
        padding-left: 20px;
      }
    
      .shop-logo {
        flex-shrink: 0;
        object-fit: cover;
        border-radius: 50%;
      }
    
      .shop-button span {
        flex-grow: 1;
        text-align: center;
      }
  }
  