@charset "UTF-8";
/*
	./_example.css/default/default.css
	./_example.css/max-width.800px/mobile.css
*/

body {
	background-color: #fff;
	text-align: center;
	margin: 0;
	padding: 0;
	font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Meiryo, sans-serif;
	color: #333;
	line-height: 1.6;
}

div#wrapper {
	width: 1400px;
	text-align: left;
	background-color: #FFF;
	margin: 0 auto;
	border-radius: 8px;
	border: none;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

div#wrapper div#header {
	margin: 0;
	padding: 24px 50px 24px;
	border-radius: 0;
	background-color: #FFF;
	background-image: none;
	border-bottom: 1px solid #eee;
}
div#wrapper div#header h1 {
	color: #222;
	font-size: 1.8rem;
	font-weight: 700;
	padding: 0;
	margin: 0;
	font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Meiryo, sans-serif;
	letter-spacing: 0.02em;
}
div#wrapper div#header h1::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 1.2em;
	background-color: #A9CE56;
	margin-right: 12px;
	vertical-align: middle;
	border-radius: 2px;
}

div#content-area {
	display: flex;
	align-items: flex-start;
}


div#column-left {
	width: 45%;
	padding: 30px 30px 30px 50px;
	box-sizing: border-box;
}
div#column-left p {
	line-height: 1.5em;
	color: #555;
	font-size: 16px;
}
div#column-left .note {
  display: block;
  line-height: 1.4 !important;
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}

div#column-right {
	width: 100%;
	padding: 20px 30px 20px 20px;
	box-sizing: border-box;
	border-left: 1px solid #eee;
}

div#column-left p {
	margin: 0;
}

div#features {
	margin-top: 20px;
}
div#features-title {
	font-size: 16px;
	font-weight: 700;
	color: #222;
	margin: 0;
	padding: 12px 20px;
}
div#features-content {
	padding: 0 20px;
}
.feature-item {
	padding: 15px 0 10px 0;
}

.feature-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}
.feature-number {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #A9CE56;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}
.feature-header strong {
	font-size: 16px;
	color: #222;
	line-height: 1.5;
	font-weight: 700;
}
div#features-content .feature-item p {
	font-size: 13px !important;
	color: #555 !important;
	margin-top: 15px !important;
	margin-bottom: 8px !important;
	line-height: 1.5 !important;
}

a.link_policy {
	color: #329bd2;
	text-decoration: underline;
	cursor: pointer;
}
a.link_policy:hover {
	color: #2886b9;
}

div#wrapper div#container {
	padding: 0px 20px;
}

div#wrapper div#footer {
	clear: both;
	padding: 20px;
	margin: 0;
	border-radius: 0;
	text-align: center;
	font-size: 12px;
	background-color: #A9CE56;
	color: #FFF;
	background-image: none;
}

ul.example_pages {
	border: solid 1px #CCC;
	padding: 15px 30px;
}
ul.example_pages li {
	padding: 5px 0px;
}

a.btn_23 {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: auto;
	margin: 15px 0;
	padding: 12px 32px;
	font-weight: 600;
	font-size: 14px;
	border: 2px solid #27acd9;
	color: #27acd9;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background-color: #fff;
	border-radius: 50px;
	transition: color 0.3s ease;
}
a.btn_23::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #27acd9;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: -1;
}
a.btn_23:hover::before {
	transform: translateX(0);
}
a.btn_23:hover {
	color: #fff !important;
}

@media screen and (max-width: 1100px) {
	body {
		padding: 0;
		margin: 0;
		background-color: #fff;
	}
	div#wrapper {
		border-radius: 0;
		padding: 0;
		margin: 0;
		width: 100%;
		box-shadow: none;
		border: none;
	}
	div#wrapper div#header {
		padding: 24px 20px 20px;
	}
	div#wrapper div#header h1 {
		font-size: 1.3rem;
	}
	div#content-area {
		flex-direction: column;
	}
	div#column-left {
		width: 100%;
		padding: 20px;
	}
	div#column-right {
		width: 100%;
		padding: 20px;
		border-left: none;
		border-top: 1px solid #eee;
	}
	div#wrapper div#footer {
		padding: 15px;
	}
}
