@charset "UTF-8";


@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ====
    headre
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    color: #282828;

    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;

    font-family: 'Noto Sans JP', sans-serif, serif, YuMincho, 'Yu Mincho', YuGothic, 'Yu Gothic', "游ゴシック", "游ゴシック体", "ヒラギノ角ゴシック", "源ノ角ゴシック" ;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-style: normal;
    counter-reset: number 0;
    word-break: break-word;
}

/*  ==== レスポンシブ（1200以下） ==== ==== ==== */
@media screen and (max-width: 1200px) {
    body {
        font-size: 15px;
    }
}

/*  ==== IEの時のみ対応 ==== ==== ==== */
@media all and (-ms-high-contrast: none) {
    /* IEの時のみフォントをメイリオに変更する */
    *, *:before, *:after {
        font-family: "メイリオ", Meiryo, sans-serif;
        vertical-align: baseline;
    }
    h1, h2, h3, h4, h5, h6, p{
        font-family: "メイリオ", Meiryo, sans-serif;
    }
    body {
        font-family: "メイリオ", Meiryo, sans-serif;
    }
}



/* ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== 
    aタグ
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */
a:link {
    color: inherit;
    text-decoration: none;
    -webkit-transition: .15s ease-out;
    -moz-transition: .15s ease-out;
    -ms-transition: .15s ease-out;
    -o-transition: .15s ease-out;
    transition: .15s ease-out;
}
a:visited {
    color: inherit;
}
a:hover {
    color: inherit;
    opacity: .6;
    filter: alpha(opacity=80);
    -ms-filter: "alpha(opacity=80)";
}
a img {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    -ms-transition: opacity .2s ease;
    transition: opacity .2s ease;
}
a:hover img {
    opacity: .8;
    filter: alpha(opacity=80);
}

/* ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== 
    imgタグ
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */
img {
    max-width: 100%;
    height: auto;
}


/* ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== 
    display_pc display_sp
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */

/*  ==== レスポンシブ（1200以下） ==== ==== ==== */
@media screen and (min-width: 1201px) {
    .display_sp{
        display: none;
    }
}
/*  ==== レスポンシブ（1200以下） ==== ==== ==== */
@media screen and (max-width: 1200px) {
    .display_pc{
        display: none;
    }
}