@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html,
body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

ol,
ul {
    list-style: none;
}

ul,
ol,
li {
    list-style-type: none;
    padding: 0;
}

dl,
dt,
dd {
    margin: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*画像*/

img {
    width: 100%;
    height: auto;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/*アンカー*/

a {
    outline: none;
    text-decoration: none;
}

a img {
    outline: none;
    border: 0;
}

:focus {
    outline: 0;
}

/*フォーム*/

input,
textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-width: 0;
}

::-webkit-input-placeholder {
    color: #999;
}

::-moz-placeholder {
    color: #999;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #999;
}

/*iOS用にスタイルをリセット*/

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/******************************************************************************
*
* [共通]コンテンツ
*
******************************************************************************/

.wrap {
    max-width: 960px;
    margin: 50px auto;
}

.wrap section:last-child {
    margin-top: 50px;
}

h1 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    margin: 0 0 50px;
    color: #333;
}

/*テーブル*/

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: auto;
    box-sizing: border-box;
    width: 100%;
    line-height: 1.5;
}

th,
td {
    border: solid 1px #999;
    padding: 18px 15px;
    font-size: 14px;
    vertical-align: middle;
}

th {
    width: 20%;
    background: #ddd;
    color: #666;
    font-weight: bold;
}

td {
    width: 80%;
    color: #333;
    background: #fff;
}

/*箇条書きリスト*/

ol {
    font-size: 14px;
    line-height: 1.5;
    counter-reset: item;
    list-style-type: none;
    padding-left: 1em;
}

ol ol {
    padding-left: 1em;
}

ol li {
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 5px;
}

ol li:before {
    counter-increment: item;
    content: '('counter(item)')';
    margin-right: 3px;
}

/*900px以下*/

@media only screen and (max-width: 960px) {
    .wrap {
        width: 94%;
    }

    h1 {
        font-size: 20px;
    }

    th,
    td {
        font-size: 12px;
    }

    th {
        width: 35%;
    }

    td {
        width: 65%;
    }

    ol {
        font-size: 12px;
    }

}
