@charset "utf-8";
/* head,text */
/* Link */
:root :is(.btn, .btn02) {
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	min-height: 3.5em;
	--basecolor: var(--key02);
	--subcolor: #fff;
	color: var(--subcolor);
	background: var(--basecolor);
	padding: 0.5em 3.5em;
	margin-block: 1em;
	cursor: pointer;
	position: relative;
	z-index: 2;
	font-weight: 600;
	pointer-events: auto;
	border-radius: 3em;
	text-decoration: none !Important;
	line-height: 1.2;
	gap: 0.25em;
	border: solid 2px var(--basecolor);
	transition: var(--hover);
}
:root :is(.btn, .btn02).inline {
	display:inline-flex;
}
:root .btn {
	font-size: 1.125rem;
	width: 348px;
}
:root .btn:after {
	content: "";
	display: block;
	aspect-ratio: 1 / 1;
	height: 0.575em;
	color: var(--subcolor);
	border-top: solid 2px;
	border-right: solid 2px;
	transform: rotate(45deg) skew(-4deg, -4deg);
	transition: var(--hover);
	position: absolute;
	right: 2em;
}
:root .btn.list-btn {
	margin-block: 5em 0;
	margin-inline: auto;
}
:root .btn02 {
	--basecolor: var(--key01);
	margin: 0;
	border: solid 2px #fff;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
	padding: 0.65em 1.15em;
	width: 216px;
	min-height: 3.25em;
}
:root .bg-yellow {
	--basecolor: var(--key03);
	color: var(--fontcolor);
}
:root .end-area {
	margin-block: 4em 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2em;
}
:root .slick-arrow {
	--basecolor: var(--key);
	--subcolor: #fff;
	color: var(--subcolor);
	opacity: 1;
	background: var(--basecolor);
	border: solid 1px var(--basecolor);
	inset: 0 0 0 auto;
	transition: var(--hover);
	overflow: hidden;
	text-indent: 999em;
	margin: auto;
	transform: none;
}
:root .slick-prev {
	inset: 0 auto 0 0;
	transform: scaleX(-1);
}
:root .slick-arrow:is(:hover, :focus) {
	opacity: 1;
	background: var(--subcolor);
	color: var(--basecolor);
}
:root .slick-arrow:after {
	right: 1.25em;
}
:root .slick-arrow:is(:hover, :focus):before {
	background: var(--basecolor);
}
:root .slick-arrow:is(:hover, :focus):after {
	color: var(--basecolor);
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
	:root :is(a, button, label).btn:hover {
		--basecolor: #fff;
		--subcolor: var(--key02);
		border-color: var(--subcolor);
	}
	:root :is(a, button, label).btn02:hover {
		background: var(--subcolor);
		color: var(--basecolor);
		border-color: var(--basecolor);
	}
	:root .bg-yellow:hover {
		--basecolor: #feaa00;
	}
}
@media screen and (max-width: 767px) {
	:root .btn {
		min-height: 4em;
		margin-block: 1.5em;
		margin-inline: auto;
	}
	:root .end-area {
		margin-block: 2em 0;
	}
}
.flex-columns {
	display: flex;
	--gap: 4em;
	gap: var(--gap);
	flex-wrap: wrap;
}
.flex-columns:has(> .flex-column:nth-child(2):last-child) {
	flex-wrap: nowrap;
}
.flex-columns .flex-column {
	flex-grow: 1;
}
.flex-columns .flex-column:has(> img:first-child:last-child) {
	flex-grow: inherit;
}
.flex-columns.grid-sort {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: calc(var(--gap) * 0.5) var(--gap);
}
.left-middle {
	grid-column: 1;
	grid-row: 1 / 3;
}
.right-top {
	grid-column: 2;
	grid-row: 1;
}
.right-bottom {
	grid-column: 2;
	grid-row: 2;
}
@media screen and (max-width: 1200px) {
	.flex-columns {
		--gap: 2em;
	}
}
@media screen and (max-width: 767px) {
	.flex-columns {
		--gap: 2em;
		flex-direction: column;
	}
	.flex-columns.grid-sort {
		display: flex;
		--gap: 2em;
	}
}
.captions small {
	display: block;
	font-size: 1rem;
	font-weight: 400;
	margin-block: 0.5em;
	text-indent: -1em;
	margin-left: 1em;
}
/* table */
.table_wrap table {
	width: 100%;
}
.table_wrap table tr {
	font-size: 1.125rem;
	border-bottom: 1px solid #c5c5c5;
}
.table_wrap table tr>* {
	padding-block: 1em;
	line-height: 1.6;
}
.table_wrap table tr th {
	width: 12em;
	font-weight: bold;
	padding-inline: 2em;
	vertical-align: text-top;
}
@media screen and (max-width:767px) {
	.table_wrap table tr {
		display: block;
		padding-block: 0.5em;
	}
	.table_wrap table tr>* {
		display: block;
		padding-block: 0;
	}
	.table_wrap table tr th {
		width: 100%;
		padding-inline: 0;
	}
}
/* list */
.news-items {
	border-top: 1px solid #d3d3d3;
}
.news-items .news-item a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 2em;
	font-size: 1rem;
	text-decoration-color: transparent;
	padding: 1.25em 2em 1.25em 0;
	border-bottom: 1px solid #d3d3d3;
	background: #fff;
	min-height: 6em;
}
.news-items .news-item a>* {
	transition: transform .4s, text-decoration-color .4s;
	margin:0;
}
.news-items .news-item a time {
	line-height: 2;
	color: var(--dgray);
	font-size: 0.875rem;
}
.news-items .news-item a .news-info {
	white-space:nowrap;
}
.news-items .news-item .arrow {
	display: flex;
	background: var(--key);
	height: 2em;
	color: #fff;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}
.news-items .news-item p {
	flex-grow: 1;
	padding-top: 0.25em;
	line-height: 1.25;
	text-decoration: underline solid 1px transparent;
	font-weight: 500;
	transition: transform .4s, text-decoration-color .4s;
}
.news-items.card-style {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em 3.5%;
	border: none;
}
.news-items.card-style.slick-slider {
	gap: 0;
}
.news-items.card-style .news-item {
	flex-basis: 31%;
}
body:not(.home) .news-items.card-style .news-item {
	flex-basis: 48.25%;
}
body:not(.home) .seminar-wrap .news-items.card-style .news-item {
	flex-basis: 31%;
}
.news-items.card-style .news-item a {
	border: none;
	border-radius: 1rem;
	display: block;
	overflow: hidden;
	padding: 0;
	box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
	height: 100%;
}
.news-items.card-style .news-item p {
	line-height: 1.8;
	padding: 0;
	font-size: 1.125rem;
	margin:0;
}
.news-items.card-style .news-item .excerpt {
	font-size:0.875rem;
	line-height:1.4;
}
.news-items.card-style .news-detail {
	display: flex;
	flex-wrap: wrap;
	padding: 1.5em 1.25em 2em;
	gap: 0.75em 1em;
	align-items: center;
}
.news-items.card-style .news-item time {
	font-size: 0.875rem;
	line-height: inherit;
}
.news-items.card-style .news-info {
	display: flex;
	font-size: 0.875rem;
	flex-wrap: wrap;
	gap: 0.5em;
}

.seminer-att-text{
	margin-top: 30px;
 font-size: 0.875rem !Important;
}
.news-items mark {
	display: inline-flex;
	padding: 0.15em 1em;
	background: var(--key01);
	color: #fff;
	border-radius: .875rem;
	text-decoration: none;
}
.news-items.card-style .news-info  mark {
	font-size: 0.75rem;
}
.news-items.card-style .news-info  mark.mark01{
	background: #43b76b;	
}
.news-items.card-style .news-info  mark.mark02{
	background: #ff9c00;	
}



.img-fit {
	overflow: hidden;
}
.img-fit img {
	object-fit: cover;
}
a:hover .img-fit img {
	transform: scale(1.1);
}
.news-items .img-fit {
	aspect-ratio: 33 / 22;
	flex-basis: 100%;
}
.news-items .img-fit img {
	max-width: inherit;
	width: 100%;
	aspect-ratio: 33 / 22;
}
:root .important-news {
	background: var(--accent02);
	color: #fff;
	padding-block: 1.275em;
}
:root .important-wrap {
	display: flex;
	width: 100%;
	max-width: 1520px;
	margin-inline: auto;
}
:root .important-style {
	font-size: 1.5rem;
	font-weight: 500;
	padding-right: 3em;
}
:root .important-news .news_list {
	flex-grow: 1;
	padding-left: 2em;
	border-left: solid 1px #fff;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
}
:root .important-news a {
	display: flex;
	gap: 1em;
	align-items: center;
	padding: 0.5em 1em;
}
:root .important-news time {
	font-size: 0.75rem;
	font-weight: 400;
}
:root .important-news p {
	text-decoration: underline solid 1px;
	transition: text-decoration .4s;
}
:root .fp-members {
	display: flex;
	flex-wrap: wrap;
	gap: 4em 2.5em;
	justify-content: center;
}
:root .fp-members a {
	display: block;
	position: relative;
	max-width: 300px;
	margin: 0;
	padding-right: 2em;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration-thickness: 1px;
}
:root .fp-members a .item-en {
	position: absolute;
	right: 0;
	top: 1em;
	display: flex;
	gap: 0.5em;
	font-size: 0.875rem;
	color: var(--key01);
	align-items: center;
	writing-mode: vertical-rl;
	font-family: 'roboto', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	transition: color .4s;
}
:root .fp-members a .item-en:before {
	content: "";
	display: block;
	width: 1px;
	height: 4em;
	background: var(--key01);
	transition: background .4s;
}
:root .fp-members a .item-image {
	overflow: hidden;
	border-radius: 0.75rem;
	margin-bottom: 1em;
}
:root .fp-members a .item-image img {
	max-width: 260px;
}
:root .fp-members a span {
	font-size: 0.875rem;
	font-weight: 400;
}
:root .fp-members a em {
	font-size: 1.25rem;
	font-weight: 600;
}
:root .voice-card {
	display: flex;
	gap: 2.5em 3%;
	flex-basis: 100%;
	flex-wrap: wrap;
}
:root .voice-card .voice-item {
	display: block;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.15);
	background: #fff;
	flex-basis: 31.3%;
}
:root .voice-card .voice-item .voice-text {
	padding: 1.5em 2em;
}
:root .voice-card .voice-item .voice-text>span {
	font-size: 0.875rem;
	color: var(--key01);
	transition: var(--hover);
}
:root .voice-card .voice-item .voice-text>h3 {
	font-size: 1.125rem;
	margin-bottom: 0.5em;
	transition: var(--hover);
}
:root .voice-card .voice-item .voice-text .text{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
:root .voice-card .voice-item .voice-text>.link {
	color: var(--accent01);
	font-weight: 600;
	margin-top: 1.5em;
	display: flex;
	gap: 0.5em;
	align-items: center;
	transition: color .4s;
}
body:not(.home) .voice-card .voice-item .voice-text>.link{
	margin-block:0;
}
:root .voice-card .voice-item .voice-text>.link:after {
	content: "";
	display: block;
	aspect-ratio: 1 / 1;
	height: 0.5em;
	border-top: solid 2px;
	border-right: solid 2px;
	transform: rotate(45deg) skew(-4deg, -4deg);
	transition: var(--hover);
	right: 2em;
}
:root #cta {
	background: var(--key01);
	padding-block: 6em;
}
:root #cta .cta-box {
	padding: 4em 2.75em 4em;
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 0 0.35em rgba(0, 0, 0, 0.2);
}
:root #cta .cta-title {
	margin: 0 auto 3em;
	text-align: center;
}
:root #cta .cta-title h2 {
	font-size: 2.375rem;
	color: var(--key01);
	font-weight: 800;
	letter-spacing: 0.03em;
	margin-bottom: 0.25em;
	text-align: center;
}
:root #cta .cta-col {
	display: flex;
	justify-content: center;
	gap: 3em;
	align-items: center;
}
:root #cta .cta-col .cta-tel {
	font-size: 1.25rem;
}
:root #cta .cta-col .cta-tel a {
	display: flex;
	align-items: center;
	gap: 0.35em;
	text-decoration: none;
}
:root #cta .cta-col .cta-tel strong {
	font-size: 2em;
	letter-spacing: 0;
	line-height: 1;
}
:root #cta .cta-col .cta-tel p {
	letter-spacing: 0.2em;
}
:root #cta .cta-col .btn02 {
	font-size: 1.125rem;
	width: 320px;
	min-height: 4em;
	padding: 0.5em 1em;
	margin: 0;
}
#seminar-cta{
	margin-bottom:7em;
}
#seminar-cta .seminar-style{
	position: relative;
	font-size: 2rem;
	margin-bottom: 1em;
	text-align: left;
	border-bottom: 2px solid #eee;
	padding-bottom: 0.5em;
}
#seminar-cta .seminar-style::after {
	position: absolute;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 300px;
	height: 2px;
	background: var(--key01);
	left: 0;
	bottom: -1px;
}
#seminar-cta .news_link .btn{
	margin:3em auto 0;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
	:root .important-news a:hover {
		color: var(--accent02);
		background: #fff;
		text-decoration-color: transparent;
	}
	:root .important-news a:hover p {
		text-decoration-color: transparent;
	}
	:root .fp-members a:hover {
		transform: translateY(0.5rem);
		color: var(--key01);
	}
	:root .fp-members a:hover .item-en {
		color: var(--accent01);
	}
	:root .fp-members a:hover .item-en:before {
		background: var(--accent01);
	}
	:root .voice-card .voice-item:hover {
		transform: translateY(0.5rem);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
		text-decoration-color: transparent;
		background: var(--accent01);
		color: #fff;
	}
	:root .voice-card .voice-item:hover .voice-text>.link {
		color: #fff;
	}
	:root .voice-card .voice-item:hover .voice-text>h3,
	:root .voice-card .voice-item:hover .voice-text>span{
		color: #fff;
	}
	.news-items .news-item a:hover {
		background: var(--lgray);
		color: var(--accent01)
	}
	.news-items.card-style .news-item a:hover {
		transform: translateY(0.5rem);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0.25)
	}
	.news-items:not(.card-style) .news-item a:hover>* {
		transform: translateX(1rem);
	}
	.news-items .news-item a:hover p {
		text-decoration-color: var(--accent01);
	}
}
@media screen and (max-width:1200px) {
	.news-items.card-style,
	:root .fp-members {
		gap: 4em 3%;
		justify-content: flex-start;
	}
	:root .fp-members a {
		max-width: 31%;
	}
	:root .fp-members a .item-image img {
		max-width: 100%;
	}
	.news-items.card-style .news-detail,
	:root .voice-card .voice-item .voice-text {
		padding-inline: 1em;
	}
	:root #cta .cta-col {
		flex-direction: column;
		gap: 1em;
	}
}
@media screen and (max-width:767px) {
	:root .important-news {
		padding-block: 1em;
	}
	:root .important-wrap {
		flex-direction: column;
	}
	:root .important-style {
		font-size: 1.375rem;
		font-weight: 500;
		padding-right: 0em;
		background: #fff;
		color: var(--accent02);
	}
	:root .important-news .news_list {
		padding-left: 0em;
		border: none;
	}
	:root .important-news a {
		flex-direction: column;
		gap: 0;
		align-items: flex-start;
		justify-content: flex-start;
		text-align: left;
		padding-inline: 0.5em;
		font-size: 0.875rem;
	}
	:root .important-news .news_list li {
		border-bottom: 1px dotted;
	}
	.news-items .news-item a {
		padding: 1em 2.5em 1em 0em;
		position: relative;
		z-index: 1;
		flex-direction: column;
		gap: 0em;
		align-items: flex-start;
	}
	.news-items .news-item a time {
		line-height: inherit;
	}
	.news-items .news-item .arrow {
		position: absolute;
		inset: 0 0em 0 auto;
		margin: auto;
	}
	.news-items .news-item p {
		line-height: 1.8;
	}
	.news-items.card-style {
		gap: 2em 2%;
		justify-content: center;
		margin-inline: var(--inner);
	}
	body:not(.home) .news-items.card-style {
		justify-content: flex-start;
		margin-inline: 0;
	}
	.news-items.card-style .news-item {
		flex-basis: 100%;
		max-width: 380px;
	}
	body:not(.home) .news-items.card-style .news-item {
		flex-basis: 100%;
		max-width: inherit;
		margin-inline:15px;
	}
	body:not(.home) .seminar-wrap .news-items.card-style .news-item{
		flex-basis: 100%;
	}
	.news-items.card-style .news-item a {
		border-radius: 0.5rem;
		gap: 1em;
	}
	.news-items.card-style .news-item img {
		width: 100%;
	}
	.news-items.card-style .news-item time {
		font-size: 0.75rem;
		line-height: inherit;
	}
	.news-items.card-style .news-detail {
		padding: 1em;
		gap: 0 0.5em;
	}
	.news-items.card-style .news-detail p {
		font-size: 0.875rem;
		line-height: 1.4;
	}
	.news-items.card-style .news-info {
		margin-block: 0em 0.5em;
		font-size: 0.75rem;
	}
	:root .fp-members {
		gap: 1.5em 4%;
		justify-content: flex-start;
	}
	:root .fp-members a {
		max-width: 48%;
		padding-right: 0;
		align-items: flex-start;
		text-align: left;
		flex-direction: column;
	}
	:root .fp-members a .item-image {
		padding-right: 1.5em;
		margin-bottom: 0.5em;
	}
	:root .fp-members a .item-image img {
		max-width: 100%
	}
	:root .fp-members a span,
	:root .fp-members a .item-en {
		font-size: 0.75rem;
		letter-spacing: 0;
	}
	:root .voice-card {
		display: flex;
		gap: 2em 2%;
		margin-inline: var(--inner);
		flex-direction: column;
		align-items: center;
	}
	:root .voice-card .voice-item {
		max-width: 380px;
	}
	:root #cta {
		padding-block: 4.5em;
	}
	:root #cta .cta-box {
		padding: 2em 1em 2em;
	}
	:root #cta .cta-title {
		margin: 0 auto 3em;
		text-align: left;
	}
	:root #cta .cta-title h2 {
		font-size: 1.66rem;
		color: var(--key01);
		font-weight: 800;
		letter-spacing: 0.03em;
		margin-bottom: 0.25em;
		width: fit-content;
		margin-inline: auto;
	}
	:root #cta .cta-col .cta-tel {
		font-size: 1.25rem;
		text-align: center;
		width: 100%;
	}
	:root #cta .cta-col .cta-tel a {
		justify-content: center;
	}
	:root #cta .cta-col .cta-tel i {
		width: 1.25em;
	}
	:root #cta .cta-col .cta-tel p {
		letter-spacing: 0.03em;
		font-size: 1rem;
	}
	:root #cta .cta-col .cta-tel strong {
		font-size: 1.5em;
	}
	:root #cta .cta-col .btn02 {
		font-size: 1rem;
		width: 100%;
		flex: 1;
	}
	:root .voice-card .voice-item .voice-text .text{
		-webkit-line-clamp: 2;
	}
}
/*	GoogleMAP・動画埋め込み	*/
.map_wrap iframe {
	width: 100%;
}
.movie_wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
}
.movie_wrap iframe,
.movie_wrap video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*	パンくずリスト	*/
#pan {
	position: relative;
	z-index: 2;
	margin-top: 1rem;
	margin-bottom: 4.125rem;
	overflow: hidden;
}
#pan ol {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	font-size: 0;
	overflow-y: hidden;
	overflow-x: auto;
}
#pan li,
#pan li * {
	display: inline-block;
	vertical-align: middle;
	font-size: 0.875rem;
	text-transform: uppercase;
	white-space: nowrap;
	margin: 0;
}
#pan li::after {
	display: inline-block;
	vertical-align: middle;
	content: "\002F";
	margin-left: 0.5em;
}
#pan li:not(:last-child) {
	margin-right: 0.5em;
}
#pan li:last-child::after {
	display: none;
}
#pan li * {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	color: var(--black);
}
#pan li a {
	font-weight: bold;
	text-decoration: underline;
	text-underline-offset: 0.25em;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
	#pan li a:hover {
		text-decoration: none;
	}
}
@media only screen and (max-width: 767px) {
	#pan {
		position: relative;
		z-index: 10;
		margin-top: 1em;
		margin-bottom: 2.5em;
		overflow: hidden;
	}
	#pan:after,
	#pan li:last-child:after {
		position: absolute;
		z-index: 10;
		content: "";
		display: block;
		top: 0;
		bottom: 0;
		right: 0;
		width: 0.75em;
		background: var(--black);
		background: linear-gradient(-90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
	}
	#pan a {
		text-decoration: underline;
	}
	#pan li:last-child {
		position: relative;
		padding-right: 0.75em;
		margin-right: 0;
		flex-grow: 1;
	}
	#pan li:last-child:after {
		z-index: 20;
		top: -1em;
		bottom: -1em;
		background: var(--white);
	}
}
/*	ページャー	*/
:root .navigation {
	margin-block: 4.625em;
}
:root ul.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 0;
	margin: 0;
}
:root ul.page-numbers li {
	margin: 0;
}
:root ul.page-numbers li :is(a, span.page-numbers) {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 2.5em;
	aspect-ratio: 1/1;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
	color: var(--black);
	background: var(--white);
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	text-decoration: none;
}
:root ul.page-numbers li a:is(.prev, .next) {
	margin-left: 0.5em;
}
:root ul.page-numbers li a.prev {
	margin-right: 0.5em;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
	:root ul.page-numbers li a:hover {
		background: #f2f2f2;
	}
}
@media screen and (max-width:767px) {
	:root .navigation {
		margin-block: 3em;
	}
	:root ul.page-numbers li :is(a, span.page-numbers) {
		width: 2em;
	}
}
:root .container {
	max-width: 100%;
	width: calc(var(--container) + 30px);
}
:root .page-header {
	text-align: left;
	min-height: 24em;
}
:root .page-header-title {
	font-size: 2.625rem;
	font-weight: bold;
	color: #fff;
}
:root .page-header-subtext {
	font-size: 1.25rem;
	font-family: 'Tenor Sans', sans-serif;
	color: #c99a34;
}
:root .site-body {
	margin: 0;
	padding: 0 0 4em;
}
:root .single .entry {
	--vk-width-container:1030px;
	max-width: 1000px;
	margin-inline: auto;
}
:root :is(.error404 .main-section,.entry-body) :is(h1, h2, h3, h4, h5, h6, ul:not([class]), ol:not([class]), .li, p) {
	font-size: 1em;
	line-height: 1.8;
	/* margin: 0; */
	padding: 0;
}
:root :is(.site-body .entry-body :is(h1, h2, h3, h4),.sub-section-title) {
	font-weight: 700;
	margin-bottom: 1em;
	letter-spacing: 0.06em;
	line-height: 1.4;
}
:root .sub-section-title {
	margin-bottom: 0.5em !important;
}
:root .site-body h1 {
	position: relative;
	z-index: 10;
	font-size: 1.75rem;
	font-weight: bold;
	color: inherit;
	border-bottom: 1px solid #cdc6bd;
	padding-bottom: 0.5em;
}
:root .site-body .archive-header {
	margin-bottom: 1.5em;
}
:root .site-body .entry-header {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5em;
	align-items: center;
}
:root .site-body .voice-header{
	flex-wrap:nowrap;
}
:root .site-body .voice-header .single-thumbnail{
	width: 350px;
}
:root .site-body .voice-header .single-thumbnail:has(img[src$="/default.jpg"]){
	display:none;
}
:root .site-body .voice-header .voice-header-tit{
	width: calc(100% - 350px - 2.5em);
}
:root .site-body .voice-header:has(img[src$="/default.jpg"]) .voice-header-tit{
	width:100%;
}
:root .site-body .voice-header .voice-header-tit h1{
	margin-bottom:0.5em;
}
:root .site-body .voice-header .voice-header-tit .voice-name{
	font-size:1.25rem;
	font-weight:500;
}
:root .site-body .entry-header time {
	font-size: 0.875rem;
	color: #949494;
}
:root .site-body .entry-header .news-category_list span {
	--basecolor: var(--key01);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	color: #fff;
	background: var(--basecolor);
	border: solid 1px var(--basecolor);
	border-radius: 1.5em;
	padding: 0 0.75em;
	margin-right:1em;	
	margin-bottom: 0.5em;
}

:root .single-examples .site-body .entry-header .news-category_list span.mark01{
	--basecolor: #43b76b;
}
:root .single-examples .site-body .entry-header .news-category_list span.mark02{
	--basecolor: #ff9c00;
}

:root .site-body .entry-header h1 {
	flex-basis: 100%;
}
:root :is(.error404 .main-section,.site-body .entry-body)  h2:not(.is-style-vk-heading-plain,.vk_borderBox_title) {
	position: relative;
	font-size: 2rem;
	margin-block: 1em;
	text-align: left;
	border-bottom: 2px solid #eee;
	padding-bottom: 0.5em;
}
:root .single-post .site-body .entry-body h2 {
	font-size: 1.75rem;
}
:root :is(.error404 .main-section,.site-body .entry-body) h2:not(.is-style-vk-heading-plain,.vk_borderBox_title)::after {
	position: absolute;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 300px;
	height: 2px;
	background: var(--key01);
	left: 0;
	bottom: -1px;
}
:root :is(.error404 .main-section,.site-body .entry-body) h2:first-child,
:root :is(.error404 .main-section,.site-body .entry-body) .vk_spacer+ :is(h2, h3, h4, h5) {
	margin-top: 0;
}
:root .site-body .entry-body h3:not(.is-style-vk-heading-plain,.vk_borderBox_title) {
	position: relative;
	z-index: 10;
	font-size: 1.75rem;
	background: var(--lgray);
	padding: 0.5em;
}
:root :is(.site-body .entry-body :is(h4:not(.is-style-vk-heading-plain,.vk_borderBox_title),.smf-selected-date),.sub-section-title) {
	position: relative;
	z-index: 10;
	font-size: 1.5rem;
	padding-left: 0.75em;
}
:root :is(.site-body .entry-body :is(h4:not(.is-style-vk-heading-plain,.vk_borderBox_title),.smf-selected-date),.sub-section-title)::before {
	position: absolute;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 0.3em;
	height: 100%;
	background: var(--key01);
	top: 0;
	left: 0;
}
:root .site-body .entry-body h5 {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--key01);
}
:root .site-body .entry-body h6 {
	font-size: 1.125rem;
}
:root .site-body .entry-body :is(p, li, td) {
	font-weight: 400;
	letter-spacing: 0.03em;
}
:root .site-body .entry-body :is(ul:not([class]), ol:not([class])):not(:is(ul:not([class]), ol:not([class])) :is(ul:not([class]), ol:not([class]))) {
	margin-block: 1em;
}
:root .site-body .entry-body ul:is(ul:not([class]), ol:not([class])),
.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	margin-left: 1.5em !important;
}
:root .site-body .entry-body ol {
	margin-left: 0.5em;
}
:root .site-body .entry-body :is(ul:not([class]), ol:not([class])) li {
	line-height: 1.4;
	margin-block: 0.5em;
}
:root .site-body .entry-body ul li::marker {
	color: var(--key);
}
:root .site-body .entry-body ol li::marker {
	color: var(--accent);
	font-weight: 600;
}
:root .site-body .entry-body p {
	line-height: 1.8;
}
:root .site-body .entry-body :is(p, figure):not(:last-child) {
	margin-block: 1em;
}
:root .site-body .entry-body :is(p, figure):first-child {
	margin-top: 0;
}
:root .site-body .entry-body a:not(.btn,.status-mark,.sb_icon_inner) {
	color: var(--key01);
	text-decoration-color: inherit;
	text-decoration-style: solid;
}
:root .site-body .entry-body .vk_post_title a {
	color: inherit;
	text-decoration: none;
}
:root .site-body .entry-body a:not(.btn):is(:hover, :focus) {
	text-decoration-color: transparent;
}
:root .site-body .entry-body table {
	margin-bottom: 0;
	border: none;
}
:root .site-body .entry-body table :is(th, td) {
	font-size: 1rem;
	padding: 1em 1em;
	border-inline: none;
	border-color: #dadada;
}
:root .site-body .entry-body table th {
	font-weight: bold;
	background: var(--lgray);
}
:root :is(.error404 .main-section,.site-body .entry-body) .btn {
	font-size: 1.125rem;
	padding: 0.75em 2.5em;
	display: inline-flex;
	opacity: 1;
	box-shadow: none;
	border-width: 2px;
	min-height: 3.5em;
}
:root .site-body .entry-body .single-thumbnail img {
	min-width: min(500px, 100%);
	height: auto;
}
:root .wp-block-vk-blocks-grid-column .btn {
	margin-block: 0;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
	:root :is(.error404 .main-section,.site-body .entry-body) .btn:hover {
		background: #fff !important;
		color: var(--key02) !important;
		border-color: var(--key02) !important;
	}
	:root :is(.error404 .main-section,.site-body .entry-body) .btn:hover:after {
		color: var(--key02) !important;
	}
}
:root .site-body iframe {
	max-width: 100%;
	max-height: 100%;
}
@media screen and (max-width:767px) {
	:root .page-header {
		min-height: 12em;
	}
	:root .page-header::before {
		width: 90px;
		inset: auto 0 0 auto;
		translate: unset;
		background-size: contain;
	}
	:root .page-header-title {
		font-size: 2rem;
	}
	:root :is(.error404 .main-section,.site-body .entry-body) h2:not(.is-style-vk-heading-plain,.vk_borderBox_title) {
		font-size: 1.65rem;
	}
	:root :is(.error404 .main-section,.site-body .entry-body) h2:not(.is-style-vk-heading-plain,.vk_borderBox_title)::after {
		width: 30%;
	}
	:root .site-body .entry-body h3:not(.is-style-vk-heading-plain,.vk_borderBox_title) {
		font-size: 1.5rem;
	}
	:root .site-body .voice-header{
		flex-wrap:wrap;
		gap:2em;
	}
	:root .site-body .voice-header .single-thumbnail{
		width:100%;
	}
	:root .site-body .voice-header .voice-header-tit{
		width:100%;
	}
	:root .site-body .voice-header .voice-header-tit h1{
		margin-bottom:0.5em;
	}
	:root .site-body .voice-header .voice-header-tit .voice-name{
		font-size:1.14rem;
	}
}
/*snow-monkey-form*/
:root .snow-monkey-form {
	margin-block: 2em 0;
}
:root .snow-monkey-form .smf-item__label {
	font-size: 1rem;
	margin-block: 0;
}
:root .snow-monkey-form .smf-item__label .smf-item__label__text {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-weight: 600;
}
:root .snow-monkey-form a {
	color: var(--key);
	text-decoration: underline solid 1px;
}
:root .snow-monkey-form a:hover {
	text-decoration-color: transparent;
}
:root .snow-monkey-form .smf-action {
	margin-block: 3em 0;
	text-align: center;
}
.snow-monkey-form .smf-item {
	padding: 1rem 0;
	border-bottom: 1px solid #cdd0d2;
}
.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: 1em;
}
.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.75rem;
	line-height: 1;
	color: #fff;
	background: #e60012;
	padding: 0.35em 0.5em;
	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: #cdd0d2 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 2em 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.smf-form .smf-item .smf-select-control:has(.control-short) {
	width: 30%;
}
.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[]"]) {
	margin-top: 0.5em;
	text-align: center;
}
.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 #cdd0d2;
	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.25em;
}
.snow-monkey-form label input[type="radio"]+span:after {
	border-radius: 50%;
	width: 18px;
	height: 18px;
	border: none;
	background: var(--key01);
	top: 7px;
	left: 3px;
	opacity: 0;
}
.snow-monkey-form label input[type="radio"]:checked+span:before {
	border-color: var(--key01);
}
.snow-monkey-form label input[type="checkbox"]:checked+span:before {
	border-color: var(--key01);
	background: var(--key01);
}
.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 {
	width: 330px;
}
.smf-action .smf-button-control:has(button) {
	margin: 0 auto;
}
:root .snow-monkey-form .smf-action button {
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	min-height: 3.5em;
	--basecolor: var(--key02);
	--subcolor: #fff;
	color: var(--subcolor);
	background: var(--basecolor);
	padding: 0.5em 4.5em;
	margin-block: 1em;
	cursor: pointer;
	position: relative;
	z-index: 2;
	font-weight: 600;
	pointer-events: auto;
	border-radius: 3em;
	text-decoration: none !Important;
	line-height: 1.2;
	gap: 0.25em;
	border: solid 2px var(--basecolor);
	transition: var(--hover);
	width: 100%;
}
:root .snow-monkey-form .smf-action button:after {
	content: "";
	display: block;
	aspect-ratio: 1 / 1;
	height: 0.575em;
	color: var(--subcolor);
	border-top: solid 2px;
	border-right: solid 2px;
	transform: rotate(45deg) skew(-4deg, -4deg);
	transition: var(--hover);
	position: absolute;
	right: 2em;
}
:root .snow-monkey-form .smf-action button[data-action="back"] {
	background: var(--key02);
	color: var(--basecolor);
	border: 1px solid;
}
:root .snow-monkey-form .smf-action button[data-action="back"]:after {
	border-color: var(--basecolor);
}
.snow-monkey-form .style-contact {
	overflow: auto;
	max-height: 250px;
	padding: 1em;
	border: 1px solid #ccc;
}
:root .site-body .entry-body .snow-monkey-form .style-contact p {
	margin-block: 0;
}
:root .site-body .entry-body .snow-monkey-form .style-contact p:not(strong) {
	margin-bottom: 0.5em;
}
:root .site-body .entry-body .snow-monkey-form .style-contact p:not(strong)+p:has(strong) {
	margin-top: 1.5em;
}
.smf-action .smf-button-control__control[data-action="complete"] .complete-none {
	display: none;
}
@media (any-hover: hover) {
	:root .snow-monkey-form .smf-action button:hover {
		--basecolor: #fff;
		--subcolor: var(--key02);
		border-color: var(--subcolor);
	}
}
@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;
	}
	.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: 0.375em;
		width: 18px;
		height: 18px;
	}
	.snow-monkey-form label input[type="radio"]+span:after {
		top: 8px;
		width: 12px;
		height: 12px;
		left: 3px;
	}
	.snow-monkey-form input[type="date"] {
		max-width: 100%;
		width: 100%;
		min-width: 150px;
	}
	:root .smf-action .smf-button-control+.smf-button-control {
		margin-left: 0;
	}
}
.seminar-calendar-wrap {
	margin-block: 3em;
}
.seminar-calendar-nav {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 1em;
}
.seminar-calendar-title {
	font-size: 2.25rem;
	font-weight: bold;
}
.cal-ajax-btn {
	font-size: 1.25rem;
	font-weight:500;
	background-color: var(--key03);
	border: solid 2px #fff;
	border-radius: 0.5em;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
	user-select: none;
	padding: 0.375em 1em;
	cursor: pointer;
	transition: var(--hover);
}
.seminar-calendar-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	text-align: center;
}
:root .site-body .entry-body .seminar-calendar-table th,
:root .site-body .entry-body .seminar-calendar-table td {
	padding:.5em;
}
:root .site-body .entry-body .seminar-calendar-table th {
	font-size:1.25rem;
	text-align:center;
}
:root .site-body .entry-body .seminar-calendar-table td {
	vertical-align:text-top;;
	font-size:1.125rem;
	font-weight:500;
}
:root .site-body .entry-body .seminar-calendar-table th.sun {
	color: #d9534f;
}
:root .site-body .entry-body .seminar-calendar-table th.sat {
	color: #0275d8;
}
:root .site-body .entry-body .seminar-calendar-table td.empty {
	background-color: #fafafa;
}
.status-mark {
	display: block;
	font-weight: bold;
}
:root a.status-ok {
	color: #28a745;
	font-weight:900;
}
:root a.status-few {
	color: #ffc107;
	font-weight:900;
}
.seminar-calendar-loading {
	opacity: 0.4;
	pointer-events: none;
}
@media (hover: hover) and (pointer: fine),
(hover: none) and (pointer: coarse) {
	.cal-ajax-btn:hover {
		background-color: #fff;
		border-color:var(--key03);
	}
	.status-mark:hover {
		opacity:0.6;
		color:inherit;
	}
}
@media screen and (max-width:767px) {
	.seminar-calendar-title {
		font-size: 1.5rem;
	}
	.cal-ajax-btn {
		font-size: 1rem;
	}
}