/*-------------------------------

reset

-------------------------------*/

/* 全要素のボックスサイズを border-box に統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ブラウザによるフォントサイズの拡大を防止 */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* リストのマーカーを削除 */
ul,
ol {
  list-style: none;
}

/* bodyの基本設定 */
body {
  min-height: 100svh;
  line-height: 1.5;
}

/* 見出しの折り返し制御 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1em;
}

/* p, dtも見出しに合わせて初期化 */
p,
dt {
  font-weight: normal;
  font-size: 1em;
}

/* 全リンク共通設定 */
a {
  color: currentColor;
  text-decoration: none;
}

/* 画像・メディアの表示制御 */
img,
picture,
iframe,
canvas,
video,
svg {
  display: block;
}
img,
picture {
  max-width: 100%;
}
svg {
  width: auto;
  height: auto;
}

/* フォーム要素の初期化 */
input,
button,
textarea,
select {
  font: inherit;
  border-radius: 0;
  background: #fff;
  appearance: none;
}
button {
  all: unset;
  cursor: pointer;
}

/* アンカー要素のスクロールマージン調整 */
:target {
  scroll-margin-block: 5ex;
}

/* テキスト要素の初期化 */
address {
  font-style: normal;
}

/* 表の初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: auto;
}
th,
td {
  padding: 0;
  font-weight: normal;
  text-align: inherit;
  vertical-align: top;
}

/* 特殊要素の初期化 */
sup {
  position: relative;
  top: -1.3em;
  font-size: 35%;
}
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

/*-------------------------------

slick

-------------------------------*/
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.slick-prev,
.slick-next {
  transform: unset !important;
}

/*-------------------------------

cf7

-------------------------------*/
.js-cf7-confirm-wrap {
  display: none;
}
.wpcf7-response-output {
  display: none !important;
}
.wpcf7-spinner {
  position: absolute !important;
}
.form__btn {
  display: block;
}
.form__btn:hover {
  cursor: pointer;
}
.form__btn--confirm {
  margin: 0 auto;
}
.form__btn-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
}
.wpcf7-list-item {
  margin: 0 !important;
}
.js-cf7-input-wrap :is(input, textarea) {
  padding: 10px;
}
.form__txt input,
.form__txt textarea,
.form__btn {
  border: none;
  background: none;
  font-weight: normal;
}
