@charset "UTF-8";

html {
    /* iphone横向きで文字サイズを変えない */
    -webkit-text-size-adjust: 100%;
    /*右に余白ができてスクロールバーが出るのを阻止 */
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /*  font-family: "游ゴシック", "Yu Gothic", "YuGothic", "Yu Mincho", "YuMincho", sans-selif;*/
}

/* デフォルトで、一部のブラウザは親から font-family や font-size を継承しません。 */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
}

button,
input[type="submit"],
input[type="button"] {
    cursor: pointer;
}
