/* 全要素の基本リセット */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* HTML, body のデフォルトスタイル */
  html, body {
    height: 100%;
    font-size: 16px;
    font-family: sans-serif;
    line-height: 1.5;
    color: #333;
    background: #fff;
  }
  
  /* WordPress 固有のリセット */
  .alignleft, .alignright {
    display: inline-block;
  }
  
  .alignleft {
    float: left;
    margin-right: 1rem;
  }
  
  .alignright {
    float: right;
    margin-left: 1rem;
  }
  
  .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* WordPress のブロック要素調整 */
  .wp-block {
    margin-bottom: 1.5rem;
  }
  
  /* リンクのデフォルトスタイル */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  /* ボタンのリセット */
  button, input, select, textarea {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
  }
  
  /* フォーム要素のデフォルトリセット */
  button {
    cursor: pointer;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea {
    border: 1px solid #6c4b27;
    padding: 0.5rem;
  }
  
  /* iframe や埋め込みコンテンツのリセット */
  iframe, embed, object, video {
    max-width: 100%;
    height: auto;
  }
  
  /* テーブルのリセット */
  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    padding: 0.5rem;
    border: 1px solid #ddd;
  }
  
  /* 画像のデフォルトスタイル */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  address{
    font-style:normal;
  }
  