/* ==========================================================================
   1. 基本のリセット（Normalize.css をベースに簡略化）
========================================================================== */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, strong, em, small, ul, ol, li,
blockquote, pre, code, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
details, figcaption, figure, footer, header, menu, nav, section, summary {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: normal;
    font-style: normal;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

/* ==========================================================================
   2. ブラウザの標準スタイルをリセット
========================================================================== */
body {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #fff;
}

/* ==========================================================================
   3. タイポグラフィのリセット
========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   4. リストのリセット
========================================================================== */
ul, ol {
    list-style: none;
}

/* ==========================================================================
   5. 画像とメディア要素のリセット
========================================================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   6. フォーム要素のリセット
========================================================================== */
input, button, textarea, select {
    font: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ==========================================================================
   7. WordPress特有の要素のリセット
========================================================================== */
.alignleft {
    float: left;
    margin-right: 1em;
}

.alignright {
    float: right;
    margin-left: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption img {
    margin-bottom: 0.5em;
}

.wp-caption-text {
    font-size: 0.9em;
    color: #666;
}

/* ==========================================================================
   8. テーブルのリセット
========================================================================== */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 8px;
}

/* ==========================================================================
   9. ボックスモデルの統一
========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

a, a:link, a:visited, a:hover, a:active, a:focus {
    text-decoration: none;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    outline: none;
    cursor: pointer;
}

/* wordpress テーマスタイルリセット */
.kyupro-single-title {
    color: #f60;
    font-weight: bolder;
    text-align: center;
    font-size: 3em;
    margin: 30px auto;
}
@media (max-width: 1000px) {
    .kyupro-single-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .kyupro-single-title {
        font-size: 1.5em;
    }
}
