@charset "UTF-8";
/* 基本設定: フォントサイズ */
html {font-size: 18px}

@media screen and (min-width:769px){
  /* PC 769px以上 */
  html {
    font-size: 18px; 
    
  }
}
@media screen and (max-width:768px){
  /* タブレット 768px以下 */
  html {
    font-size: 14px;
  
  }
}
@media screen and  (max-width:480px){
  /* スマートフォン 480px以下 */
  html {
    font-size: 12px;
    
  }
}

body {

  background-color: #fbfbfb;
  margin: 40px;   /* 外側の余白を40pxにする */
  padding: 0;      /* 内側の余白を消す(念のため) */
  
}



.flex-center{
   display: table;
   margin: 0 auto;
}

display: table;
  margin: 0 auto;

table{
 border-collapse: collapse;

}

td,th{ 

 border:1px solid #b7b7b7;
 padding: 2px 10px;
}
h1{
 
    line-height: 1.0;
}

h2{
   
    line-height: 1.0;
}

h3{
    
    line-height: 1.0;
}

h4{
    
    line-height: 1.0;
}

p{
   
    line-height: 1.2;
}

a {
    color:#202020;
}
a:hover {
    color:#202020;
    opacity: 0.5;
}