@charset "UTF-8";

/* ------------------------------------------- CSS Information
File Name:      default.css
Author:         Kotobuki co.,ltd.
Style Info:     ブラウザスタイルのリセットと基本設定
----------------------------------------------------------- */

/* ------------------------- Browser Default Initialization */
* {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img,abbr,acronym,fieldset {
    border: 0;
}

img {
    width: 100%;
    height: auto;
}

address,caption,cite,code,dfn,em,strong,th,var {
    font-style: normal;
    font-weight: normal;
}

li {
    list-style: none;
}

caption,th {
    text-align: left;
}

h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,q:after {
    content: '';
}

abbr,acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,textarea,select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

input,textarea,select {
    font-size: 100%;
}

object,embed {
    vertical-align: top;
}

hr {
    display: none;
}

.clearfix {
    clear: both;
}

.defs {
    display: none;
}


/* ----------------------- Basic Style */
/* ------------ Font Style */

html {
    font-size: 62.5%; /* 62.5%を指定すると「1.0 rem = 10px」 */
    background: #333;
}

body {
    line-height: 1;
    font-family: 'Noto Sans JP',sans-serif,'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
    background: #000;
    color: #333;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    font-size: 1.6rem;
}

/* ------------ A Style */

a {
    transition: .3s;
    color: #444;
    text-decoration: none;
    cursor: pointer;
}

a:hover,a:focus,a:active,a:visited {
    text-decoration: none;
    outline: none;
}