@charset "utf-8";

/* -----------------------------------
   基本のボックスモデル
----------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* -----------------------------------
   要素共通の初期化
----------------------------------- */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure,
figcaption,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* -----------------------------------
   ブロック系要素の表示修正
----------------------------------- */
header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

/* -----------------------------------
   リスト系の初期化
----------------------------------- */
ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

/* -----------------------------------
   画像要素
----------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

/* -----------------------------------
   ボタン初期化
----------------------------------- */
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
}

/* -----------------------------------
   フォーム要素の初期化
----------------------------------- */
input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* -----------------------------------
   基本の行間
----------------------------------- */
html {
  line-height: 1;
}

/* -----------------------------------
   sibloo専用
----------------------------------- */
.col-md-4,
.col-md-6,
.col-md-8 {
  -ms-flex-preferred-size: auto !important;
      flex-basis: auto !important;
}

.container,
.col-md-4,
.col-md-6,
.col-md-8 {
  padding-left: 0;
  padding-right: 0;
}

.row {
  margin-inline: 0;
}

 label {
  margin-block: 0;
}

/* -----------------------------------
   ※以下カスタマイズしやすいスタイル※
----------------------------------- */
/* スタイルを当てやすいように調整 */
picture,
img,
a,
span {
  display: inline-block;
}

/* リンクの初期化（必要なら調整） */
a {
  color: inherit;
  text-decoration: none;
}

/* メディア要素の100%表示（必要に応じて調整） */
video,
img,
svg {
  width: 100%;
  height: auto;
}

/* ボタンの初期化（プロジェクトに応じて拡張可能） */
button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

/* フォーム要素の初期化（必要に応じて） */
input,
textarea,
select {
  font: inherit;
}
