﻿* { 
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; /* remember: box-sizing is not supported by IE7 :( */ 
    outline: none; 
    vertical-align: top;
    margin: 0;
    padding: 0;
}
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html{ 
    width: 100%; 
    z-index: 1;
}
html,body{ 
    font-family: 'Open Sans', sans-serif;
    font: normal 1em/2em; 
    margin: 0; 
    padding: 0; 
    width: 100%;
    height: 100%;
    color: #111; 
    background: #fefefe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
blockquote,body,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{
    margin:0;
    padding:0;
}
p{
    font-size: 0.9em;
    line-height: 1.6em;
    letter-spacing: .1em;
    margin: 0;
    padding: 0;
    font-weight:
    normal;
}
a{
    letter-spacing: .1em;
    color: inherit;
    outline: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}
a,img,input[type="submiit"],.fa,a:after,a:before{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a,p,h1,h2,h3,h4,h5{
    display: block;
    position: relative;
    letter-spacing: .1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}
input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.clearfix:before,.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}
.pc{
    display: block;
}
.tb{
    display: none;
}
.sp{
    display: none;
}
.pc-tb{
	display: block;
}
.tb-sp{
	display: none;
}
.invisible{
    opacity: 0;
}
.visible{
    opacity: 1;
}
.hide{
    display: none;
}
/* 
矢印右側
:after{
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    color: #fff;
}
*/


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

.white {
  color: white;
}
.black {
  color: black;
}
.italic {
  font-style: italic;
}