/* Slick Slider用リセット調整 */
.slick-slider, .slick-list, .slick-track {
  box-sizing: border-box;
}
.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
}
.slick-slide img {
  display: block;
  max-width: 100%;
  height: auto;
}
.slick-initialized .slick-slide {
  display: block;
}
/* =====================================
   Reset Stylesheet for MUNI KYOTO Theme
===================================== */

/* Box sizing: border-box 全体適用 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* HTML要素の余白リセット */
body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd, figure,
blockquote, fieldset, legend {
  margin: 0;
  padding: 0;
}

/* リストマーカー削除 */
ul, ol {
  list-style: none;
}

/* リンクの初期スタイル */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像の挙動初期化 */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ボタン & インプット */
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0;
}

/* HTML5要素のデフォルト調整 */
article, aside, details, figcaption, figure,
footer, header, main, nav, section {
  display: block;
}

/* スクロール調整（SP表示時の揺れ防止など） */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* 強調要素の初期化 */
strong {
  font-weight: normal;
}

/* フォームフォーカスの輪郭制御（好みに応じて） */
:focus {
  outline: none;
}