@charset "utf-8";

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

article, aside, details, figcaption, figure, footer, header,
hgroup, menu, nav, section { display: block; }

/* img */
img,
    /*box*/
div, p, blockquote,
    /* heading */
h1, h2, h3, h4, h5, h6,
    /* list */
ul, ol, li, dl, dt, dd,
    /* form */
form, fieldset,
    /* address */
address,
    /* html5 */
article, aside, dialog, figure, footer, header, hgroup, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    list-style-type: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* html5 */
article, aside, dialog, figure, footer, header, hgroup, nav, section {
    display: block;
}
/* table */
table, th, td {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0;
    margin: 0;
}
th {
    text-align: left;
    font-weight: normal;
    vertical-align: top;
}
caption {
    text-align: left;
}


/*-----------------------------------------------
独自追加部分開始
-----------------------------------------------*/

/*
余計な隙間・ボーダーの削除
半角文字も改行可能にする
フォントサイズの初期設定（html62.5%に対する1.2remなので、12px）
タップ時の色を消す
ベースラインを揃える
背景を透過と明示する
iOSでの文字サイズの自動変更バグを改善する
*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    word-wrap: break-word;
    vertical-align: baseline;
    background: transparent;
    -webkit-text-size-adjust: 100%;
}

/*画像のverticalalignの変更*/
img{
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

/*
文字サイズ12px
行の高さ1.75倍=21px
フォントの指定
*/
html { font-size: 62.5%; }

/*andoroid4.2のテキストが折り返される問題の解消*/
p{
    background-image: url(https://lord-inc.com/wp-content/themes/new/img/s.png);
}

ul, ol { list-style: none; }

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix { zoom: 1; }

/* リンク基本設定 */
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    background: transparent;
    text-decoration: none;
    outline: none;
}

a:link {
    color: #002869;
    outline: none;
}

a:visited {
    color: #002869;
    outline: none;
}

a:hover {
    color: #002869;
    outline: none;
}

a:active {
    color: #002869;
    outline: none;
}
input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea {
    outline: none;
    border: 1px solid #aaa;
    -webkit-transition: all .3s;
    transition: all .3s;
}
input[type="text"]:focus {
    outline: 0;
    border-color: orange;
}