@charset "UTF-8";

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

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: 100vh;
  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%;
  height: auto;
}

svg {
  width: auto;
  height: auto;
}

/* フォーム要素の初期化 */
input:is(
    [type="text"],
    [type="email"],
    [type="tel"],
    [type="number"],
    [type="url"],
    [type="search"],
    [type="password"],
    [type="button"],
    [type="submit"],

  ),
button,
textarea,
select {
  font-family: 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: -0.5em;
  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;
}
.js-cf7-wrap .btn {
  display: block;
  border-radius: 0;
  border: none;
  background: none;
  font-weight: normal;
}
.js-cf7-wrap .btn:hover {
  cursor: pointer;
}
.js-cf7-wrap .btn--confirm {
  margin: 0 auto;
}
.js-cf7-wrap .btn-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  width: fit-content;
}
.js-cf7-wrap .wpcf7-list-item {
  margin: 0 !important;
}
.js-cf7-wrap
  .item__txt
  :is(
    input:is(
        [type="text"],
        [type="email"],
        [type="tel"],
        [type="number"],
        [type="url"],
        [type="search"],
        [type="password"]
      ),
    textarea
  ) {
  padding: 10px;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-weight: normal;
  outline: none;
  border-radius: 0;
}

@media (max-width: 768px) {
  .js-cf7-wrap .btn-wrap {
    display: block;
  }
  .js-cf7-wrap .btn-wrap > * + * {
    margin-top: 20px;
  }
}
