@charset "utf-8";
/* head,text */
.page-header {
  text-align: left;
  min-height: 26.875em;
  background-color: var(--main_color);
}
.page-header::before {
  display: none;
}
.page-header .page-header-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5em;
  font-size: 1rem;
  color: var(--white);
  padding: 0;
  max-width: 1200px;
}
.page-header .page-header-title {
  font-size: 2.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-header .page-header-title span {
  font-size: 2rem;
  padding-left: 0.25em;
}
.page-header .page-header-subtext {
  font-size: 1em;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}
body:not(.home) .article-wrap h2,
body:not(.home) .article-wrap .h_style2{
	font-size:2.25rem;
	font-weight:bold;
	padding-bottom: 0.75em;
	margin-bottom:1em;
	border-bottom:2px solid;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;
}
body:not(.home) .article-wrap h3,
body:not(.home) .article-wrap .h_style3{
	font-size:2rem;
	font-weight:500;
	padding-top: 1.75em;
	margin-bottom:1em;
	position:relative;
	text-align:center;
	letter-spacing: 0.05em;
}
body:not(.home) .article-wrap h3:before,
body:not(.home) .article-wrap .h_style3:before{
	content:"";
	width:2px;
	height:37px;
	background:var(--black);
	position:absolute;
	inset:0 0 auto;
	margin:auto; 
}
body:not(.home) .article-wrap h4,
body:not(.home) .article-wrap .h_style4{
	font-size:1.75rem;
	font-weight:bold;
	margin-bottom:1em;
}
body:not(.home) .article-wrap h3.h_style5,
body:not(.home) .article-wrap h4.h_style5{
	position:relative;
	font-size:1.625rem;
	padding-left:0.75em;
	letter-spacing: 0.05em;
	text-align:left;
	padding-top:0;
}
body:not(.home) .article-wrap h3.h_style5:before,
body:not(.home) .article-wrap h4.h_style5:before{
	content:"";
	width:5px;
	background:var(--main_color);
	position:absolute;
	inset:0.125em auto 0.125em 0;
}
body:not(.home) .article-wrap h5,
body:not(.home) .article-wrap .h_style5{
	font-size:1.75rem;
	font-weight:bold;
	margin-bottom:1em;
}


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:1200px) {
	.page-header .page-header-inner{
		padding-inline:15px;
	}
}
@media screen and (max-width: 768px) {
	p.text,
	.texts > p{
		font-size:1rem;
	}
	.page-header {
	  min-height: 13em;
	  background-position-x: 56%;
	}
	.page-header .page-header-title {
	  font-size: 2rem;
	}
	.page-header .page-header-title span {
	  font-size:1.29rem;
	  padding-left: 0.25em;
	}
	.page-header .page-header-subtext {
	  font-size: 1em;
	}
	body:not(.home) .article-wrap h2,
	body:not(.home) .article-wrap .h_style2{
		font-size:1.71rem;
		border-bottom-width:1px;
	}
	body:not(.home) .article-wrap h3,
	body:not(.home) .article-wrap .h_style3{
		font-size:1.47rem;
		margin-bottom: 1.5em;
	}
	body:not(.home) .article-wrap h3:before,
	body:not(.home) .article-wrap .h_style3:before{
		width:1px;
		height:28px;
	}
	body:not(.home) .article-wrap h4,
	body:not(.home) .article-wrap .h_style4{
		font-size: 1.29rem;
	}
}


.btn_area{
	display: flex;
	gap: 1em;
}
.common_btn{
	text-align:center;
	margin: 2em auto 2em;
}
.common_btn a,
.common_btn02 a{
	padding: 0.5em 3em 0.5em;
	text-decoration: none;
	background: #f0f5fa;
	border: 1px solid var(--main_color);
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1;
	min-height: 4.445em;
	text-align:center;
	transition:transform 0.3s;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.25));
	border-radius: 5px;
}
.common_btn02 a{
	background:var(--white);
	font-size: 1.5rem;
	min-height: 4.167em;
	padding-inline:15px;
	color:var(--main_color);
}
body:not(.home) .common_btn a{
	background: var(--main_color);
	color:var(--white);
	max-width: 346px;
	margin: 0 auto;
	font-size: 1rem;
	min-height: 3.875em;
}
.common_btn02 a span{
	position:relative;
	padding-bottom:1em;
}
.common_btn02 a span:before {
	content: '';
	width: 12px;
	height: 12px;
	border-top: solid 2px var(--main_color);
	border-right: solid 2px var(--main_color);
	position: absolute;
	inset:0 0 -1em;
	transform: rotate(135deg);
	margin:auto;
}
.common_btn a:before{
    content:"";
    width:20px;
    height:6px;
    background:url(../img/common/icon-arrow.svg) no-repeat center / contain;
    position:absolute;
    inset: 0 1em 0 auto;
    margin:auto;
    filter: brightness(0) saturate(100%) invert(31%) sepia(83%) saturate(927%) hue-rotate(181deg) brightness(91%) contrast(87%);
}
body:not(.home) .common_btn a:before{
	filter: brightness(0) invert(1);
}
.common_btn a span{
	position: relative;
	z-index: 0;
}
.contact_btn a{
	padding: 0.5em 3em 0.5em;
	text-decoration: none;
	background: var(--main_color);
	border: 1px solid var(--main_color);
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
	min-height: 4.375em;
	text-align:center;
	transition:transform 0.3s;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.25));
	color: var(--white);
}
.contact_btn a span:before{
    content:"";
    width: 18px;
    height: 14px;
    background: url(../img/common/icon_mail.svg) no-repeat center / contain;
    position:absolute;
    inset: 0 auto 0 0;
    margin:auto;
}
.contact_btn a span{
	position: relative;
	z-index: 0;
	padding-left: 1.5em;
}
.contact_btn a span::before{
    display: block;
    position: absolute;
    z-index: 1;
    content: "";
    width: 18px;
    height: 14px;
    background: #fff;
    mask: url(../img/common/icon_mail.svg);
    mask-size: contain;
    background-repeat: no-repeat;
    background-size: contain;
    margin:auto;
    inset: 0 auto 0 0;
    transition:background 0.3s;
    transform: translateY(2px);
}
@keyframes arrowRightUp {
	0% {
		transform: translate(0);
	}
	48% {
		transform: translateX(100%);
	}
	49% {
		transform: translateX(100%);
		visibility: hidden;
		opacity: 0;
	}
	50% {
		transform: translateX(-100%);
		visibility: hidden;
		opacity: 0;
	}
	51% {
		transform: translateX(-100%);
		visibility: visible;
		opacity: 1;
	}
	100% {
		transform: translate(0);
	}
}
@media (any-hover: hover) {
	.common_btn a:hover{
		transform:translateY(5px);
	}
	.common_btn a:hover:before{
		animation-name: arrowRightUp;
		animation-duration: 0.3s;
		animation-iteration-count: 1;
	}
	.contact_btn a:hover{
		transform:translateY(5px);
	}
	.common_btn02 a:hover{
		transform:translateY(5px);
	}
}
@media screen and (max-width:767px) {
	.common_btn{
		margin:1em auto 1em;
	}
	.common_btn a{
		max-width: 270px;
		font-size: 1rem;
		padding: 0.5em 2em;
		min-height: 50px;
		margin-inline: auto;
	}
	.common_btn a span{
		padding-right: 0;
	}
	.common_btn a::before{
		inset: 0 20px 0 auto;
		width: 14px;
		height: 6px;
	}
	.common_btn a span::before{
	    width: 15px;
	    height: 12px;
	    inset: 0 auto 0 -6px;
	}
	.contact_btn a{
		padding: 0.5em 3em 0.5em;
		font-size: 1rem;
		min-height:4.286em;
	}
	.common_btn02 a{
		font-size: 1rem;
	}
	.common_btn02 a span:before {
		width:12px;
		height:12px;
		inset:0 0 -1.5em;
	}
}
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 */


/*  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: 85px;
	text-align: right;
}
#pan ol {
	padding: 0;
	margin: 0;
	font-size: 0.875rem;
	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;
}
@media (any-hover: hover) {
	#pan li a:hover {
		text-decoration: underline;
	}
}
#pan li:before {
	content: "";
	width: 0.875rem;
	height: 1px;
	background: #282828;
	display: inline-block;
	margin-right: 0.75em;
	vertical-align: middle;
}
#pan li:first-child:before {
	content: "";
	display: none;
	margin-right: 0;
}
@media only screen and (max-width:1200px) {
	#pan {
		padding-inline:15px;
	}
}
@media only screen and (max-width: 767px) {
	#pan {
		padding: 0;
		margin: 15px 15px 45px;
		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: none;
	}
	#pan ul{
		padding: 0;
		margin: 0;
	}
	#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;
	}
}

.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;
	}
}


.table_wrap table {
	margin:0 auto;
	border:none;
}
.table_wrap table tr{
	border-top:solid 1px #d4d4d4;
}
.table_wrap table tr:last-child{
	border-bottom:solid 1px #d4d4d4;
}
.table_wrap table th,
.table_wrap table td{
	font-size:1rem;
	padding: 30px 0em;
	border:none;
	line-height:1.85;
	font-weight:500;
	vertical-align: baseline;
}
.table_wrap table th{
	font-weight:500;
	font-size: 1.375rem;
}
.table_wrap table th + td{
	border-left:none;
}
.table_wrap table:has(th + td) th{
	border-right:none;
	width:260px;
}
.table_wrap table:has(th + td) th p{
	width:fit-content;
	text-align:center;
	margin-bottom:0
}
.table_wrap table .caption{
	font-size:0.875em;
	line-height:1.6;
}
.table_wrap table *:not(.caption) + .caption{
	margin-top:1em;
}
@media screen and (max-width: 768px) {
	.table_wrap{
		overflow:auto;
		padding:0 15px;
	}
	.table_wrap table{
		width:800px;
	}
	.table_wrap table th,
	.table_wrap table:has(th + td) th{
		padding:0.5em 1em;
		border-left:none;
		text-align: center;
	}
	.table_wrap table td{
		border:none;
		padding: 1em 0;
		font-size:0.94rem;
	}
	.table_wrap table *:not(.caption) + .caption{
		margin-top:1em;
	}
	.table_wrap table th{
		font-size: 1.14rem;
	}
}

.wp-block-list{
	padding-left:1.5em;
}
.wp-block-list li {
  list-style-type: disc;
	margin-block:0.5em;
}














/*  タブ切替  */
.tab_change{
	position: relative;
	z-index: 0;
}
.tab_change>input[type="radio"] {
	position: absolute;
	z-index: -100;
	width: 0;
	top: 0;
	left: 0;
}
.tab_change>input[type="radio"]~.tab_views .tab_content {
	position: relative;
	z-index: -10;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity .4s;
}
.tab_change>input[id$="01"]:checked~.tab_views *[class$="01"],
.tab_change>input[id$="02"]:checked~.tab_views *[class$="02"],
.tab_change>input[id$="03"]:checked~.tab_views *[class$="03"],
.tab_change>input[id$="04"]:checked~.tab_views *[class$="04"],
.tab_change>input[id$="05"]:checked~.tab_views *[class$="05"]{
	z-index: 10;
	max-height: 100%;
	overflow: visible;
	opacity: 1;
}
.tab_list {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 1em 0;
	max-width: 1200px;
	margin-inline: auto;
	padding-top: 100px;
}
.tab_list li {
	width: 50%;
}
.tab_list li label{
	font-weight: 600;
	text-align: left;
	min-width: 150px;
	gap: 1em 1%;
	max-width: 1200px;
	margin-inline: auto;
	font-size: 1.25rem;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #d5dae0;
	border: 1px solid #bfbfbf;
	color: #7a7a7a;
	min-height: 62px;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
	word-break: auto-phrase;
	text-align: center;
}
.tab_change>input[id$="01"]:checked~.tab_controller *[for$="01"],
.tab_change>input[id$="02"]:checked~.tab_controller *[for$="02"],
.tab_change>input[id$="03"]:checked~.tab_controller *[for$="03"],
.tab_change>input[id$="04"]:checked~.tab_controller *[for$="04"],
.tab_change>input[id$="05"]:checked~.tab_controller *[for$="05"]{
	color: var(--white);
	background: var(--main_color);
}
.tab_list li label p{
	margin-bottom:0;
}
@media (any-hover: hover) {
	.tab_list li label:hover{
		color: var(--white);
		background: var(--main_color);
	}
}
@media screen and (max-width: 767px) {
	.tab_list {
		margin-bottom: 1em;
		flex-wrap: wrap;
		gap: 0;
		justify-content: flex-start;
	}
	.tab_list li label {
		font-size: 1rem;
		padding: 0.75em 0.25em;
		min-height: 48px;
	}
	.tab_change .tab_controller label:before {
		border-width: 10px 4px 0 4px;
		inset: auto 0 -10px;
	}
}


/* contact
-------------------------------------------------------------------*/
/*フォーム*/
.snow-monkey-form .smf-item {
	padding: 1rem 0;
}
.snow-monkey-form .smf-item:last-child{
	border-bottom:none;
}
.smf-form--simple-table .smf-item{
	display:flex;
}
.smf-placeholder[data-name="your-doui"]{
	margin-block:2em 3em;
	text-align:center;
}
.smf-form .smf-radio-buttons-control--horizontal .smf-radio-buttons-control__control>.smf-label {
	display: inline-block;
	margin-right: 1em;
	margin-top: 0;
}
.smf-form .birth-wrap:not(.is-not-stacked-on-mobile)>.wp-block-column,
.smf-form .birth-wrap>.wp-block-column{
	flex-basis: auto;
	flex-grow: 0;
}
.snow-monkey-form .smf-item.no-form{
	border-bottom:none!important;
	padding: 0;
}
.snow-monkey-form .smf-item__col--label {
	max-width: 190px;
	flex: 100%;
}
.smf-form .smf-item .smf-item__col--label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100%;
	max-height: 3.5em;
	flex: 280px;
	width: 280px;
	padding-right: 5em;
	box-sizing: border-box;
}
.smf-form .smf-item.required-box .smf-item__description {
	display: inline-block;
	font-size: 0.625rem;
	line-height: 1;
	color: #fff !important;
	background: #e52331 !important;
	border: 1px solid #e52331;
	padding: 0.35em 1.0875em;
	margin: 0;
}
.snow-monkey-form .smf-item__col--controls {
	max-width: calc(100% - 280px);
	flex: 100%;
	margin-top: 0;
	/* min-height: 3.5em; */
}
.snow-monkey-form .smf-item .smf-radio-button-control__control{
	display:none;
}
.smf-form--simple-table .smf-item--divider .smf-item__col{
	max-width:none;
}
.snow-monkey-form input,
.snow-monkey-form select{
	font-family: "Noto Sans JP", serif;
}
.snow-monkey-form .smf-form .smf-item .smf-text-control__control,
.snow-monkey-form input[type="search"],
.snow-monkey-form input[type="email"],
.snow-monkey-form input[type="tel"],
.snow-monkey-form input[type="number"],
.snow-monkey-form input[type="password"],
.snow-monkey-form .smf-form .smf-item .smf-textarea-control__control {
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
	margin: 0;
	border: #bfbfbf solid 1px;
	display: block;
	width: 100%;
	height: 2.875em;
	line-height: 2.875em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.snow-monkey-form input[type="date"]{
	max-width:170px;
}
.smf-form .smf-item .smf-select-control,
.smf-form .smf-item .smf-select-control__control{
	width: 100%;
	height: 2.875em;
	line-height: 2.875em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.smf-form .smf-item .smf-select-control{
	padding:0;
	background: #fff;
}
.snow-monkey-form input::placeholder,
.snow-monkey-form textarea::placeholder {
	color: #a2a0a0;
}
.snow-monkey-form .smf-form .smf-item .smf-textarea-control__control {
	height: auto;
	padding: 0.5em 1em;
	line-height: 1.4em;
}
.smf-form .smf-item .smf-select-control__control:active,
.smf-form .smf-item .smf-select-control__control:focus,
.smf-form .smf-item .smf-select-control__control:focus-within,
.smf-form .smf-item .smf-select-control__control[aria-selected=true]{
	border-color:#000;
}
.smf-form .smf-item .smf-select-control__toggle:before,
.smf-form .smf-item .smf-select-control__control:focus + .smf-select-control__toggle:before{
	border-color:#000;
}
.snow-monkey-form[data-screen="confirm"] .smf-item.required-box .smf-item__description {
	display:none;
}
#autozip {
   display: none !important;
}

/*radio,checkbox*/
.snow-monkey-form label {
	cursor: pointer;
}
.smf-form .smf-item .smf-checkboxes-control__control>.smf-label{
	margin-right:0.5em;
	margin-bottom:0.5em;
}
.smf-form .smf-item.check_center .smf-checkboxes-control__control>.smf-label{
	text-align:center;
	margin-top:1.5em;
}
.smf-form .smf-item .smf-radio-control__control,
.smf-form .smf-item .smf-checkbox-control__control {
	display: none;
}
.smf-form input.smf-checkbox-control__control{
	display:none;
}
.smf-checkboxes-control__control:has(input[name="your-doui[]"]){
	text-align:center;
	margin-top: 1.5em;
}
.smf-form .smf-item .smf-select-control__toggle{
	background:transparent;
}
.snow-monkey-form input[type="radio"]+span,
.snow-monkey-form input[type="checkbox"]+span {
	display: inline-block;
	padding: 0.25em 0.25em 0.25em 1.875em;
	position: relative;
	margin-top: 0;
}
.snow-monkey-form input[type="radio"]+span{
	padding-left: 1.75em;
}
.snow-monkey-form label input[type="radio"]+span:before,
.snow-monkey-form label input[type="checkbox"]+span:before,
.snow-monkey-form label input[type="radio"]+span:after,
.snow-monkey-form label input[type="checkbox"]+span:after {
	content: "";
	display: inline-block;
	width: 1.375rem;
	height: 1.375rem;
	border: solid 1px #d2d2d2;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 5px;
	transition: opacity .2s;
}
.snow-monkey-form label input[type="radio"]+span:before,
.snow-monkey-form label input[type="checkbox"]+span:before{
	background-color:#fff;
}
.snow-monkey-form label input[type="checkbox"]+span:after {
	border: none;
	width: 1rem;
	height: 0.5rem;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	transform: rotate(135deg);
	top: 10px;
	left: 3px;
	opacity: 0;
}
.snow-monkey-form label input[type="radio"]+span:before {
	border-radius: 50%;
	width: 24px;
	height: 24px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.snow-monkey-form label input[type="radio"]+span:after {
	border-radius: 50%;
	width: 18px;
	height: 18px;
	border: none;
	background: var(--main_color);
	top: 0;
	left: 3px;
	opacity: 0;
	bottom: 0;
	margin: auto;
}
.snow-monkey-form label input[type="radio"]:checked+span:before {
	border-color: var(--main_color);
}
.snow-monkey-form label input[type="checkbox"]:checked+span:before {
	border-color: var(--main_color);
	background: var(--main_color);
}
.snow-monkey-form label input[type="radio"]:checked+span:after,
.snow-monkey-form label input[type="checkbox"]:checked+span:after {
	opacity: 1;
}

/*smf-button-control__control*/
.smf-action{
	display:flex;
	justify-content:center;
	align-items:stretch;
	gap: 2%;
	margin-top: 2em
}
.smf-action > *{
	margin-top:0;
}
.smf-action .smf-button-control__control,
.common_btn button{
 padding: 0.5em 3em 0.5em;
 text-decoration: none;
 background: var(--main_color);
 border: 1px solid var(
 --main_color);
 font-size: 1rem;
 font-weight: bold;
 line-height: 1;
 min-height: 3.875em;
 text-align:center;
 transition: transform 0.3s,background-color 0.3s;
 position: relative;
 z-index: 0;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 5px;
 color: var(--white);
}
.smf-action .smf-button-control__control:after,
.common_btn button:after{
	content:"";
    width:20px;
    height:6px;
    background:url(../img/common/icon-arrow.svg) no-repeat center / contain;
    position:absolute;
    inset: 0 1em 0 auto;
    margin:auto;
    filter: brightness(0) invert(1);
}
.smf-action .smf-button-control__control[data-action="back"]{
	color:  var(--main_color);
	background:var(--white);
}
.smf-action .smf-button-control__control[data-action="back"]:after{
	filter: brightness(0) saturate(100%) invert(31%) sepia(83%) saturate(927%) hue-rotate(181deg) brightness(91%) contrast(87%);
}
@keyframes arrowRightUp {
	0% {
		transform: translate(0);
	}
	48% {
		transform: translateX(100%);
	}
	49% {
		transform: translateX(100%);
		visibility: hidden;
		opacity: 0;
	}
	50% {
		transform: translateX(-100%);
		visibility: hidden;
		opacity: 0;
	}
	51% {
		transform: translateX(-100%);
		visibility: visible;
		opacity: 1;
	}
	100% {
		transform: translate(0);
	}
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control:hover,
	.common_btn button:hover{
	  background: var(--white);
	  opacity: 1;
	  filter:none;
	  transform:translateY(5px);
	  color: var(--main_color);
	}
	.smf-action .smf-button-control__control:hover:after,
	.common_btn button:hover:after{
	  animation-name: arrowRightUp;
      animation-duration: 0.5s;
      filter: brightness(0) saturate(100%) invert(31%) sepia(83%) saturate(927%) hue-rotate(181deg) brightness(91%) contrast(87%);
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover{
		color: var(--white) !important;
		background:var(--main_color);
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover:after{
		filter: brightness(0) invert(1);
	}
}
@media screen and (max-width:767px) {
	.snow-monkey-form .smf-item{
		padding: 1em 0;
	}
	.smf-form--simple-table .smf-item{
		display:block;
	}
	.smf-form .smf-item .smf-item__col--label{
		justify-content:flex-start;
		gap:3%;
		margin-bottom: 0.75em;
		padding-bottom: 0;
		padding-right: 0;
		width: 100%;
	}
	.smf-form .birth-wrap.is-layout-flex{
		gap:12px;
	}
	.snow-monkey-form .smf-item__col--label,
	.snow-monkey-form .smf-item__col--controls,
	.snow-monkey-form .form_harf .smf-item__col--label,
	.snow-monkey-form .form_harf .smf-item__col--controls{
		max-width: 100%;
	}
	.smf-form .smf-item .smf-select-control{
		max-width:100%;
	}
	.smf-action{
		display:flex;
		flex-direction:column-reverse;
		flex-wrap: wrap;
	}
	.snow-monkey-form .smf-action{
		margin: 0;
	}
	.smf-action > .smf-button-control + .smf-button-control{
		margin-top:1em;
	}
	.smf-action .smf-button-control+.smf-button-control{
		margin:0;
	}
	.smf-action .smf-button-control__control{
		margin:0.5em auto;
		width: 100%;
		max-width: 270px;
		border-width: 1px;
	}
	.snow-monkey-form .smf-item.privacy-box,
	.snow-monkey-form .smf-item.text-box{
		margin: 20px auto;
		padding: 20px 15px;
	}
	.snow-monkey-form .privacy-box ul li:before{
		width:4px;
		height:4px;
		left:0;
		top:0.65em;
	}
	.snow-monkey-form .sp-flex{
		gap: 0.5em;
	}
	.snow-monkey-form label input[type="radio"]+span:before {
		top: 2px;
		width: 18px;
		height: 18px;
	}
	.snow-monkey-form label input[type="radio"]+span:after {
		top: 9px;
		bottom:auto;
		width: 12px;
		height: 12px;
		left: 3px;
	}
	.snow-monkey-form input[type="date"]{
		max-width:100%;
	}
}