@charset "UTF-8";
/* ------------------------------------------
  reset  - Eric Meyer's Reset CSS 2.0
------------------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-style: normal;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    /* border-collapse: separate; */
    border-spacing: 0;
}
h1, h2, h3, h4, h5, h6{
}
img {
    max-width: 100%;
}
img.w100 {
    width: 100%;
}

/* ------------------------------------------
  link
------------------------------------------ */
/*
a{-moz-outline-style:none;color: #299dd4;transition: .3s;}
a:link,a:visited,a:hover,a:active {text-decoration:none;}
a:hover,a:active {opacity:0.8}
*/
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    color: #0056b3;
}

/* ------------------------------------------
  font
------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html{
    font-size: 62.5%;
}
@media (min-width: 1280px) {
}
@media (min-width: 768px) and (max-width: 1279px) {
}
@media (max-width: 767px) {
}
body{
    background-color: #fff;
    font-family: 'Roboto', YakuHanJP_Noto, 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/*---IE（游ゴシックが上にずれるため修正）---*/
@media screen\0 {
    body{
        font-family: 'Roboto', YakuHanJP_Noto, 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    }
}

/* common style*/
@media (min-width: 1200px){
    .container {
        max-width: 1280px;
        margin: 0 auto;
    }
}
.aright{
	text-align:right;
}

.fright{
	float:right;
	margin-left:10px;
}

.fleft{
	float:left;
	margin-right:10px;
}

.clr{
	clear:both;
}
/* - ClearFix ------------------------------------------------------ */
.clrFix:after { clear: both; height: 0; font-size: 0; visibility: hidden; display: block; content: "."; }
.clrFix {display:inline-table; }
/* Hides from IE-mac \*/
* html .clrFix {height:1%;}
.clrFix {display:block;}