@charset "UTF-8";
/* =========================================================
   Modern Reset
   ---------------------------------------------------------
   ・ブラウザ差の吸収
   ・可読性を壊さない
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
/* -----------------------------------------
   Typography
----------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}
/* -----------------------------------------
   Lists
----------------------------------------- */
ul,
ol {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
/* -----------------------------------------
   Media
----------------------------------------- */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
/* -----------------------------------------
   Form
----------------------------------------- */
input,
button,
textarea,
select {
    font: inherit;
}
/* -----------------------------------------
   Links
----------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}
/* -----------------------------------------
   Text Wrapping Normalize
----------------------------------------- */
body {
    white-space: normal;
}
p,
div,
span,
li,
dt,
dd {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}
/* flex レイアウト内で折り返しを有効にするため */
* {
    min-width: 0;
}
hr {
    border-top: 1px solid #ebebeb;
}