@charset "utf-8";

/* Default Style */
body {
	background-color: #ffffff;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif; /*全体の書体を指定する*/
	font-weight: 500;
	font-size: 1.6rem; /*全体のフォントサイズは16pxとする*/
	color:#000000;
}

/* Default Link Style */
a {
	text-decoration: none;
	color: inherit;
	transition: 0.2s;
}

a:hover {
	opacity: .8;
}

/* common */
#wrapper {
	position: relative;
	width: 100%;	/*全ての要素を包括する<div id"wrapper">の幅を画面幅に設定する*/
}

/* header ---------------------------------------- */
/* ヘッダー */
header {
	width: 100%;
}

.header-inner {
	width: 100%;
	max-width: 724px;
}

/* footer ---------------------------------------- */
footer {
	width: 100%;
}

#footer-inner {
	position: relative;
	width: 100%;
	max-width: 724px;
	margin: 0 auto;
}

/* ページトップへ */
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
	width: 50px;
	height: 50px;
	background-color: #231815;
	border:1px solid #cccccc;
	text-align: center;
	line-height: 48px;
	font-size: 30px;
	color: #FFFFFF;
	cursor: pointer;
}

#page-top span {
	display: none;
}

/* ----------------------------------------
 inner-box コンテンツ幅一括指定
 ---------------------------------------- */
.inner-box {
	position: relative;
	width: 100%;
	max-width: 724px;
	margin-left: auto;
	margin-right: auto;
}

/* ================================================ */
@media (max-width: 640px) {
}

/* ================================================ */
@media (max-width: 480px) {
}