h2 {
	display: block;
	font-size: 2em;
	margin-top: 0.67em;
	margin-bottom: 0.67em;
	margin-left: 0;
	margin-right: 0;
	/* font-weight: bold; */
}
/* h2 {
	display: block;
	font-size: 1.5em;
	margin-top: 0.83em;
	margin-bottom: 0.83em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
} */

/*-------------------------------------------
header
-------------------------------------------*/
#header {
	width: 100%;
	height: 50px;
	background: #fff;
	padding: 20px 50px;
    /* position: fixed; */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
	display: flex;                   /* h1とnavを横並びに配置します */
	justify-content: space-between;  /* 両端にそろえます */
	align-items: center;             /* 高さを中央でそろえます */
	z-index: 1000;
}
#header ul {
	display: flex;                   /* liタグ（メニュー）を横並びに配置します */
	padding: 10px 0;
}
#header li {
	margin-left: 30px;
}
#header li a {
	color: #24292e;
}
#header li a:hover {
	opacity: 0.7;                    /* メニューにマウスをのせた際に少し透過します。 */
}

/*-------------------------------------------
main
-------------------------------------------*/



/* hero */
#hero {
	background: linear-gradient(to bottom, rgba(241, 233, 158, 0.15), rgba(241, 233, 158, 0.0));
	height: calc(100vh - 50px);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero-bg {
	-webkit-transform: translateX(-50%);
	left: 50%;
	max-height: initial;
	max-width: initial;
	min-height: 100vh;
	min-width: 100%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}
.hero-content {
	width: 100%;
	padding: 0 24px;
	top: 80%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	text-align: center;
	z-index: 2;
	color: #fff;
	text-shadow: rgba(0, 0, 0, 1) 0px 54px 255px, rgba(0, 0, 0, 0.92) 0px -12px 130px, rgba(0, 0, 0, 0.82) 0px 4px 46px, rgba(0, 0, 0, 0.77) 0px 12px 43px, rgba(0, 0, 0, 0.99) 0px -3px 25px;
	/* text-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
	z-index: 2;
}

.hero-title {
	font-size: 42px;
	font-weight: 700;
	/* box-shadow: 0 0 8px gray; */
	/* text-shadow: 0 0 20px #333; */
}

/* about */
#about {
	/* font-size: 0.5rem; */
	padding: 100px;
	text-align: center;
	background-color: #fff;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
	font-size: 0.5rem;
	padding: 10px 0;
	text-align: center;
	background-color: #fff;
}