@charset "utf-8";
/* 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 > 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 > 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;
	width: fit-content;
	max-width: 300px;
	min-width: 230px;
	border: solid 2px #1684b7;
	color: #FFF;
	background: #1684b7;
	font-size: 1rem;
	font-weight: 500;
	padding: 10px 2em;
	min-height: 58px;
	align-items:center;
	justify-content:center;
	position:relative;
	z-index: 0;
	text-decoration:none;
	border-radius: 3em;
	margin: 1em 0;
	transition: filter 0.3s , transform 0.3s;
	filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.1));
}
.common_btn a::after{
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
	inset: 0 25px 0 auto;
	margin:auto;
	background-image: url(../img/common/icon_arrow.svg);
	background-size: contain;
	width: 16px;
	height: 16px;
}
@media (any-hover: hover) {
	.common_btn a:hover{
		filter: none;
		transform: translateY(3px) translateX(3px);
	}
}
@media screen and (max-width:767px) {
	.common_btn{
		margin:1em auto 1em;
	}
	.common_btn a{
		max-width: 300px;
		font-size: 1.125rem;
		padding: 0.5em 2em;
		min-height: 50px;
		margin-inline: auto;
	}
	.common_btn a span{
		padding-right: 0;
	}
}
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_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 > 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: 30px;
	padding-bottom: 60px;
	font-size: 0.875rem;
}
#pan ol {
	padding: 0;
	margin: 0;
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	overflow-y: hidden;
	overflow-x: auto;
}
#pan li,
#pan li * {
	display: inline-block;
	vertical-align: middle;
}
#pan li * {
	display: inline;
	vertical-align: middle;
}
#pan li {
	margin: 0 0.5em 0 0;
	white-space: nowrap;
}
#pan li a {
	text-decoration: none;
}
#pan li a:hover {
	text-decoration: none;
	color: #218aba;
}
#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: 0;
		margin: 15px;
		overflow: hidden;
		position: relative;
		z-index: 2;
		white-space: nowrap;
	}
	#pan:after,
	#pan li:last-child:after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		width: 10px;
		z-index: 1;
		background: rgb(0, 0, 0);
		background: linear-gradient(-90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
	}
	#pan a {
		text-decoration: underline;
	}
	#pan ul{
		padding: 0;
		margin: 0;
		/* overflow-x: scroll; */
		/* overflow-y: hidden; */
	}
	#pan ol {
		position: relative;
		z-index: 4;
	}

	#pan li a {
		text-decoration: underline;
	}

	#pan li:last-child {
		position: relative;
		padding-right: 10px;
		margin-right: 0;
		flex-grow: 1;
	}

	#pan li:last-child:after {
		top: -1em;
		bottom: -1em;
		background: rgb(255, 255, 255);
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
	}
}
/*  ページャー  */
.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 > input[type="radio"]{
	display:none;
}
.tab_change > input[type="radio"] ~ .tab_table .tab_content{
	overflow:hidden;
	opacity:0;
	max-height:0;
	z-index:-10;
	visibility:hidden;
	transition:opacity .4s;
}
.tab_change > input[id$="01"]:checked ~ .tab_table div[class$="01"],
.tab_change > input[id$="02"]:checked ~ .tab_table div[class$="02"],
.tab_change > input[id$="03"]:checked ~ .tab_table div[class$="03"],
.tab_change > input[id$="04"]:checked ~ .tab_table div[class$="04"],
.tab_change > input[id$="05"]:checked ~ .tab_table div[class$="05"],
.tab_change > input[id$="06"]:checked ~ .tab_table div[class$="06"],
.tab_change > input[id$="07"]:checked ~ .tab_table div[class$="07"],
.tab_change > 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 > input[id$="01"]:checked ~ .tab_controller label[for$="01"],
.tab_change > input[id$="02"]:checked ~ .tab_controller label[for$="02"],
.tab_change > input[id$="03"]:checked ~ .tab_controller label[for$="03"],
.tab_change > input[id$="04"]:checked ~ .tab_controller label[for$="04"],
.tab_change > input[id$="05"]:checked ~ .tab_controller label[for$="05"],
.tab_change > input[id$="06"]:checked ~ .tab_controller label[for$="06"],
.tab_change > input[id$="07"]:checked ~ .tab_controller label[for$="07"],
.tab_change > 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;
}


/*  フォーム  */
.smf-form .smf-item .smf-item__label__text{
	font-weight:500;
}
.smf-form .smf-item .smf-item__label__text mark{
	display:inline-block;
	font-size:0.875rem;
	font-weight:bold;
	line-height: 1;
	color: #fff !important;
	background: #f42c2c !important;
	padding: 0.25em 0.5em;
}
.smf-form .smf-item input[type="text"],
.smf-form .smf-item input[type="search"],
.smf-form .smf-item input[type="email"],
.smf-form .smf-item input[type="tel"],
.smf-form .smf-item input[type="number"],
.smf-form .smf-item input[type="password"],
.smf-form .smf-item input[type="date"],
.smf-form .smf-item textarea,
.smf-form .smf-item select {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	border: solid 1px #fff;
	border-radius: 0;
	font-size: 0.875rem;
	padding: 0 0.5em;
	height: 2.5em;
	line-height: 2.5em;
	background: #fff;
	margin: 0;
}
.smf-form .smf-item input::placeholder,
.smf-form .smf-item textarea::placeholder {
	color: #d2d2d2;
}
.smf-form .smf-item input[type="text"],
.smf-form .smf-item input[type="search"],
.smf-form .smf-item input[type="email"],
.smf-form .smf-item input[type="tel"],
.smf-form .smf-item input[type="number"],
.smf-form .smf-item input[type="password"],
.smf-form .smf-item input[type="date"],
.smf-form .smf-item textarea,
.smf-form .smf-item select {
	border: #d2d2d2 solid 1px;
	display: block;
	width: 100%;
	height: 3.5em;
	line-height: 3.5em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.smf-form .smf-item select{
	padding: 0 2rem 0 1em;
	background: none;
}
.smf-form .smf-item input[name="zip"] {
	width: 180px;
	display: inline-block;
}
.smf-form .smf-item input.other_text{
	margin-top: 0.5em;
	width: 20%;
	min-width: 20em;
}
.smf-form .smf-item textarea {
	height: auto;
	line-height: 1.5em;
	padding: 1em;
}
.smf-form .smf-item label {
	cursor: pointer;
}
.smf-form .smf-item input[type="radio"],
.smf-form .smf-item input[type="checkbox"] {
    position: absolute;
    z-index: -10;
    font-size: 0;
    line-height: 0;
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    width: 0;
    height: 0;
    margin: 0
}
.smf-form .smf-item input[type="radio"]::before,
.smf-form .smf-item input[type="checkbox"]::before {
   display: none !important;
}
.smf-form .smf-item input[type="radio"]+span,
.smf-form .smf-item input[type="checkbox"]+span {
	display: inline-block;
	padding: 0.25em 0.25em 0.25em 1.5em;
	position: relative;
}
.smf-form .smf-item label input[type="radio"]+span:before,
.smf-form .smf-item label input[type="checkbox"]+span:before,
.smf-form .smf-item label input[type="radio"]+span:after,
.smf-form .smf-item label input[type="checkbox"]+span:after{
	content: "";
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	border: solid 1px #000000;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: opacity .2s;
	font-weight: 400;
}
.smf-form .smf-item label input[type="checkbox"]+span:after{	
	border: none;
	width: 0.875rem;
	height: 0.5rem;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	transform: rotate(135deg);
	top: -4px;
	left: 3px;
	opacity: 0;
}
.smf-form .smf-item label input[type="radio"]+span:before {
	border-radius: 50%;
	width: 20px;
	height: 20px;
}
.smf-form .smf-item label input[type="radio"]+span:after {
	border-radius: 50%;
	width: 14px;
	height: 14px;
	border: none;
	background: #28a7e1;
	top: 0;
	left: 3px;
	opacity: 0;
}
.smf-form .smf-item label input[type="checkbox"]:checked+span:before {
	border-color: #28a7e1;
	background: #28a7e1;
}
.smf-form .smf-item label input[type="radio"]:checked+span:after,
.smf-form .smf-item label input[type="checkbox"]:checked+span:after {
	opacity: 1;
}
.smf-form .smf-item input[type="radio"]:focus+span::before,
.smf-form .smf-item input[type="checkbox"]:focus+span::before {
	outline: 1px solid;
}
.smf-form .smf-item input[type="radio"]+label {
	padding: 0.25em 0 0.25em 2em;
}
.smf-form .smf-item input[type="radio"]+label:before {
	border: #b0b0b0 solid 1px;
	width: 1.5em;
	height: 1.5em;
}
.smf-form .smf-item input[type="radio"]+label:after {
	width: 0.5625em;
	height: 0.5625em;
	top: 0.975em;
	left: 0.5em;
}
.smf-form .smf-item input[type="checkbox"]+label {
	padding: 0.5em 0 0.5em 2em;
}
.smf-form .smf-item input[type="checkbox"]+label:before {
	border: #b0b0b0 solid 1px;
	width: 1.5em;
	height: 1.5em;
}
.smf-form .smf-item input[type="checkbox"]+label:after {

}
.smf-form .smf-checkbox-control__control{
	width: 1.5em;
	height: 1.5em;
	margin-top: 0.2em;
}
.smf-form .smf-checkbox-control__control:checked{
	background-color: #28a7e1;
	border-color: #28a7e1;
}
.smf-form .smf-checkbox-control:after{
	width: 1.25rem;
	height: 1.25rem;
}
.smf-action {
	display: flex;
	justify-content: center;
	margin-top: 4em;
	gap: 0 1em;
}
.smf-action .smf-button-control__control {
	display:flex;
	width: fit-content;
	max-width: 300px;
	min-width: 230px;
	border: solid 2px #28a7e1;
	color: #FFF;
	background: #28a7e1 !important;
	font-size: 1rem;
	font-weight: 600;
	padding: 10px 2em;
	min-height: 58px;
	align-items:center;
	justify-content:center;
	position:relative;
	z-index: 0;
	text-decoration:none;
	border-radius: 3em;
	margin: 1em auto 2em;
	transition: filter 0.3s , transform 0.3s;
	filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.1));
}
.smf-action .smf-button-control__control:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
	inset: 0 25px 0 auto;
	margin:auto;
	background-image: url(../../assets/img/common/icon_arrow.svg);
	background-size: contain;
	width: 16px;
	height: 16px;
	font-size: 1rem;
}

.snow-monkey-form[data-screen="input"] .form-confirm,
.snow-monkey-form[data-screen="invalid"] .form-confirm,
.snow-monkey-form[data-screen="confirm"] .form-input,
.snow-monkey-form[data-screen="invalid"] .form-input {
	display:none;
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control:hover {
		background: #28a7e1 !important;
		color: #ffffff !important;
		border: solid 2px #28a7e1;
		filter: none;
		transform: translateY(3px) translateX(3px);
		opacity: 1;
		box-shadow: none;
	}
}
@media (any-hover: hover) {
	.smf-form .smf-complete-content .common_btn a:hover{
		background: #ffffff !important;
		color: #0368be !important;
		opacity:1;
	}
}
.smf-form--letter .smf-text-control__control,
.smf-form .smf-textarea-control__control:active,.smf-form .smf-textarea-control__control:focus,.smf-form .smf-textarea-control__control:focus-within,.smf-form .smf-textarea-control__control[aria-selected=true] {
	font-weight: 500;
}
.smf-form .form-agree-area{
	font-size: 1.125rem;
	font-weight: 600;
	padding: 2em 0 0;
	text-align: center;
}
.smf-form .form-agree-area a{
	font-size: 1rem;
}
.smf-action .smf-button-control__control[data-action="back"] {
	color: #28a7e1;
	background: #ffffff !important;
}
.smf-action .smf-button-control__control[data-action="back"]:after {
	color: #28a7e1;
	mask-image: url(../../assets/img/common/icon_arrow.svg);
	mask-size: contain;
	background:#28a7e1;
	background-size: contain;
	width: 16px;
	height: 16px;
	font-size: 1rem;
	inset: 0 auto 0 25px;
	transform: rotate(180deg);
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control[data-action="back"]:hover {
		color: #28a7e1!important;
		background: #ffffff !important;
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover:after {
		color: #28a7e1 !important;
	}
}
@media screen and (max-width:767px) {
	.smf-form .form-agree-area .text_lead,
	.smf-form .form-promotion-area .text_lead{
		text-align: left;
	}
	.smf-action .smf-button-control+.smf-button-control{
		margin-left: 0;
	}
}


@media screen and (max-width: 767px) {
	.smf-form .smf-item input[type="text"],
	.smf-form .smf-item input[type="search"],
	.smf-form .smf-item input[type="email"],
	.smf-form .smf-item input[type="tel"],
	.smf-form .smf-item input[type="number"],
	.smf-form .smf-item input[type="password"],
	.smf-form .smf-item input[type="date"],
	.smf-form .smf-item textarea,
	.smf-form .smf-item select {
		font-size: 1rem;
	}
	.smf-form .smf-item label input[type="radio"]+span,
	.smf-form .smf-item label input[type="checkbox"]+span {
		font-size: 1rem;
		padding-left: 1.25em;
	}
	.smf-form .smf-item label input[type="checkbox"]+span::before {
		width: 1.125rem;
		height: 1.125rem;
	}
	.smf-form .smf-item label input[type="checkbox"]+span::after {
		width: 1rem;
		height: 0.5rem;
		border-width: 3px;
		left: 1px;
		top: 0;
	}
	.smf-form .smf-item label input[type="radio"]+span::before {
		width: 14px;
		height: 14px;
	}
	.smf-form .smf-item label input[type="radio"]+span::after {
		width: 8px;
		height: 8px;
	}
	.smf-action {
		flex-direction: column;
		justify-content: center;
		margin-top: 3em;
		gap: 1em 1em;
	}
	.smf-action .smf-button-control+.smf-button-control {
	    margin-left: 0;
	}
	.smf-form .sp_t-left{
		text-align: left;
	}
}
/* news
-------------------------------------------------------------------*/
.news_box{
    width: 100%;
}
.news_box ul{
   padding-left: 0;
}
.news_box ul li{
   list-style-type: none !important;
   margin: 0;
}
.news_box article a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2em 5px;
    border-bottom: 1px solid #e4e2e2;
    text-decoration: none;
    transition: background 0.3s;
}
.news_box article a p{
	margin: 0;
}
@media (any-hover: hover) {
    .news_box article a:hover{
        background: #e5e5e4;
		color: #282828;
    }
}
.news_box article a .cat{
    min-width: 120px;
    margin: 0;
}
.news_box article a .cat span{
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
}
.news_box article a .cat-nip span{
    border: 1px solid #004ea2;
    color: #004ea2;
}
.news_box article a .cat-maker span{
    border: 1px solid #e60012;
    color: #e60012;
}
.news_box article a .cat-company span{
    border: 1px solid #e6680b;
    color: #e6680b;
}
.news_box article a .cat-exhibition span{
    border: 1px solid #33ad38;
    color: #33ad38;
}
.news_box article a time{
    min-width: 100px;
}
@media screen and (max-width:767px) {
    .news_box article a{
        padding: 1em 5px;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1em 0;
    }   
	.news_box article a .news-title{
		width: 100%;
	}
	.news_box article a time{
	    min-width: 80px;
	}
}
/* topic
-------------------------------------------------------------------*/
.col_area .lib_list{
    display: flex;
    margin-bottom: 3em;
    flex-wrap: wrap;
    gap: 3em 2%;
    padding: 0;
}
.col_area .lib_list li{
    width: 32%;
    list-style-type: none;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}
.col_area .lib_list li a{
    text-decoration: none;
    position: relative;
    z-index: 0;
    display: block;
    color: unset;
}
.col_area .lib_list li .img_area{
    margin-bottom: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}
.col_area .lib_list li .img_area img{
    overflow: hidden;
    transition: .5s;
}
@media (any-hover: hover) {
    .col_area .lib_list li a:hover .img_area img{
         transform: scale(1.05);
    }
}
.col_area .lib_list li .text_area{
	padding: 1em;
}
.col_area .lib_list li .lib-cat{
    position: absolute;
    z-index: 1;
    margin: auto;
    top: -0.9em;
    top: -3.5%;
    bottom: auto;
    left: 2em;
    right: auto;
    background: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.3em 1em;
    white-space: nowrap;
    line-height: unset;
}
.col_area .lib_list li .lib-cat span{
    padding-left: 1.2em;
    position:relative;
    z-index: 0;
}
.col_area .lib_list li .lib-cat span::before{
    position: absolute;
    z-index: 0;
    display: block;
    content: "";
    width:9px;
    height: 9px;
    background: #e60012;
    border-radius: 5px;
    margin: auto;
    top: 6px;
    bottom: auto;
    right: auto;
    left: 0;
}
.col_area .lib_list li time{
    font-size: 1rem;
    font-weight: 600;
    color: #8f8f8f;
    display: inline-block;
    margin-bottom: 0.5em;
}
.col_area .lib_list li .lib-title{
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5em;
    color: unset;
}
.col_area .lib_list li .lib-text{
    line-height: 1.8;
    margin-bottom: 0.5em;
	  overflow: hidden;
	  display: -webkit-box;
	  -webkit-box-orient: vertical;
	  -webkit-line-clamp: 3;
}
.col_area .lib_list li .lib-subcut{
    margin: 0;
    font-size: 0.875rem;
    background: #fff;
    display: inline-block;
    margin-right: 0.5em;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    padding: 1px 8px;
}
.col_area .lib_list li .topic_tags {
	display: inline-block;
	margin-right: 1em;
}
.col_area .lib_list li .topic_tags {
	display: inline-block;
	margin: 0 1em 0 0;
}
.col_area .lib_list li .topic-exterior{
	color: #004ea2;
}
.col_area .lib_list li .topic-interior{
	color: #e60013;
}
@media screen and (max-width:767px) {
    .col_area .lib_list{
		margin-top: 4em;
        flex-direction: column;     
		gap: 2em;
    }
    .col_area .lib_list li{
        width: 100%;
    }
}
