@charset "utf-8";

/* reset.css */

/* 全体初期化 */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  box-shadow: unset;
}

/* HTMLとBODYのサイズとスクロール制御 */
html, body {
  /* height: 100%; */
  scroll-behavior: smooth;
}

/* マージン・パディング初期化 */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* aタグの装飾を削除 */
a {
  color: inherit;
  text-decoration: none;
}

/* 画像の余白防止 */
img, picture, video, canvas, svg {
  display: block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

/* ボタンにカーソル設定 */
button {
  cursor: pointer;
}

/* テーブルの余白と境界線の初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* iframeの初期化 */
iframe {
  max-width: 100%;
  width: 100%;
}

/* 回り込み初期化 */
.clear-both {
  clear: both;
}

/* フォーム要素を初期化 */
input, textarea {
  appearance: none;
  -webkit-appearance: none;/*Google Chrome/Safari対応*/
  -moz-appearance: none;/*Firefox対応*/
  -o-appearance: none;/*Opera対応*/
  border-radius: 0;
}

textarea {
  resize: none;
}

::placeholder {
  color: var(--gray);
}

input, button, textarea, select {
  font: inherit;
  margin: 0;
  padding: 0;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

/* contact form 7の警告を非表示 */
.screen-reader-response {
  display: none;
}

/* reCAPTCHAを非表示 */
.grecaptcha-badge {
  display: none !important;
  visibility: hidden !important;
}