@charset "UTF-8";

/*====================================

    ----------------------------------
        Break point
    ----------------------------------

    600px

    ----------------------------------
        Color
    ----------------------------------

    Main     : #ffdc00
    Accent   : #141414
    font     : #333

    ----------------------------------
        font
    ----------------------------------

    "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif


====================================*/



/*===============================

全ページ共通

================================*/


* {}

*::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: normal;
    font-size: 1.4rem;
    /* 14px*/
    line-height: 2;
    color: #333;
    overflow: hidden;
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}

h1 {
    font-size: 36px;
    /* IE8以下とAndroid4.3以下用フォールバック */
    font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
    /* 24px~36pxで可変*/
    line-height: 1.5;
    font-weight: bold;
}

h2 {
    font-size: 24px;
    /* IE8以下とAndroid4.3以下用フォールバック */
    font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
    /* 20px~24pxで可変*/
    line-height: 1.5;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    /* IE8以下とAndroid4.3以下用フォールバック */
    font-size: calc(1.8rem + ((1vw - 0.64rem) * 0.7143));
    /* 18px~20pxで可変*/
    line-height: 1.5;
    font-weight: bold;
}

@media (min-width: 960px) {

    /*画面幅が960px以上の時*/
    h1 {
        font-size: 3.6rem;
        /* 36px*/
    }

    h2 {
        font-size: 2.4rem;
        /* 24px*/
    }

    h3 {
        font-size: 2.0rem;
        /* 24px*/
    }
}

@media screen and (max-width:600px) {

    /*画面幅が600pxまでの時*/
    body {
        line-height: 2;
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2.4rem;
        /* 24px*/
    }

    h2 {
        font-size: 2rem;
        /* 20px*/
    }

    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: #333;
}


/*訪問後のリンク*/

a:visited {
    color: #333;
    text-decoration: underline;
}


/* ホバー */

a:hover {
    opacity: 0.7;
    text-decoration: none;
}


/* クリック中 */

a:active {
    text-decoration: none;
}
