@charset "UTF-8";

/*===============================

COMMON

================================*/

*::after,
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow: auto;
    font-size: 62.5%;
    /* 1rem=10px*/
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    font-weight: 400;
    font-size: 1.4rem;
    /* 14px*/
    line-height: 2.0;
    color: #191c1f;
    overflow: hidden;
    position: relative;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    letter-spacing: 0.05rem;
}

h1 {
    font-size: 4.8rem;
    line-height: 1.5;
    letter-spacing: 0.05rem;
    font-weight: bold;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.5;
    letter-spacing: 0.03rem;
    font-weight: bold;
}

h3 {
    font-size: 2.0rem;
    line-height: 1.5;
    font-weight: bold;
}

@media screen and (max-width:560px) {

    body {
        font-size: 1.4rem;
    }

    h1 {
        font-size: 3.0rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    h3 {
        font-size: 1.8rem;
        /* 18px*/
    }
}

img {
    vertical-align: text-bottom;
    -ms-interpolation-mode: bicubic;
}

strong {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    /*    border-collapse: separate;*/
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    /* text-align: left; */
    vertical-align: top;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "";
}

option {
    padding-right: 10px;
}


/* ------------------------------
    HTML5 ELEMENTS
------------------------------ */

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


/*項目に・を付けないための記載*/

li,
a,
p,
ol {
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    list-style: none;
}

ul {
    list-style: none;
}


/*リンクされた文字*/

a {
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}


/*未訪問のリンク*/

a:link {
    color: #191c1f;
}


/*訪問後のリンク*/

a:visited {
    color: #191c1f;
    text-decoration: underline;
}


/* ホバー */

a:hover {
    opacity: 0.7;
    text-decoration: none;
}


/* クリック中 */

a:active {
    text-decoration: none;
}