<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* Column */

.col_1,
.col_2,
.col_3,
.col_4,
.col_5,
.col_6{}

.col_1-2{},
.col_1-3{}

.col_2-1{},
.col_2-3{}

.col_3-1{},
.col_3-2{}

.col_child{
	float:left;
	box-sizing:border-box;
	padding-left:1%;
	padding-right:1%;
}
.col_child:first-child,
.col_child:first-child:last-child{
	padding-left:0;
	padding-right:2%;
}
.col_child:last-child{
	padding-left:2%;
	padding-right:0;
}
.col_2 .col_child{ width:50%;}
.col_3 .col_child{ width:33.3%;}
.col_4 .col_child{ width:25%;}
.col_5 .col_child{ width:20%;}
.col_6 .col_child{ width:16.6%;}

.col_1-2 .col_child:nth-child(1){ width:33.3%;}
.col_1-2 .col_child:nth-child(2){ width:66.6%;}

.col_2-1 .col_child:nth-child(1){ width:66.6%;}
.col_2-1 .col_child:nth-child(2){ width:33.3%;}

.col_1-3 .col_child:nth-child(1){ width:25%;}
.col_1-3 .col_child:nth-child(2){ width:75%;}

.col_3-1 .col_child:nth-child(1){ width:75%;}
.col_3-1 .col_child:nth-child(2){ width:25%;}

.col_2-3 .col_child:nth-child(1){ width:40%;}
.col_2-3 .col_child:nth-child(2){ width:60%;}

.col_3-2 .col_child:nth-child(1){ width:60%;}
.col_3-2 .col_child:nth-child(2){ width:40%;}


@media screen and (max-width:767px) {
	.col_1 &gt; .col_child,
	.col_2 &gt; .col_child,
	.col_3 &gt; .col_child,
	.col_4 &gt; .col_child,
	.col_5 &gt; .col_child,
	.col_6 &gt; .col_child,
	.fix.col_1-2 &gt; .col_child,
	.fix.col_1-3 &gt; .col_child,
	.fix.col_2-1 &gt; .col_child,
	.fix.col_2-3 &gt; .col_child,
	.fix.col_3-1 &gt; .col_child,
	.fix.col_3-2 &gt; .col_child{width: 100%;padding-left:0;padding-right:0;}
	.col_4 .col_child,
	.col_5 .col_child{ 
		width:50%;
	}
	.col_4 .col_child:nth-child(odd),
	.col_5 .col_child:nth-child(odd){ 
		padding-right:1%;
	}	
	.col_4 .col_child:nth-child(even),
	.col_5 .col_child:nth-child(even){ 
		padding-left:1%;
	}	

}

/* head,text */


.h_style01{
	font-size:32px;
	font-weight:bold;
	color:#333;
	text-align:center;
	margin-bottom:40px;
}
.h_style01 span{
	padding:30px 30px 20px;
	display:inline-block;
	border-top:#E60012 solid 4px;
}
.h_style01 sub{
	display:block;
	font-size:18px;
	color:#E50012;
	font-weight: normal;
	font-family:'Century';
}
.h_style02{
	text-align:center;
	font-size:24px;
	font-weight:bold;
	color:#1F1F1F;
	margin-bottom:25px;
}
.h_style02.large{
	font-size:32px;
}
.h_style03{
	display:block;
	font-size:28px;
	font-weight:bold;
	text-align:center;
	color:#E50012;
	margin-bottom:60px;
}
.h_style03 sub{
	display:block;
	font-size:19px;
	color:#1F1F1F;
	margin-top:10px;
}
.h_style04{
	font-size:20px;
	font-weight:bold;
	color:#1F1F1F;
	padding:5px 20px;
	border-left:#1F1F1F solid 4px;
	margin-bottom:20px;
}
.h_style05{
	font-size:18px;
	font-weight:bold;
	margin-bottom:10px;
}
p.text,
.texts &gt; p{
	font-size:1rem;
	line-height:1.875;
	text-align:left;
}
.f_small{
	font-size:0.875rem;
}
.mb1em{
	margin-bottom:1.875em;
}
.mb2em{
	margin-bottom: 3.75em;
}

.limit_lh p{
	display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 768px) {
	p.text,
	.texts &gt; p{
		font-size:1rem;
	}
}

/* Link */

.text_link a,
a.text_link{
	text-decoration:underline;
	transition: color 0.4s;
	text-decoration-thickness:1px;
}
.text_link a:hover,
a.text_link:hover{
	text-decoration:none;
	color:inherit;
}
.block_link a,
a.block_link{
	display:block;
	transition: background 0.4s, color 0.4s, border 0.4s;
}
.block_link a img{
	transition: opacity 0.4s;
}
.block_link a:hover,
a.block_link:hover{
	text-decoration:none;
}
.block_link a:hover img,
a:hover img.opacity{
	opacity: 0.7;
	text-decoration:none;
}
.common_btn{
	text-align:center;
	margin:2em auto 3em;
}
.common_btn a{
	display:flex;
	max-width:390px;
	border:solid 2px #535353;
	border-radius:5px;
	color:#535353;
	font-size:1.5rem;
	padding:10px;
	min-height:3.5em;
	align-items:center;
	justify-content:center;
	position:relative;
	text-decoration:none;
	margin:0 auto 2px;
	background:#eee;
	transition:background .4s,color .4s,transform .4s;
}
.common_btn a:after{
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #000000;
	border-left: 2px solid #000000;
	display: inline-block;
	position: absolute;
	margin:auto;
	top:0;
	bottom:0;
	right: 20px;
	transform:rotate(135deg);
	transition:border-color .4s;
}
.common_btn a:hover{
	background:#333;
	color:#eee;
	opacity:1;
	transform:translateY(2px);
}
.common_btn a:hover:after{
	border-color:#eee;
}

a.arrow_link,
.arrow_link a{
	position: relative;
	padding-left:14px;
}
a.arrow_link:before,
.arrow_link a:before{
    content: "";
    position: absolute;
    left: -1px;
    margin-top:-3px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ico_blank{position:relative;padding-right: 20px;}
.ico_blank:before, .ico_blank:after{
	content: "";
	width: 11px;
	height: 11px;
	display: inline-block;
	position: absolute;
	border: 1px solid #333;
	background:#fff;
	right: 0;
	top: 2px;
	z-index:10;
}
.ico_blank:after{
	right: 3px;
	top: 5px;
	z-index:9;
}
img.icon{
	vertical-align:middle;
	margin-right:5px;
}
/* image */
.scale { }
.scale_m { 
	max-width:100%;
	width:auto;
	height:auto;
}
.scale_all{	
	width:100%;
	height:auto;
}
.img_fit{
	position:relative;
	width:100%;
	padding-bottom:63%;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}
.img_fit img{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	margin:auto;
	max-width:100%;
	max-height:100%;
	transition:transform .4s;
	display:block;
}
a.img_fit:hover img,
a:hover .img_fit img{
	transform:scale(1.05);
}
@media screen and (max-width: 768px) {
	.scale {
		width:100%;
		height:auto;
	}
}

/* table,list */

.table_style {
	border:#ddd solid 1px;
	border-bottom:none
}
.table_style dl{
	position:relative;
	border-bottom:#ddd solid 1px;
	width:100%;
}
.table_style dt{
	position:absolute;
	top:0;
	left:0;
	background:#EEEEEE;
	width:250px;
	padding:16px 20px;
	box-sizing:border-box;
}
.table_style dd{
	padding:16px 20px;
	padding-left:270px;
	box-sizing:border-box;
}
.list_style ul li{
	margin-left:1em;
	margin-bottom:5px;
	text-indent: -1em;
}
.list_style ul li:before{
	content:"\30FB";
	margin-right:5px;
	color:#005BAC;
	font-weight:bold;
	
}
.list_style ul li.inlist ul{
	margin-top:5px;
}
.list_style ul li.inlist li{
	margin-left:3em;
	padding-left:0;
	text-indent:-3em;
}
.ol_style ol li{
	margin-left:-1em;
	padding-left:1em;
	margin-bottom:5px;
	text-indent: -1em;
	list-style-position:inside;
}

.dl_style dl{
	margin:0;
	padding:15px;
	background:#f6f6f6;
}
.dl_style dl dt{
	font-weight:bold;
	margin-bottom:10px;
	padding-bottom:10px;
	border-bottom: dotted 1px #999;
}
.table_wrap {
	margin:40px 0;
}
.table_wrap.overs {
	padding-bottom:10px;
	overflow-x:auto;
	overflow-y:hidden;
}
.table_wrap table{
	width:100%;
	box-sizing:border-box;
	font-size:16px;
}
.table_wrap table th,
.table_wrap table td{
	box-sizing:border-box;
	padding:20px;
	border:solid 1px #ddd;
}


.table_wrap::-webkit-scrollbar {
	height: 15px;
}

.table_wrap::-webkit-scrollbar-track {
	border-radius: 10px;
	background: #c1c1c1;
}

.table_wrap::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #666;
}
@media only screen and (max-width: 768px) {
	.table_style dl,
	.table_style dt,
	.table_style dd{
		display:block;
	}
	.table_style dt{
		border-bottom:#ddd solid 1px;
		width:100%;
		padding:10px;
		position:static;
		top:auto;
		left:auto;
	}
	.table_style dd{
		padding:15px 10px;
	}
	.dl_style dl{
		font-size:14px;
		margin:0;
	}
	.table_wrap{
		overflow-x:auto;
	}
	.table_wrap table{
		font-size:12px;
	}
	.table_wrap table th,
	.table_wrap table td{
		padding:10px;
	}
}

}
.topics_list{ border-top:#DDDDDD solid 1px;}
.topics_list li{
	border-bottom:#DDDDDD solid 1px;
}
.topics_list li a,
.topics_list li &gt; div{
	display:flex;
	flex-wrap:wrap;
	padding:20px;
}
.topics_list li a:hover{
	text-decoration:none;
}
.topics_list time,
.topics_list h2,
.topics_list p{ display:inline-block;}
.topics_list a:hover h2{ 
	color:#fff;
	background:#E60012;
	border-color:#ddd;
	transition: background-color 0.5s, color 0.5s;
}
.topics_list a:hover time,
.topics_list a:hover p{ text-decoration:underline;}

.topics_list time{ margin-right:20px;}
.topics_list h2{
	padding:5px 5px;
	width: 10em;
	text-align:center;
	border:solid 1px #666666;
	margin-right:20px;
	transition: background-color 1s, color 1s;
}


/*  GoogleMAP・動画埋め込み  */
.map_wrap iframe{
	width:100%;
}
#campus_map{
	height:390px;
	margin-bottom:20px;
}
.movie_wrap{
	position:relative;
	width:100%;
	padding-bottom:56.25%;
}
.movie_wrap iframe{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
.movie_wrap2{
	width: 100%;
	height:  0;
	padding-bottom:  590px;
	overflow:hidden;
	position:  relative;
}
.movie_wrap2 iframe,
.movie_wrap2 video{
	min-width: 100%;
	min-height: 590px;
	height:  auto;
	position:  absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
	margin:  auto;
}
@media only screen and (max-width: 768px) {
	#campus_map {
	    margin: 0 15px;
	    box-sizing: border-box;
	    width: auto;
	    height: 320px;
	}
}

/*  パンくずリスト  */
#pan {
	padding-top:15px;
	padding-bottom: 25px;
}
#pan ol{ 
	padding:0;
	margin:0;
	font-size:0.75rem;
}
#pan li,
#pan li *{ 
	display:inline-block;
	vertical-align:middle;
}
#pan li *{ 
	display:inline;
	vertical-align:middle;
}
#pan li{
	margin-right:0.25em;
}
#pan li:before{
	content: "\003E";
	display:inline-block;
	margin-right:0.5em;
	vertical-align:middle;
}
#pan li:first-child:before{
	content: "";
	display:none;
	margin-right:0;
}
@media only screen and (max-width: 767px) {
	#pan {
		padding-top:15px;
		padding-bottom:15px;
	}
	#pan a{
		text-decoration:underline;
	}
}

/*  ページャー  */
.pager_style{
	text-align:center;
	padding:30px 0 0 0;
}
.pager_style li{
	width:40px;
	border:1px solid #BBBBBB;
	background:#fff;
	display:inline-block;
	margin:0 0 10px 0;
}
.pager_style li:hover{
	background:#024384;
}
.pager_style li.on{
	background:#024384;
}
.pager_style li a{
	font-size:16px;
	text-decoration:none;
	display:block;
	padding:8px 0;
}
.pager_style li.on a{
	color:#fff;
}
.pager_style li a:hover{
	color:#fff;
}
.pager_style li.prev{
	margin:0 10px 0 0;
}
.pager_style li.next{
	margin:0 0 0 10px;
}
@media screen and (max-width: 768px) {
	.pager_style li{
		width: 30px;
	}
	.pager_style li a{
		font-size:12px;
		padding:6px 0;
	}
	.pager_style li.prev,
	.pager_style li.next{
		margin:0;
	}
}

.pc_center { }
.pc_right { }
.sp_center { }
.sp_right { }


@media screen and (min-width:769px) {
	.pc_center { text-align:center !important;}
	.sp_center { text-align:left;}
	.pc_right { text-align:right !important;}
	.mb50_h{ margin-bottom:50px !important;}
	.mb60_h{ margin-bottom:60px !important;}
	.mb80_h{ margin-bottom:80px !important;}
}
@media screen and (max-width:767px) {
	.pc_center,
	.pc_righ { text-align:left;}
	.sp_center { text-align:center !important;}
	.sp_right { text-align:right !important;}
	.mb50_h{ margin-bottom:25px !important;}
	.mb60_h{ margin-bottom:30px !important;}
	.mb80_h{ margin-bottom:40px !important;}
}

.modal-content { 
	width: 80%;
	max-width: 1240px;
	margin: 0px;
	padding: 10px 20px;
	background: none;
	position: fixed;
	display: none;
	z-index:1020;
}
#modal-overlay { 
	z-index: 1000;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 120%;
	background-color: rgba(0, 0, 0, 0.66);

}
.modal_tit { 
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	max-width: 250px;
	text-align: center;
	line-height: normal;
	font-size: 20px;
	z-index: 1025;
	overflow: hidden;
	padding: 0px 30px;color:#fff;
}
.modal_tit span {
	display: block;
	position: relative;
	padding: 10px 0px;
	background: rgb(0, 0, 0);
	z-index: 2;
	border-bottom: 1px solid rgb(255, 255, 255);
}
.modal-content .close_btn {
	position: absolute;
	top: -10%;
	right: 0px;
	color: rgb(255, 255, 255);
	font-size: 40px;
	line-height: 1;
	display: block;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	modal-content { width: 100%;
	padding: 15px;
	box-sizing: border-box;
}
}

.tab_change{
}
.tab_change &gt; input[type="radio"]{
	display:none;
}
.tab_change &gt; input[type="radio"] ~ .tab_table .tab_content{
	overflow:hidden;
	opacity:0;
	max-height:0;
	z-index:-10;
	visibility:hidden;
	transition:opacity .4s;
}
.tab_change &gt; input[id$="01"]:checked ~ .tab_table div[class$="01"],
.tab_change &gt; input[id$="02"]:checked ~ .tab_table div[class$="02"],
.tab_change &gt; input[id$="03"]:checked ~ .tab_table div[class$="03"],
.tab_change &gt; input[id$="04"]:checked ~ .tab_table div[class$="04"],
.tab_change &gt; input[id$="05"]:checked ~ .tab_table div[class$="05"],
.tab_change &gt; input[id$="06"]:checked ~ .tab_table div[class$="06"],
.tab_change &gt; input[id$="07"]:checked ~ .tab_table div[class$="07"],
.tab_change &gt; input[id$="08"]:checked ~ .tab_table div[class$="08"]{
	opacity:1;
	z-index:10;
	visibility:visible;
	max-height: 200vh;
	overflow:visible;
	width:100%;
}
.tab_controller{
	display:flex;
	justify-content:flex-start;
	margin:0.5em 0;
	flex-wrap:wrap;
}
.tab_controller label,
.tab_controller a{
	display:flex;
	align-items:center;
	justify-content:center;
	border:solid 1px #b7b7b7;
	background:#fff;
	width:calc(25% - 3px);
	min-height: 30px;
	border-radius:50px;
	font-weight:500;
	margin-right:4px;
	font-size:0.875rem;
	line-height:1.1;
	text-align:center;
	padding:0px 6px;
	letter-spacing:-0.03em;
}
.tab_controller label:nth-child(4n),
.tab_controller a:nth-child(4n){
	margin-right:0;
}
.tab_controller label:nth-child(n+5),
.tab_controller a:nth-child(n+5){
	margin-top:4px;
}
.tab_controller a:hover,
.tab_controller a.on,
.tab_change &gt; input[id$="01"]:checked ~ .tab_controller label[for$="01"],
.tab_change &gt; input[id$="02"]:checked ~ .tab_controller label[for$="02"],
.tab_change &gt; input[id$="03"]:checked ~ .tab_controller label[for$="03"],
.tab_change &gt; input[id$="04"]:checked ~ .tab_controller label[for$="04"],
.tab_change &gt; input[id$="05"]:checked ~ .tab_controller label[for$="05"],
.tab_change &gt; input[id$="06"]:checked ~ .tab_controller label[for$="06"],
.tab_change &gt; input[id$="07"]:checked ~ .tab_controller label[for$="07"],
.tab_change &gt; input[id$="08"]:checked ~ .tab_controller label[for$="08"]{
	background:#f6f6f6;
}
.tab_controller a{
	transition:background .4s;
	text-decoration:none;
}
.tab_change_style .tab_controller{
	justify-content:space-between;
}
.tab_change_style .tab_controller a{
	width:23%;
	text-decoration: none;
	transition:background .4s,color .4s;
}
.tab_change_style .tab_controller a.active,
.tab_change_style .tab_controller a:hover{
	background:#f2f2f2;
	border-color:#f2f2f2;
}
.tab_change_style .tab_table{
	box-shadow:none;
}

.form_wrap{
}
.form_wrap form{
}
.form_wrap input[type="text"],
.form_wrap input[type="search"],
.form_wrap input[type="email"],
.form_wrap input[type="tel"],
.form_wrap input[type="number"],
.form_wrap input[type="password"],
.form_wrap textarea{
	appearance:none;
	-webkit-appearance:none;
	display:inline-block;
	vertical-align:middle;
	border:solid 1px #fff;
	border-radius:0px;
	font-size:0.875rem;
	padding:0 0.5em;
	height:2.5em;
	line-height:2.5em;
	background:#fff;
}
.form_wrap input::placeholder,
.form_wrap textarea::placeholder{
	color:#ccc;
}
.form_wrap .tables .wrap textarea{
	height:auto;
	padding:1em;
}
.form_wrap label{
	cursor:pointer;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	display:none;
}
.form_wrap input[type="radio"] + label,
.form_wrap input[type="checkbox"] + label{
	display:inline-block;
	padding:0.25em 0.25em 0.25em 1.5em;
	position:relative;
}
.form_wrap input[type="radio"] + label:before,
.form_wrap input[type="checkbox"] + label:before,
.form_wrap input[type="radio"] + label:after,
.form_wrap input[type="checkbox"] + label:after{
	content:"";
	display:inline-block;
	width:1rem;
	height:1rem;
	border:solid 1px #333;
	position:absolute;
	left:0;
	top:6px;
	transition:opacity .2s;
}
.form_wrap input[type="checkbox"] + label:after{
	border:none;
	width:0.6rem;
	height:0.4rem;
	border-top:solid 3px #333;
	border-right:solid 3px #333;
	transform:rotate(135deg);
	top:8px;
	left:2px;
	opacity:0;
}
.form_wrap input[type="radio"] + label:before{
	border-radius:50%;
	width:18px;
	height:18px;
	top:7px;
}
.form_wrap input[type="radio"] + label:after{
	border-radius:50%;
	width:10px;
	height:10px;
	border:none;
	background:#333;
	top:12px;

	left:5px;
	opacity:0;
}
.form_wrap input[type="radio"]:checked + label:after,
.form_wrap input[type="checkbox"]:checked + label:after{
	opacity:1;
}
.form_wrap .select_wrap{
	display:inline-block;
	position:relative;
	z-index:3;
	background:#fff;
}
.form_wrap .select_wrap select{
	appearance:none;
	-webkit-appearance:none;
	display:inline-block;
	vertical-align:middle;
	border:solid 1px #b0b0b0;
	border-radius:0px;
	font-size:1rem;
	color:#333;
	padding:0 2.5em 0 0.5em;
	height:2.5em;
	line-height:2.5em;
	background:transparent;
	cursor:pointer;
}
.form_wrap .select_wrap:before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top:solid 2px #333;
	border-right:solid 2px #333;
	position: absolute;
	right: 1rem;
	top:0;
	bottom:0;
	margin:auto;
	z-index:-1;
	transform:rotate(135deg) translate(-2px);
}

.form_wrap .form_els{
	display:flex;
	flex-wrap:wrap;
}
.form_wrap .form_els.inlines{
	display:block;
	padding-bottom: 0.25em;
}
.form_wrap .form_els &gt; *{
	margin-right:0.5em;
}
.form_style .form_wrap input[type="text"],
.form_style .form_wrap input[type="search"],
.form_style .form_wrap input[type="email"],
.form_style .form_wrap input[type="tel"],
.form_style .form_wrap input[type="number"],
.form_style .form_wrap input[type="password"],
.form_style .form_wrap textarea{
	border:#b0b0b0 solid 1px;
	display:block;
	width:100%;
	height:3.5em;
	line-height:3.5em;
	padding:0 1em;
	font-weight:500;
}
.form_style .form_wrap .form_els.els2 input[type="text"],
.form_style .form_wrap .form_els.els2 input[type="search"],
.form_style .form_wrap .form_els.els2 input[type="email"],
.form_style .form_wrap .form_els.els2 input[type="tel"],
.form_style .form_wrap .form_els.els2 input[type="number"],
.form_style .form_wrap .form_els.els2 input[type="password"],
.form_style .form_wrap .form_els.els2 textarea{
	border:#b0b0b0 solid 1px;
	display: inline-block;
	width: 75%;
	height:3.5em;
	line-height:3.5em;
	padding:0 1em;
	font-weight:500;
	margin-right: 0.5em;
}
.form_style .form_wrap input.error_msg:placeholder-shown{
	background:#ffeeff;
}
.form_style .form_wrap textarea{
	height:auto;
	line-height:1.5em;
	padding:1em;
}
.form_style .form_wrap .form_els &gt; *{
	margin-right: 2em;
}
.form_style .form_wrap .form_els.els2 &gt; *{
	margin-right: 0.5em;
	width: 30%;
}
.form_style .form_wrap input[type="radio"] + label{
	padding:0.25em 0 0.25em 2em;
}
.form_style .form_wrap input[type="radio"] + label:before{
	border:#b0b0b0 solid 1px;
	width:1.5em;
	height:1.5em;
}
.form_style .form_wrap input[type="radio"] + label:after{
	width:0.5625em;
	height:0.5625em;
	top:0.975em;
	left:0.5em;
}
.form_style .form_wrap input[type="checkbox"] + label{
	padding:0.5em 0 0.5em 2em;
}
.form_style .form_wrap input[type="checkbox"] + label:before{
	border:#b0b0b0 solid 1px;
	width:1.5em;
	height:1.5em;
}
.form_style .form_wrap input[type="checkbox"] + label:after{
	top:0.75em;
	left:0.5em;
}
.form_style p.default_msg{
	color:#ff0000;
	font-weight:bold;
	margin-top:0.25em;
}
.form_style p.error_msg{
	color:#ff0000;
	font-weight:bold;
	margin-top:0.25em;
	font-size:1.1275em;
}
.form_style .send_txt{
	font-size:1.25rem;
	text-align:center;
	margin-bottom:1.5em;
}
.form_style .send_area{
	display:flex;
	justify-content:center;
	flex-direction:row-reverse;
}
.form_style .send_area &gt; *{
	flex-grow:1;
}
.form_style .send_area button{
	width:100%;
	cursor:pointer;
}
.form_style .form_wrap .table_style dd .input_wrap &gt; p{
	margin:0.5625em 0;
}
.form_style .send_area .back button:after{
	right:auto;
	left:30px;
	transform:rotate(-135deg) skew(-10deg,-10deg);
}
.form_style.login_content .table_style .login_box dt,
.form_style.login_content .table_style .login_box dd{
	border:#d1d1d1;
	padding: 0;
}
.form_style.login_content .table_style .login_box dt{
	width:100px;
	padding-top: 1.375em;
    padding-bottom: 1.375em;
}
.form_style.login_content .table_style .login_box input[type="text"],
.form_style.login_content .table_style .login_box input[type="password"]{
	height:5em;
	padding:0 3em;
	border-radius:50px;
}
.form_style.login_content .forget_txt{
	margin-bottom:3em;
	text-align:center;
}
.form_style.login_content .forget_txt a{
	display:inline-block;
	font-size:1rem;
	font-weight:500;
	color:#134393;
	text-decoration:underline;
	text-underline-offset: 0.5em;
}
.form_style.login_content .forget_txt a:hover{
	text-decoration:none;
}
.form_style.login_content .send_area{
	display:block;
}
.form_style.login_content .send_area .common_btn{
	margin:0.5em 0;
}
@media screen and (max-width: 767px) {
	.form_wrap input[type="text"],
	.form_wrap input[type="search"],
	.form_wrap input[type="email"],
	.form_wrap input[type="tel"],
	.form_wrap textarea{
		font-size:1rem;
	}
	.form_wrap .form_els.inlines br{
		display:none;
	}
	.form_wrap input[type="radio"] + label,
	.form_wrap input[type="checkbox"] + label{
		font-size:0.857rem;
	}
	.form_wrap input[type="checkbox"] + label:before{
		width:12px;
		height:12px;
		top:5px;
	}
	.form_wrap input[type="checkbox"] + label:after{
		width:7px;
		height:4px;
	}
	.form_wrap input[type="radio"] + label:before{
		width:13px;
		height:13px;
		top:5px;
	}
	.form_wrap input[type="radio"] + label:after{
		width:7px;
		height:7px;
		left:4px;
		top:9px;
	}
}</pre></body></html>