@charset "utf-8";

body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
	position: relative;
}
/*---------------------- reset ------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-weight:normal;
}
a {
	text-decoration: none;
}
ul,
li {
    list-style-type: none;
	margin:0;
	padding:0;
}

ul img {
    vertical-align: top;
}

img {
    border: none;
    border: 0;
}

.floatR {
    float: right;
}
.floatL {
    float: left;
}

.*{
	box-sizing: border-box;
}

.clear {
    clear: both;
}

.clearfix {
    width: 100%;
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.flex {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.flexSb{
    justify-content: space-between;
}
.flexStart {
    justify-content: flex-start;
}
.flexEnd {
    justify-content: flex-end;
}
.flexCenter {
    justify-content: center;
}
.flexWrap {
    flex-wrap: wrap;
}