@charset "UTF-8";

/*!
 * MUNI KYOTO - Reset Styles
 * 役割：ブラウザデフォルトスタイルのリセット
 * 依存：なし
 *
 * @package MuniKyoto
 */

/* 依存ファイルは functions.php の wp_enqueue_style() で管理する。
   @import は使用しない。 */

/* ================================================== 
   ボックスモデル
================================================== */

*,
*::before,
*::after {
   box-sizing: border-box;
}

/* ================================================== 
   余白リセット
================================================== */

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;
}

/* ================================================== 
   メディア
================================================== */

img,
video {
   max-width: 100%;
   height: auto;
   display: block;
}

/* ================================================== 
   フォーム
================================================== */

button,
input,
select,
textarea {
   font: inherit;
   border: none;
   background: transparent;
   color: inherit;
   padding: 0;
   margin: 0;
}

/* ================================================== 
   HTML5 セマンティック要素
================================================== */

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
   display: block;
}

/* ================================================== 
   テキストサイズ調整（iOS）
================================================== */

html {
   -webkit-text-size-adjust: 100%;
}