@charset "utf-8";
/* CSS Document */
.pc_hide{
	display:none;
}
.center{
	text-align: center;
}

header{
	margin:0px auto;
}
header .inner{
	width:980px;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
}
header h2{
	display: flex;
	align-items: center;
}
header h2 img{
	width:400px;
	margin-left:10px;
}
header h1 img{
	width:100%;
}
/*******************************************
	toggle menu
/*******************************************/
header nav {
	display: flex;
	justify-content: flex-end;

}
header nav ul {
	display: flex;
	align-items: center;
}
header nav ul li{
	width:110px;
	height:95px;
	text-align:center;
	font-size:15px;
	line-height:1.2em;
	letter-spacing:0.15em;
	vertical-align: middle;
	display:table-cell;
}
header nav ul li.tel{
	width:auto;
}
header nav ul li.tel img{
	height:80px;
	margin-top:5px;
}
header nav ul a{
	text-decoration:none;
	color:#555;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-decoration:none;
}

header nav ul a:hover {
	color:#FFF !important;
	background:#000;
}

#nav_toggle {
	display: none;
}
/*******************************************
	お問い合わせボタン
/*******************************************/
.btn_contact{
	display:block;
	height: 60px;
	text-align: center;
	text-decoration: none;
	line-height: 60px;
	outline: none;
	position: relative;
	z-index: 2;
	background-color: #0026a5;
	border: 2px solid #0026a5;
	color: #FFF;
	overflow: hidden;
	font-size: 18px;
	font-weight: bold;
	margin:30px 35px;
}
.btn_contact::before, .btn_contact::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.btn_contact, .btn_contact::before, .btn_contact::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.btn_contact::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(.5);
	transform: scale(.5);
}
.btn_contact:hover::after {
	background: #FFF;
	border-color: #ff2e52;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.btn_contact:hover {
	color: #0026a5;
}
.contact dl dd.mail{
	margin-left:0px;
}
.tel img{
	image-rendering:-webkit-optimize-contrast;
}
/*******************************************
	footer
/*******************************************/

footer{
	background:#f1f1f1;
	text-align:center;
	font-size:12px;
	color:#333;
	padding:40px 0px 20px 0px;
	box-sizing:border-box;
}
footer ul.link{
	margin:0px auto 20px 0px;
	display:flex;
	justify-content:center;
	flex-wrap: wrap;
}
footer li{
	float:left;
	list-style: none;
}
footer li a{
	text-decoration:none;
	color:#333;
}
footer li:first-child{
	display:none;
}
footer li:after{
	content:"　|　";
}
footer li:last-child:after{
	content:"";
}
/*******************************************
	contact
/*******************************************/
.contact .cform_title {
	margin-top:100px;
	width:100%;
	background:#0026a5;
	font-size:clamp(18px, 6vw, 30px);
	color:#FFF;
	text-align:center;
	font-weight:bold;
	line-height:1.2em;
	padding: 0.4em 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom:50px;
}
.contact .note{
	text-align:center;
	font-size:18px;
	line-height:25px;
	margin: 0 2%;
}
.contact dl {
	width:490px;
	margin:0px auto;
	text-align:left;
}
.contact dl dt {
	font-size:18px;
	font-weight:bold;
	margin:30px 0px 0px 0px;
}
.contact dl dd {
	margin-left:40px;
}
.contact dl dd .footer_tel {
	font-size:32px;
	font-weight:bold;
	vertical-align:middle;
}
.contact dl dd.sec {
	font-weight:bold;
}
.contact dl dd.time {
	font-size:14px;
	margin-top:10px;
}
.contact .touhaba,
.contact .touhaba2 {
	font-family:monospace;
}
.contact .mail{
}
.contact .about_trial{
	text-align: center;
	font-size: 12px;
	margin-bottom: 35px;
}
.contact .about_trial a{
	color: #000;
	text-decoration: underline;
}

.contact dl.company{
	margin: 20px auto;
	border: 1px solid #CCC;
	padding: 0px 20px;
	box-sizing: border-box;
}
@media screen and (max-width: 979px) {
	.pc_hide{ display:block; }
	.sp_hide{ display:none; }
	header{
	align-items: center;
}
	header .inner{
		width:100%;
		height:13vw;
	}
	header .title h1{
		line-height:0em;
	}
	header .title h1 img{
		width:100%;
	}
	header h2{
		width: 100%;
	}
	header h2 img{
		width: 50%;
	}
	header #nav_toggle{
		display: block;
	}
	header nav {
		display: none;
		position: absolute;
		top: 13vw;
		width: 100%;
		left: 0;
		z-index:999;
	}
	header nav ul {
		display: block;
		margin: 0 auto;
		width: 100%;
	}
	header nav ul li {
		margin: 0 auto;
		text-align: center;
		border-bottom: 1px solid #fff;
		background:#3C3C3C;
		width:100%;
		height:10vh;
		line-height:10vh;
		float:none;
		text-align:center;
		display:block;
		transition: 0.2s;
	}
	header nav ul li:hover{
		transition: 0.2s;
	}
	header nav ul li:first-child {
		border-bottom:1px solid #FFF;
	}
	header nav ul li:hover {
		background: rgba(255,255,255,1);
	}
	header nav ul li.tel {
		margin-right:0px;
		border-bottom:1px solid #046A38;
	}
	header nav ul li.tel{
		box-sizing:border-box;
	}
	header nav ul li.tel img{
		height:85%;
	}
	header nav ul a {
		display: block;
		color:#FFF;
		text-decoration:none;
	}
	header nav ul a:hover {
		color:#000;
	}

	#nav_toggle {
		display: block;
		width: 9vw;
		height: 12vw;
		position:absolute ;
		top: 3vw;
		right:3vw;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span {
		display: block;
		height: 0.7vw;
		background: #3C3C3C;
		position: absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	#nav_toggle span:nth-child(1) {
		top: 0px;
	}
	#nav_toggle span:nth-child(2) {
		top: 3vw;
	}
	#nav_toggle span:nth-child(3) {
		top: 6vw;
	}
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
		top: 3vw;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 3vw;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	.slider-pro{
		z-index:0;
	}
	.contact .note{
		text-align: left;
	}
	.contact .cms_title{
		line-height: 1.2em;
	}
	.contact .cms_title a{
		word-break: break-all;
	}
	.contact dl.company{
		width: 100%;
		padding: 0 2%;
		box-sizing: border-box;
	}
	.contact dl dt,
	.contact dl dd{
		margin-left: 0px;
	}
	.contact dl dd.sec{
		line-height: 1.6em;
	}
	.contact dl dd .footer_tel{
		width: 100%;
		display: block;
	}
	.btn_contact{
		width: 90%;
		min-width: 15em;
		margin-inline:auto; 
	}
	.contact dl.company{
		border: none;
		width: fit-content;
	}
	.company .time{
		padding-left:5em;
		text-indent: -5em;
	}

}


/*******************************************
	trial/completion.php
/*******************************************/
*{
	margin:0px;
	padding:0px;
}

.trial_comp header{
	text-align:center;
}
.trial_comp .logo{
	position:inherit;
	width:auto;
	height:auto;
	padding:0px;
	float: none;
	margin: 0;
}
.trial_comp .logo img{
	top:auto;
	width:200px;
	margin: 0 auto;
}
.trial_comp .logo a{
	float: none;
}
.trial_comp h2{
	text-align: center;
	text-decoration: none;
	line-height: 1.2em;
	background-color: #0026a5;
	color: #FFF;
	font-size: clamp(18px, 6vw, 30px);
	padding: 0.5em 0;
	font-weight: bold;
}
.trial_comp .announce{
	width:fit-content;
	margin:50px auto;
	padding: 0 2%;
	box-sizing: border-box;
}
.trial_comp .contact{
	width:100%;
	margin:20px auto;
}
.trial_comp .contact .cform_title{
	display:none;
}
.trial_comp .contact .note{
	display:none;
}
.trial_comp .contact .mail{
}
.trial_comp footer {
}
.trial_comp footer li:first-child{
	display:inline !important;
}
.trial_comp footer li:nth-child(2){
	display:none !important;
}
/* 申し込みフォーム個人情報保護方針 */
.form_privacy {
	width: 850px;
	height: 200px;
	overflow-y: scroll;
	margin: 30px auto;
	border: 1px solid #DDD;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	box-sizing: border-box;
	padding: 5px;
	resize: both;
	padding: 10px;
	text-align: left;
}
.form_privacy p,
.sub-page .contact  .form_privacy p {/* reset */
	margin: 0px 0px 1em 0px;
	padding: 0;
}
.form_privacy ul {
	margin-bottom: 1em;
}
.form_privacy h3 {
	text-align: center;
	margin: 20px auto;
}
.form_privacy h4 {
	font-weight: bold;
	margin-left: -2em;
	margin-bottom: 0.5em;
}
.form_privacy .wrap {
	margin-left: 2em;
}
.form_privacy li {
	margin-left: 1em;
	text-indent: -1em;
}
.privacy_agree_wrap{
	display: flex;
	justify-content: center;
}



/*-------------------------
clearfix
-------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */

/*-------------------------
clearfixここまで
-------------------------*/