@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;
}
.common_btn a{
	position:relative;
	display:flex;
	justify-content: flex-start;
	align-items:center;
	max-width:340px;
	border:solid 1px #c9c9c9;
	font-size: 1rem;
	padding: 10px 2em;
	min-height:3.75em;
	text-decoration:none;
	transition:background .4s,color .4s,transform .4s;
	width:100%;
}
.common_btn a:after{
	content: "";
	width:21px;
	height:5px;
	position: absolute;
	margin:auto;
	top:0;
	bottom:0;
	right: 20px;
	transition: filter .4s;
	background:url(../img/common/icon-arrow.svg) no-repeat center / contain;
	filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(0%) hue-rotate(177deg) brightness(94%) contrast(84%);
}
.common_btn a:hover{
	background: #c2b984;
	color:#fff;
}
.common_btn a:hover:after{
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(342deg) brightness(102%) contrast(102%);
}
@media screen and (max-width: 768px) {
	.common_btn a{
		font-size:0.86rem;
		padding: 10px 1em;
		min-height: 3.323em;
	}
}



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: #ffffff solid 1px;
	padding: 0;
}
.topics_list li{
	border-bottom: #ffffff solid 1px;
	margin: 0;
}
.topics_list li a{
	display:flex;
	flex-wrap:wrap;
	padding-block: 25px 25px;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 3%;
	transition:.5s backgorund-color;
}
.topics_list li a:hover{
	text-decoration:none;
}
.topics-txt{
	display:flex;
	justify-content:flex-start;
	align-items: center;
	flex-wrap:wrap;
	gap: 1em 15px;
	flex:1;
	font-size: 1.125rem;
}
.topics-txt time{
	color:#6a6a6a;
	width: 83px;
	font-size: 1rem;
}
.topics-txt .post-cat_wrap{
	width: calc(100% - 105px);
}
.topics-txt .post-cat_wrap .post-cat{
	min-width:80px;
	background: #274875;
	color: #fff;
	font-size: 0.75rem;
	padding: 0.334em 1.349em;
	border:1px solid #274875;
	transition: .3s background-color,.3s color;
}
.topics-txt .post-cat_wrap .post-cat + .post-cat{
	margin-left:1em;
}
.topics-txt .post-cat_wrap .post-cat.yomiuri-career{
	background:#a08b71;
	border-color:#a08b71;
}
.topics-txt .post-cat_wrap .post-cat.yomiuri-parttime{
	background:#912d37;
	border-color:#912d37;
}
.topics-txt p{
	width:100%;
	line-height: 1.875;
	margin: 0;
}
.topics-image{
	position:relative;
	width:156px;
	aspect-ratio:156 / 106;
}
.topics-image img{
	inset:0;
	position:absolute;
	object-fit:cover;
	top:0;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
}
@media (hover: hover) {
	.topics_list li a:hover .topics-txt .post-cat_wrap .post-cat{
		background-color: #fff;
		color: #274875;
	}
	.topics_list li a:hover .topics-txt .post-cat_wrap .post-cat.yomiuri-career{
		background:#fff;
		color:#a08b71;
	}
	.topics_list li a:hover .topics-txt .post-cat_wrap .post-cat.yomiuri-parttime{
		background:#fff;
		color:#912d37;
	}
	.topics_list li a:hover p{
		text-decoration:underline;
		text-underline-offset:5px;
	}
}
@media only screen and (max-width: 768px) {
	.topics-txt{
		gap: 0.5em 5px;
	}
	.topics-txt p{
		font-size: 0.93rem;
		line-height: 1.5;
	}
	.topics_list li a{
		padding-block: 15px 15px;
		gap: 3%;
	}
	.topics-image{
		width:110px;
	}
	.topics-image img{
		max-width:100%;
		height:auto;
	}
	.topics-txt .post-cat_wrap .post-cat{
		min-width:60px;
		padding: 0.15em 0.5em;
	}
}











/*  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 {
	margin:3.5em auto 3em;
	font-size:0.875rem;
}
#pan.sitewrap{
	overflow:auto;
}
#pan .sitewrap::-webkit-scrollbar {
	height:5px;
	width:5px;
}
#pan .sitewrap::-webkit-scrollbar-track {
	border-radius: 5px;
}
#pan .sitewrap::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #b3b3b3;
}
#pan ol{
	padding:0;
	margin:0;
	font-size: 0.875rem;
	position: relative;
	z-index: 5;
	overflow: auto;
	width: max-content;
}
#pan li{
	display:inline-block;
	vertical-align:middle;
	position: relative;
}
#pan li a{
	text-decoration:underline;
	text-underline-offset:6px;
}
#pan li a:hover{
	text-decoration:none;
}
#pan li{
	margin-right: 1.5em;
	margin-block: 0;
}
#pan li:last-child{
	margin-right: 0em;
}
#pan li:before{
	content:"";
	width:0.5em;
	height:1px;
	background:#282828;
	position: absolute;
	left: -1em;
	top: 0.75em;
}
#pan li:first-child:before{
	content: "";
	display:none;
	margin-right:0;
}
@media only screen and (max-width:1345px) {
	#pan {
		padding:15px 15px 22px;
	}
}
@media only screen and (max-width: 767px) {
	#pan {
		margin-block:15px 25px;
		padding:10px;
	}
	#pan a,
	#pan li a:hover{
		text-decoration:underline;
	}
}

/*  ページャー  */
.pager{
	text-align:center;
	padding:30px 0 0 0;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:0.75em;
}
.pager .page-numbers{
	width:40px;
	border:1px solid #BBBBBB;
	background:#fff;
	display:inline-block;
	aspect-ratio:1/1;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:0.875rem;
	transition:.5s background-color;
	text-decoration:none;
}
.pager .page-numbers:hover,
.pager .page-numbers.current{
	background:#274875;
	color:#fff;
}
.pager .page-numbers.dots{
	background:none;
	color:#282828;
	border:none;
	width:auto;
}
@media screen and (max-width: 768px) {
	.pager .page-numbers{
		width: 35px;
	}
	.pager{
		gap:0.5em;
	}
}

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


/*フォーム*/
.snow-monkey-form .smf-item {
	padding: 1rem 0;
	border-bottom: 1px solid #e4e4e4;
}
.snow-monkey-form .smf-item:last-child{
	border-bottom:none;
}
.smf-form--simple-table .smf-item{
	display:flex;
}
.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: #e5e5e5 solid 1px;
	display: block;
	width: 100%;
	height: 2.5em;
	line-height: 2.5em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	font-family: "Noto Serif JP", serif;
}
.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.5em;
	line-height: 2.5em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 4px;
	font-family: "Noto Serif JP", serif;
}
.smf-form .smf-item .smf-select-control{
	padding:0;
	background: #fff;
	max-width: 250px;
}
.snow-monkey-form input::placeholder,
.snow-monkey-form textarea::placeholder {
	color: #919191;
}
.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 .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: #24305c;
	top: 0;
	left: 3px;
	opacity: 0;
	bottom: 0;
	margin: auto;
}
.snow-monkey-form label input[type="radio"]:checked+span:before {
	border-color: #24305c;
}
.snow-monkey-form label input[type="checkbox"]:checked+span:before {
	border-color: #289ac5;
	background: #289ac5;
}
.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: 5%;
	margin-top: 2em
}
.smf-action > *{
	margin-top:0;
}
.smf-action .smf-button-control__control{
	display:inline-flex;
	justify-content: center;
	align-items:center;
	min-height: 5em;
	border-radius:0;
	min-width: 270px;
	gap:1em;
	transition:background .4s,color .4s;
	border:solid 1px;
	position:relative;
	padding: 1em 1.5em;
	background: #24305c;
	color: #fff;
	text-decoration: none;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
}
.smf-action .smf-button-control__control[data-action="back"]{
	background:#fff;
	color:#24305c;
	border-color:#24305c;
}
.smf-action .smf-button-control__control[data-action="back"]:after{
	border-color: #24305c transparent transparent transparent;
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control:hover{
		background: #fff;
		color: #24305c;
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover{
		background:#24305c;
		color:#fff;
	}
}
@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;
	}
	.smf-action > * + *{
		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;
	}
	.thanks_text{
		text-align:left;
	}
	.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: 10px;
		bottom:auto;
		width: 12px;
		height: 12px;
		left: 3px;
	}
	body.article .thanks_area{
		padding: 25px 15px;
	}
	.thanks_check{
		width:12%;
		margin:0 auto 0.5em
	}
	.thanks_check img{
		max-width:100%;
		height:auto;
	}
	body.article .thanks_area .thanks_style{
		font-size:1.71rem;
	}
	body.article .thanks_area span{
		font-size:1rem;
	}
	body.article .thanks_area p{
		font-size:1rem;
	}
	.snow-monkey-form input[type="date"]{
	max-width:100%;
}
}