@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;
}

/* マージン・パディング初期化 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* 見出しタグ初期化 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
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;
}

picture img {
  width: 100%;
}

/* ボタンにカーソル設定 */
button {
  cursor: pointer;
}

/* テーブル */
table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

th,
td {
  vertical-align: top;
  font-weight: normal;
  text-align: left;
}

caption {
  text-align: left;
}

/* 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;
}

input[type=radio] {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

/* contact form 7の警告を非表示 */
.screen-reader-response {
  display: none;
}