/* 全体のレイアウト調整 */
  .contact-section {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    text-align: center;
    color: #7d7062; /* 全体の文字色 */
    padding: 50px 20px;
    background-color: #fff;
  }

  .contact-title {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
  }

  /* --- ボタンのスタイル（ここがメイン） --- */
  .contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px 60px; /* 横幅を少し広めに */
    background-color: transparent;
    color: #7d7062;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    border: 1px solid #dcd3c1; /* 元の画像のベージュ */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    z-index: 1;
    margin-bottom: 20px;
  }

  /* 背景が満たされる演出 */
  .contact-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* 最初は左に隠しておく */
    width: 100%;
    height: 100%;
    background-color: #dcd3c1;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
  }

  /* テキストとアイコン */
  .button-text {
    margin-right: 40px;
    transition: all 0.4s ease;
  }
  
  .button-icon {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
  }

  /* ホバー時の動き */
  .contact-button:hover {
    color: #fff; /* 文字を白に */
  }

  .contact-button:hover::before {
    left: 0; /* 左からスッと入ってくる */
  }

  .contact-button:hover .button-text {
    letter-spacing: 0.2em; /* 文字間が広がる */
  }

  .contact-button:hover .button-icon {
    transform: translateX(10px) scale(1.1); /* アイコンが少し右に跳ねる */
  }

  /* 電話番号 */
  .contact-tel {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #7d7062;
  }