@charset "utf-8";

/* reset.css */
/* -----------------------------------
   基本のボックスモデル
----------------------------------- */
*,
*::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;
}

.row>label {
  margin-block: 0;
}

p a {
  color: inherit;
}

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

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

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

video {
  border-radius: inherit;
  width: 100%;
}

svg {
  border-radius: inherit;
  width: 100%;
  height: auto;
}

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

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

/* -----------------------------------
   ※ベース※
----------------------------------- */
html {
  /* ===== SP（デフォルト） ===== */
  font-size: clamp(13px, 16 / 375 * 100vw, 16px);
  /* ===== タブレット以上 ===== */
}

@media screen and (min-width: 768px) {
  html {
    font-size: clamp(13px, 16 / 1280 * 100vw, 16px);
  }
}

html {
  /* ===== PC以上（pc-inner-sum 以上では clamp の上限に収束） ===== */
}

body {
  color: #2C2C2C;
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
}

/* reset.css ここまで */