﻿@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,400);
@import url(../usr/font.css);
*,
*:before,
*:after {
    box-sizing: border-box;
}


/* ----全体設定---- */

.icon:before {
    display: inline-block;
    font-family: "myfont";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-width: 1024px;
    width: 100%;
    margin: 0;
    font-family: "Roboto","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS Gothic", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body input,
body textarea {
    font: 400 13.3333px Arial;
    font-family: 'Montserrat', sans-serif;
}


/* ----ヘッドライン---- */

h1,
.h1 {
    font: 700 20px/1 "Roboto", 'Montserrat', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS Gothic", sans-serif;
    letter-spacing: 0.1em;
}

h2 {
    font: 700 18px/1 "Roboto", 'Montserrat', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS Gothic", sans-serif;
    letter-spacing: 0.1em;
}

h3 {
    font: 700 14px/1 "Roboto", 'Montserrat', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS Gothic", sans-serif;
    letter-spacing: 0.1em;
}


/* ----リンク---- */

a {
    text-decoration: none;
    color: #444;
    padding-bottom: 8px;
    border-bottom: solid 1px transparent;
    transition: border-bottom 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

a:hover,
a:focus {
    text-decoration: none;
    color: #999;
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}


/* ----タグ---- */

img {
    max-width: 100%;
}

hr {
    border: 0;
    border-bottom: 1px dotted #ccc;
}