@charset "utf-8";

/*======================================================
 * base.css (SP)
 *
 * 著作権：Copyright Japan System Techniques Co., Ltd. All Rights Reserved.
 * 会社名：日本システム技術株式会社
======================================================*/

/*======================================================
 * リセット
======================================================*/

* {
    -webkit-appearance: none;
}

html, body {
    margin: 0;
    padding: 0; 
    border: 0;
}

body {
    background: #ffffff;
    color: #000000;
    font-family: sans-serif;
    font-size: 13px !important;
    line-height:1.5;
    padding: 5px;
    word-wrap: break-word;
    -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

p {
    margin: 0.5em 0;
}

p img {
    float: left;
    margin: 0 10px 5px 0;
    padding: 0;
}

img {
    border: 0;
    max-width: 100%;
}

table {
    width: auto;
    border-collapse: collapse;
    border-spacing: 0;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 1em;
    margin-bottom: 5px;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*======================================================
 * Chrome対応
======================================================*/

/* inputがオートフィルされてると背景色が黄色になるのを回避 */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

