@charset "UTF-8";

/* 
 * 共通ボタンデザイン
 * 
 * このファイルは、共通のボタンデザインを定義しています。
 * ボタンのスタイルを統一し、ユーザビリティを向上させることを目的としています。
 */

/* お問い合わせボタンデザイン */
a.inquiry_btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #4c9ac0;
    background: #e1eef5;
    color: #333;
    border-radius: 1em;
    transition: 0.5s;
  }
  
  a.inquiry_btn:before {
    content: "\f0e0";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 15px;
  }
  a.inquiry_btn:hover {
    color: #fff;
    background: #4c9ac0;
  }
  