/*
Theme Name:BlankSlate Chlid
Template:blankslate
Version:1.0
*/

h1,h2,h3,h4,h5,h6 {
	font-weight: 500;
	line-height: 1.35;
}

p {
	line-height: 2.25;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #494;
	text-decoration: none;
	transition: opacity 0.2s;
}

a:hover {
	opacity: 0.6;
}

address {
	font-style: normal;
}

.hidden,
.sp_br {
	display: none;
}

body:not(.single) figure.wp-block-image {
	margin: 0px;
	line-height: 0;
}

html {
	font-size: 17px;
}

body {
	color: #333;
	font-weight: 500;
	line-height: 1.5;
	word-warp: break-word;
	overflow-wrap: break-word;
}

body,
button,
input,
textarea,
select,
option {
	font-family: 'Livvic', 'IBM Plex Sans JP', sans-serif;
}

#wrapper {
	overflow: hidden;
	position: relative;
}

#header,
#container,
#footer {
	max-width: 1200px;
	width: calc(100% - 40px);
	margin: 0px auto;
	position: relative;
}

#header {
	margin-bottom: 80px;
	padding-top: 30px;
	position: relative;
}

#header::before,
#header::after {
	content: "";
	width: 100vw;
	height: 640px;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	z-index: -3;
}

#header::before {
	background: url("img/header_image_sora.webp") no-repeat center / cover;
}

#header::after {
	background: linear-gradient(transparent 0%, transparent 60%, #fff 85%);
}

body.home #header::after {
	background: linear-gradient(transparent 0%, transparent 75%, #fff 100%);
}

#menu_button {
	display: none;
}

[for="menu_button"] {
	width: 45px;
	height: 12px;
	padding-left: 2px;
	color: #555;
	font-size: 0.88rem;
	line-height: 13px;
	letter-spacing: 0.1em;
	white-space: nowrap;
	position: fixed;
	top: 28px;
	left: calc(50% + 600px);
	transform: translateX(-100%);
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	display: none;
	z-index: 99;
}

[for="menu_button"]::before,
[for="menu_button"]::after {
	content: "";
	width: 100%;
	height: 1.5px;
	line-height: 0;
	background-color: #666;
	border-radius: 100px;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	transition: top 0.3s, transform 0.3s;
}

[for="menu_button"]::after {
	top: 12px;
}

#menu_button:checked ~ [for="menu_button"]::before {
	top: 6px;
	transform: translate(-50%, -50%) rotate(-18deg);
}

#menu_button:checked ~ [for="menu_button"]::after {
	top: 6px;
	transform: translate(-50%, -50%) rotate(18deg);
}

#site-title,
#site-title * {
	margin: 0px;
	line-height: 0;
}

#site-title {
	margin-bottom: 25px;
	text-align: center;
}

#site-title a {
	display: inline-block;
}

#site-title img {
	width: 280px;
}

.header_menu_list {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.header_menu_list a {
	color: #444;
	font-size: 0.98rem;
	font-weight: 500;
	white-space: nowrap;
	opacity: 1;
	position: relative;
	display: block;
}

.header_menu_list a::after,
.header_menu_list .current_page_item a::after {
	content: "";
	width: 0%;
	border-bottom: #494 solid 1.5px;
	position: absolute;
	bottom: -1.5px;
	left: 50%;
	display: block;
	transform: translateX(-50%);
	transition: width 0.3s;
}

.header_menu_list a:hover::after,
.header_menu_list .current_page_item a::after {
	width: calc(100% + 3px);
}

#header_images {
	max-width: 1150px;
	height: 420px;
	margin: 0px auto;
	position: relative;
}

#header_images img {
	width: 750px;
	opacity: 0.2;
	position: absolute;
	bottom: 30px;
	right: 0px;
	z-index: -2;
}

#header_images::before,
#header_images::after {
	content: "";
	width: 100vw;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	z-index: -1;
}

#header_images::before {
	height: 6px;
	background-color: #9ac11b;
}

#header_images::after {
	height: 180px;
	background: url("img/header_image_machi.webp") no-repeat bottom 5px center / auto 100%;
}

.header_catch {
	margin: 0px;
	font-size: 2.5rem;
	font-weight: 300;
	line-height: 1.5;
	position: absolute;
	top: 85px;
	left: 65px;
}

#breadcrumb {
	width: 100%;
	position: absolute;
	top: 20px;
	left: 0px;
}

#breadcrumb span,
#breadcrumb a {
	color: #333;
	font-size: 0.88rem;
	font-weight: 500;
}

#breadcrumb a {
	color: #494;
}

#breadcrumb span:nth-last-of-type(n + 2)::after {
	content: ">";
	margin: 0px 0.3em;
	transform: translateY(-0.1em);
	display: inline-block;
}

@media(max-width: 780px) {
	.header_catch {
		left: 30px;
	}
}

@media(max-width: 667px) {
	[for="menu_button"] {
		display: block;
	}
	
	#header {
		padding-top: 90px;
	}
	
	#header::before,
	#header::after {
		height: 520px;
	}
	
	#site-title {
		margin-bottom: 0px;
	}
	
	#site-title img {
		width: 240px;
	}
	
	.header_navigation {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0px;
		left: 0px;
		opacity: 0;
		pointer-events: none;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: opacity 0.2s;
		z-index: 9;
	}

	#menu_button:checked ~ #branding .header_navigation {
		opacity: 1;
		pointer-events: auto;
	}

	.header_navigation::before {
		content: "";
		width: 100%;
		height: 150%;
		background-color: rgba(224, 236, 224, 0.95);
		position: absolute;
		top: 0px;
		left: 0px;
		display: block;
		z-index: -1;
	}
	
	.header_menu_list {
		flex-direction: column;
		gap: 0px;
	}
	
	.header_menu_list a {
		padding: 12px 55px 12px 0px;
		font-size: 0.92rem;
		position: relative;
		display: block;
	}
	
	.header_menu_list a::before {
		content: "→";
		width: 22px;
		height: 22px;
		color: #fff;
		font-size: 0.8rem;
		font-weight: 700;
		background-color: #5a5;
		border-radius: 1000px;
		position: absolute;
		top: 50%;
		right: 0px;
		transform: translateY(-50%);
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.header_menu_list li:nth-of-type(n) a::after {
		content: none;
	}
	
	.header_catch {
		max-width: 465px;
		width: 100%;
		margin: 0px auto;
		font-size: 2rem;
		top: 85px;
		left: 50%;
		transform: translateX(-50%);
	}
	
	#header_images {
		height: 310px;
	}
	
	#header_images img {
		max-width: none;
		width: 445px;
		margin-left: 65px;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
	}
	
	#header_images::after {
		height: 130px;
	}
	
	#breadcrumb {
		padding-right: 60px;
	}
}

#content {
	padding-bottom: 120px;
}

body.rule #content {
	max-width: 745px;
	margin: 0px auto;
}

body.privacy-policy #content {
	max-width: 920px;
	margin: 0px auto;
}

.front_lead {
	max-width: 700px;
	margin: 100px auto 60px;
	color: #555;
	font-size: 2.1rem;
	font-weight: 400;
	line-height: 1.45;
	border-radius: 20px;
	white-space: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.front_lead::before {
	content: "";
	width: 250px;
	height: 250px;
	margin-right: -50px;
	background: url("img/kyosei_symbol.svg") no-repeat center / contain;
	flex: none;
	position: relative;
	display: block;
	z-index: -1;
}

.front_lead::after {
	content: "";
	width: 100vw;
	height: calc(100% - 80px);
	background-color: #e0ece0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	z-index: -2;
}

.front_text1 {
	margin: 0px auto 50px;
}

.front_news_posts {
	justify-content: center;
}

.news_posts {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 3%;
}

.news_posts_article {
	width: 22.75%;
	flex: none;
	position: relative;
	display: flex;
	flex-direction: column;
}

.news_posts_link {
	position: relative;
	display: block;
}

.news_posts_date {
	padding: 4px 14px;
	color: #fff;
	font-size: 0.86rem;
	white-space: nowrap;
	background-color: #5a5;
	border-radius: 100px;
	position: absolute;
	top: 18px;
	left: 10px;
	z-index: 1;
}

.news_posts_title {
	margin: 0px;
	color: #000;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.35;
}

.news_posts_thumbnail {
	width: 100%;
	height: 190px;
	margin-bottom: 17px;
	background: url("img/logo.svg") no-repeat center / 70% auto, #f0f0f0;
	position: relative;
	overflow: hidden;
	transition: background 0.6s;
}

.news_posts_link:hover .news_posts_thumbnail {
	background: url("img/logo.svg") no-repeat center / 80% auto, #f0f0f0;
}

.news_posts_thumbnail::before {
	content: "";
	width: 100%;
	height: 100%;
	border: #ccc solid 0.5px;
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
}

.news_posts_thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
	transition: transform 0.6s;
}

.news_posts_link:hover .news_posts_thumbnail img {
	transform: scale(1.1);
}

.news_article {
	max-width: 800px;
	margin: 0px auto;
}

.nav-links {
	width: calc(100% + 20px);
	margin: 100px auto 25px -10px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1%;
}

.nav-links > span,
.nav-links > a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #333;
	font-size: 1.2rem;
	white-space: nowrap;
	vertical-align: middle;
}

.nav-links > span.current {
	color: #fff;
	background-color: #5a5;
	border-radius: 6px;
}

.news_date {
	margin: 0px 0px 7px -2px;
	padding: 4px 14px;
	color: #fff;
	font-size: 0.86rem;
	white-space: nowrap;
	background-color: #5a5;
	border-radius: 100px;
	display: inline-block;
}

.news_title {
	margin: 0px auto;
	font-size: 1.9rem;
	position: relative;
}

.news_title::after {
	content: "";
	width: calc(100% + 10px);
	margin: 10px 0px 30px -5px;
	border-bottom: #494 solid 1.5px;
	display: block;
}

.single_entry_container h2 {
	margin: 50px auto 45px;
	font-size: 28px;
}

.news_back {
	margin-top: 80px;
	text-align: center;
}

.news_back_button {
	padding: 20px 32px 17px;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	text-indent: 0.1em;
	letter-spacing: 0.1em;
	white-space: nowrap;
	border: none;
	border-radius: 1000px;
	background-color: #494;
	cursor: pointer;
	transition: opacity 0.2s;
}

.news_back_button:hover {
	opacity: 0.6;
}

.page_article {
	max-width: 1000px;
	margin: 0px auto;
}

.headline {
	margin: 100px auto;
	color: #000;
	font-size: 2.3rem;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	position: relative;
}

.headline::before {
	content: "";
	width: 115vw;
	height: 300px;
	background: url("img/header_image_heart.svg") no-repeat center / contain;
	opacity: 0.1;
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%);
	display: block;
	z-index: -1;
}

.about_year {
	max-width: 720px;
	margin: 0px auto;
	font-size: 1.1rem;
	text-align: right;
}

.about_whats {
	max-width: 940px;
	margin: 55px 0px 70px;
	padding: 50px 360px 50px 0px;
	position: relative;
}

.about_whats::before {
	content: "";
	width: 200vw;
	height: 100%;
	background-color: #e0ece0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	z-index: -1;
}

.about_whats img {
	max-width: 325px;
	width: calc(100% - 20px);
	position: absolute;
	bottom: 0px;
	right: 0px;
	display: block;
}

.about_heading1 {
	margin: 0px 0px 18px;
	color: #363;
	font-size: 1.5rem;
	font-weight: 700;
}

.about_text2 {
	margin: 0px;
	color: #000;
	font-size: 16.5px;
	font-weight: 500;
}

.about_text4 {
	margin: 0px auto 50px;
}

.about_catch1 {
	margin: 0px auto 80px;
	color: #333;
	font-size: 20px;
	position: relative;
}

.about_catch1::before {
	content: "";
	width: 100px;
	margin-top: -0.25em;
	margin-right: 18px;
	font-weight: 500;
	border-bottom: #333 solid 1.5px;
	vertical-align: middle;
	display: inline-block;
}

.about_heading2 {
	margin: 0px auto 20px;
	font-size: 2rem;
}

.about_members {
	max-width: 720px;
	margin: 0px auto;
}

.about_members table {
	table-layout: fixed;
}

.about_members tr:nth-of-type(odd) {
	background-color: #eee;
}

.about_members td {
	padding: 15px 22px 13px;
	border: none;
	position: relative;
}

.about_members td:nth-of-type(1) {
	width: 130px;
	white-space: nowrap;
}

.activity_summaries {
	max-width: 770px;
	margin: 0px auto 120px;
	padding: 38px 0px;
	position: relative;
	overflow: visible;
}

.activity_summaries::before {
	content: "";
	width: 100vw;
	height: 100%;
	background-color: #e3f1ff;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	z-index: -1;
}

.activity_summaries table {
	table-layout: fixed;
}

.activity_summaries td {
	padding: 8px 0px;
	color: #333;
	line-height: 1.6;
	border: none;
}

.activity_summaries td:nth-of-type(1) {
	width: 240px;
	padding-right: 35px;
	padding-left: 2em;
	font-weight: 700;
	text-indent: -2em;
}

.activity_plan_heading {
	margin: 0px auto 90px;
	font-size: 2.2rem;
	text-align: center;
}

.activity_year {
	max-width: 900px;
	margin: 0px auto;
	font-size: 1.1rem;
	text-align: right;
}

.activity_plan_pdf {
	max-width: 900px;
	margin: 0px auto;
}

.activity_plan_pdf a {
	font-size: 1rem;
}

.activity_plan_pdf a.wp-element-button {
	background-color: #494;
}

body.privacy-policy h2 {
	margin: 65px auto 25px;
	padding-left: 20px;
	font-size: 1.5rem;
	font-weight: 500;
	position: relative;
}

body.privacy-policy h2::before {
	content: "";
	width: 20px;
	height: 20px;
	background-color: #97d075;
	border-radius: 4px;
	position: absolute;
	top: 8px;
	left: -10px;
	transform: rotate(45deg);
	display: block;
	z-index: -1;
}

.network_posts {
	max-width: 820px;
	margin: 0px auto;
}

.network_posts_post {
	margin-bottom: 60px;
	padding-bottom: 60px;
	border-bottom: #999 solid 1px;
}

.network_posts_post:last-of-type {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.network_posts_title {
	margin: 0px 0px 22px;
	letter-spacing: 0.01em;
	position: relative;
}

.network_posts_title,
.network_posts_title a {
	color: #333;
	font-size: 1.7rem;
	font-weight: 500;
}

/*
.network_posts_title a::after {
	content: "→";
	width: 37px;
	height: 37px;
	margin-left: 8px;
	padding-top: 0.5px;
	color: #fff;
	font-weight: 400;
	font-size: 0.95em;
	text-align: center;
	background-color: #5a5;
	border-radius: 1000px;
	transform: translateY(-0.5px);
	display: inline-block;
}
*/

.network_posts_overview {
	margin: 0px 0px 30px;
}

.network_posts_overview p {
	font-size: 0.88rem;
	line-height: 1.8;
}

.network_posts_columns {
	display: flex;
	gap: 40px;
}

.network_posts_column1 {
	width: 400px;
	min-height: 300px;
	box-shadow: 2px 2px 10px #ccc;
	flex: none;
	position: relative;
}

.network_posts_column1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
.network_posts_column1::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #eee;
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	z-index: -1;
}
*/

.network_posts_column1::after {
	content: "- Group Image -";
	color: #999;
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-size: 1.8rem;
	font-weight: 100;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	z-index: -1;
}

.network_posts_address {
	font-size: 1.1rem;
}

.network_posts_places {
	min-height: 54px;
	display: flex;
	align-items: center;
}

.network_posts_places a {
	padding-left: 50px;
	position: relative;
	display: inline-block;
}

.network_posts_places img {
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
}

.network_posts_postcode {
	margin-bottom: -3px;
	color: #333;
	font-size: 1.02rem;
}

.network_posts_jusho {
	color: #333;
}

.network_posts_tel {
	min-height: 54px;
	display: flex;
	align-items: center;
}

.network_posts_tel a {
	padding-left: 51px;
	color: #333;
	font-size: 1.6rem;
	white-space: nowrap;
	line-height: 1.2;
	position: relative;
	display: inline-block;
}

.network_posts_tel img {
	width: 45px;
	color: #000;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	display: inline-block;
}

.network_posts_hours {
	margin: 2px 0px 25px;
	padding: 6px 0px 0px 5px;
	border-top: #999 solid 1px;
	color: #333;
	font-size: 0.98rem;
	font-weight: 500;
	display: block;
}

.network_posts_mail {
	min-height: 51px;
	display: flex;
	align-items: center;
}

.network_posts_mail a {
	padding-left: 50px;
	color: #333;
	font-size: 1.1rem;
	font-family: 'IBM Plex Sans JP', sans-serif;
	line-height: 1.2;
	position: relative;
	display: inline-block;
}

.network_posts_mail img {
	width: 45px;
	margin-right: 0.45em;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	display: block;
}

.network_posts_url {
	min-height: 51px;
	display: flex;
	align-items: center;
}

.network_posts_url a {
	padding-top: 2px;
	padding-left: 50px;
	color: #333;
	font-size: 1.05rem;
	font-family: 'IBM Plex Sans JP', sans-serif;
	line-height: 1.2;
	position: relative;
	display: inline-block;
}

.workshop_block:nth-of-type(n + 2)::before {
	content: "";
	width: 100%;
	margin: 100px auto 100px;
	border-top: #6a6 dotted 8px;
	display: block;
}

.workshop_single {
	max-width: 1000px;
	margin: 0px auto;
}

.network_posts_url img {
	width: 42px;
	margin-right: 0.45em;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
}

.workshop_meta {
	text-align: center;
}

.workshop_date {
	margin: 0px auto 25px;
	padding: 0.55em 2em 0.35em;
	color: #fff;
	font-family: 'IBM Plex Sans JP', sans-serif;;
	font-size: 35px;
	font-weight: 300;
	text-align: center;
	line-height: 1;
	white-space: nowrap;
	background-color: #6a6;
	border-radius: 1000px;
	display: inline-block;
}

.workshop_day {
	margin-right: 0.2em;
}

.workshop_title {
	margin: 0px auto 40px;
	font-size: 37px;
	font-weight: 500;
	display: flex;
	justify-content: center;
}

.workshop_location {
	font-size: 28px;
}

.workshop_basho::after {
	content: "・";
	margin-left: -0.3em;
	margin-right: -0.15em;
}

.workshop_jusho {
	display: inline-block;
}

.workshop_jusho a {
	margin-left: -8px;
	font-weight: 500;
	display: inline-block;
}

.workshop_address {
	margin: 0px auto 40px;
	font-size: 20px;
}

.workshop_lecturer {
	margin: 0px auto 20px;
	display: flex;
	gap: 20px;
}

.workshop_lecturer > div:nth-of-type(1) {
	width: 300px;
	flex: none;
}

.workshop_lecturer p {
	margin: 0px;
}

.workshop_lecturer_koshi {
	width: 120px;
	margin-bottom: 20px;
	padding-top: 0.05em;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-indent: 0.2em;
	white-space: nowrap;
	background-color: #6a6;
	display: flex;
	justify-content: center;
	align-items: center;
}

.workshop_lecturer_name {
	font-size: 30px;
	display: block;
}

.workshop_apply {
	margin: 0px auto 40px;
}

.workshop_apply_omoshikomi {
	margin: 0px auto 15px;
	font-size: 28px;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

.workshop_apply_omoshikomi::after {
	content: "";
	width: 100vw;
	border-bottom: #000 solid 1px;
	position: absolute;
	top: 50%;
	display: inline-block;
}

.workshop_apply_tel,
.workshop_apply_email {
	font-size: 23.5px;
	font-family: 'IBM Plex Sans JP', sans-serif;
	line-height: 1.35;
}

.workshop_apply_tel {
	margin-bottom: 8px;
}

.workshop_apply_tel::before,
.workshop_apply_email::before {
	content: "●";
	color: #6a6;
	margin-right: 13px;
	transform: scale(1.15);
	display: inline-block;
}

#map {
	margin-top: -25px;
	padding-top: 25px;
}

.workshop_map {
	height: 420px;
	margin: 0px auto 80px;
}

.workshop_map iframe {
	width: 100%;
	height: 100%;
}

.workshop_pdf_links,
.activity_plan_pdf_links {
	margin-top: 60px;
	text-align: center;
}

.workshop_pdf_links a,
.activity_plan_pdf_links a {
	padding: 20px 35px;
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	white-space: nowrap;
	background-color: #6a6;
	border-radius: 1000px;
	display: inline-block;
}

.contact_heading1 {
	margin: 0px auto 50px;
	font-size: 1.5rem;
	font-weight: 400;
	position: relative;
}

.contact_heading1::before,
.contact_heading1::after {
	content: "-";
	transform: translateY(-0.08em);
	display: inline-block;
}

.contact_heading1::before {
	margin-right: 0.3em;
}

.contact_heading1::after {
	margin-left: 0.3em;
}

.contact_heading2 {
	margin: 0px auto 60px;
	font-size: 1.5rem;
	font-weight: 400;
	position: relative;
}

.contact_heading2::before,
.contact_heading2::after {
	content: "-";
	transform: translateY(-0.08em);
	display: inline-block;
}

.contact_heading2::before {
	margin-right: 0.3em;
}

.contact_heading2::after {
	margin-left: 0.3em;
}

.contact_address {
	max-width: 385px;
	margin: 0px auto 70px;
	padding: 26px 40px;
	line-height: 36px;
	white-space: nowrap;
	position: relative;
}

.contact_address::before {
	content: "";
	width: 100%;
	height: calc(100% + 10px);
	background-color: #e0ece0;
	border-radius: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	z-index: -1;
}

.contact_address_sms {
	width: 150px;
	margin-bottom: -33px;
	padding: 6px 8px 4px;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	line-height: 1;
	background-color: #5a5;
	border-radius: 4px;
	display: block;
}

.contact_address_tel {
	color: #363;
	font-size: 1.6rem;
	font-weight: 400;
}

.contact_address_tel::before {
	content: "tel.";
	margin-right: 0.25em;
	letter-spacing: 0.01em;
}

.contact_address_tanto {
	margin-left: -0.25em;
	color: #363;
	font-size: 0.9rem;
	display: inline-block;
}

.contact_form {
	max-width: 700px;
	margin: 0px auto;
}

.contact_form p,
.contact_form label {
	position: relative;
	display: block;
}

.contact_form p {
	min-height: 50px;
	margin: 0px 0px 18px;
}

.contact_form_header {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.contact_form_header + span {
	margin-left: 230px;
	display: block;
}

.contact_form_required {
	margin-right: 10px;
	padding: 8px 11px;
	color: #fff;
	font-size: 0.88rem;
	line-height: 1;
	background-color: #e66;
	border-radius: 1000px;
	display: inline-block;
}

.contact_form input[type="text"],
.contact_form input[type="tel"],
.contact_form input[type="email"],
.contact_form textarea {
	width: 100%;
	padding: 12px 18px;
	font-size: 1rem;
	line-height: 1.5;
	border: none;
	background-color: #eee;
}

.contact_form_buttons {
	text-align: center;
}

.contact_form_confirm,
.contact_form_back,
.contact_form_submit {
	width: 200px;
	height: 100px;
	margin: 10px;
	font-size: 1.15rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
	line-height: 70px;
	border: none;
	border-radius: 15px;
	background-color: #5a5;
	cursor: pointer;
	display: inline-block;
	transition: opacity 0.2s;
}

.contact_form_confirm:hover,
.contact_form_back:hover,
.contact_form_submit:hover {
	opacity: 0.6;
}

.contact_form_hidden {
	display: none;
}

.contact_form_value ~ * {
	display: none;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output,
.wpcf7-spinner {
	display: none !important;
}

#thanks {
	max-width: 545px;
	width: 100%;
	padding: 20px 32px 18px;
	line-height: 1.8;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0px 0px 5px #ccc;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
}

@media(max-width: 980px) {
	.workshop_lecturer {
		margin-bottom: 30px;
		display: block;
	}
	
	.workshop_lecturer > div:nth-of-type(1) {
		margin-bottom: 10px;
	}
	
	.workshop_lecturer p {
		line-height: 1.8;
	}
}

@media(max-width: 962px) {
	.news_posts {
		gap: 50px 3%;
	}
	
	.news_posts_article {
		width: 31.33%;
	}
}

@media(max-width: 900px) {
	.about_whats {
		padding: 85px 0px 0px;
	}
	
	.about_text2 {
		margin-bottom: 25px;
	}
	
	.about_whats img {
		margin: 0px auto;
		position: static;
		display: block;
	}
}

@media(max-width: 850px) {
	.network_posts {
		max-width: 600px;
		margin: 0px auto;
	}
	
	.network_posts_title {
		font-size: 1.6rem;
	}
	
	.network_posts_overview {
		margin: 0px;
	}
	
	.network_posts_columns {
		display: block;
	}
	
	.network_posts_column1 {
		width: 100%;
		min-height: auto;
		aspect-ratio: 4 / 3;
		margin-bottom: 25px;
	}
}

@media(max-width: 667px) {
	.front_lead {
		color: #000;
		text-align: center;
		display: block;
	}
	
	.front_lead::before {
		width: 230px;
		height: 230px;
		margin: 0px auto 20px;
		display: block;
	}

	.front_lead::after {
		height: calc(100% - 100px);
	}
	
	.headline {
		margin: 0px auto 85px;
		font-size: 2.1rem;
	}
	
	.about_catch1 {
		font-weight: 700;
		line-height: 1.8;
	}
	
	.about_catch1::before {
		content: none;
	}
	
	.about_year {
		width: calc(100% + 20px);
		margin-left: -10px;
		font-size: 0.9rem;
	}
	
	.about_members {
		width: calc(100% + 20px);
		margin-left: -10px;
	}
	
	.about_members td {
		padding-left: 15px;
		padding-right: 15px;
		font-size: 0.92rem;
	}
	
	.about_members td:nth-of-type(1) {
		width: 85px;
		white-space: nowrap;
	}
	
	.about_members td:nth-of-type(2) {
		width: 115px;
		white-space: nowrap;
	}
	
	.activity_summaries {
		margin-bottom: 100px;
	}
	
	.activity_summaries td {
		display: block;
	}
	
	.activity_summaries td:nth-of-type(1) {
		width: 100%;
		padding-bottom: 0px;
		padding-right: 0px;
	}

	.activity_summaries td:nth-of-type(2) {
		padding-bottom: 20px;
	}
	
	.news_posts {
		gap: 50px 5%;
	}
	
	.news_posts_article {
		width: 47.5%;
	}
	
	.workshop_date {
		max-width: 335px;
		width: 100%;
		padding-left: 0em;
		padding-right: 0em;
		font-size: 28px;
	}
	
	.workshop_title {
		font-size: 32px;
	}
	
	.workshop_basho {
		display: none;
	}
	
	.workshop_location {
		margin-bottom: 2px;
		font-size: 28px;
		line-height: 1;
	}
	
	.workshop_address {
		margin-bottom: 45px;
	}
	
	.workshop_day {
		margin-bottom: 0.2em;
		margin-right: 0px;
		display: block;
	}
}

@media(max-width: 440px) {
	.front_lead {
		font-size: 8vw;
	}
	
	.front_lead::before {
		width: 52vw;
		height: 52vw;
	}
	
	.front_lead::after {
		height: calc(100% - 23vw);
	}
}

@media(max-width: 430px) {
	.news_posts {
		gap: 50px;
	}
	
	.news_posts_article {
		max-width: 300px;
		width: 100%;
		margin: 0px auto;
	}
	
	.contact_address {
		padding: 42px 6.5vw 35px;
		line-height: 40px;
	}
	
	.contact_address_sms {
		margin-bottom: -40px;
	}
	
	.contact_address_tel {
		font-size: 6.7vw;
	}
	
	.contact_address_tanto {
		font-size: 4vw;
	}
}

@media(max-width: 400px) {
	.network_posts_column1::after {
		font-size: 7.9vw;
	}
	
	.contact_heading2 {
		font-size: 6.5vw;
		white-space: nowrap;
	}
}

@media(max-width: 380px) {
	.contact_heading1 {
		font-size: 6.7vw;
		white-space: nowrap;
	}
}

@media(max-width: 355px) {
	.error404_text {
		font-size: 4.8vw;
		white-space: nowrap;
	}
}

#footer {
	padding: 42px 0px;
	position: relative;
}

#footer::before {
	content: "";
	width: 100vw;
	height: 100%;
	background-color: #ded;
	opacity: 0.5;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	z-index: -1;
}

#footer::after {
	content: "";
	width: 100vw;
	height: 32px;
	background-color: #ded;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	z-index: -1;
}

.footer_logo,
.footer_logo * {
	margin: 0px;
	line-height: 0;
}

.footer_logo {
	margin-left: 5px;
	margin-bottom: 12px;
}

.footer_logo img {
	max-width: 285px;
	width: 100%;
}

.footer_navigation {
	position: absolute;
	bottom: 44.5px;
	right: 0px;
	z-index: 1;
}

.footer_menu_list {
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.footer_menu_list li {
	position: relative;
}

.footer_menu_list li:nth-of-type(n + 2)::before {
	content: "●";
	color: #494;
	font-size: 0.4rem;
	font-weight: 400;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: -13.5px;
	transform: translateY(-50%);
	display: block;
}

.footer_menu_list a {
	color: #333;
	font-size: 0.82rem;
	white-space: nowrap;
	opacity: 1;
	position: relative;
	display: block;
	transition: color 0.2s;
}

.footer_menu_list .current_page_item a,
.footer_menu_list a:hover {
	color: #494;
}

.error404_text {
	text-align: center;
	transform: translateX(0.35em);
}

#copyright {
	font-size: 1.02rem;
	position: relative;
}

#copyright::before {
	content: "";
	width: 58px;
	height: 210px;
	background: url("img/tulip_silhouette.svg") no-repeat center / contain;
	opacity: 0.5;
	position: absolute;
	bottom: -30px;
	right: 15px;
	transform: rotate(3deg);
	display: block;
	z-index: -1;
}

body:not(.contact) .grecaptcha-badge {
	display: none;
}

@media(max-width: 1230px) {
	label[for="menu_button"] {
		left: auto;
		right: 15px;
		transform: none;
	}
}

@media(max-width: 1080px) {
	#footer {
		max-width: 705px;
		padding-bottom: 35px;
	}
	
	.footer_logo {
		margin-bottom: 25px;
		text-align: right;
	}
	
	.footer_navigation {
		margin-bottom: 35px;
		position: static;
	}
	
	.footer_menu_list a {
		font-size: 0.88rem;
	}
	
	.footer_menu_list li:nth-of-type(n + 2)::before {
		content: none;
	}
	
	#copyright {
		text-align: right;
	}
	
	#copyright::before {
		width: 70px;
		height: 250px;
		left: 0px;
		right: auto;
	}
}

@media(max-width: 800px) {
	.contact_form_header {
		margin: 35px 0px -15px;
		position: static;
		display: block;
	}
	
	.contact_form_header + span {
		margin: 0px;
	}
}