@charset "utf-8";
/* Link */
.text_link a,
a.text_link {
	text-decoration: underline;
}
.text_link a:hover,
a.text_link:hover {
	text-decoration: none;
}
.block_link a,
a.block_link {
	display: block;
	transition: opacity 1s, background 1s, color 1s, border 1s;
}
a:hover img.opacity {
	opacity: 0.7;
	text-decoration: none;
	transition: opacity 0.7s;
}
.common_btn {
	text-align: center;
	margin: 2em auto 3em;
	width: 100%;
}
.common_btn a {
	--item_color: var(--main_color);
	display: flex;
	justify-content: center;
	align-items: center;
	width: min(100%, 18.75em);
	min-height: 3.7em;
	font-weight: 600;
	color: var(--item_color);
	text-decoration: none;
	position: relative;
	z-index: 0;
	background: #ffffff;
	border: 2px solid #7b8c96;
	border-radius: 0.5em;
	padding: 0.5em 2em;
	transition: background 0.3s, color 0.3s;
}
.common_btn a::after {
	content: "";
	position: absolute;
	inset: 0 8% 0 auto;
	margin: auto;
	width: 12px;
	height: 12px;
	background-color: var(--main_color);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 1 L9 5 L1 9' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 1 L9 5 L1 9' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
}

.arrow_btn a{
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: left;
	width: fit-content;
	margin-left: auto;
	margin-right: 0;
	padding: 0.5em 2em 0.25em 0.1em;
	text-decoration: none;
	transition: background 0.3s;
	overflow: hidden;
	font-weight: 600;
}
.arrow_btn a::after {
	position: absolute;
	z-index: 2;
	content: "";
	display: inline-block;
	inset: auto 7.5% 0.65em auto;
	margin: auto;
	transition: var(--transition);
	width: 12px;
	height: 12px;
	background-color: var(--main_color);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 1 L9 5 L1 9' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 1 L9 5 L1 9' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.arrow_btn a::before {
	position: absolute;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 100%;
	height: 1px;
	background: #2b2b2b;
	bottom: 0px;
	left: 0px;
	transform: scale(1, 1);
	transform-origin: left center;
	transition: transform 0.4s ease 0s;
}
@media (any-hover: hover) {
	.common_btn a:hover {
		background: var(--item_color);
		color: #ffffff;
	}
	.common_btn a:hover::after{
		background-color: var(--white);
	}
	.arrow_btn a:hover::before {
		transform: scale(0, 1);
		transform-origin: right center;	
	}
}
@media screen and (max-width:767px) {
	.common_btn a,
	.arrow_btn a {
		margin-inline: auto;
	}
	.arrow_btn a::after {
		width: 10px;
		height: 10px;
	}
}
.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,
.topics_list li {
	padding: 0;
	margin: 0;
}
.topics_list li {
	border-bottom: #e1e1e1 solid 1px;
}
.topics_list li a {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.75em;
	color: #282828;
	text-decoration: none;
	transition: background 0.3s;
	padding: 1.75em 0.5em;
}
.topics_list time {
	font-size: 1.125rem;
}
.topics_list .cat_box {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.5em;
}
.topics_list .cat {
	--item_color: var(--sub_color04);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-width: 6em;
	font-size: 0.875rem;
	color: #fff;
	padding: 0.25em 0.5em;
	background: var(--item_color);
	border-radius: 4px;
}
.topics_list .cat.cat_counceling {
	--item_color: var(--sub_color05);
}
.topics_list .cat.cat_member {
	--item_color: var(--sub_color01);
}
.topics_list .article_text {
	width: calc(100% - (80px + 98px + 1.5em));
	font-size: 1.25rem;
	font-weight: bold;
}
@media (any-hover: hover) {
	.topics_list li a:hover {
		background: #f7f6f2;
	}
}
@media only screen and (max-width: 768px) {
	.topics_list li a {
		gap: 0.25em 0.75em;
		padding: 1em 0;
	}
	.topics_list .cat_box {
		flex-direction: row;
		gap: 0.5em;
	}
	.topics_list .article_text {
		width: 100%;
		font-size: 1.125rem;
	}
}
/*  パンくずリスト  */
#pan {
	padding-top: 1.2em;
	padding-bottom: 1.8em;
}
#pan ul {
	margin: 10px 0 0;
}
#pan li {
	display: inline;
	vertical-align: middle;
}
#pan li a {
	text-decoration: none;
	color: #333;
}
#pan ul li {
	display: inline-block;
}
#pan ul li:before {
	content: "\003E";
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
}
#pan ul li:first-child:before {
	content: "";
	display: none;
	margin-right: 0;
}
@media only screen and (max-width: 768px) {
	#pan {
		padding-top: 1em;
		padding-bottom: 2em;
	}
	#pan a {
		text-decoration: underline;
	}
}
/*  ページャー  */
.pager_style {
	margin-top: 50px;
}
.pager_style ul {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pager_style li {
	font-size: 0.8875rem;
	padding: 0 0.5em;
}
.pager_style li a {
	display: flex;
	width: 4em;
	height: 4em;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: solid 1px #1a255c;
	transition: background .4s, color .4s, border-color .4s;
}
.pager_style li.on a:hover,
.pager_style li.prev a,
.pager_style li.next a {
	color: #1a255c;
	background: #fff;
	border-color: #1a255c;
	text-decoration: none;
}
.pager_style li.on a,
.pager_style li a:hover,
.pager_style li.prev a:hover,
.pager_style li.next a:hover {
	background: #1a255c;
	color: #fff;
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	.pager_style li {
		font-size: 0.8875rem;
		padding: 0 0.25em;
	}
	.pager_style li a {
		width: 3em;
		height: 3em;
	}
}
.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;
	}
}

.smf-form .smf-radio-button-control__control,
.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;
}
.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-form--letter+.smf-action{
	display:flex;
	justify-content:center;
	align-items:center;
}
.smf-form--letter+.smf-action .smf-button-control{
	width:300px;
}
.smf-action .smf-button-control__control{
	max-width: 300px;
	min-width: 230px;
	font-size: 1rem;
	--item_color:　var(--main_color);
	display: flex;
	justify-content: center;
	align-items: center;
	width: min(100%, 18.75em);
	min-height: 3.7em;
	font-weight: 600;
	color: var(--item_color) !important;
	text-decoration: none;
	position: relative;
	z-index: 0;
	background: #ffffff !important;
	border: 1px solid var(--main_color);
	border-radius: 0.5em;
	padding: 0.5em 2em;
	transition: background 0.3s, color 0.3s;
	box-shadow: none;
	margin: 0 auto;
}
.smf-action .smf-button-control__control:after {
	content: "";
	position: absolute;
	inset: 0 8% 0 auto;
	margin: auto;
	width: 12px;
	height: 12px;
	background-color: var(--main_color);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 1 L9 5 L1 9' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 1 L9 5 L1 9' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.smf-action .smf-button-control__control[data-action="back"]{
	color:  var(--white) !important;
	background:var(--main_color) !important;
}
.smf-action .smf-button-control__control[data-action="back"]::after{
	background:var(--white);
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control:hover{
		background: var(--main_color) !important;
		color: #ffffff !important;
		opacity: 1;
	}
	.smf-action .smf-button-control__control:hover::after{
		background-color: var(--white);
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover{
		color:  var(--main_color) !important;
		background:var(--white) !important;
	}
	.smf-action .smf-button-control__control[data-action="back"]:hover::after{
		background:var(--main_color);
	}
}
@media screen and (max-width:767px) {
	.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%;
	}
}