@charset "utf-8";

/*************************************************/
/*                                               */
/*                 単階層メニュー                */
/*                                               */
/*************************************************/

/* メニュー内のレイアウト */
#navMenu {
  position: absolute;
  width:100%;
  top: 50%;
/*
  top: 300px;
  right: 0;
*/
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
/*  text-align: right;*/
  line-height: 70px;
  letter-spacing: 0.5em;
}

/* 文字のサイズ、色、太さ、フォント */
#navMenu li a {
  font-size: 3.6rem;
  color: white;
  font-weight: normal;
  font-family: 'carnac';
/*  font-family: axia, sans-serif;*/
/*  font-family:"游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,sans-serif;*/
  text-decoration: none;
}

/* マスクの色と濃さ */
/* circle効果の場合は透明にする */
nav {
  background-color: rgba(0, 0, 0, 0.7);
}
