@charset "utf-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;/*borderみたいなもの*/
    font-size:100%; /*親要素からフォントサイズ継承、見出し等のサイズそろえる*/
    vertical-align:baseline; /*ベースラインを親要素のベースラインに揃える*/
    background:transparent; /*インラインフレームの背景を透過、IEでは白色になってしまうため*/
    box-sizing: border-box;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {list-style:none;}

blockquote, q { /*転載引用であること*/
    quotes:none; /*引用符の挿入を指定しても表示しない*/
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    color: #333333;
}

/* change colours to suit your needs*/
ins {/*追記*/
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}/*アンダーラインを消して背景に色をつける*/

del {
    text-decoration: line-through;/*打ち消し線を設定*/
}

mark {/*文章のハイライト*/
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}/*デフォは背景が黄色→背景色、イタリック、太字設定*/


abbr[title]/*略語、頭文字*/, dfn[title] /*定義部*/{
    border-bottom:1px dotted;
    cursor:help;/*オンマウスでカーソルが？になる*/
}

table {
    border-collapse:collapse;/*隣接するセルのボーダーを重ねて表示*/
    border-spacing:0;/*セルのボーダーの間隔*/
}

/* change border colour to suit your needs */
hr {/*水平の横線を引くためのタグ*/
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;/*中央揃え*/
}

/*original set*/
body {
    line-height:1.8; /*行の高さ揃える、単位は指定しない*/
    color: #323232;
    font-family: 'Open Sans', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 1px;
    
}

main{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*paddingの計算方法*/
}
img{
    display: block;
    width:100%;
    max-width: 100%;
    height: auto;
}
ul{
    list-style: none;
}
h1,h2,h3,h4,h5,h6{font-weight: normal;}



.pc{display: block;}
.sp{display: none;}
@media screen and (max-width: 768px){
    .pc{display: none;}
    .sp{display: block;}
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;}


/*--------------------------------------------------------------------------
 Aimation
---------------------------------------------------------------------------*/
  /*----- フェードイン-----*/
.fadein /* 画面外にいる状態 */{
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 900ms;
    }
.fadein.scrollin /* 画面内に入った状態 */{
    opacity : 1;
    transform : translate(0, 0);
    }
/*----- フェードイン-----*/

