@charset "UTF-8";
/* CSS Document */
body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-text-size-adjust: 100%;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	display: flex;
	flex-direction: column;
}
html {
	height: 100%;
	height: -webkit-fill-available;
}
.ly_wrapper {
	flex: 1;
}
/*.ly_body{
		min-width: 980px;
	overflow: hidden;
}
*/
@media (max-width: 768px) {
	.ly_body {
		min-width: auto;
	}
}
.sp_only {
	display: none;
}
@media (max-width: 768px) {
	.sp_only {
		display: block;
	}
}
body.is_commonbg {
	background: #f0f0f0;
}
/* -------------------------- footer --------------------------  */
.ly_footer {
	padding: 24px 30px;
	background: white;
	position: relative;
	border-top: solid 1px var(--gray);
}
.el_pagetop {
	position: fixed;
	right: 25px;
	bottom: 110px;
	width: 50px;
}
.el_pagetop a {
	display: block;
	transition: all 0.5s 0s ease;
	opacity: 1;
}
.el_pagetop a:hove {
	opacity: 0.5;
}
.bl_footerConts {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_footerConts_logo {
	width: 220px;
	display: block;
}
.bl_footerConts_navWrapper {}
.bl_footerNav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_footerNav li {
	padding: 0 15px;
	font-size: 14px;
}
.bl_footerNav li a:hover {
	text-decoration: underline;
}
.bl_footerCopy {
	padding: 15px 0 0 0;
}
.bl_footerCopy .bl_footerCopy_txt {
	font-size: 11px;
	color: #707070;
}
@media (max-width: 768px) {
	.ly_footer {
		padding: 24px 0;
	}
	.el_pagetop {
		right: 20px;
		bottom: 40px;
		width: 40px;
	}
	.bl_footerConts {
		display: block;
	}
	.bl_footerConts_logo {
		width: 220px;
		padding-left: 15px;
		margin-bottom: 15px;
	}
	.bl_footerNav {
		border-top: solid 1px #f4f4f4;
		flex-wrap: wrap;
	}
	.bl_footerNav li {
		width: 50%;
		border-bottom: solid 1px #f4f4f4;
		font-size: 12px;
	}
	.bl_footerNav li:nth-child(even) {
		border-left: solid 1px #f4f4f4;
	}
	.bl_footerNav li a {
		display: block;
		padding: 12px 0;
	}
	.bl_footerCopy .bl_footerCopy_txt {
		text-align: center;
		font-size: 10px;
	}
}
/* -------------------------- header --------------------------  */
.ly_header_wrapper {
	padding: 0 30px;
	background: white;
	position: relative;
}
.ly_header_inner {
	max-width: 1200px;
	margin: 0 auto;
}
.bl_headerConts {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_headerConts_logo {
	padding: 8px 0 0 0;
	padding-right: 8px;
	max-width: 260px;
}
@media (max-width: 1200px) {
.bl_headerConts_logo {
	max-width: 200px;
}
}
.bl_headerConts_navWrapper {
	display: flex;
	justify-content: flex-end;
	width: calc(100% - 140px);
}
.bl_headerConts_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-right: 10px;
	height: 62px;
}
.bl_headerConts_nav li {
	display: block;
	font-size: 15px;
	border-left: solid 1px #e5e5e5;
	line-height: 1.2;
	height: 42px;
	line-height: 42px;
}
.bl_headerConts_nav li:last-child {
	border-right: solid 1px #e5e5e5;
}
.bl_headerConts_nav li a {
	display: inline-block;
	transition: .3s;
	position: relative;
	text-align: center;
	padding: 0 16px;
}
.bl_headerConts_nav li a:hover {
	color: var(--main-color);
}
.bl_headerConts_nav li a:after {
	position: absolute;
	bottom: .3em;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--main-color);
	opacity: 0;
	transition: .3s;
}
.bl_headerConts_nav li a:hover:after {
	bottom: 0;
	opacity: 1;
}
/* dropmenu  */
.el_drop_nemu {
	display: block;
	position: relative;
	padding: 0 20px 10px 20px;
}
.el_drop_nemu:hover {
	background: var(--main-color);
	color: white;
	cursor: pointer;
}
.el_drop_nemu:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	background-image: url("/img/ic_down.png");
	background-size: contain;
	position: absolute;
	left: 50%;
	bottom: 4px;
	margin-left: -6px;
}
.el_drop_nemu:hover:before {
	background-image: url("/img/ic_down_w.png");
	background-size: contain;
}
.bl_drop_contents {
	position: absolute;
	width: 100%;
	left: 0;
	top: 62px;
	padding: 30px 0;
	background: var(--main-color);
	z-index: 3;
}
.bl_drop_contents ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.bl_drop_contents li {
	width: 330px;
	border: none;
	padding: 0 15px;
	height: auto;
}
.bl_drop_contents li:last-child {
	border: none;
}
.bl_drop_contents li a {
	display: block;
	text-align: center;
	padding: 10px 10px;
	line-height: 1em;
	border-radius: 30px;
	background: #ffffff;
	color: var(--main-color);
	border: solid 1px var(--main-color);
}
.bl_drop_contents li a:hover {
	color: #ffffff;
	background: var(--main-color);
	border: solid 1px white;
}
.bl_drop_contents li a .el_dropMenu_icon {
	position: relative;
	display: inline-block;
	padding: 0 0 0 20px;
}
.bl_drop_contents li a .el_dropMenu_icon:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	background-image: url("/img/ic_next.png");
	background-size: contain;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -6px;
}
.bl_drop_contents li a:hover .el_dropMenu_icon:before {
	background-image: url("/img/ic_next_w.png");
	background-size: contain;
}
.bl_headerConts_nav li .bl_drop_contents li a:after {
	display: none;
}
.bl_headerConts_btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bl_headerConts_btn li {
	padding: 0 6px;
}
.el_menuOverlay {
	display: none;
}
.bl_userAcount {
	display: flex;
	align-items: center;
	min-width: 140px;
}
.bl_userAcount_icon {
	display: block;
	border: solid 1px #D8D8D8;
	width: 28px;
	height: 28px;
	border-radius: 14px;
	overflow: hidden;
	margin-right: 6px;
}
.bl_userAcount_icon img {
	width: 100%;
	height: auto;
}
.bl_userAcount_name {
	font-size: 14px;
	position: relative;
	padding: 6px 0;
}
.bl_userAcount_name ul.bl_userMenu {
	display: none;
	position: absolute;
	left: -25px;
	top: 32px;
	border: solid 1px #f4f4f4;
	z-index: 5;
}
.bl_userAcount_name:hover ul.bl_userMenu {
	display: block;
}
.bl_userAcount_name ul.bl_userMenu li {
	width: 120px;
	line-height: 30px;
	border-bottom: solid 1px #f4f4f4;
	background: white;
	text-align: center;
}
.bl_userAcount_name:hover ul.bl_userMenu li a {
	display: block;
}
.bl_userAcount_name ul.bl_userMenu li a:hover {
	color: var(--main-color);
}
@media (max-width: 1280px) {
	.bl_headerConts_nav li a, .el_drop_nemu {
		font-size: 14px;
	}
}
@media (max-width: 1200px) {
	.bl_headerConts_nav li a, .el_drop_nemu {
		display: block;
		text-align: left;
		font-size: 13px;
		padding-left: 8px;
		padding-right: 8px;
	}
	.bl_headerConts_nav li a:hover:after {
		opacity: 0;
	}
}
@media (max-width: 1070px) {
	.bl_headerConts_nav li a, .el_drop_nemu {
		font-size: 12px;
	}
}
@media (max-width: 980px) {
	.ly_header_wrapper {
		padding: 12px 15px;
		height: auto;
	}
	.bl_headerConts_logo {
		width: 220px;
		padding: 0;
	}
	.bl_headerConts_logo img{
		vertical-align: middle;
	}
	.el_menuBtn {
		width: 40px;
		height: 40px;
		right: 6px;
		top: 6px;
		cursor: pointer;
		position: fixed;
		z-index: 3;
	}
	.bl_headerConts_navWrapper {
		display: none;
	}
	.bl_headerConts_navWrapper.is_active {
		display: block;
		position: fixed;
		right: 0;
		top: 0;
		width: 80%;
		z-index: 2;
		padding-top: 50px;
		background: #ffffff;
		height: 100vh;
		animation-name: fadeInAnime;
		animation-duration: 0.5s;
		animation-fill-mode: forwards;
		overflow: auto;
	}
	@keyframes fadeInAnime {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}
	.bl_headerConts_nav {
		display: block;
		margin: 0;
		width: auto;
		height: auto;
	}
	.bl_headerConts_btn {
		display: block;
	}
	.bl_headerConts_nav {
		border-top: solid 1px var(--gray);
	}
	.bl_headerConts_nav li {
		width: 100%;
		padding: 0 5%;
		border-bottom: solid 1px var(--gray);
		height: auto;
	}
	.bl_headerConts_btn {
		padding: 12px 0;
	}
	.bl_headerConts_btn li {
		padding: 8px 12px;
	}
	.el_registBtn, .el_loginBtn {
		width: 100%;
		margin: 0 auto;
	}
	.el_menuOverlay {
		display: none;
		z-index: 100;
	}
	.el_menuOverlay.is_active {
		display: block;
		position: fixed;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.25);
		width: 100vw;
		height: 100vh;
		z-index: 1;
	}
	.el_menuBtn_inner {
		position: relative;
		width: 40px;
		height: 40px;
	}
	.el_menuBtn span {
		position: absolute;
		display: block;
		height: 3px;
		width: 32px;
		background: #000000;
		transition: all .4s;
	}
	.el_menuBtn span:nth-of-type(1) {
		top: 8px;
		left: 4px;
	}
	.el_menuBtn span:nth-of-type(2) {
		top: 18px;
		left: 4px;
	}
	.el_menuBtn span:nth-of-type(3) {
		top: 28px;
		left: 4px;
	}
	.el_menuBtn.is_active span:nth-of-type(1) {
		transform: translateY(6px) rotate(-45deg);
		width: 34px;
	}
	.el_menuBtn.is_active span:nth-of-type(2) {
		display: none;
	}
	.el_menuBtn.is_active span:nth-of-type(3) {
		top: 8px;
		transform: translateY(6px) rotate(45deg);
		width: 34px;
	}
	.bl_userAcount {
		padding: 24px 10px 8px 10px;
		align-items: stretch;
		margin-left: 5%;
	}
	.bl_userAcount_icon {}
	.bl_userAcount_name ul.bl_userMenu {
		display: block;
		position: relative;
		left: auto;
		top: auto;
		border: none;
		padding-top: 8px;
	}
	.bl_userAcount_name ul.bl_userMenu li {
		width: 100px;
		line-height: 1.5;
		border-bottom: none;
		background: white;
		text-align: center;
	}
	.bl_userAcount_name ul.bl_userMenu li a {
		padding: 8px 0;
		display: block;
		color: #444444;
		text-align: left;
	}
	.bl_userAcount_name ul.bl_userMenu li a:hover {
		color: var(--main-color);
	}
	/* dropmenu  */
	.el_drop_nemu {
		line-height: 1.2;
		padding: 12px 0 4px 10px;
	}
	.el_drop_nemu:before {
		display: none;
	}
	.bl_drop_contents {
		position: relative;
		left: auto;
		top: auto;
		padding: 0 0;
		background: none;
		margin-bottom: 8px;
	}
	.bl_drop_contents ul {
		display: block;
	}
	.bl_drop_contents li {
		width: 100%;
		border: none;
	}
	.bl_drop_contents li:last-child {
		border: none;
	}
	.bl_drop_contents li a {
		text-align: left;
		padding: 10px 0;
		line-height: 1em;
		border-radius: 0;
		background: none;
		color: var(--black);
		border: none;
	}
	.bl_drop_contents li a:hover {
		color: #ffffff;
		background: var(--main-color);
		border: solid 1px white;
	}
	.bl_drop_contents li a .el_dropMenu_icon {
		position: relative;
		display: inline-block;
		padding: 0 0 0 20px;
	}
	.bl_drop_contents li a .el_dropMenu_icon:before {
		content: '';
		display: inline-block;
		width: 12px;
		height: 12px;
		background-image: url("/img/ic_next.png");
		background-size: contain;
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -6px;
	}
	.bl_drop_contents li a:hover .el_dropMenu_icon:before {
		background-image: url("/img/ic_next_w.png");
		background-size: contain;
	}
	.bl_headerConts_nav li .bl_drop_contents li a:after {
		display: none;
	}
}
/* -------------------------- contact --------------------------  */
.ly_contactInfo {
	background: #E3F2FF;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
}
.bl_contactInfo_tit {
	color: var(--main-color);
	margin-bottom: 1em;
	font-size: 18px;
	font-weight: 600;
}
.bl_contactInfo_head {
	margin-bottom: 12px;
	font-weight: normal;
}
@media (max-width: 768px) {
	.ly_contactInfo {
		margin: 0 5%;
	}
	.bl_contactInfo_body a {
		font-size: 14px;
	}
}
/* -------------------------- aside --------------------------  */
.ly_dbNav {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
}
.ly_dbNav li {
	width: 120px;
}
.ly_dbNav a {
	background: var(--main-color);
	color: white;
	display: block;
	width: 120px;
	height: 120px;
}
/* -------------------------- block --------------------------  */
.bl_slim_formCont {
	max-width: 700px;
	margin: 0 auto;
	padding: 40px 0;
}
.bl_slim_formCont_head {
	margin-bottom: 24px;
}