/**
 * @author sara
 * Copyright (c) 2020 sara Co., Ltd.
 * All rights reserved.
 */

/* リセット
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body , html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}
body{
    margin:0;
    padding:0;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ol,ul,li{margin:0;padding:0;}
ul{list-style: none}
.clearfix:after	{
    height: 0;
    visibility: hidden;
    content: ".";
    display: block;
    clear: both;
}

img{
    max-width: 100%;
    height: auto;
    display:block;
}
img[src$=".svg"] {
    width: 100%;
}

a:link { color: #000;text-decoration: none; }
a:visited { color: #000;text-decoration: none; }
a:hover {
    color: #000; text-decoration: none;
    cursor: pointer;
}
a:active { color: #000; text-decoration: none;}

input[type="checkbox"]{display: none}


.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .45);
    overflow: hidden;
    overflow-y: auto; /* scrollにはしないことでスクロールの必要がないときはスクロールバーを表示させない */
    -webkit-overflow-scrolling: touch;
}
