@charset "utf-8";
/* CSS Document */
* {
	padding: 0;
	margin: 0;
}
body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 16px;
	line-height: 24px;
	color: #333;
	background-image: url("../img/bg.png");
	background-repeat: repeat;
}
a:link,
a:visited {
	color: #06C;
}
#header {
	width: 100%;
	height: 132px;
	border-bottom: solid 2px #FF97CA;
	position: fixed;
	left: 0;
	top: 0;
	background: url("../img/header_bg.png") no-repeat center center #FFF;
	z-index: 10000;
}
	#header .box {
		position: relative;
		height: 134px;
	}
	#logo {
		display: block;
		width: calc(569px / 2);
		height: calc(202px / 2);
		background: url("../img/logo_nobg.png") no-repeat left top;
		background-size: contain;
		position: absolute;
		left: 0;
		top: 10px;
	}
		#logo span {
			display: none;
		}
	#open_info {
		width: 320px;
		height: 100%;
		position: absolute;
		right: 10px;
		top: 20px;
	}
		#open_last {
			box-sizing: border-box;
			font-size: 20px;
			height: 40px;
			line-height: 36px;
			background-color: #FFF;
			text-align: center;
			font-weight: bold;
			color: #FF97CA;
			border: solid 2px #FF97CA;
			border-radius: 20px;
			margin-bottom: 10px;
		}
		#contact_now {
			display: block;
			height: 40px;
			line-height: 40px;
			text-align: center;
			background-color: #38B1FF;
			color: #FFF;
			text-decoration: none;
			font-weight: bold;
			border-radius: 20px;
		}
	#menu {
		height: auto;
		background-color: #FFF4F9;
	}
		#menu .box {
			display: flex;
			height: auto;
			flex-wrap: wrap;
		}
			#menu .box a {
				box-sizing: border-box;
				display: block;
				flex: 1 1 192px;
				min-width: 192px;
				height: 50px;
				line-height: 50px;
				text-align: center;
				text-decoration: none;
				background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 218, 235, 1) 100%);
				border: solid 1px #DDD;
				border-top-color: #FFF;
				border-left-color: #FFF;
				color: #FF499D;
				font-weight: bold;
			}
#wrapper {
	box-sizing: border-box;
	max-width: 960px;
	margin: 0 auto;
	background-color: #FFF;
	padding: 20px;
}
#copyright {
	box-sizing: border-box;
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
	background-color: #FFF4F9;
	color: #999;
	height: 40px;
	line-height: 40px;
}
.box {
	max-width: 960px;
	margin: 0 auto;
}

.heading {
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	font-weight: bold;
}

.content {
	padding: 20px;
	margin-bottom: 20px;
}

.button {
	display: block;
	width: 200px;
	height: 40px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	color: #FFF !important;
	background-color: #FF499D;
	border: none !important;
	border-radius: 5px;
}

/* text */
.text_pink {
	color: #FF499D;
}
.text_blue {
	color: #38B1FF;
}

/* bg */
.bg_pink {
	background-color: #FFF4F9;
}
.bg_blue {
	background-color: #E8FAFF;
}


.clear {
	clear: both;
	height: 0;
	line-height: 0;
	visibility: hidden;
}