body {
	    	/*背景をノートの罫線っぽく*/
	      /*http://lea.verou.me/css3patterns/#lined-paper*/
	    	margin: 0 0 0 8px;
	      background-image:
	      linear-gradient(90deg, transparent 48px, #abced4 48px, #abced4 50px, transparent 50px),
	      linear-gradient(#eee .1em, transparent .1em);
	      background-size: 100% 1.2em;
}


/* ヘッダーエリア */

/* ヘッダーエリアのレイアウト*/
div#headerArea {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 2;
    background-color: #000000;
    color: #ECF1EB;
}
div#headerArea h1 {
    width:100%;
    /*padding:5px;*/
    font-size:24px;
    line-height:1.5em;
    text-align: center;
}
/* タイトル */
#headerTitle {
  /*高さを中央に揃える*/
  position: relative;
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}
/* メニューボタン */
#menubtn {
	padding: 8px 12px;
	border: solid 1px #ECF1EB;
	border-radius: 3px;
	background-color: #ECF1EB;
	position: absolute;
	top: 6px;
	right: 6px;
	cursor: pointer;
}
#menubtn:hover {
	background-color: #767B75;
	border: solid 1px #767B75;
}
#menubtn:focus {
	outline: none;
}
#menubtn i {
	color: #000000;
	font-size: 18px;
}
#menubtn span {
	display: inline-block;
	text-indent: -9999px;
}
/* メニュー（縦並び） */
#headerMenu {
	display: none;
	position: absolute;
	z-index: 1;
	right: 0%;
	width: 70%;
	}
#headerMenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #333333;
}
#headerMenu li a{
	display: block;
	padding: 10px;
	color: #f8f4e6;
	font-size: 20px;
	white-space: nowrap;
	text-decoration: none;
}
#headerMenu li a:hover {
	color: #333333;
	background-color: #f8f4e6;
}

/* コンテンツエリア */
/* コンテンツエリアのレイアウト */
div#contentsArea {
    padding: 48px 0 0 0;
}

/*css boxAに対してのclearfixクリアフィクス*/
.boxA:after	{
	content: "";
	display: block;
	clear: both;
}
.adjust-box {
  position: relative;
  float: left;
  width: 33%;
  height: auto;
}
.box-1x1 {
  position: relative;
  float: left;
  width: 33%;
  height: auto;
}
.box-1x1:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.inner {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
	background: #ffffcc;
  -webkit-box-shadow: 0 5px 3px -3px #777;
 	-moz-box-shadow: 0 5px 3px -3px #777;
  box-shadow: 0 5px 3px -3px #777;
}
.inner h1 {
  text-align: center;
	margin-top: 0.5em;
  margin-bottom: 0;
  font-size:10vw;
  line-height:1.25em;
	font-family: 'Coming Soon', cursive;
}
.inner p {
  text-align: center;
  margin-top: 0;
	margin-bottom: 0.5em;
  font-size: 2vw;
  line-height: 1em;
}
span#nanikara {
	font-size: 3vw;
	line-height: 1em;
}

/* その他 */

/*datepickerの年/月選択をコンパクトに*/
select.ui-datepicker-year, select.ui-datepicker-month{
  padding:3px 0 !important;
  margin-right:5px !important;
  width: auto !important;
}

/* 「あれから」追加ボタン */
#addArekara {
  position: fixed;;
  bottom: 20px;
  right: 20px;
  margin: 0;
  width: 72px;
  height: 72px;
  background-color: #ECF1EB;
  border-radius: 100px;
  text-align: center;
  display: block;
	box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.8);
}
#addArekara:hover {
  background-color: #767B75;
}
#addArekara i {
  padding-top: 16px;
  font-size: 36px;
}
