body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

h2 {
    font-size: 30px;
    color: #5ac8ab;
    padding: 30px;
}

img[src="assets/images/logo_name.jpg"] {
    width: 500px;
    height: 120px;
    object-fit: contain;
}

img[src="assets/images/google-maps_2642499.png"] {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.tel {
    background-color: #b49a85;
    color: white; /* 文字色 */
    border: none; /* 枠線なし */
    border-radius: 25px; /* 角を丸くする */
    padding: 15px 60px; /* 上下10px、左右20pxのパディング */
    text-align: center; /* テキストを中央に配置 */
    text-decoration: none; /* 下線を消す */
    display: inline-block; /* インラインブロックにする */
    font-size: 30px; /* フォントサイズ */
    cursor: pointer; /* カーソルをポインターに */
    transition: background-color 0.3s; /* 背景色の変化を滑らかに */
}

.tel:hover {
    background-color: #e4d4bc;
}

table{
    border-collapse:separate;
    border-spacing: 5px;
    width: 50%;
}

table th,table td{
    border-radius: 5px;
    text-align: center;
    padding: 10px 20px;
}

table th{
    background-color: #b49a85;
    color: white;
}

table td{
    background-color: #e4d4bc;
}

.Access {
    background-color: #b49a85;
    margin: 50px;
    padding: 50px;
    color: #FFF;
    h3 {
        text-align: left;
    }
    display: flex;
    justify-content: space-evenly;
    margin-top: 5px;
}

footer {
    color: #FFF;
    text-align: center;
    background-color: #b49a85;
    margin-top: 50px;
}