﻿/*
'---*******************************************************************************************
'---	base.css
'
'	【内容】
'		基準CSS
'
'
'	【バージョン履歴】
'		ver.1.0.0			：2018/01/11	：里見		：リリース
'
'
'
'---*******************************************************************************************
*/

/* 基本CSS */



  /* 要素の初期化 */
  * {
    /* マージン・パディングをリセットした方がデザインしやすい */
    margin: 0;
    padding: 0;
    /* デフォルトのフォント */
    color: #fff;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,
      sans-serif;
    font-size: 11pt;
    font-weight: normal;
  }  
  
  /* 背景 */
    body {
      background: #fff;
      
    }  
    
    
    
    
    
@media (min-width: 10000px) {
	/* 960px以上*/

    /* PC向けのものを記述 */
    
	html:before,
	html:after,
	body:before,
	body:after {
	  content: "";
	  background: #49c869;
	  position: fixed;
	  display: block;
	  z-index: 1;
	}

	/* 上 */
	html:before {
	  height: 30px; 
	  width: 120vw;
	  left: 0;
	  top: 0;
	}

	/* 右 */
	html:after {
	  width: 30px;
	  height: 120vh;
	  right: 0;
	  top: 0;
	}

	/* 下 */
	body:before {
	  height: 30px;
	  width: 120vw;
	  bottom: 0;
	  left: 0;
	}

	/* 左 */
	body:after {
	  width: 30px;
	  height: 120vh;
	  top: 0;
	  left: 0;
	}    


}