body {
	background: linear-gradient(to top, rgba(217, 175, 217, 0.7) 0%, rgba(151, 217, 225, 0.7) 100%), url(/img/bg/index.jpg);
	/* 背景画像指定 */
	background-repeat: no-repeat;
	/* 背景の繰り返し設定 */
	background-position: center;
	/* 背景の位置指定 */
}

header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 10000;
}


#global-nav {
	background-color: #ffff99;
	width: 100%;
	vertical-align: top;
}


/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
	/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 1rem 4rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #212529;
	border-radius: 0.5rem;
}

a.btn-border {
	border: 3px solid #000;
	border-radius: 0;
	background: #fff;
}

a.btn-border:before {
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	content: '';
	-webkit-transition: all .3s;
	transition: all .3s;
	border: 1px solid #000;
}

a.btn-border:hover:before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
}

.container {
	font-family: arial;
	font-size: 24px;
	width: 100%;
	/* 子要素を水平方向の中央に配置する */
	display: flex;
	justify-content: center;
	padding-top: 90px;
}

.child {
	width: 650px;
	background-color: #eeeeee;
	border-radius: 10px;
}

.child_02 {
	display: flex;
	justify-content: center;
	background-color: #eeeeee;
	border-radius: 10px;
}

.container_02 {
	font-family: arial;
	font-size: 24px;
	width: 100%;
	/* 子要素を水平方向の中央に配置する */
	display: flex;
	justify-content: center;
	padding-top: 10px;
}